/* ════════════════════════════════════════════════════════════════════════
   PAGE D'ACCUEIL PUBLIQUE (#publicLanding) — thème clair, style OpenAI API
   ════════════════════════════════════════════════════════════════════════ */
.pl {
  position: fixed;
  inset: 0;
  z-index: 9990;
  overflow-y: auto;
  overflow-x: hidden;
  background: #ffffff;
  color: #0d1117;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
.pl.hidden { display: none !important; }
.pl a { text-decoration: none; color: inherit; }

/* ── Boutons ── */
.pl-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; line-height: 1;
  padding: 11px 18px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
  white-space: nowrap;
}
.pl-btn-lg { font-size: 15.5px; padding: 15px 26px; }
.pl-btn-primary { background: #0d1117; color: #fff; }
.pl-btn-primary:hover { background: #1f2937; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(13,17,23,.18); }
.pl-btn-ghost { background: #fff; color: #0d1117; border-color: #d7dce3; }
.pl-btn-ghost:hover { border-color: #0d1117; transform: translateY(-1px); }
.pl-btn-light { background: #fff; color: #0d1117; }
.pl-btn-light:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* ── Navigation ── */
.pl-nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid #eceff3;
}
.pl-nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 28px; gap: 24px;
}
.pl-brand { display: flex; align-items: center; gap: 11px; }
.pl-brand-logo { display: inline-flex; }
.pl-brand-name { font-size: 16.5px; font-weight: 700; letter-spacing: -.2px; }
.pl-nav-links { display: flex; align-items: center; gap: 28px; }
.pl-nav-links a { font-size: 14.5px; font-weight: 500; color: #4b5563; transition: color .15s ease; }
.pl-nav-links a:hover { color: #0d1117; }
.pl-nav-actions { display: flex; align-items: center; gap: 12px; }

/* ── Bouton hamburger (mobile uniquement) ── */
.pl-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 9px; margin-right: 2px;
  background: transparent; border: 1px solid #e3e7ee; border-radius: 10px;
  cursor: pointer; flex: none;
}
.pl-burger span {
  display: block; height: 2px; width: 100%; border-radius: 2px;
  background: #1f2937; transition: transform .2s ease, opacity .2s ease;
}
.pl-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pl-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.pl-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.pl-main { display: block; }
.pl-hero {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding: 84px 28px 64px;
}
.pl-eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 600; letter-spacing: .3px;
  color: #2563eb; background: #eff4ff; border: 1px solid #dbe6ff;
  padding: 6px 13px; border-radius: 999px; margin-bottom: 22px;
}
.pl-hero-title {
  font-size: 50px; line-height: 1.06; font-weight: 720; letter-spacing: -1.4px;
  margin: 0 0 20px; color: #0a0e14;
}
.pl-grad {
  background: linear-gradient(100deg, #1E3A8A 0%, #3B82F6 55%, #06b6d4 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.pl-hero-sub { font-size: 18px; line-height: 1.6; color: #4b5563; max-width: 540px; margin: 0 0 30px; }
.pl-hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 38px; }
.pl-hero-stats { display: flex; gap: 38px; flex-wrap: wrap; }
.pl-hs { display: flex; flex-direction: column; gap: 3px; }
.pl-hs strong { font-size: 25px; font-weight: 720; color: #0a0e14; letter-spacing: -.5px; }
.pl-hs span { font-size: 13px; color: #6b7280; }

/* ── Hero visuel (maquette produit) ── */
.pl-hero-visual { position: relative; }
.pl-card-mock {
  background: #fff; border: 1px solid #e6e9ee; border-radius: 16px;
  box-shadow: 0 24px 60px rgba(15,23,42,.12), 0 4px 12px rgba(15,23,42,.05);
  overflow: hidden;
}
.pl-mock-head {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 16px; border-bottom: 1px solid #eef1f4; background: #fafbfc;
}
.pl-dot { width: 11px; height: 11px; border-radius: 50%; }
.pl-dot-r { background: #ff5f57; } .pl-dot-y { background: #febc2e; } .pl-dot-g { background: #28c840; }
.pl-mock-title { margin-left: 10px; font-size: 12.5px; color: #6b7280; font-family: ui-monospace, "SF Mono", Menlo, monospace; }
.pl-mock-body { padding: 18px 18px 20px; }
.pl-mock-row { display: flex; align-items: center; gap: 12px; margin-bottom: 13px; }
.pl-chip { font-size: 11.5px; font-weight: 600; padding: 4px 10px; border-radius: 7px; flex-shrink: 0; min-width: 92px; text-align: center; }
.pl-chip-blue { background: #e7f0ff; color: #1d4ed8; }
.pl-chip-violet { background: #f1ebfe; color: #7c3aed; }
.pl-chip-cyan { background: #e2f7fb; color: #0891b2; }
.pl-chip-amber { background: #fef3e2; color: #d97706; }
.pl-bar { height: 9px; border-radius: 6px; background: linear-gradient(90deg,#cbd5e1,#e2e8f0); flex: 1; }
.pl-mock-tc { margin-top: 16px; border-top: 1px dashed #e6e9ee; padding-top: 14px; display: flex; flex-direction: column; gap: 9px; }
.pl-tc-line { font-size: 12.5px; color: #374151; display: flex; align-items: center; gap: 8px; }
.pl-tc-line b { font-family: ui-monospace, "SF Mono", Menlo, monospace; color: #0a0e14; }
.pl-pass { margin-left: auto; font-size: 10.5px; font-weight: 700; color: #15803d; background: #dcfce7; padding: 2px 8px; border-radius: 5px; }
.pl-run  { margin-left: auto; font-size: 10.5px; font-weight: 700; color: #b45309; background: #fef3c7; padding: 2px 8px; border-radius: 5px; }
.pl-float {
  position: absolute; font-size: 13px; font-weight: 600; color: #0a0e14;
  background: #fff; border: 1px solid #e6e9ee; border-radius: 999px;
  padding: 9px 15px; box-shadow: 0 10px 26px rgba(15,23,42,.14);
}
.pl-float-1 { top: -16px; left: -22px; animation: plFloat 5s ease-in-out infinite; }
.pl-float-2 { bottom: -18px; right: -14px; animation: plFloat 6s ease-in-out infinite .5s; }
@keyframes plFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ── Partenaires (bandeau défilant) ── */
.pl-partners { padding: 30px 0 64px; text-align: center; }
.pl-partners-label { font-size: 13.5px; font-weight: 600; color: #8a94a3; letter-spacing: .4px; margin: 0 0 30px; text-transform: uppercase; padding: 0 28px; }
.pl-marquee {
  position: relative; overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.pl-marquee-track {
  display: flex; align-items: center; width: max-content;
  animation: plMarquee 38s linear infinite;
}
.pl-marquee:hover .pl-marquee-track { animation-play-state: paused; }
@keyframes plMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.pl-logo {
  flex: none; margin: 0 16px;
  font-size: 26px; font-weight: 800; letter-spacing: .3px; color: var(--lc, #0a0e14);
  padding: 18px 34px; border: 2px solid #eceff3; border-radius: 16px; background: #fff;
  white-space: nowrap;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.pl-logo:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--lc) 45%, #eceff3); box-shadow: 0 10px 26px rgba(15,23,42,.1); }
@media (prefers-reduced-motion: reduce) {
  .pl-marquee-track { animation: none; transform: none; }
  .pl-marquee { -webkit-mask-image: none; mask-image: none; }
  .pl-marquee-track { flex-wrap: wrap; justify-content: center; gap: 14px; }
}

/* ── Sections génériques ── */
.pl-section { padding: 76px 28px; }
.pl-section > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.pl-section-alt { background: #f7f9fc; border-top: 1px solid #eef1f5; border-bottom: 1px solid #eef1f5; }
.pl-sec-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.pl-sec-tag { font-size: 13px; font-weight: 700; color: #2563eb; letter-spacing: .5px; text-transform: uppercase; margin: 0 0 12px; }
.pl-sec-title { font-size: 36px; font-weight: 720; letter-spacing: -.8px; color: #0a0e14; margin: 0 0 14px; line-height: 1.12; }
.pl-sec-sub { font-size: 17px; line-height: 1.6; color: #5b6573; margin: 0; }

/* ── Grille fonctionnalités ── */
.pl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pl-feat {
  background: #fff; border: 1px solid #e9edf2; border-radius: 16px; padding: 26px 24px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pl-feat:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(15,23,42,.09); border-color: #dde3eb; }
.pl-feat-ic {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  font-size: 23px; margin-bottom: 16px;
  background: color-mix(in srgb, var(--fc) 12%, #fff); border: 1px solid color-mix(in srgb, var(--fc) 22%, #fff);
}
.pl-feat h3 { font-size: 18px; font-weight: 700; color: #0a0e14; margin: 0 0 9px; }
.pl-feat p { font-size: 14.5px; line-height: 1.55; color: #5b6573; margin: 0; }

/* ── Agents ── */
.pl-agents { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pl-agent {
  position: relative; background: #fff; border: 1px solid #e9edf2; border-radius: 18px;
  padding: 30px 26px; overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.pl-agent::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--ac); }
.pl-agent:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(15,23,42,.1); }
.pl-agent-badge {
  position: absolute; top: 18px; right: 18px; font-size: 11px; font-weight: 700;
  color: var(--ac); background: color-mix(in srgb, var(--ac) 12%, #fff);
  padding: 4px 10px; border-radius: 999px;
}
.pl-agent-ic {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; font-size: 27px;
  background: color-mix(in srgb, var(--ac) 13%, #fff); margin-bottom: 16px;
}
.pl-agent h3 { font-size: 22px; font-weight: 760; letter-spacing: .5px; color: #0a0e14; margin: 0 0 4px; }
.pl-agent-role { font-size: 13.5px; font-weight: 600; color: var(--ac); margin: 0 0 12px; }
.pl-agent-desc { font-size: 14.5px; line-height: 1.55; color: #5b6573; margin: 0; }

/* ── Stats ── */
.pl-stats { padding: 78px 28px; background: linear-gradient(160deg, #0a1230 0%, #102a6b 60%, #1a4bb0 100%); color: #fff; }
.pl-stats-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.pl-stats-head h2 { font-size: 34px; font-weight: 720; letter-spacing: -.6px; margin: 0 0 12px; }
.pl-stats-head p { font-size: 16.5px; color: rgba(255,255,255,.7); margin: 0; }
.pl-stats-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pl-stat {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 26px 22px; text-align: center; backdrop-filter: blur(4px);
}
.pl-stat-num { font-size: 34px; font-weight: 760; letter-spacing: -.6px; color: #fff; margin-bottom: 8px; }
.pl-stat-lbl { font-size: 14px; color: rgba(255,255,255,.86); line-height: 1.4; margin-bottom: 9px; }
.pl-stat-was { font-size: 12px; color: rgba(255,255,255,.5); font-style: italic; }

/* ── Workflow ── */
.pl-steps { display: flex; align-items: stretch; justify-content: center; gap: 14px; flex-wrap: wrap; }
.pl-step {
  flex: 1; min-width: 200px; max-width: 260px; background: #fff; border: 1px solid #e9edf2;
  border-radius: 16px; padding: 26px 22px;
}
.pl-step-n {
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px;
  background: #0d1117; color: #fff; font-weight: 700; font-size: 16px; margin-bottom: 15px;
}
.pl-step h3 { font-size: 17.5px; font-weight: 700; color: #0a0e14; margin: 0 0 8px; }
.pl-step p { font-size: 14px; line-height: 1.5; color: #5b6573; margin: 0; }
.pl-step-arrow { display: grid; place-items: center; font-size: 24px; color: #b8c1cf; align-self: center; }

/* ── Intégrations ── */
.pl-int-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pl-int { background: #fff; border: 1px solid #e9edf2; border-radius: 14px; padding: 24px 22px; transition: transform .15s ease, box-shadow .15s ease; }
.pl-int:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(15,23,42,.08); }
.pl-int-name { display: inline-block; font-size: 16px; font-weight: 800; color: var(--lc, #0a0e14); margin-bottom: 10px; }
.pl-int p { font-size: 13.5px; line-height: 1.5; color: #5b6573; margin: 0; }

/* ── CTA final ── */
.pl-cta { padding: 84px 28px; }
.pl-cta-inner {
  max-width: 880px; margin: 0 auto; text-align: center;
  background: linear-gradient(135deg, #1E3A8A 0%, #2563eb 100%);
  border-radius: 26px; padding: 58px 40px; color: #fff;
  box-shadow: 0 28px 70px rgba(30,58,138,.28);
}
.pl-cta-inner h2 { font-size: 32px; font-weight: 740; letter-spacing: -.6px; margin: 0 0 16px; line-height: 1.15; }
.pl-cta-inner p { font-size: 17px; line-height: 1.55; color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto 28px; font-style: italic; }

/* ── Footer ── */
.pl-footer { background: #0a0e14; color: #fff; padding: 44px 28px 26px; }
.pl-foot-inner {
  max-width: 1200px; margin: 0 auto; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding-bottom: 26px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.pl-foot-brand { display: flex; align-items: center; gap: 13px; }
.pl-foot-name { font-size: 16px; font-weight: 700; }
.pl-foot-meta { font-size: 12.5px; color: rgba(255,255,255,.55); margin-top: 2px; }
.pl-foot-tech { display: flex; flex-wrap: wrap; gap: 8px; }
.pl-foot-tech span { font-size: 12px; color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); padding: 5px 11px; border-radius: 999px; }
.pl-foot-base { max-width: 1200px; margin: 18px auto 0; text-align: center; font-size: 12.5px; color: rgba(255,255,255,.45); }

/* ── Bouton retour sur le splash ── */
.splash-back {
  position: absolute; top: 20px; left: 22px; z-index: 5;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 600; color: #fff;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28);
  padding: 8px 14px; border-radius: 999px; cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.splash-back:hover { background: rgba(255,255,255,.22); transform: translateX(-2px); }

/* ── Responsive ── */
@media (max-width: 980px) {
  .pl-hero { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; }
  .pl-hero-visual { max-width: 460px; }
  .pl-hero-title { font-size: 40px; }
  .pl-grid, .pl-int-grid { grid-template-columns: repeat(2, 1fr); }
  .pl-agents { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pl-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pl-step-arrow { display: none; }
  .pl-nav-links { display: none; }
}
@media (max-width: 600px) {
  .pl-hero-title { font-size: 33px; letter-spacing: -1px; }
  .pl-hero-sub { font-size: 16px; }
  .pl-sec-title { font-size: 28px; }
  .pl-grid, .pl-int-grid, .pl-stats-grid { grid-template-columns: 1fr; }
  .pl-hero-stats { gap: 24px; }
  .pl-cta-inner { padding: 40px 24px; }
  .pl-cta-inner h2 { font-size: 25px; }
  .pl-foot-inner { flex-direction: column; align-items: flex-start; }
  .splash-back { top: 14px; left: 14px; }
  .pl-float { display: none; }
}

/* ════════════════════════════════════════════════════════════════════════
   SITE VITRINE — pages Produits / Société / English (router #publicLanding)
   ════════════════════════════════════════════════════════════════════════ */
.pl-pages { display: block; }
.pl-page.hidden { display: none !important; }

/* ── Nav : lien actif + English ── */
.pl-nav-links a.active { color: #0d1117; font-weight: 700; }
.pl-nav-links a.active::after {
  content: ""; display: block; height: 2px; border-radius: 2px; margin-top: 4px;
  background: linear-gradient(90deg,#1E3A8A,#3B82F6);
}
.pl-nav-en {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid #d7dce3; border-radius: 999px; padding: 6px 13px !important;
}
.pl-nav-en::before { content: "🌐"; font-size: 13px; }
.pl-nav-en.active { border-color: #3B82F6; }
.pl-nav-en.active::after { display: none; }

/* ── Hero des pages internes (sans visuel) ── */
.plp-hero { display: block; max-width: 880px; text-align: center; padding-bottom: 28px; }
.plp-hero-text { max-width: 720px; margin: 0 auto; }
.plp-hero .pl-hero-sub { margin-left: auto; margin-right: auto; }

/* ── Produits : grille de cartes ── */
.plp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.plp-card {
  position: relative; background: #fff; border: 1px solid #e9edf2; border-radius: 18px;
  padding: 28px 24px 24px; cursor: pointer; overflow: hidden; text-align: left;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.plp-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--ac); }
.plp-card:hover { transform: translateY(-4px); box-shadow: 0 20px 46px rgba(15,23,42,.11); border-color: color-mix(in srgb, var(--ac) 35%, #e9edf2); }
.plp-card:focus-visible { outline: 2px solid var(--ac); outline-offset: 2px; }
.plp-card-ic {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; font-size: 26px;
  background: color-mix(in srgb, var(--ac) 13%, #fff); margin-bottom: 14px;
}
.plp-card-badge {
  position: absolute; top: 20px; right: 20px; font-size: 10.5px; font-weight: 700;
  color: var(--ac); background: color-mix(in srgb, var(--ac) 12%, #fff); padding: 4px 10px; border-radius: 999px;
}
.plp-card h3 { font-size: 21px; font-weight: 760; color: #0a0e14; margin: 0 0 3px; }
.plp-card-role { font-size: 13px; font-weight: 600; color: var(--ac); margin: 0 0 11px; }
.plp-card p { font-size: 14.5px; line-height: 1.55; color: #5b6573; margin: 0 0 16px; }
.plp-card-link { font-size: 14px; font-weight: 700; color: var(--ac); }

/* ── Produit (détail) ── */
.plpd-hero { display: block; max-width: 820px; text-align: center; padding-top: 64px; }
.plpd-hero-text { max-width: 720px; margin: 0 auto; }
.plpd-back {
  display: inline-block; font-size: 13.5px; font-weight: 600; color: #5b6573; margin-bottom: 20px;
}
.plpd-back:hover { color: #0d1117; }
.plpd-badge {
  display: inline-block; font-size: 13px; font-weight: 700; color: var(--ac);
  background: color-mix(in srgb, var(--ac) 12%, #fff); border: 1px solid color-mix(in srgb, var(--ac) 25%, #fff);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.plpd-role { font-weight: 600; color: var(--ac); -webkit-text-fill-color: currentColor; }
.plpd-tagline { font-size: 20px; font-weight: 600; color: #0a0e14; line-height: 1.4; margin: 0 auto 18px; max-width: 640px; }
.plpd-hero .pl-hero-sub { margin-left: auto; margin-right: auto; }
.plpd-hero .pl-hero-actions { justify-content: center; }
.plpd-benefits { max-width: 820px; margin: 0 auto; }
.plpd-ben-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.plpd-ben-list li {
  position: relative; padding: 16px 18px 16px 46px; background: #fff; border: 1px solid #e9edf2;
  border-radius: 14px; font-size: 15px; font-weight: 500; color: #1f2937; line-height: 1.45;
}
.plpd-ben-list li::before {
  content: "✓"; position: absolute; left: 16px; top: 15px; width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center; font-size: 12px; font-weight: 800; color: #fff; background: var(--ac);
}

/* ── Société : contact + carte ── */
.plc-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: stretch; }
.plc-info { padding: 6px 0; }
.plc-list { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.plc-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; line-height: 1.5; color: #374151; }
.plc-list li b { color: #0a0e14; }
.plc-list a { color: #2563eb; font-weight: 600; }
.plc-list a:hover { text-decoration: underline; }
.plc-ic {
  flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; font-size: 19px;
  background: #eff4ff; border: 1px solid #dbe6ff;
}
.plc-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.plc-map {
  border: 1px solid #e6e9ee; border-radius: 18px; overflow: hidden; background: #fff;
  box-shadow: 0 18px 46px rgba(15,23,42,.1); display: flex; flex-direction: column;
}
.plc-map iframe { width: 100%; height: 400px; border: 0; display: block; }
.plc-map-link {
  text-align: center; font-size: 13px; font-weight: 600; color: #2563eb;
  padding: 11px; border-top: 1px solid #eef1f4; background: #fafbfc;
}
.plc-map-link:hover { background: #f1f5fb; }

/* ── Footer : nav + contact ── */
.pl-foot-nav { display: flex; flex-wrap: wrap; gap: 22px; }
.pl-foot-nav a { font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,.72); }
.pl-foot-nav a:hover { color: #fff; }
.pl-foot-contact {
  max-width: 1200px; margin: 18px auto 0; display: flex; flex-wrap: wrap; gap: 10px 26px;
  justify-content: center; font-size: 12.5px; color: rgba(255,255,255,.6);
}
.pl-foot-contact a { color: rgba(255,255,255,.82); font-weight: 600; }
.pl-foot-contact a:hover { color: #fff; }

/* ── Responsive site vitrine ── */
@media (max-width: 980px) {
  .plp-grid { grid-template-columns: repeat(2, 1fr); }
  .plc-wrap { grid-template-columns: 1fr; gap: 24px; }
  .plpd-ben-list { grid-template-columns: 1fr; }
  /* Hamburger visible sur mobile ; le menu devient un panneau déroulant */
  .pl-burger { display: flex; }
  .pl-nav-inner { gap: 12px; padding: 11px 16px; position: relative; }
  .pl-brand-name { display: none; }
  .pl-nav-links {
    display: flex !important; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0; z-index: 40;
    background: #fff; border-bottom: 1px solid #eceff3;
    box-shadow: 0 18px 40px rgba(15,23,42,.14);
    padding: 10px 16px 16px; margin: 0;
    max-height: 0; overflow: hidden; opacity: 0; visibility: hidden;
    transition: max-height .25s ease, opacity .2s ease, visibility .25s;
  }
  .pl-nav.pl-menu-open .pl-nav-links {
    max-height: 80vh; overflow-y: auto; opacity: 1; visibility: visible;
  }
  .pl-nav-links > a, .pl-nav-drop, .pl-nav-drop-trigger {
    width: 100%; padding: 11px 6px; font-size: 16px;
  }
  .pl-nav-drop { display: block; }
  .pl-nav-links a.active::after { display: none; }
  /* L'override du sous-menu « Produits » (déplié inline) est défini APRÈS la
     section « Menu déroulant Produits » pour prévaloir sur ses règles de base
     et sur .pl-dd-closed (cf. bloc .pl-nav.pl-menu-open ... .pl-dropdown). */
}
@media (max-width: 600px) {
  .plp-grid { grid-template-columns: 1fr; }
  .plc-map iframe { height: 300px; }
  .plpd-tagline { font-size: 17px; }
}

/* ── Menu déroulant « Produits » ── */
.pl-nav-drop { position: relative; display: inline-flex; align-items: center; }
.pl-nav-drop-trigger { display: inline-flex; align-items: center; gap: 5px; }
.pl-caret { font-size: 10px; transition: transform .15s ease; }
.pl-nav-drop:hover .pl-caret, .pl-nav-drop:focus-within .pl-caret { transform: rotate(180deg); }
.pl-dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 250px; background: #fff; border: 1px solid #e9edf2; border-radius: 14px;
  box-shadow: 0 18px 48px rgba(15,23,42,.16); padding: 8px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .16s ease, transform .16s ease, visibility .16s; z-index: 30;
}
.pl-dropdown::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.pl-nav-drop:hover .pl-dropdown, .pl-nav-drop:focus-within .pl-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
/* Fermeture forcée après un clic sur un produit (prévaut sur :hover/:focus-within) */
.pl-nav-drop.pl-dd-closed .pl-dropdown {
  opacity: 0 !important; visibility: hidden !important; pointer-events: none !important;
}
.pl-dropdown a {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 9px;
  font-size: 14.5px; font-weight: 600; color: #1f2937;
}
.pl-dropdown a:hover { background: #f4f6fa; color: #0a0e14; }
.pl-dd-ic { font-size: 16px; width: 22px; text-align: center; }
.pl-dropdown-sep { height: 1px; background: #eef1f5; margin: 6px 4px; }
.pl-dropdown-all { color: #2563eb !important; font-weight: 700; }
.pl-dropdown-all:hover { background: #eff4ff !important; }

/* ── Sous-menu « Produits » DÉPLIÉ dans le menu hamburger (mobile) ──
   Placé après la section ci-dessus pour prévaloir sur les règles de base
   (.pl-dropdown absolute/hidden) ET sur .pl-nav-drop.pl-dd-closed (!important).
   Spécificité 0,4,0 + !important → la liste des produits s'affiche en sous-liste. */
@media (max-width: 980px) {
  .pl-nav.pl-menu-open .pl-nav-drop {
    display: block !important; position: static !important; width: 100%; align-items: stretch;
  }
  .pl-nav.pl-menu-open .pl-nav-drop-trigger {
    display: flex !important; width: 100%; justify-content: space-between;
  }
  .pl-nav.pl-menu-open .pl-nav-drop .pl-dropdown {
    position: static !important; transform: none !important;
    opacity: 1 !important; visibility: visible !important; pointer-events: auto !important;
    min-width: 0; max-width: 100%; box-shadow: none; border: none; border-radius: 0;
    padding: 2px 0 6px 14px; margin: 2px 0 4px;
    border-left: 2px solid #eef1f5;
  }
  .pl-nav.pl-menu-open .pl-dropdown::before { display: none; }
  .pl-nav.pl-menu-open .pl-dropdown a { padding: 9px 8px; font-size: 15px; }
  .pl-nav.pl-menu-open .pl-dropdown-sep { display: none; }
  .pl-nav.pl-menu-open .pl-caret { display: none; }
}

/* ── Bascule de langue (vitrine) ── */
.pl-lang-toggle { gap: 6px; padding: 9px 14px; }
.pl-lang-toggle .pl-caret { display: none; }

/* ── Bascule de langue (en-tête de l'app connectée) ── */
.lang-toggle-app {
  display: inline-flex; align-items: center; gap: 5px; cursor: pointer;
  background: transparent; border: 1px solid currentColor; color: inherit;
  opacity: .82; border-radius: 999px; padding: 6px 11px;
  font-size: 13px; font-weight: 600; line-height: 1; white-space: nowrap;
  transition: opacity .15s ease, background .15s ease;
}
.lang-toggle-app:hover { opacity: 1; background: rgba(127,127,127,.12); }

@media (max-width: 600px) {
  .lang-toggle-app span { display: none; }
}

/* ── Section Sécurité / Confidentialité / Conformité (page d'accueil) ── */
.pl-security { background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 72%); border-top: 1px solid #d3efe9; }
.pl-sec-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  max-width: 1000px; margin: -18px auto 46px;
}
.pl-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid #d7e3e0; border-radius: 999px; padding: 9px 16px;
  font-size: 13px; color: #475569; box-shadow: 0 4px 14px rgba(13,148,136,.08);
}
.pl-badge b { color: #0a0e14; font-weight: 800; }
.pl-sec-note {
  max-width: 820px; margin: -30px auto 44px; text-align: center;
  font-size: 13px; line-height: 1.6; color: #64748b;
}
.pl-sec-note b { color: #334155; font-weight: 700; }
.pl-grid-sec { grid-template-columns: repeat(4, 1fr); }
.pl-grid-sec .pl-feat b { color: #0a0e14; font-weight: 700; }
@media (max-width: 980px) { .pl-grid-sec { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pl-grid-sec { grid-template-columns: 1fr; } }

/* ── Deux modèles de déploiement (Cloud / On-premise) ── */
.pl-deploy { max-width: 1000px; margin: 50px auto 0; }
.pl-deploy-title { text-align: center; font-size: 22px; font-weight: 800; color: #0a0e14; margin: 0 0 22px; }
.pl-deploy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.pl-deploy-card {
  background: #fff; border: 1px solid #e9edf2; border-radius: 16px; padding: 28px 26px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pl-deploy-card:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(15,23,42,.09); border-color: #dde3eb; }
.pl-deploy-card--prem { border-color: #bfdbfe; box-shadow: 0 16px 38px rgba(37,99,235,.10); }
.pl-deploy-card--prem:hover { box-shadow: 0 20px 46px rgba(37,99,235,.16); border-color: #93c5fd; }
.pl-deploy-ic {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  font-size: 23px; margin-bottom: 14px;
  background: color-mix(in srgb, var(--dc) 12%, #fff); border: 1px solid color-mix(in srgb, var(--dc) 22%, #fff);
}
.pl-deploy-tag { display: inline-block; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: #0d9488; margin-bottom: 8px; }
.pl-deploy-card--prem .pl-deploy-tag { color: #2563eb; }
.pl-deploy-card h4 { font-size: 17.5px; font-weight: 700; color: #0a0e14; margin: 0 0 9px; }
.pl-deploy-card p { font-size: 14.5px; line-height: 1.55; color: #5b6573; margin: 0; }
.pl-deploy-card p b { color: #0a0e14; font-weight: 700; }
@media (max-width: 700px) { .pl-deploy-grid { grid-template-columns: 1fr; } }
