@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ============================================================================
   NEXK IT — CSS GLOBAL v2 (2026-05)

   ✅ Rétro-compatible : tes classes existantes (kw-, ks-, kp-, kt-, kc-,
      ki-, kin-, km-, kt-, kv-, kcs-, kfaq2-, kpc-, etc.) restent toutes
      fonctionnelles → tu peux migrer page par page sans pression.

   🆕 Design system v2 (.nk-* classes) :
      - .nk-hero-primary / .nk-hero-secondary
      - .nk-section-header
      - .nk-card-grid-3 / -4 + .nk-card-detail
      - .nk-cta-final (avec variant .nk-cta-final--ci pour Abidjan)
      - .nk-faq-accordion
      - .nk-process-steps
      - .nk-pricing-plans + .nk-pricing-card-list + .nk-pricing-devis
      - .nk-calc-teaser
      - .nk-mynexk-badge / .nk-mynexk-card

   🇨🇮 Variant Abidjan : --ci-orange + .kci-* préservé

   🛒 Hardware page : .nh-* (preorder cards, badge stock, etc.)

   📱 Mobile : 1 seul bloc consolidé en bas

   🌙 Dark mode : étendu aux nouvelles classes
   ============================================================================ */

/* ============================================================================
   1. VARIABLES & RESET
   ============================================================================ */

:root {
  /* Brand */
  --blue: #2563eb;
  --blue2: #3b82f6;
  --blue-dark: #1e40af;
  --navy: #1e3a8a;
  --slate-900: #0f172a;

  /* Text */
  --text: #1f2937;
  --text-light: #475569;
  --text-muted: #64748b;
  --text-dim: #94a3b8;

  /* Surfaces */
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --surface-soft: #f1f5ff;

  /* Borders */
  --border: rgba(0,0,0,.06);
  --border-strong: rgba(0,0,0,.1);

  /* Radius */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 20px;

  /* Shadows */
  --shadow-sm: 0 8px 25px rgba(0,0,0,.05);
  --shadow-md: 0 15px 40px rgba(0,0,0,.08);
  --shadow-lg: 0 25px 60px rgba(0,0,0,.12);

  /* Transitions */
  --transition: all .35s cubic-bezier(.2,.8,.2,1);

  /* Typography */
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Côte d'Ivoire variant */
  --ci-orange: #f97316;
  --ci-orange-dark: #ea580c;
  --ci-orange-light: #fb923c;
  --ci-orange-bg: #fff7ed;
  --ci-orange-soft: #fed7aa;

  /* Hardware variant (vert tech / preorder) */
  --hw-green: #16a34a;
  --hw-amber: #d97706;
  --hw-red: #dc2626;
}

body {
  font-family: var(--font) !important;
  line-height: 1.65;
  color: var(--text);
  background: var(--surface-alt);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-weight: 700; letter-spacing: -.5px; font-family: var(--font) !important; }
h4, h5, h6 { font-family: var(--font) !important; }

/* ════════════════════════════════════════════════════════════
   🔇 AUTO-MASQUAGE DU TITRE WP SUR LES PAGES AVEC HERO NEXK
   ────────────────────────────────────────────────────────────
   Si une page contient .nk-hero-primary OU .nk-hero-secondary,
   on cache automatiquement le titre WP par défaut (Kadence ou autre)
   pour éviter le doublon hero + titre. Pas besoin de toucher
   aux page settings WordPress — ça marche pour TOUTES les pages.
   ════════════════════════════════════════════════════════════ */
body:has(.nk-hero-primary) .entry-header,
body:has(.nk-hero-secondary) .entry-header,
body:has(.nk-hero-primary) .page-header,
body:has(.nk-hero-secondary) .page-header,
body:has(.nk-hero-primary) .kadence-page-header,
body:has(.nk-hero-secondary) .kadence-page-header,
body:has(.nk-hero-primary) .single-page-header,
body:has(.nk-hero-secondary) .single-page-header,
body:has(.nk-hero-primary) > .site > .entry-title,
body:has(.nk-hero-secondary) > .site > .entry-title,
body:has(.nk-hero-primary) .site-main > .entry-title,
body:has(.nk-hero-secondary) .site-main > .entry-title,
body:has(.nk-hero-primary) main > .entry-title,
body:has(.nk-hero-secondary) main > .entry-title,
body:has(.nk-hero-primary) article > header,
body:has(.nk-hero-secondary) article > header {
  display: none !important;
}

/* Fallback navigateurs sans :has() — cible Kadence default classes
   (rare mais au cas où, sur Safari ancien notamment) */
.kadence-no-title .entry-header,
.kadence-hide-title .entry-header,
.no-page-title .entry-header { display: none !important; }

/* ════════════════════════════════════════════════════════════
   🔇 SUPPRIME LE GROS PADDING ENTRE LE MENU ET LE HERO
   ────────────────────────────────────────────────────────────
   Kadence ajoute par défaut du padding-top/margin-top sur le
   wrapper de contenu (.site-content, .entry-content). Quand on
   a un hero NexK qui doit toucher le bord du header, on force
   ce padding à 0 sur les pages avec hero.
   ════════════════════════════════════════════════════════════ */
body:has(.nk-hero-primary) .site-content,
body:has(.nk-hero-secondary) .site-content,
body:has(.nk-hero-primary) .content-area,
body:has(.nk-hero-secondary) .content-area,
body:has(.nk-hero-primary) .site-main,
body:has(.nk-hero-secondary) .site-main,
body:has(.nk-hero-primary) .entry-content,
body:has(.nk-hero-secondary) .entry-content,
body:has(.nk-hero-primary) .content-container,
body:has(.nk-hero-secondary) .content-container {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Le wp-block-group qui wrap le hero ne doit pas avoir de margin-top */
body:has(.nk-hero-primary) .entry-content > .wp-block-group:first-child,
body:has(.nk-hero-secondary) .entry-content > .wp-block-group:first-child {
  margin-top: 0 !important;
}

/* Le hero lui-même : retire l'arrondi en haut pour qu'il colle au header */
.nk-hero-primary,
.nk-hero-secondary {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
p { color: var(--text-light); margin-bottom: 12px; font-family: var(--font) !important; }
html { scroll-behavior: smooth; }

/* SEO helper — invisible mais lu par lecteurs d'écran et bots */
.visually-hidden {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important; clip: rect(0,0,0,0) !important;
  white-space: nowrap !important; border: 0 !important;
}

/* ============================================================================
   2. TOPBAR (desktop only — caché en mobile dans le bloc media)
   ============================================================================ */

body::before {
  content: "Malines · Anvers · Bruxelles · Louvain · Gand · Vilvoorde · Hasselt · Namur · Liège  —  hello@nexk-it.com  ·  +32 471 72 07 15  ·  Réponse sous 24h" !important;
  display: block;
  background: #0f172a;
  color: rgba(255,255,255,.75);
  font-size: 12px;
  text-align: center;
  padding: 8px 20px;
  letter-spacing: .4px !important;
  font-family: var(--font);
}

/* ============================================================================
   3. HEADER DESKTOP (sticky avec brand + nav)
   ============================================================================ */

.site-header,
#masthead {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  background: white !important;
  box-shadow: 0 2px 20px rgba(0,0,0,.06) !important;
  transition: box-shadow .3s ease !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Header desktop compact — réduit le padding vertical Kadence
   (Sprint mai 2026 — fix gros vide visuel) */
.site-header-row-container,
.site-header-row-container-inner,
.site-main-header-wrap,
.site-header-top-wrap,
.site-header-bottom-wrap,
.site-main-header-inner-wrap,
.site-header-section {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  min-height: 0 !important;
}
.header-html-inner {
  padding: 4px 0 !important;
}
.custom-logo { max-height: 55px !important; width: auto !important; }

.main-navigation a {
  font-size: 15px !important;
  font-weight: 600 !important;
  font-family: var(--font) !important;
  color: #1e293b !important;
  padding: 8px 14px !important;
  border-radius: 8px !important;
  transition: all .25s ease !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}
.main-navigation a:hover { color: #2563eb !important; background: #eef4ff !important; }
.main-navigation .current-menu-item > a { color: #2563eb !important; background: #eef4ff !important; }

.main-navigation .sub-menu {
  background: white !important;
  border-radius: 14px !important;
  box-shadow: 0 20px 50px rgba(0,0,0,.12) !important;
  border: 1px solid rgba(0,0,0,.06) !important;
  padding: 8px !important;
  min-width: 220px !important;
  top: calc(100% + 0px) !important;
  margin-top: 0 !important;
}
.main-navigation .sub-menu a {
  font-size: 14px !important;
  color: #475569 !important;
  padding: 10px 14px !important;
  border-radius: 8px !important;
  white-space: nowrap !important;
}
.main-navigation .sub-menu a:hover { background: #eef4ff !important; color: #2563eb !important; }
.main-navigation .sub-menu::before {
  content: "" !important;
  position: absolute !important;
  top: -10px !important; left: 0 !important; right: 0 !important;
  height: 10px !important;
  background: transparent !important;
}
.main-navigation li:hover > .sub-menu,
.main-navigation li:focus-within > .sub-menu {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: all !important;
}
.main-navigation li { transition: all .2s ease !important; }

.header-logo-wrap,
.site-branding,
.kadence-custom-html,
.wp-block-html,
.kadence-header-html,
.wp-block-kadence-html,
.kb-html-wrap {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
}

.header-html-inner {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 6px 0 !important;
}
.header-html-inner p { display: none !important; }

.nk-header-brand {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 14px !important;
  text-decoration: none !important;
  margin: 0 !important; padding: 0 !important;
}
.nk-logo-icon {
  width: 64px !important;
  height: 64px !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  flex-shrink: 0 !important;
  position: relative !important;
  overflow: visible !important;
  margin: 0 !important; padding: 0 !important;
}
.nk-logo-icon::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: url('https://nexk-it.com/wp-content/uploads/2026/04/logo_derVer.png') center/contain no-repeat !important;
}
.nk-brand-divider {
  width: 1.5px !important; height: 32px !important;
  background: linear-gradient(180deg, transparent, #2563eb, transparent) !important;
  flex-shrink: 0 !important;
}
.nk-brand-text {
  display: flex !important; flex-direction: column !important;
  gap: 3px !important;
}
.nk-brand-name {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  line-height: 1 !important;
  letter-spacing: -0.5px !important;
  font-family: var(--font) !important;
  white-space: nowrap !important;
}
.nk-brand-slogan {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #64748b !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  font-family: var(--font) !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

/* ============================================================================
   4. BUTTONS (Gutenberg defaults + custom)
   ============================================================================ */

.wp-block-button__link {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark)) !important;
  color: #fff !important;
  padding: 13px 26px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  box-shadow: 0 8px 25px rgba(37,99,235,.35) !important;
  transition: var(--transition) !important;
}
.wp-block-button__link:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 35px rgba(37,99,235,.45) !important;
}

/* Bouton "myNexK" header (legacy : .kw-bottom-btn) */
.kw-bottom-btn {
  position: relative !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
  color: white !important;
  padding: 12px 22px !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.1) !important;
  transition: all .3s ease !important;
  letter-spacing: .3px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}
.kw-bottom-btn::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important; left: -100% !important;
  width: 60% !important; height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent) !important;
  transition: left .6s ease !important;
  pointer-events: none !important;
}
.kw-bottom-btn:hover::before { left: 160% !important; }
.kw-bottom-btn::after {
  content: "" !important;
  width: 7px !important; height: 7px !important;
  background: #22c55e !important;
  border-radius: 50% !important;
  display: inline-block !important;
  margin-left: 4px !important;
  box-shadow: 0 0 0 2px rgba(34,197,94,.3) !important;
  animation: kw-pulse 2s ease-in-out infinite !important;
  flex-shrink: 0 !important;
}
@keyframes kw-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(34,197,94,.3); }
  50% { box-shadow: 0 0 0 5px rgba(34,197,94,.1); }
}
.kw-bottom-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.15) !important;
  color: white !important;
  text-decoration: none !important;
}

/* ============================================================================
   5. FOOTER & GLOBAL LAYOUT
   ============================================================================ */

.site-footer { background: #0f172a; color: #cbd5e1; padding: 50px 0; }
.site-footer a { color: #94a3b8; text-decoration: none; }
.site-footer a:hover { color: white; }

.wp-block-group { max-width: 1200px; margin: auto; padding: 6px 20px !important; }
.section-alt, .home-bandeau { padding: 0 !important; }
.section-alt .wp-block-group, .home-bandeau .wp-block-group { padding-top: 0 !important; padding-bottom: 0 !important; }

/* ============================================================================
   6. DARK MODE TOGGLE (bouton flottant)
   ============================================================================ */

.dark-mode-toggle {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 99999;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,99,235,.4);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease;
  outline: none;
}
.dark-mode-toggle:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,99,235,.5); }
.dark-mode-toggle svg { width: 22px; height: 22px; transition: all .3s ease; }
.dark-mode-toggle .icon-sun { display: none; }
.dark-mode-toggle .icon-moon { display: block; }
body.dark-mode .dark-mode-toggle .icon-sun { display: block; }
body.dark-mode .dark-mode-toggle .icon-moon { display: none; }

/* ============================================================================
   7. CTA STICKY MOBILE & FLOAT WIDGET
   ============================================================================ */

.nk-sticky-cta {
  display: none;
  position: fixed;
  bottom: 80px; left: 50%;
  transform: translateX(-50%);
  z-index: 9998;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white !important;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  box-shadow: 0 8px 28px rgba(37,99,235,.45);
  white-space: nowrap;
  transition: all .3s ease;
}
.nk-sticky-cta:hover { transform: translateX(-50%) translateY(-2px) !important; box-shadow: 0 12px 36px rgba(37,99,235,.55) !important; color: white !important; }

/* ============================================================================
   8. TRUST BAR (legacy .nk-tb)
   ============================================================================ */

.nk-tb { display: flex !important; align-items: stretch !important; gap: 0 !important; margin: 0 0 4px !important; background: white !important; border-radius: 14px !important; border: 1px solid rgba(0,0,0,.07) !important; box-shadow: 0 2px 16px rgba(0,0,0,.05) !important; overflow: hidden !important; }
.nk-tb-item { flex: 1 !important; display: flex !important; align-items: center !important; gap: 14px !important; padding: 16px 18px !important; border-right: 1px solid rgba(0,0,0,.06) !important; position: relative !important; transition: background .2s !important; overflow: hidden !important; cursor: default !important; }
.nk-tb-item:last-child { border-right: none !important; }
.nk-tb-item::after { content: "" !important; position: absolute !important; bottom: 0; left: 0; right: 0 !important; height: 2px !important; background: linear-gradient(90deg,#1e40af,#3b82f6) !important; transform: scaleX(0) !important; transform-origin: left !important; transition: transform .3s ease !important; }
.nk-tb-item:hover::after { transform: scaleX(1) !important; }
.nk-tb-item:hover { background: linear-gradient(135deg,#0f172a 0%,#1e3a8a 100%) !important; }
.nk-tb-item:hover .nk-tb-ico { background: rgba(59,130,246,.2) !important; border-color: rgba(59,130,246,.4) !important; }
.nk-tb-item:hover .nk-tb-ico svg { stroke: #60a5fa !important; }
.nk-tb-item:hover .nk-tb-num, .nk-tb-item:hover .nk-tb-title { color: #ffffff !important; }
.nk-tb-item:hover .nk-tb-lbl { color: #60a5fa !important; }
.nk-tb-item:hover .nk-tb-val, .nk-tb-item:hover .nk-tb-sub { color: rgba(255,255,255,.6) !important; }
.nk-tb-ico { width: 40px !important; height: 40px !important; border-radius: 10px !important; flex-shrink: 0 !important; display: flex !important; align-items: center !important; justify-content: center !important; transition: background .2s, border-color .2s !important; }
.nk-tb-txt { display: flex !important; flex-direction: column !important; gap: 1px !important; min-width: 0 !important; overflow: hidden !important; }
.nk-tb-num, .nk-tb-title { font-size: 14px !important; font-weight: 800 !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; line-height: 1.3 !important; transition: color .2s !important; }
.nk-tb-lbl { font-size: 10px !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: 1px !important; white-space: nowrap !important; transition: color .2s !important; }
.nk-tb-val, .nk-tb-sub { font-size: 11px !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; transition: color .2s !important; }

/* ============================================================================
   ─── DESIGN SYSTEM v2 ───────────────────────────────────────────────────────
   Classes .nk-* utilisables sur toutes les nouvelles pages.
   À utiliser à la place de .ki-hero, .kcs-hero, .kin-hero, .km-hero, .kt-hero,
   .kv-hero, .kc-main, .kcf-main, .kt6-main, .kv7-main, .km5-main, etc.
   ============================================================================ */

/* ──────────── 9. SECTION HEADER (titre h2 + ligne + p) ──────────── */

.nk-section-header { margin-bottom: 36px; }
.nk-section-header h2 { font-size: 32px; font-weight: 800; color: #1e293b; margin-bottom: 6px; }
.nk-section-header h2::after { content: ""; display: block; width: 50px; height: 4px; margin-top: 10px; background: linear-gradient(90deg, #2563eb, #3b82f6); border-radius: 2px; }
.nk-section-header p { color: #475569; font-size: 16px; max-width: 580px; margin-top: 14px; line-height: 1.65; }

/* Variant centré pour pages où le titre est centré */
.nk-section-header--center { text-align: center; }
.nk-section-header--center h2::after { margin-left: auto; margin-right: auto; }
.nk-section-header--center p { margin-left: auto; margin-right: auto; }

/* Variant CI (Abidjan) — accent orange */
.nk-section-header--ci h2::after { background: linear-gradient(90deg, #f97316, #fb923c); }

/* ──────────── 10. HERO PRIMARY (accueil — image bg + h1 grand) ──────────── */

.nk-hero-primary { position: relative; border-radius: 20px; overflow: hidden; min-height: 520px; display: flex; align-items: center; padding: 80px 60px; }
.nk-hero-primary-bg { position: absolute; inset: 0; background-size: cover; background-position: center center; background-repeat: no-repeat; background-attachment: scroll; z-index: 0; }
.nk-hero-primary-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.55) 45%, rgba(0,0,0,.15) 100%); z-index: 1; }
.nk-hero-primary-content { position: relative; z-index: 2; max-width: 620px; }
.nk-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(37,99,235,.3); border: 1px solid rgba(59,130,246,.5); color: #93c5fd; font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px; letter-spacing: .5px; }
.nk-hero-badge .dot { width: 6px; height: 6px; background: #3b82f6; border-radius: 50%; animation: nkpulse 2s ease-in-out infinite; flex-shrink: 0; }
@keyframes nkpulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.4); } }
.nk-hero-primary h1 { font-size: 48px; font-weight: 800; line-height: 1.12; color: white; margin-bottom: 18px; text-shadow: 0 4px 20px rgba(0,0,0,.4); letter-spacing: -.5px; }
.nk-hero-primary h1 em { font-style: normal; color: #60a5fa; }
.nk-hero-primary-sub { font-size: 17px; color: rgba(255,255,255,.85); margin-bottom: 24px; line-height: 1.6; max-width: 520px; }
.nk-hero-points { list-style: none; padding: 0; margin: 0 0 32px; }
.nk-hero-points li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.9); font-size: 15px; margin-bottom: 10px; }
.nk-hero-points li::before { content: ""; width: 18px; height: 18px; background: rgba(37,99,235,.4); border: 1.5px solid #3b82f6; border-radius: 50%; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%2360a5fa' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.nk-hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.nk-btn-primary { background: linear-gradient(135deg,#2563eb,#1e40af); color: white; padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: 15px; text-decoration: none; box-shadow: 0 8px 25px rgba(37,99,235,.5); transition: all .3s ease; display: inline-block; }
.nk-btn-primary:hover { transform: translateY(-3px); color: white; }
.nk-btn-secondary { background: rgba(255,255,255,.1); color: white; padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 15px; text-decoration: none; border: 1.5px solid rgba(255,255,255,.3); transition: all .3s ease; display: inline-block; backdrop-filter: blur(4px); }
.nk-btn-secondary:hover { background: rgba(255,255,255,.2); color: white; transform: translateY(-3px); }
.nk-hero-note { font-size: 13px; color: rgba(255,255,255,.55); display: flex; align-items: center; gap: 6px; }
.nk-hero-note::before { content: "🔒"; font-size: 12px; }

/* ──────────── 11. HERO SECONDARY (pages services) ──────────── */

.nk-hero-secondary { position: relative; border-radius: 20px; overflow: hidden; min-height: 420px; display: flex; align-items: center; padding: 80px 60px; }
.nk-hero-secondary-bg { position: absolute; inset: 0; background-size: cover; background-position: center center; background-repeat: no-repeat; z-index: 0; }
.nk-hero-secondary-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.55) 45%, rgba(0,0,0,.15) 100%); z-index: 1; }
.nk-hero-secondary-content { position: relative; z-index: 2; max-width: 680px; }
.nk-hero-secondary h1 { font-size: 44px; font-weight: 800; color: white; margin-bottom: 18px; line-height: 1.12; letter-spacing: -.5px; text-shadow: 0 4px 20px rgba(0,0,0,.4); }
.nk-hero-secondary h1 em { font-style: normal; color: #60a5fa; }
.nk-hero-secondary-sub { font-size: 17px; color: rgba(255,255,255,.85); margin-bottom: 28px; line-height: 1.6; max-width: 580px; }
.nk-hero-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.nk-hero-pill { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.9); font-size: 13px; font-weight: 500; padding: 7px 14px; border-radius: 20px; backdrop-filter: blur(4px); }
.nk-hero-pill::before { content: ""; width: 6px; height: 6px; background: #60a5fa; border-radius: 50%; flex-shrink: 0; }

/* ──────────── 12. CARD GRIDS ──────────── */

.nk-card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.nk-card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.nk-card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Card detail (icon + h3 + p) — utilisé pour services, why us, faq cards, etc. */
.nk-card-detail {
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 8px 25px rgba(0,0,0,.05);
  transition: all .3s ease;
}
.nk-card-detail:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37,99,235,.1);
  border-color: rgba(37,99,235,.15);
}
.nk-card-detail-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #eef4ff, #dbeafe);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(37,99,235,.12);
  transition: all .3s ease;
}
.nk-card-detail:hover .nk-card-detail-icon { background: linear-gradient(135deg, #dbeafe, #bfdbfe); transform: scale(1.05); }
.nk-card-detail h3 { font-size: 17px; font-weight: 700; color: #1e293b; margin-bottom: 8px; }
.nk-card-detail p { font-size: 14px; color: #64748b; line-height: 1.65; margin: 0; }

/* Variant CI (orange) */
.nk-card-detail--ci .nk-card-detail-icon { background: linear-gradient(135deg, #fff7ed, #fed7aa); box-shadow: 0 4px 12px rgba(249,115,22,.12); }
.nk-card-detail--ci:hover { box-shadow: 0 16px 40px rgba(249,115,22,.1); border-color: rgba(249,115,22,.15); }

/* ──────────── 13. PROCESS STEPS (4 étapes avec ligne) ──────────── */

.nk-process-steps { margin: 50px 0; }
.nk-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.nk-process-line { position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, #2563eb, #3b82f6); z-index: 0; opacity: .25; }
.nk-process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.nk-process-number { width: 72px; height: 72px; background: linear-gradient(135deg, #2563eb, #1e40af); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 8px 24px rgba(37,99,235,.3); transition: all .3s ease; }
.nk-process-step:hover .nk-process-number { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37,99,235,.45); }
.nk-process-step h3 { font-size: 16px; font-weight: 700; color: #1e293b; margin-bottom: 10px; }
.nk-process-step p { font-size: 13px; color: #64748b; line-height: 1.6; max-width: 180px; margin: 0 auto; }
.nk-process-tag { display: inline-block; background: #eef4ff; color: #2563eb; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 10px; margin-bottom: 10px; }

/* ──────────── 14. FAQ ACCORDION ──────────── */

.nk-faq-accordion { margin: 50px 0; }
.nk-faq-item {
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 4px 14px rgba(0,0,0,.04);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all .3s ease;
}
.nk-faq-item:hover { border-color: rgba(37,99,235,.15); }
.nk-faq-toggle { display: none; }
.nk-faq-q {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  user-select: none;
  transition: color .3s ease;
}
.nk-faq-q::after {
  content: "+";
  font-size: 22px;
  color: #2563eb;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform .3s ease;
  line-height: 1;
}
.nk-faq-toggle:checked ~ .nk-faq-q { color: #2563eb; }
.nk-faq-toggle:checked ~ .nk-faq-q::after { transform: rotate(45deg); }
.nk-faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.75;
  transition: max-height .4s ease, padding .4s ease;
}
.nk-faq-toggle:checked ~ .nk-faq-a { max-height: 500px; padding: 0 24px 22px; }
.nk-faq-item:has(.nk-faq-toggle:checked) {
  border-color: rgba(37,99,235,.2);
  box-shadow: 0 8px 28px rgba(37,99,235,.1);
}

/* ──────────── 15. PRICING PLANS (3 plans Basic/Premium/Custom) ──────────── */

.nk-pricing-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.nk-pricing-plan {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 8px 25px rgba(0,0,0,.06);
  display: flex; flex-direction: column;
  transition: all .3s ease;
  position: relative;
}
.nk-pricing-plan--featured { border: 2px solid #2563eb; box-shadow: 0 16px 40px rgba(37,99,235,.15); }
.nk-pricing-plan-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 10px;
  white-space: nowrap;
  letter-spacing: .5px;
}
.nk-pricing-plan:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(37,99,235,.12); }
.nk-pricing-plan h3 { font-size: 20px; font-weight: 700; color: #1e293b; margin-bottom: 8px; }
.nk-pricing-plan-desc { font-size: 13px; color: #64748b; margin-bottom: 24px; line-height: 1.5; }
.nk-pricing-plan-price { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(0,0,0,.06); }
.nk-pricing-plan-price .amount { font-size: 40px; font-weight: 800; color: #2563eb; line-height: 1; }
.nk-pricing-plan-price .period { font-size: 14px; color: #64748b; margin-top: 4px; }
.nk-pricing-plan-list { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.nk-pricing-plan-list li {
  font-size: 13px;
  color: #475569;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,.04);
  display: flex; align-items: center; gap: 8px;
}
.nk-pricing-plan-list li:last-child { border-bottom: none; }
.nk-pricing-plan-list li.included::before { content: "✓"; color: #059669; font-weight: 700; flex-shrink: 0; }
.nk-pricing-plan-list li.excluded { color: #94a3b8; }
.nk-pricing-plan-list li.excluded::before { content: "✗"; color: #dc2626; flex-shrink: 0; }
.nk-pricing-plan-btn {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s ease;
  margin-top: auto;
}
.nk-pricing-plan:not(.nk-pricing-plan--featured) .nk-pricing-plan-btn {
  background: #f1f5ff;
  color: #2563eb;
  border: 1.5px solid rgba(37,99,235,.2);
}
.nk-pricing-plan:not(.nk-pricing-plan--featured) .nk-pricing-plan-btn:hover {
  background: #e0eaff;
  transform: translateY(-2px);
}
.nk-pricing-plan--featured .nk-pricing-plan-btn {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white !important;
  box-shadow: 0 6px 20px rgba(37,99,235,.35);
}
.nk-pricing-plan--featured .nk-pricing-plan-btn:hover {
  transform: translateY(-2px);
  color: white !important;
}

/* ──────────── 16. PRICING CARD LIST (cards horizontales avec tag prix) ──────────── */

.nk-pricing-card-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.nk-pricing-card-item {
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 8px 25px rgba(0,0,0,.06);
  display: flex; align-items: center; gap: 20px;
  transition: all .3s ease;
}
.nk-pricing-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37,99,235,.1);
  border-color: rgba(37,99,235,.15);
}
.nk-pricing-card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #eef4ff, #dbeafe);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37,99,235,.12);
}
.nk-pricing-card-info h4 { font-size: 15px; font-weight: 700; color: #1e293b; margin-bottom: 4px; }
.nk-pricing-card-info p { font-size: 12px; color: #64748b; margin: 0 0 8px; }
.nk-pricing-card-tag {
  display: inline-block;
  background: #eef4ff;
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 8px;
}

/* ──────────── 17. PRICING DEVIS (gros CTA dark "projet complexe ?") ──────────── */

.nk-pricing-devis {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  border-radius: 16px;
  padding: 32px 36px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.nk-pricing-devis h3 { font-size: 20px; font-weight: 700; color: white; margin-bottom: 6px; }
.nk-pricing-devis p { font-size: 14px; color: rgba(255,255,255,.7); margin: 0; }
.nk-pricing-devis a {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white !important;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,99,235,.4);
  transition: all .3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.nk-pricing-devis a:hover { transform: translateY(-2px); color: white !important; }

/* ──────────── 18. CALC TEASER (le bloc "Évaluez en 60s") ──────────── */

.nk-calc-teaser {
  margin: 50px 0;
  background: linear-gradient(135deg, #f1f5ff, #e8f0ff);
  border-radius: 20px;
  padding: 42px 36px;
  border: 1px solid rgba(37,99,235,.12);
  display: grid; grid-template-columns: 1fr auto;
  gap: 28px; align-items: center;
}
.nk-calc-teaser-left h2 { font-size: 28px; font-weight: 800; color: #1e293b; margin: 0 0 10px; line-height: 1.2; }
.nk-calc-teaser-left h2 em { font-style: normal; color: #2563eb; }
.nk-calc-teaser-left p { font-size: 15px; color: #475569; line-height: 1.7; margin: 0 0 18px; max-width: 580px; }
.nk-calc-teaser-stats { display: flex; gap: 24px; flex-wrap: wrap; }
.nk-calc-teaser-stat { text-align: center; }
.nk-calc-teaser-stat .num { font-size: 28px; font-weight: 800; color: #2563eb; line-height: 1; }
.nk-calc-teaser-stat .lbl { font-size: 12px; color: #64748b; margin-top: 4px; }
.nk-calc-teaser-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; flex-shrink: 0; }
.nk-calc-teaser-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white !important;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,99,235,.35);
  transition: all .3s ease;
  white-space: nowrap;
}
.nk-calc-teaser-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(37,99,235,.45); color: white !important; }
.nk-calc-teaser-note { font-size: 12px; color: #94a3b8; text-align: center; }

/* ──────────── 19. CTA FINAL (le gros bloc dark "votre infra mérite") ──────────── */

.nk-cta-final { margin: 50px 0; }
.nk-cta-final-main {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e40af 100%);
  border-radius: 20px;
  padding: 64px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nk-cta-final-main::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(59,130,246,.2) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(59,130,246,.2) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(59,130,246,.15) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: .6;
}
.nk-cta-final-main > * { position: relative; z-index: 1; }
.nk-cta-final-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,.3);
  border: 1px solid rgba(59,130,246,.4);
  color: #93c5fd;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.nk-cta-final-badge .dot { width: 6px; height: 6px; background: #3b82f6; border-radius: 50%; flex-shrink: 0; animation: nkpulse 2s ease-in-out infinite; }
.nk-cta-final-main h2 { font-size: 42px; font-weight: 800; color: white; margin-bottom: 16px; line-height: 1.15; letter-spacing: -.5px; }
.nk-cta-final-main h2 em { font-style: normal; color: #60a5fa; }
.nk-cta-final-main p { font-size: 17px; color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto 36px; line-height: 1.65; }
.nk-cta-final-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.nk-cta-final-btn-primary {
  background: white;
  color: #1e40af;
  padding: 15px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  transition: all .3s ease;
  display: inline-block;
}
.nk-cta-final-btn-primary:hover { transform: translateY(-3px); color: #1e40af; }
.nk-cta-final-btn-secondary {
  background: rgba(255,255,255,.1);
  color: white;
  padding: 15px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.25);
  transition: all .3s ease;
  display: inline-block;
  backdrop-filter: blur(4px);
}
.nk-cta-final-btn-secondary:hover { background: rgba(255,255,255,.2); color: white; transform: translateY(-3px); }
.nk-cta-final-note { font-size: 13px; color: rgba(255,255,255,.45); }

/* Stats sous le CTA final */
.nk-cta-final-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
.nk-cta-final-stat {
  background: white;
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 4px 14px rgba(0,0,0,.05);
  transition: all .3s ease;
}
.nk-cta-final-stat:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(37,99,235,.1); }
.nk-cta-final-stat-number { font-size: 36px; font-weight: 800; color: #2563eb; line-height: 1; margin-bottom: 6px; }
.nk-cta-final-stat-label { font-size: 13px; color: #64748b; font-weight: 500; }

/* Variant CI (orange) du CTA final */
.nk-cta-final--ci .nk-cta-final-main {
  background: linear-gradient(135deg, #0f172a 0%, #166534 50%, #1e40af 100%);
}
.nk-cta-final--ci .nk-cta-final-badge {
  background: rgba(249,115,22,.25);
  border-color: rgba(251,146,60,.5);
  color: #fed7aa;
}
.nk-cta-final--ci .nk-cta-final-badge .dot { background: #fb923c; }
.nk-cta-final--ci .nk-cta-final-main h2 em { color: #fb923c; }
.nk-cta-final--ci .nk-cta-final-stat-number { color: #f97316; }

/* ============================================================================
   ─── myNexK UTILITIES ───────────────────────────────────────────────────────
   Pour mettre en avant le portail client https://my.nexk-it.com
   ============================================================================ */

.nk-mynexk-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  letter-spacing: .3px;
  white-space: nowrap;
}
.nk-mynexk-badge::before { content: ""; width: 6px; height: 6px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 0 2px rgba(34,197,94,.3); animation: kw-pulse 2s ease-in-out infinite; }

.nk-mynexk-card {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
  text-decoration: none;
  transition: all .3s ease;
  border: 1px solid rgba(59,130,246,.2);
}
.nk-mynexk-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(37,99,235,.25); color: white; }
.nk-mynexk-card-icon {
  width: 48px; height: 48px;
  background: rgba(37,99,235,.25);
  border: 1px solid rgba(59,130,246,.4);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nk-mynexk-card-text { flex: 1; min-width: 0; }
.nk-mynexk-card-text h4 { font-size: 15px; font-weight: 800; color: white; margin-bottom: 3px; line-height: 1.3; }
.nk-mynexk-card-text p { font-size: 12px; color: rgba(255,255,255,.7); margin: 0; line-height: 1.5; }
.nk-mynexk-card-arrow {
  background: white;
  color: #1e40af !important;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform .25s;
}
.nk-mynexk-card:hover .nk-mynexk-card-arrow { transform: translateX(3px); }

/* ============================================================================
   ─── HARDWARE PAGE STYLES (.nh-*) ───────────────────────────────────────────
   Sous-vente de matériel sur facture de précommande
   ============================================================================ */

.nh-preorder-banner {
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
  border-left: 4px solid var(--hw-amber);
  border-radius: 0 14px 14px 0;
  padding: 18px 24px;
  margin: 30px 0;
  display: flex;
  align-items: center;
  gap: 14px;
}
.nh-preorder-banner svg { flex-shrink: 0; color: var(--hw-amber); }
.nh-preorder-banner strong { color: #78350f; font-weight: 800; }
.nh-preorder-banner p { color: #92400e; font-size: 14px; margin: 0; line-height: 1.55; }

.nh-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.nh-product-card {
  background: white;
  border-radius: 16px;
  padding: 24px 22px;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 8px 25px rgba(0,0,0,.05);
  display: flex; flex-direction: column;
  transition: all .3s ease;
  position: relative;
}
.nh-product-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(37,99,235,.1); border-color: rgba(37,99,235,.15); }
.nh-product-card-cat {
  position: absolute;
  top: 14px; right: 14px;
  background: #eef4ff;
  color: #2563eb;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 4px 10px;
  border-radius: 6px;
}
.nh-product-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #eef4ff, #dbeafe);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(37,99,235,.12);
}
.nh-product-card h3 { font-size: 17px; font-weight: 800; color: #1e293b; margin-bottom: 6px; }
.nh-product-card-ref { font-size: 11px; color: #94a3b8; font-weight: 600; margin-bottom: 14px; font-family: 'SF Mono', Consolas, monospace; }
.nh-product-card p { font-size: 13px; color: #64748b; line-height: 1.6; margin: 0 0 16px; flex: 1; }
.nh-product-card-specs { list-style: none; padding: 0; margin: 0 0 18px; }
.nh-product-card-specs li {
  font-size: 12px;
  color: #475569;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0,0,0,.04);
  display: flex; gap: 8px;
}
.nh-product-card-specs li:last-child { border-bottom: none; }
.nh-product-card-specs li::before { content: "›"; color: #2563eb; font-weight: 700; flex-shrink: 0; }
.nh-product-card-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.06);
  margin-bottom: 14px;
}
.nh-product-card-price { font-size: 22px; font-weight: 800; color: #1e293b; line-height: 1; }
.nh-product-card-price-tva { font-size: 11px; color: #94a3b8; }
.nh-product-card-stock {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  margin-bottom: 12px;
  width: fit-content;
}
.nh-product-card-stock--available { background: #dcfce7; color: #166534; }
.nh-product-card-stock--available::before { content: ""; width: 6px; height: 6px; background: #16a34a; border-radius: 50%; }
.nh-product-card-stock--preorder { background: #fef3c7; color: #92400e; }
.nh-product-card-stock--preorder::before { content: ""; width: 6px; height: 6px; background: #d97706; border-radius: 50%; }
.nh-product-card-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white !important;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(37,99,235,.3);
  transition: all .3s ease;
}
.nh-product-card-btn:hover { transform: translateY(-2px); color: white !important; }

/* Filters horizontaux pour catégories hardware */
.nh-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.nh-filter {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1.5px solid rgba(37,99,235,.18);
  background: white;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s ease;
  user-select: none;
}
.nh-filter:hover { border-color: #2563eb; color: #2563eb; background: #eef4ff; }
.nh-filter.active {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(37,99,235,.3);
}

/* ============================================================================
   ─── DARK MODE — Existant + nouvelles classes .nk-* ─────────────────────────
   ============================================================================ */

body.dark-mode {
  --text: #e2e8f0;
  --text-light: #94a3b8;
  background: #0f172a !important;
  color: #e2e8f0 !important;
}
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5 { color: #f1f5f9 !important; }
body.dark-mode p { color: #94a3b8 !important; }
body.dark-mode,
body.dark-mode li,
body.dark-mode span:not(.nk-flag) { color: #e2e8f0 !important; }
body.dark-mode ::selection { background: #2563eb !important; color: white !important; }
body.dark-mode ::-moz-selection { background: #2563eb !important; color: white !important; }

/* Header dark */
body.dark-mode .site-header,
body.dark-mode #masthead { background: #1e293b !important; box-shadow: 0 2px 20px rgba(0,0,0,.3) !important; }
body.dark-mode .nk-brand-name { color: #f1f5f9 !important; }
body.dark-mode .nk-brand-slogan { color: #94a3b8 !important; }
body.dark-mode .nk-logo-icon::before {
  background: url('https://nexk-it.com/wp-content/uploads/2026/04/logo_Sombre.png') center/contain no-repeat !important;
}
body.dark-mode .main-navigation a { color: #e2e8f0 !important; }
body.dark-mode .main-navigation a:hover,
body.dark-mode .main-navigation .current-menu-item > a,
body.dark-mode .main-navigation .current-menu-ancestor > a,
body.dark-mode .main-navigation .current-page-ancestor > a {
  background: rgba(37,99,235,.25) !important;
  color: #60a5fa !important;
}
body.dark-mode .main-navigation .sub-menu { background: #1e293b !important; border-color: rgba(255,255,255,.08) !important; }
body.dark-mode .main-navigation .sub-menu a { color: #94a3b8 !important; }
body.dark-mode .main-navigation .sub-menu a:hover { background: rgba(37,99,235,.2) !important; color: #60a5fa !important; }

/* Containers Gutenberg dark */
body.dark-mode .wp-block-group,
body.dark-mode .wp-block-group__inner-container,
body.dark-mode .wp-block-group__inner-container.is-layout-constrained,
body.dark-mode .is-layout-constrained,
body.dark-mode .is-layout-flow,
body.dark-mode .wp-block-cover,
body.dark-mode .entry-content,
body.dark-mode .entry-content > *,
body.dark-mode main,
body.dark-mode .site-main,
body.dark-mode article,
body.dark-mode .page-content,
body.dark-mode .post-content,
body.dark-mode [class^="wp-container-"],
body.dark-mode [class*=" wp-container-"],
body.dark-mode [id^="wp-container-"],
body.dark-mode .wp-block-group.has-background,
body.dark-mode .wp-block-group.has-white-background-color,
body.dark-mode .wp-block-group.has-base-background-color,
body.dark-mode .kadence-inner-column-inner,
body.dark-mode .kb-row-layout-wrap,
body.dark-mode .kb-row-layout-inner,
body.dark-mode .kb-section-wrap,
body.dark-mode .kb-inner-column-inner { background-color: #0f172a !important; color: #e2e8f0 !important; }
body.dark-mode * {
  --wp--preset--color--base: #0f172a !important;
  --wp--preset--color--contrast: #e2e8f0 !important;
  --wp--preset--color--base-2: #1e293b !important;
}

/* Trust bar dark */
body.dark-mode .nk-tb { background: #0f172a !important; border-color: rgba(255,255,255,.06) !important; box-shadow: 0 2px 16px rgba(0,0,0,.3) !important; }
body.dark-mode .nk-tb-item { border-right-color: rgba(255,255,255,.05) !important; border-bottom-color: rgba(255,255,255,.05) !important; }
body.dark-mode .nk-tb-item:hover { background: linear-gradient(135deg,#1e40af 0%,#1e3a8a 100%) !important; }
body.dark-mode .nk-tb-ico { background: rgba(37,99,235,.15) !important; border-color: rgba(37,99,235,.3) !important; }
body.dark-mode .nk-tb-num,
body.dark-mode .nk-tb-title { color: #f1f5f9 !important; }
body.dark-mode .nk-tb-lbl { color: #3b82f6 !important; }
body.dark-mode .nk-tb-val,
body.dark-mode .nk-tb-sub { color: #94a3b8 !important; }

/* Section header dark */
body.dark-mode .nk-section-header h2 { color: #f1f5f9 !important; }
body.dark-mode .nk-section-header p { color: #94a3b8 !important; }

/* Card detail dark */
body.dark-mode .nk-card-detail {
  background: #1e293b !important;
  border-color: rgba(255,255,255,.06) !important;
}
body.dark-mode .nk-card-detail h3 { color: #f1f5f9 !important; }
body.dark-mode .nk-card-detail p { color: #94a3b8 !important; }
body.dark-mode .nk-card-detail-icon { background: linear-gradient(135deg, rgba(37,99,235,.25), rgba(37,99,235,.4)) !important; }

/* FAQ dark */
body.dark-mode .nk-faq-item { background: #1e293b !important; border-color: rgba(255,255,255,.06) !important; }
body.dark-mode .nk-faq-q { color: #e2e8f0 !important; }
body.dark-mode .nk-faq-a { color: #94a3b8 !important; }
body.dark-mode .nk-faq-item:has(.nk-faq-toggle:checked) { border-color: rgba(37,99,235,.3) !important; }

/* Process dark */
body.dark-mode .nk-process-step h3 { color: #f1f5f9 !important; }
body.dark-mode .nk-process-step p { color: #94a3b8 !important; }
body.dark-mode .nk-process-tag { background: rgba(37,99,235,.25) !important; color: #60a5fa !important; }

/* Pricing plans dark */
body.dark-mode .nk-pricing-plan { background: #1e293b !important; border-color: rgba(255,255,255,.06) !important; }
body.dark-mode .nk-pricing-plan h3 { color: #f1f5f9 !important; }
body.dark-mode .nk-pricing-plan-desc,
body.dark-mode .nk-pricing-plan-list li { color: #94a3b8 !important; }
body.dark-mode .nk-pricing-plan-price .amount { color: #60a5fa !important; }
body.dark-mode .nk-pricing-plan-price .period { color: #94a3b8 !important; }
body.dark-mode .nk-pricing-plan:not(.nk-pricing-plan--featured) .nk-pricing-plan-btn {
  background: #162032 !important;
  color: #60a5fa !important;
  border-color: rgba(37,99,235,.3) !important;
}

/* Pricing card list dark */
body.dark-mode .nk-pricing-card-item { background: #1e293b !important; border-color: rgba(255,255,255,.06) !important; }
body.dark-mode .nk-pricing-card-info h4 { color: #f1f5f9 !important; }
body.dark-mode .nk-pricing-card-info p { color: #94a3b8 !important; }
body.dark-mode .nk-pricing-card-tag { background: rgba(37,99,235,.2) !important; color: #60a5fa !important; }
body.dark-mode .nk-pricing-card-icon { background: linear-gradient(135deg, rgba(37,99,235,.25), rgba(37,99,235,.4)) !important; }

/* Calc teaser dark */
body.dark-mode .nk-calc-teaser { background: linear-gradient(135deg, #162032, #1e293b) !important; border-color: rgba(37,99,235,.15) !important; }
body.dark-mode .nk-calc-teaser-left h2 { color: #f1f5f9 !important; }
body.dark-mode .nk-calc-teaser-left p { color: #94a3b8 !important; }
body.dark-mode .nk-calc-teaser-stat .num { color: #60a5fa !important; }
body.dark-mode .nk-calc-teaser-stat .lbl { color: #94a3b8 !important; }

/* CTA final stats dark */
body.dark-mode .nk-cta-final-stat { background: #1e293b !important; border-color: rgba(255,255,255,.06) !important; }
body.dark-mode .nk-cta-final-stat-number { color: #60a5fa !important; }
body.dark-mode .nk-cta-final-stat-label { color: #94a3b8 !important; }

/* Hardware dark */
body.dark-mode .nh-product-card { background: #1e293b !important; border-color: rgba(255,255,255,.06) !important; }
body.dark-mode .nh-product-card h3 { color: #f1f5f9 !important; }
body.dark-mode .nh-product-card p { color: #94a3b8 !important; }
body.dark-mode .nh-product-card-ref { color: #64748b !important; }
body.dark-mode .nh-product-card-cat { background: rgba(37,99,235,.2) !important; color: #60a5fa !important; }
body.dark-mode .nh-product-card-icon { background: linear-gradient(135deg, rgba(37,99,235,.25), rgba(37,99,235,.4)) !important; }
body.dark-mode .nh-product-card-price { color: #f1f5f9 !important; }
body.dark-mode .nh-product-card-specs li { color: #94a3b8 !important; }
body.dark-mode .nh-filter { background: #1e293b !important; color: #94a3b8 !important; border-color: rgba(255,255,255,.1) !important; }
body.dark-mode .nh-filter:hover { background: rgba(37,99,235,.2) !important; color: #60a5fa !important; border-color: rgba(37,99,235,.3) !important; }

/* myNexK dark */
body.dark-mode .nk-mynexk-card { background: linear-gradient(135deg, #1e3a8a, #1e40af) !important; }

/* ============================================================================
   ─── LEGACY DARK MODE (rétro-compat) ────────────────────────────────────────
   Toutes tes anciennes classes — préservé tel quel pour zéro régression.
   ============================================================================ */

body.dark-mode .wp-block-group p,
body.dark-mode .wp-block-group li,
body.dark-mode .wp-block-group span { color: #94a3b8 !important; }
body.dark-mode .wp-block-group h1,
body.dark-mode .wp-block-group h2,
body.dark-mode .wp-block-group h3,
body.dark-mode .wp-block-group h4 { color: #f1f5f9 !important; }
body.dark-mode [class*="-header"] h2 { color: #f1f5f9 !important; }
body.dark-mode [class*="-header"] p { color: #94a3b8 !important; }
body.dark-mode .trust-bar-new { background: #1e293b !important; border-color: rgba(255,255,255,.06) !important; }
body.dark-mode .trust-item-new,
body.dark-mode .trust-item-new span { color: #e2e8f0 !important; }
body.dark-mode .section-alt,
body.dark-mode .home-bandeau { background: #0f172a !important; }
body.dark-mode [class*="-card"]:not([class*="-hero"]):not([class*="kf-"]) { background: #1e293b !important; border-color: rgba(255,255,255,.06) !important; }
body.dark-mode [class*="-card"] h3,
body.dark-mode [class*="-card"] h4 { color: #f1f5f9 !important; }
body.dark-mode [class*="-card"] p { color: #94a3b8 !important; }
body.dark-mode [class*="-section"],
body.dark-mode [class*="-detail"],
body.dark-mode [class*="-pricing"],
body.dark-mode [class*="-process"] { background: transparent !important; }

/* Heroes legacy en dark — préservés */
body.dark-mode .kab-hero,
body.dark-mode .kab-hero-content,
body.dark-mode .kab-hero-badge,
body.dark-mode .kab-hero-sub,
body.dark-mode .kab-hero-pills { background: transparent !important; background-color: transparent !important; }
body.dark-mode .kab-hero h1 { color: white !important; }
body.dark-mode .kab-hero h1 em { color: #60a5fa !important; }
body.dark-mode .kab-hero-sub { color: rgba(255,255,255,.85) !important; }
body.dark-mode .kab-hero-badge { background: rgba(37,99,235,.3) !important; color: #93c5fd !important; }
body.dark-mode .kab-hero-pill { background: rgba(255,255,255,.1) !important; color: rgba(255,255,255,.9) !important; }

/* CTA gradients dark — préservé */
body.dark-mode .kfaq2-cta { background: linear-gradient(135deg,#0f172a,#1e3a8a) !important; }
body.dark-mode .kfaq2-cta h3 { color: #f1f5f9 !important; }
body.dark-mode .kfaq2-cta p { color: rgba(255,255,255,.65) !important; }

/* ============================================================================
   ─── MOBILE RESPONSIVE (consolidé) ──────────────────────────────────────────
   Tous les breakpoints regroupés pour faciliter la maintenance.
   ============================================================================ */

/* Logo mobile compact */
@media (max-width: 600px) {
  .nk-logo-icon { width: 98px !important; height: 98px !important; }
  .nk-brand-name { font-size: 22px !important; }
  .nk-brand-slogan { font-size: 10px !important; }
}

/* Topbar mobile : version compacte */
@media (max-width: 640px) {
  body::before {
    content: "+32 471 72 07 15  ·  Réponse sous 24h" !important;
    font-size: 11px !important;
    padding: 6px 12px !important;
  }
}

/* Sticky CTA mobile activé */
@media (max-width: 768px) { .nk-sticky-cta { display: block; } }

/* ───── Design system .nk-* mobile ───── */

@media (max-width: 900px) {
  /* Hero primary mobile */
  .nk-hero-primary {
    padding: 24px 16px 22px !important;
    min-height: unset !important;
    height: auto !important;
    align-items: flex-start !important;
    border-radius: 18px !important;
  }
  .nk-hero-primary-bg { background-attachment: scroll !important; background-position: 65% center !important; }
  .nk-hero-primary-overlay { background: linear-gradient(180deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.60) 40%, rgba(0,0,0,.74) 100%) !important; }
  .nk-hero-primary-content { max-width: 100% !important; }
  .nk-hero-primary h1 { font-size: 24px !important; line-height: 1.16 !important; margin-bottom: 12px !important; }
  .nk-hero-primary-sub { font-size: 14px !important; line-height: 1.55 !important; margin-bottom: 16px !important; max-width: 100% !important; }
  .nk-hero-points { margin-bottom: 18px !important; }
  .nk-hero-points li { font-size: 13px !important; line-height: 1.45 !important; margin-bottom: 8px !important; }
  .nk-hero-buttons { flex-direction: column !important; gap: 10px !important; margin-bottom: 14px !important; }
  .nk-btn-primary, .nk-btn-secondary {
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 13px 18px !important;
    font-size: 14px !important;
  }
  .nk-hero-badge { font-size: 11px !important; padding: 5px 10px !important; margin-bottom: 12px !important; }
  .nk-hero-note { font-size: 11px !important; }

  /* Hero secondary mobile */
  .nk-hero-secondary {
    padding: 24px 16px 22px !important;
    min-height: unset !important;
    height: auto !important;
    align-items: flex-start !important;
    border-radius: 18px !important;
  }
  .nk-hero-secondary-bg { background-attachment: scroll !important; background-position: 65% center !important; }
  .nk-hero-secondary-overlay { background: linear-gradient(180deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.58) 42%, rgba(0,0,0,.76) 100%) !important; }
  .nk-hero-secondary-content { max-width: 100% !important; }
  .nk-hero-secondary h1 { font-size: 24px !important; line-height: 1.16 !important; margin-bottom: 12px !important; }
  .nk-hero-secondary-sub { font-size: 14px !important; line-height: 1.55 !important; margin-bottom: 18px !important; max-width: 100% !important; }
  .nk-hero-pills { gap: 8px !important; }
  .nk-hero-pill { font-size: 12px !important; padding: 6px 10px !important; }

  /* Card grids mobile */
  .nk-card-grid-2,
  .nk-card-grid-3,
  .nk-card-grid-4 { grid-template-columns: 1fr !important; gap: 14px !important; }
  .nk-card-detail { padding: 22px 18px !important; }

  /* Process mobile */
  .nk-process-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 28px !important; }
  .nk-process-line { display: none !important; }
  .nk-process-step p { max-width: 100% !important; font-size: 12px !important; }
  .nk-process-number { width: 56px !important; height: 56px !important; margin-bottom: 14px !important; }
  .nk-process-step h3 { font-size: 14px !important; }

  /* FAQ mobile */
  .nk-faq-q { padding: 16px 18px !important; font-size: 14px !important; }
  .nk-faq-a { padding: 0 18px !important; font-size: 13px !important; }
  .nk-faq-toggle:checked ~ .nk-faq-a { padding: 0 18px 16px !important; }

  /* Pricing plans mobile */
  .nk-pricing-plans { grid-template-columns: 1fr !important; gap: 16px !important; }
  .nk-pricing-plan { padding: 28px 20px !important; }
  .nk-pricing-plan-price .amount { font-size: 32px !important; }

  /* Pricing card list mobile */
  .nk-pricing-card-list { grid-template-columns: 1fr !important; }

  /* Pricing devis mobile */
  .nk-pricing-devis { flex-direction: column !important; padding: 24px 20px !important; border-radius: 14px !important; gap: 16px !important; }
  .nk-pricing-devis a { text-align: center !important; width: 100% !important; box-sizing: border-box !important; padding: 13px 16px !important; }

  /* Calc teaser mobile */
  .nk-calc-teaser {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    padding: 30px 22px !important;
  }
  .nk-calc-teaser-left p { max-width: 100% !important; margin-left: auto !important; margin-right: auto !important; }
  .nk-calc-teaser-stats { justify-content: center !important; gap: 18px !important; }
  .nk-calc-teaser-btn { width: 100% !important; justify-content: center !important; }

  /* CTA final mobile */
  .nk-cta-final-main { padding: 36px 20px !important; border-radius: 14px !important; }
  .nk-cta-final-main h2 { font-size: 22px !important; line-height: 1.2 !important; }
  .nk-cta-final-main p { font-size: 14px !important; margin-bottom: 24px !important; }
  .nk-cta-final-buttons { flex-direction: column !important; align-items: stretch !important; gap: 10px !important; margin-bottom: 16px !important; }
  .nk-cta-final-btn-primary, .nk-cta-final-btn-secondary { text-align: center !important; padding: 14px 16px !important; font-size: 14px !important; }
  .nk-cta-final-stats { grid-template-columns: repeat(3, 1fr) !important; gap: 10px !important; margin-top: 16px !important; }
  .nk-cta-final-stat { padding: 18px 10px !important; }
  .nk-cta-final-stat-number { font-size: 26px !important; }
  .nk-cta-final-stat-label { font-size: 11px !important; }

  /* Section header mobile */
  .nk-section-header h2 { font-size: 24px !important; }
  .nk-section-header p { font-size: 14px !important; }

  /* myNexK card mobile */
  .nk-mynexk-card { flex-direction: column; align-items: flex-start; gap: 12px; padding: 20px; }
  .nk-mynexk-card-arrow { width: 100%; text-align: center; padding: 10px 14px; }

  /* Hardware grid mobile */
  .nh-product-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .nh-product-card { padding: 20px 18px !important; }
  .nh-filters { gap: 6px !important; overflow-x: auto !important; flex-wrap: nowrap !important; padding-bottom: 6px !important; -webkit-overflow-scrolling: touch !important; scrollbar-width: none !important; }
  .nh-filters::-webkit-scrollbar { display: none !important; }
  .nh-filter { flex: 0 0 auto !important; white-space: nowrap !important; }
}

@media (max-width: 600px) {
  /* CTA stats sur 3 cols sur mobile small */
  .nk-cta-final-stats { grid-template-columns: 1fr !important; }
  /* Hero primary plus petit */
  .nk-hero-primary { padding: 22px 14px 20px !important; }
  .nk-hero-primary h1 { font-size: 22px !important; }
  .nk-hero-primary-sub { font-size: 13px !important; }
}

/* ============================================================================
   ─── LEGACY MOBILE (rétro-compat) ───────────────────────────────────────────
   Toutes tes anciennes règles mobile préservées tel quel pour zéro régression.
   ============================================================================ */

@media (max-width: 768px) {
  :root { --radius: 12px; --radius-sm: 8px; }

  .wp-block-group { padding-left: 16px !important; padding-right: 16px !important; }
  h2 { font-size: 24px !important; line-height: 1.25 !important; }
  h3 { font-size: 18px !important; }

  /* ── HEROES legacy ── */
  .k-hero, .ka-hero, .kab-hero,
  .kfaq-hero, .kco-hero, .ks-hero,
  .kcs-hero, .ki-hero, .kin-hero,
  .km-hero, .kt-hero, .kv-hero,
  .kpc-hero {
    padding: 32px 20px 28px !important;
    min-height: unset !important;
    height: auto !important;
    align-items: flex-start !important;
    border-radius: 14px !important;
  }
  .k-hero-bg, .ka-hero-bg, .kab-hero-bg,
  .kfaq-hero-bg, .kco-hero-bg, .ks-hero-bg,
  .kcs-hero-bg, .ki-hero-bg, .kin-hero-bg,
  .km-hero-bg, .kt-hero-bg, .kv-hero-bg {
    background-attachment: scroll !important;
    background-position: 65% center !important;
  }
  .k-hero-overlay, .ka-hero-overlay, .kab-hero-overlay,
  .kfaq-hero-overlay, .kco-hero-overlay, .ks-hero-overlay,
  .kcs-hero-overlay, .ki-hero-overlay, .kin-hero-overlay,
  .km-hero-overlay, .kt-hero-overlay, .kv-hero-overlay {
    background: linear-gradient(160deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.80) 55%, rgba(0,0,0,.60) 100%) !important;
  }
  .k-hero-content, .ka-hero-content, .kab-hero-content,
  .kfaq-hero-content, .kco-hero-content, .ks-hero-content,
  .kcs-hero-content, .ki-hero-content, .kin-hero-content,
  .km-hero-content, .kt-hero-content, .kv-hero-content { max-width: 100% !important; }

  .k-hero h1, .ka-hero h1, .kab-hero h1,
  .kfaq-hero h1, .kco-hero h1, .ks-hero h1,
  .kcs-hero h1, .ki-hero h1, .kin-hero h1,
  .km-hero h1, .kt-hero h1, .kv-hero h1, .kpc-hero h1 {
    font-size: 24px !important; line-height: 1.2 !important; margin-bottom: 10px !important;
  }
  .k-hero-sub, .ka-hero-sub, .kab-hero-sub,
  .kfaq-hero-sub, .kco-hero-sub, .ks-hero-sub,
  .kcs-hero-sub, .ki-hero-sub, .kin-hero-sub,
  .km-hero-sub, .kt-hero-sub, .kv-hero-sub {
    font-size: 13px !important; margin-bottom: 16px !important; line-height: 1.55 !important;
  }

  /* Buttons heroes legacy */
  .k-hero-buttons, .kcs-hero-buttons,
  .ki-hero-buttons, .kin-hero-buttons,
  .km-hero-buttons, .kt-hero-buttons,
  .kv-hero-buttons, .ks-hero-pills,
  .kab-hero-pills, .ka-hero-pills {
    flex-direction: column !important; gap: 8px !important; margin-bottom: 12px !important;
  }
  .k-btn-primary, .k-btn-secondary,
  .kcs-btn-primary, .kcs-btn-secondary,
  .ki-btn-primary, .ki-btn-secondary,
  .kin-btn-primary, .kin-btn-secondary,
  .km-btn-primary, .km-btn-secondary,
  .kt-btn-primary, .kt-btn-secondary,
  .kv-btn-primary, .kv-btn-secondary {
    text-align: center !important; width: 100% !important; box-sizing: border-box !important; padding: 12px 16px !important; font-size: 14px !important;
  }

  /* Sections legacy margins */
  .ks-section, .kp-section, .kt-section, .kw-section,
  .kz-section, .kc-section, .ka-steps, .ka-inc,
  .nf-wrap, .kco-sec, .kco-zone, .ki-detail, .ki-pricing,
  .ki-faq, .kpi-section, .kin-detail, .kin-pricing,
  .kin-faq, .kin-process, .km-detail, .km-pricing,
  .km-faq, .km-process, .kv-detail, .kv-pricing,
  .kpv-section, .kv-faq, .kcs-detail, .kcs-pricing,
  .kcs-faq, .kt-detail, .ktl-faq, .ksp-section,
  .kq-section, .ktc-section, .kfaq-detail, .kfaq2-section,
  .kcf-section, .kap-adn, .kap-vision, .about-timeline,
  .about-skills, .kap-founder { margin-top: 24px !important; margin-bottom: 24px !important; }

  /* Section headers legacy */
  .ks-header h2, .kp-header h2, .kt-header h2,
  .kw-header h2, .kz-header h2, .ki-detail-header h2,
  .ki-pricing-header h2, .ki-faq-header h2,
  .kin-detail-header h2, .kin-pricing-header h2,
  .kin-faq-header h2, .kin-process-header h2,
  .km-detail-header h2, .km-pricing-header h2,
  .km-faq-header h2, .km-process-header h2,
  .kv-detail-header h2, .kv-pricing-header h2,
  .kv-faq-header h2, .kpv-header h2,
  .kcs-detail-header h2, .kcs-pricing-header h2,
  .kcs-faq-header h2, .ksp-header h2,
  .kq-header h2, .ktc-header h2, .kfaq-detail-header h2,
  .kfaq2-header h2, .ka-steps-header h2, .ka-inc-hd h2,
  .nf-hd h2, .kco-zone-hd h2, .kap-adn-header h2,
  .about-timeline-header h2, .about-skills-header h2,
  .kap-vision h2, .kap-founder-content h2 { font-size: 22px !important; }

  /* Grilles legacy en 1 col mobile */
  .ks-grid-top, .ks-grid-bottom,
  .kw-grid, .kap-adn-grid,
  .ksp-grid, .kq-grid,
  .kfaq-detail-grid, .kfaq2-section .kfaq2-group,
  .kcs-detail-grid, .kcs-pricing-grid,
  .ki-detail-grid, .ki-pricing-grid,
  .kin-detail-grid, .kin-pricing-grid,
  .kv-detail-grid, .kv-pricing-grid,
  .kco-zone-grid, .kz-grid,
  .ask-grid, .ka-inc-grid, .ka-inc-stats,
  .kc-stats, .ktc-table-wrap { grid-template-columns: 1fr !important; gap: 14px !important; }

  /* Cards legacy padding mobile */
  .kw-card, .ks-card, .kap-adn-card,
  .kfaq-detail-card, .kcs-detail-card,
  .ki-detail-card, .kin-detail-card,
  .km-detail-card, .kv-detail-card,
  .kq-card { padding: 22px 18px !important; }

  /* Process steps legacy */
  .kp-grid, .kpi-grid, .kpv-grid,
  .kin-process-grid, .km-process-grid, .ktl-process-grid {
    grid-template-columns: repeat(2, 1fr) !important; gap: 28px !important;
  }
  .kp-line, .kpi-line, .kpv-line,
  .kin-process-line, .km-process-line { display: none !important; }
  .kp-step p, .kpi-step p, .kpv-step p,
  .kin-process-step p, .km-process-step p { max-width: 100% !important; font-size: 12px !important; }
  .kp-number, .kpi-number, .kpv-number,
  .kin-process-number, .km-process-number {
    width: 56px !important; height: 56px !important; margin-bottom: 14px !important;
  }
  .kp-step h3, .kpi-step h3, .kpv-step h3,
  .kin-process-step h3, .km-process-step h3 { font-size: 14px !important; }

  /* CTA finales legacy mobile */
  .kc-main, .kcf-main, .kc2-main, .kc3-main,
  .km5-main, .kt6-main, .kv7-main {
    padding: 36px 20px !important; border-radius: 14px !important;
  }
  .kc-main h2, .kcf-main h2, .kc2-main h2, .kc3-main h2,
  .km5-main h2, .kt6-main h2, .kv7-main h2 { font-size: 22px !important; line-height: 1.2 !important; }
  .kc-main p, .kcf-main p, .kc2-main p, .kc3-main p,
  .km5-main p, .kt6-main p, .kv7-main p { font-size: 14px !important; margin-bottom: 24px !important; }
  .kc-buttons, .kcf-buttons, .kc2-buttons, .kc3-buttons,
  .km5-buttons, .kt6-buttons, .kv7-buttons {
    flex-direction: column !important; align-items: stretch !important; gap: 10px !important; margin-bottom: 16px !important;
  }
  .kc-btn-primary, .kc-btn-secondary,
  .kcf-btn-primary, .kcf-btn-secondary,
  .kc2-btn-primary, .kc2-btn-secondary,
  .kc3-btn-primary, .kc3-btn-secondary,
  .km5-btn-primary, .km5-btn-secondary,
  .kt6-btn-primary, .kt6-btn-secondary,
  .kv7-btn-primary, .kv7-btn-secondary {
    text-align: center !important; padding: 14px 16px !important; font-size: 14px !important;
  }
  .kc-stats, .kc2-stats, .kc3-stats,
  .km5-stats, .kt6-stats, .kv7-stats {
    grid-template-columns: repeat(3, 1fr) !important; gap: 10px !important; margin-top: 16px !important;
  }
  .kc-stat, .kc2-stat, .kc3-stat,
  .km5-stat, .kt6-stat, .kv7-stat { padding: 18px 10px !important; }
  .kc-stat-number, .kc2-stat-number, .kc3-stat-number,
  .km5-stat-number, .kt6-stat-number, .kv7-stat-number { font-size: 26px !important; }
  .kc-stat-label, .kc2-stat-label, .kc3-stat-label,
  .km5-stat-label, .kt6-stat-label, .kv7-stat-label { font-size: 11px !important; line-height: 1.35 !important; }

  /* FAQ legacy mobile */
  .ki-faq-q, .kin-faq-q, .km-faq-q,
  .kv-faq-q, .kcs-faq-q, .ktl-faq-q,
  .kfaq2-q { padding: 16px 18px !important; font-size: 14px !important; }
  .ki-faq-a, .kin-faq-a, .km-faq-a,
  .kv-faq-a, .kcs-faq-a, .ktl-faq-a,
  .kfaq2-a { font-size: 13px !important; padding: 0 18px !important; }
  .ki-faq-toggle:checked ~ .ki-faq-a,
  .kin-faq-toggle:checked ~ .kin-faq-a,
  .km-faq-toggle:checked ~ .km-faq-a,
  .kv-faq-toggle:checked ~ .kv-faq-a,
  .kcs-faq-toggle:checked ~ .kcs-faq-a,
  .ktl-faq-toggle:checked ~ .ktl-faq-a,
  .kfaq2-toggle:checked ~ .kfaq2-a { padding: 0 18px 16px !important; }

  /* Trust bar legacy mobile */
  .nk-tb { flex-wrap: wrap !important; }
  .nk-tb-item {
    flex: calc(50% - 1px) !important;
    border-bottom: 1px solid rgba(0,0,0,.06) !important;
    padding: 12px 14px !important;
  }
  .nk-tb-item:nth-child(even) { border-right: none !important; }
  .nk-tb-num, .nk-tb-title { font-size: 12px !important; }
  .nk-tb-lbl { font-size: 9px !important; }
  .nk-tb-val, .nk-tb-sub { font-size: 10px !important; }
  .nk-tb-ico { width: 34px !important; height: 34px !important; border-radius: 8px !important; }

  /* Sticky CTA mobile activé */
  .nk-sticky-cta { bottom: 72px !important; font-size: 13px !important; padding: 11px 22px !important; }
}

@media (max-width: 480px) {
  .nk-tb-item { flex: 100% !important; border-right: none !important; }
}

/* ============================================================================
   ─── MOBILE HEADER CUSTOM (slide menu) ──────────────────────────────────────
   Préservé tel quel.
   ============================================================================ */

.nk-mobile-header-wrap { display: none; }

.nk-m-burger {
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  cursor: pointer !important;
  border-radius: 10px !important;
  background: #f1f5f9 !important;
  border: none !important;
  flex-shrink: 0 !important;
  transition: background .2s !important;
}
.nk-m-burger span {
  display: block !important;
  width: 22px !important;
  height: 2px !important;
  background: #1e293b !important;
  border-radius: 2px !important;
  transition: all .3s ease !important;
}
.nk-m-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg) !important; }
.nk-m-burger.open span:nth-child(2) { opacity: 0 !important; transform: scaleX(0) !important; }
.nk-m-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) !important; }

@media (max-width: 1024px) {
  .nk-mobile-header-wrap { display: block; }
  #masthead, .site-header { display: none !important; }
  body::before { display: none !important; }

  .nk-m-topbar { background: #0f172a; color: rgba(255,255,255,.7); font-size: 12px; text-align: center; padding: 7px 16px; letter-spacing: .3px; }
  .nk-m-topbar a { color: rgba(255,255,255,.7); text-decoration: none; }

  .nk-m-header { position: sticky; top: 0; z-index: 99998; background: white; box-shadow: 0 2px 16px rgba(0,0,0,.08); display: flex; align-items: center; justify-content: space-between; padding: 10px 18px; gap: 12px; }
  .nk-m-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex: 1; }
  .nk-m-logo {
    width: 74px !important;
    height: 74px !important;
    background: url('https://nexk-it.com/wp-content/uploads/2026/04/logo_derVer.png') center/contain no-repeat !important;
    flex-shrink: 0 !important;
  }
  .nk-m-divider { width: 1.5px; height: 30px; background: linear-gradient(180deg, transparent, #2563eb, transparent); flex-shrink: 0; }
  .nk-m-text { display: flex; flex-direction: column; gap: 2px; }
  .nk-m-name { font-size: 18px; font-weight: 800; color: #0f172a; line-height: 1; font-family: var(--font); letter-spacing: -.3px; }
  .nk-m-slogan { font-size: 9px; font-weight: 600; color: #64748b; letter-spacing: 1.8px; text-transform: uppercase; font-family: var(--font); line-height: 1; }

  .nk-m-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 99998; opacity: 0; pointer-events: none; transition: opacity .3s ease; backdrop-filter: blur(2px); }
  .nk-m-overlay.open { opacity: 1; pointer-events: all; }

  .nk-m-menu { position: fixed; top: 0; right: -100%; width: min(320px, 85vw); height: 100dvh; background: #0f172a; z-index: 99999; display: flex; flex-direction: column; transition: right .35s cubic-bezier(.2,.8,.2,1); overflow-y: auto; }
  .nk-m-menu.open { right: 0; }
  .nk-m-menu-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nk-m-menu-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nk-m-menu-logo-icon {
    width: 36px !important;
    height: 36px !important;
    background: url('https://nexk-it.com/wp-content/uploads/2026/04/logo_Sombre.png') center/contain no-repeat !important;
  }
  .nk-m-menu-logo-name { font-size: 16px; font-weight: 800; color: #f1f5f9; font-family: var(--font); }
  .nk-m-close { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #94a3b8; font-size: 20px; line-height: 1; transition: background .2s; }
  .nk-m-close:hover { background: rgba(255,255,255,.15); color: white; }
  .nk-m-nav { flex: 1; padding: 12px 0; }
  .nk-m-nav a { display: flex; align-items: center; justify-content: space-between; padding: 15px 24px; color: #e2e8f0; text-decoration: none; font-size: 16px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.04); transition: all .2s; }
  .nk-m-nav a:hover { background: rgba(37,99,235,.15); color: #60a5fa; padding-left: 30px; }
  .nk-m-nav a svg { opacity: .4; transition: opacity .2s; }
  .nk-m-nav a:hover svg { opacity: 1; }
  .nk-m-sub-toggle { display: flex; align-items: center; justify-content: space-between; padding: 15px 24px; color: #e2e8f0; font-size: 16px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.04); cursor: pointer; transition: all .2s; user-select: none; }
  .nk-m-sub-toggle:hover { background: rgba(37,99,235,.15); color: #60a5fa; }
  .nk-m-chevron { transition: transform .3s ease; }
  .nk-m-sub-toggle.open .nk-m-chevron { transform: rotate(180deg); }
  .nk-m-submenu { max-height: 0; overflow: hidden; transition: max-height .35s ease; background: rgba(0,0,0,.2); }
  .nk-m-submenu.open { max-height: 400px; }
  .nk-m-submenu a { padding: 12px 24px 12px 36px !important; font-size: 14px !important; font-weight: 500 !important; color: #94a3b8 !important; border-bottom: 1px solid rgba(255,255,255,.03) !important; }
  .nk-m-submenu a:hover { color: #60a5fa !important; padding-left: 42px !important; }
  .nk-m-submenu a::before { content: "→ "; color: #2563eb; }

  .nk-m-menu-cta { padding: 20px; border-top: 1px solid rgba(255,255,255,.06); }
  .nk-m-cta-btn { display: block; background: linear-gradient(135deg, #2563eb, #1e40af); color: white !important; text-align: center; padding: 14px 20px; border-radius: 10px; font-weight: 700; font-size: 14px; text-decoration: none !important; box-shadow: 0 6px 20px rgba(37,99,235,.4); margin-bottom: 10px; transition: all .3s; }
  .nk-m-cta-btn:hover { transform: translateY(-2px); }
  .nk-m-contact-row { display: flex; align-items: center; justify-content: center; gap: 8px; color: #64748b; font-size: 12px; text-decoration: none; }
  .nk-m-contact-row:hover { color: #94a3b8; }

  body.dark-mode .nk-m-header { background: #1e293b !important; }
  body.dark-mode .nk-m-name { color: #f1f5f9 !important; }
  body.dark-mode .nk-m-slogan { color: #94a3b8 !important; }
  body.dark-mode .nk-m-logo {
    background: url('https://nexk-it.com/wp-content/uploads/2026/04/logo_Sombre.png') center/contain no-repeat !important;
  }
  body.dark-mode .nk-m-burger { background: rgba(255,255,255,.08) !important; }
  body.dark-mode .nk-m-burger span { background: #e2e8f0 !important; }

  .nk-mobile-header-wrap + * { margin-top: 0 !important; }
  .wp-block-group:first-of-type { margin-top: 0 !important; padding-top: 0 !important; }
}

/* ============================================================================
   ─── DARK MODE PATCH v2 — sections vitrine non couvertes ───────────────────
   Ajouté 2026-05-09 pour fix dark mode sur :
   - .kw-* (Pourquoi choisir NexK)
   - .kz-* (Belgique zones couvertes)
   - .ksx-* (Diagnostic express 4 cartes)
   - .kap-founder-* (Mot du fondateur)
   - .kco-* + .cf-* (Page contact + formulaire)
   ============================================================================ */

/* ── 1. Pourquoi choisir NexK (.kw-) ─────────────────────────────────────── */
body.dark-mode .kw-header h2 { color: #f1f5f9 !important; }
body.dark-mode .kw-header p { color: #94a3b8 !important; }
body.dark-mode .kw-link { color: #60a5fa !important; }
body.dark-mode .kw-link:hover { color: #93c5fd !important; }

/* ── 2. Zones Belgique (.kz-) ────────────────────────────────────────────── */
body.dark-mode .kz-header h2 { color: #f1f5f9 !important; }
body.dark-mode .kz-header p { color: #94a3b8 !important; }

body.dark-mode .kz-zone {
  background: #1e293b !important;
  border-color: rgba(255,255,255,.06) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,.25) !important;
}
body.dark-mode .kz-zone:hover {
  border-color: rgba(37,99,235,.35) !important;
  box-shadow: 0 8px 24px rgba(37,99,235,.18) !important;
}
body.dark-mode .kz-zone-text h4 { color: #f1f5f9 !important; }
body.dark-mode .kz-zone-text p { color: #94a3b8 !important; }
body.dark-mode .kz-zone-icon.secondary {
  background: linear-gradient(135deg, rgba(37,99,235,.25), rgba(37,99,235,.4)) !important;
}

body.dark-mode .kz-remote {
  background: linear-gradient(135deg, #162032, #1e293b) !important;
  border: 1px solid rgba(37,99,235,.15) !important;
}
body.dark-mode .kz-remote h4 { color: #f1f5f9 !important; }
body.dark-mode .kz-remote p { color: #94a3b8 !important; }

body.dark-mode .kz-map {
  background: #1e293b !important;
  border-color: rgba(255,255,255,.06) !important;
  box-shadow: 0 8px 25px rgba(0,0,0,.3) !important;
}
body.dark-mode .kz-map-title { color: #f1f5f9 !important; }
body.dark-mode .kz-map-sub { color: #94a3b8 !important; }

body.dark-mode .kz-tag {
  background: rgba(37,99,235,.15) !important;
  border-color: rgba(37,99,235,.3) !important;
  color: #60a5fa !important;
}
body.dark-mode .kz-tag::before { background: #60a5fa !important; }
/* primary-tag preserved tel quel — gradient bleu fonctionne en dark */

/* ── 3. Diagnostic express (.ksx-) ───────────────────────────────────────── */
body.dark-mode .ksx-main {
  background: linear-gradient(135deg, #0f172a 0%, #162032 100%) !important;
  border-color: rgba(37,99,235,.18) !important;
}
body.dark-mode .ksx-card {
  background: #1e293b !important;
  border-color: rgba(255,255,255,.06) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.3) !important;
}
body.dark-mode .ksx-card:hover {
  border-color: rgba(37,99,235,.3) !important;
  box-shadow: 0 18px 40px rgba(37,99,235,.18) !important;
}
body.dark-mode .ksx-card h3 { color: #f1f5f9 !important; }
body.dark-mode .ksx-card p { color: #94a3b8 !important; }
body.dark-mode .ksx-badge {
  background: rgba(37,99,235,.2) !important;
  color: #60a5fa !important;
}

/* ── 4. Mot du fondateur (.kap-founder) ──────────────────────────────────── */
body.dark-mode .kap-founder {
  background: #1e293b !important;
  border-color: rgba(255,255,255,.06) !important;
  box-shadow: 0 8px 25px rgba(0,0,0,.3) !important;
}
body.dark-mode .kap-founder-label { color: #60a5fa !important; }
body.dark-mode .kap-founder-label::before { background: #60a5fa !important; }
body.dark-mode .kap-founder-content h2 { color: #f1f5f9 !important; }
body.dark-mode .kap-founder-content p { color: #cbd5e1 !important; }
body.dark-mode .kap-founder-quote {
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(37,99,235,.18)) !important;
  border-left-color: #60a5fa !important;
  color: #e2e8f0 !important;
}
body.dark-mode .kap-founder-signature { border-top-color: rgba(255,255,255,.08) !important; }
body.dark-mode .kap-founder-signature strong { color: #f1f5f9 !important; }
body.dark-mode .kap-founder-signature span { color: #94a3b8 !important; }
body.dark-mode .kap-founder-link {
  background: rgba(37,99,235,.15) !important;
  border-color: rgba(37,99,235,.3) !important;
  color: #60a5fa !important;
}
body.dark-mode .kap-founder-link:hover {
  background: rgba(37,99,235,.25) !important;
  color: #93c5fd !important;
}

/* ── 5. Page contact — cartes infos & disponibilité (.kco-) ──────────────── */
body.dark-mode .kco-info-card {
  background: #1e293b !important;
  border-color: rgba(255,255,255,.06) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,.25) !important;
}
body.dark-mode .kco-info-card:hover {
  border-color: rgba(37,99,235,.3) !important;
  box-shadow: 0 10px 28px rgba(37,99,235,.2) !important;
}
body.dark-mode .kco-info-ico {
  background: linear-gradient(135deg, rgba(37,99,235,.25), rgba(37,99,235,.4)) !important;
}
body.dark-mode .kco-info-card:hover .kco-info-ico {
  background: linear-gradient(135deg, rgba(37,99,235,.35), rgba(37,99,235,.5)) !important;
}
body.dark-mode .kco-info-lbl { color: #94a3b8 !important; }
body.dark-mode .kco-info-val { color: #f1f5f9 !important; }
body.dark-mode .kco-info-sub { color: #94a3b8 !important; }

body.dark-mode .kco-avail {
  background: linear-gradient(135deg, #162032, #1e293b) !important;
  border-color: rgba(37,99,235,.18) !important;
}
body.dark-mode .kco-avail h4 { color: #f1f5f9 !important; }
body.dark-mode .kco-avail-row { border-bottom-color: rgba(255,255,255,.06) !important; }
body.dark-mode .kco-avail-day { color: #cbd5e1 !important; }
body.dark-mode .kco-avail-h { color: #60a5fa !important; }
body.dark-mode .kco-avail-off { color: #64748b !important; }
/* kco-status reste tel quel : déjà fond sombre */

/* ── 6. Formulaire de contact (.kco-form + .cf-*) ────────────────────────── */
body.dark-mode .kco-form {
  background: #1e293b !important;
  border-color: rgba(255,255,255,.06) !important;
  box-shadow: 0 8px 25px rgba(0,0,0,.3) !important;
}
body.dark-mode .kco-form h3 { color: #f1f5f9 !important; }
body.dark-mode .kco-form > .sub { color: #94a3b8 !important; }

body.dark-mode .cf label { color: #cbd5e1 !important; }
body.dark-mode .cf input,
body.dark-mode .cf textarea,
body.dark-mode .cf select {
  background: #0f172a !important;
  border-color: rgba(255,255,255,.1) !important;
  color: #e2e8f0 !important;
}
body.dark-mode .cf input::placeholder,
body.dark-mode .cf textarea::placeholder { color: #64748b !important; }
body.dark-mode .cf input:focus,
body.dark-mode .cf textarea:focus,
body.dark-mode .cf select:focus {
  border-color: #60a5fa !important;
  box-shadow: 0 0 0 3px rgba(37,99,235,.18) !important;
}

body.dark-mode .cf-sep span { color: #64748b !important; }
body.dark-mode .cf-sep::before,
body.dark-mode .cf-sep::after { background: rgba(255,255,255,.08) !important; }

body.dark-mode .cf-callback {
  background: linear-gradient(135deg, #162032, #1e293b) !important;
  border-color: rgba(37,99,235,.18) !important;
}
body.dark-mode .cf-callback h4 { color: #f1f5f9 !important; }

body.dark-mode .cf-consent { color: #94a3b8 !important; }
body.dark-mode .cf-consent a { color: #60a5fa !important; }

body.dark-mode .cf-msg.ok {
  background: rgba(34,197,94,.15) !important;
  border-color: rgba(34,197,94,.4) !important;
  color: #86efac !important;
}
body.dark-mode .cf-msg.err {
  background: rgba(239,68,68,.15) !important;
  border-color: rgba(239,68,68,.4) !important;
  color: #fca5a5 !important;
}

/* ============================================================================
   ─── DARK MODE PATCH v3 — corrections complémentaires ──────────────────────
   Ajouté 2026-05-09 (suite v2) pour fix :
   - .ka-step* (audit : 3 étapes)
   - .ka-inc* (audit : "Pour qui est cet audit IT ?")
   - .nh-preorder-banner (hardware : bandeau jaune précommande)
   - .kfaq2-cat / .kfaq2-group-title (page FAQ)
   - .nk-mynexk-card-text (force white sur dark gradient)
   ============================================================================ */

/* ── 7. Audit page — étapes (.ka-step) ──────────────────────────────────── */
body.dark-mode .ka-steps-header h2 { color: #f1f5f9 !important; }
body.dark-mode .ka-steps-header p { color: #94a3b8 !important; }
body.dark-mode .ka-step {
  background: #1e293b !important;
  border-color: rgba(255,255,255,.06) !important;
  box-shadow: 0 8px 25px rgba(0,0,0,.3) !important;
}
body.dark-mode .ka-step h3 { color: #f1f5f9 !important; }
body.dark-mode .ka-step p { color: #94a3b8 !important; }

/* ── 8. Audit page — inclusions (.ka-inc) ───────────────────────────────── */
body.dark-mode .ka-inc-hd h2 { color: #f1f5f9 !important; }
body.dark-mode .ka-inc-hd p { color: #94a3b8 !important; }
body.dark-mode .ka-inc-card {
  background: #1e293b !important;
  border-color: rgba(255,255,255,.06) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,.25) !important;
}
body.dark-mode .ka-inc-card h4 { color: #f1f5f9 !important; }
body.dark-mode .ka-inc-card p { color: #94a3b8 !important; }
body.dark-mode .ka-inc-ico {
  background: linear-gradient(135deg, rgba(37,99,235,.25), rgba(37,99,235,.4)) !important;
}
body.dark-mode .ka-inc-stat {
  background: linear-gradient(135deg, #162032, #1e293b) !important;
  border: 1px solid rgba(37,99,235,.18) !important;
}
body.dark-mode .ka-inc-stat .num { color: #60a5fa !important; }
body.dark-mode .ka-inc-stat .lbl { color: #cbd5e1 !important; }

/* ── 9. Hardware — bandeau précommande (.nh-preorder-banner) ────────────── */
body.dark-mode .nh-preorder-banner {
  background: linear-gradient(135deg, rgba(217,119,6,.15), rgba(217,119,6,.25)) !important;
  border-left-color: #f59e0b !important;
}
body.dark-mode .nh-preorder-banner strong { color: #fbbf24 !important; }
body.dark-mode .nh-preorder-banner p { color: #fde68a !important; }
body.dark-mode .nh-preorder-banner svg { color: #fbbf24 !important; }

/* Hardware — stock badges (lisibles sur card dark) */
body.dark-mode .nh-product-card-stock--available {
  background: rgba(34,197,94,.15) !important;
  color: #86efac !important;
}
body.dark-mode .nh-product-card-stock--preorder {
  background: rgba(217,119,6,.18) !important;
  color: #fbbf24 !important;
}

/* ── 10. Page FAQ — catégories & groupes (.kfaq2-) ──────────────────────── */
body.dark-mode .kfaq2-cat {
  background: #1e293b !important;
  border-color: rgba(255,255,255,.1) !important;
  color: #cbd5e1 !important;
}
body.dark-mode .kfaq2-cat:hover {
  background: rgba(37,99,235,.15) !important;
  border-color: rgba(37,99,235,.4) !important;
  color: #60a5fa !important;
}
/* .kfaq2-cat.active garde son gradient bleu — déjà bien */
body.dark-mode .kfaq2-group-title { color: #f1f5f9 !important; }
body.dark-mode .kfaq2-group-title::after { background: rgba(255,255,255,.08) !important; }
body.dark-mode .kfaq2-group-icon {
  background: linear-gradient(135deg, rgba(37,99,235,.25), rgba(37,99,235,.4)) !important;
}

/* ── 11. Carte Portail myNexK — force white sur gradient dark ───────────── */
body.dark-mode .nk-mynexk-card-text h4 { color: white !important; }
body.dark-mode .nk-mynexk-card-text p { color: rgba(255,255,255,.7) !important; }
body.dark-mode .nk-mynexk-badge { color: white !important; }

/* ── 12. CTA finals dark — texte blanc sur gradient ─────────────────────── */
body.dark-mode .nk-cta-final-main h2,
body.dark-mode .nk-cta-final-main h2 em { color: white !important; }
body.dark-mode .nk-cta-final-main p { color: rgba(255,255,255,.85) !important; }
body.dark-mode .nk-cta-final-note { color: rgba(255,255,255,.65) !important; }

/* ============================================================================
   ─── PRINT (pour les pages mentions légales / facturation) ──────────────────
   ============================================================================ */

@media print {
  .dark-mode-toggle, .nk-sticky-cta, .nk-mobile-header-wrap,
  .nk-cta-final, #masthead, .site-footer { display: none !important; }
  body { background: white !important; color: #000 !important; }
  .wp-block-group { box-shadow: none !important; border: 1px solid #ddd !important; }
}


/* ============================================================================
   ─── DARK MODE PATCH v4 — sprint v3 (formation, packs, sur-mesure, etc.) ───
   Couvre TOUTES les nouvelles classes du sprint stratégique :
   - .ks-overview-* (home : section condensée Offre 360°)
   - .ks-surmesure-banner / .ksp-surmesure-banner (banners discrets)
   - .kp-* (page packs : tableau comparatif + comment choisir)
   - .kf-* (page formation : catalogue + format cards)
   - .ksm-* (page sur-mesure : services + processus + SLA)
   - .ksp-* nouvelles sections (stats banner + Pourquoi NexK + cards)
   - .ksh-teaser (services hub)
   - .kvp-market-* (page VoIP : dual marché BE/CI)
   - .nf-* / .kci-* (formulaires audit BE + CI)
   ============================================================================ */

/* ── 13. Home — Section "Notre offre 360°" ─────────────────────────────── */
body.dark-mode .ks-overview-block {
  background: #1e293b !important;
  border-color: rgba(255,255,255,.06) !important;
  box-shadow: 0 8px 25px rgba(0,0,0,.3) !important;
}
body.dark-mode .ks-overview-block:hover {
  box-shadow: 0 16px 40px rgba(37,99,235,.18) !important;
}
body.dark-mode .ks-overview-block-title { color: #f1f5f9 !important; }
body.dark-mode .ks-overview-block-sub { color: #94a3b8 !important; }
body.dark-mode .ks-overview-tag.revente {
  background: rgba(37,99,235,.15) !important;
  color: #60a5fa !important;
  border-color: rgba(37,99,235,.3) !important;
}
body.dark-mode .ks-overview-item {
  background: #0f172a !important;
  border-color: rgba(255,255,255,.05) !important;
}
body.dark-mode .ks-overview-item:hover {
  background: #162032 !important;
  border-color: rgba(37,99,235,.3) !important;
}
body.dark-mode .ks-overview-item-icon {
  background: linear-gradient(135deg, rgba(37,99,235,.25), rgba(37,99,235,.4)) !important;
}
body.dark-mode .ks-overview-item-text strong { color: #f1f5f9 !important; }
body.dark-mode .ks-overview-item-text span { color: #94a3b8 !important; }

/* ── 14. Banners discrets sur-mesure (home + services) ──────────────────── */
body.dark-mode .ks-surmesure-banner,
body.dark-mode .ksp-surmesure-banner {
  background: linear-gradient(135deg, #162032, #1e293b) !important;
  border-color: rgba(37,99,235,.18) !important;
}
body.dark-mode .ks-surmesure-banner:hover,
body.dark-mode .ksp-surmesure-banner:hover {
  background: linear-gradient(135deg, #1e293b, rgba(37,99,235,.18)) !important;
  border-color: rgba(37,99,235,.4) !important;
  box-shadow: 0 8px 24px rgba(37,99,235,.2) !important;
}
body.dark-mode .ks-surmesure-icon,
body.dark-mode .ksp-surmesure-icon {
  background: linear-gradient(135deg, rgba(37,99,235,.25), rgba(37,99,235,.4)) !important;
}
body.dark-mode .ks-surmesure-text strong,
body.dark-mode .ksp-surmesure-text strong { color: #f1f5f9 !important; }
body.dark-mode .ks-surmesure-text span,
body.dark-mode .ksp-surmesure-text span { color: #cbd5e1 !important; }
body.dark-mode .ks-surmesure-arrow,
body.dark-mode .ksp-surmesure-arrow { color: #60a5fa !important; }

/* ── 15. Page Packs — tableau comparatif + comment choisir (.kp-) ───────── */
body.dark-mode .kp-compare-wrap {
  background: #1e293b !important;
  border-color: rgba(255,255,255,.06) !important;
  box-shadow: 0 8px 25px rgba(0,0,0,.3) !important;
}
body.dark-mode .kp-table thead th {
  background: linear-gradient(135deg, #0f172a, #162032) !important;
  color: #f1f5f9 !important;
  border-bottom-color: rgba(37,99,235,.25) !important;
}
body.dark-mode .kp-table tbody td {
  color: #cbd5e1 !important;
  border-bottom-color: rgba(255,255,255,.05) !important;
}
body.dark-mode .kp-table tbody td:first-child { color: #f1f5f9 !important; }
body.dark-mode .kp-table tbody tr:hover td { background: rgba(37,99,235,.08) !important; }
body.dark-mode .kp-table tbody tr.kp-section-row td {
  background: #0f172a !important;
  color: #60a5fa !important;
}
body.dark-mode .kp-pack-feat-cell { background: rgba(37,99,235,.08) !important; }
body.dark-mode .kp-cross { color: #475569 !important; }
body.dark-mode .kp-help-card {
  background: #1e293b !important;
  border-color: rgba(37,99,235,.18) !important;
}
body.dark-mode .kp-help-card h4 { color: #f1f5f9 !important; }
body.dark-mode .kp-help-card p { color: #94a3b8 !important; }
body.dark-mode .kp-help-card .kp-help-tag {
  background: rgba(37,99,235,.15) !important;
  color: #60a5fa !important;
}
body.dark-mode .kp-help-card .kp-help-reco {
  border-top-color: rgba(255,255,255,.08) !important;
  color: #60a5fa !important;
}

/* ── 16. Page Formation — catalogue (.kf-) ──────────────────────────────── */
body.dark-mode .kf-cat-header { border-bottom-color: rgba(37,99,235,.18) !important; }
body.dark-mode .kf-cat-title { color: #f1f5f9 !important; }
body.dark-mode .kf-cat-count {
  background: rgba(37,99,235,.15) !important;
  color: #60a5fa !important;
}
body.dark-mode .kf-card {
  background: #1e293b !important;
  border-color: rgba(255,255,255,.06) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,.25) !important;
}
body.dark-mode .kf-card:hover {
  border-color: rgba(37,99,235,.25) !important;
  box-shadow: 0 14px 35px rgba(37,99,235,.15) !important;
}
body.dark-mode .kf-card h3 { color: #f1f5f9 !important; }
body.dark-mode .kf-card-desc { color: #94a3b8 !important; }
body.dark-mode .kf-card-bullets { color: #cbd5e1 !important; }
body.dark-mode .kf-card-footer { border-top-color: rgba(255,255,255,.06) !important; }
body.dark-mode .kf-card-price { color: #f1f5f9 !important; }
body.dark-mode .kf-card-price small { color: #64748b !important; }
body.dark-mode .kf-card-cta { color: #60a5fa !important; }
body.dark-mode .kf-tag.duration {
  background: rgba(37,99,235,.18) !important;
  color: #93c5fd !important;
}
body.dark-mode .kf-tag.audience {
  background: rgba(34,197,94,.15) !important;
  color: #86efac !important;
}
body.dark-mode .kf-tag.format {
  background: rgba(217,119,6,.18) !important;
  color: #fbbf24 !important;
}
body.dark-mode .kf-format-card {
  background: #1e293b !important;
  border-color: rgba(37,99,235,.18) !important;
}
body.dark-mode .kf-format-card:hover {
  border-color: rgba(37,99,235,.4) !important;
  box-shadow: 0 10px 28px rgba(37,99,235,.15) !important;
}
body.dark-mode .kf-format-card h4 { color: #f1f5f9 !important; }
body.dark-mode .kf-format-card p { color: #94a3b8 !important; }
body.dark-mode .kf-format-icon {
  background: linear-gradient(135deg, rgba(37,99,235,.25), rgba(37,99,235,.4)) !important;
}

/* ── 17. Page Sur-mesure — services + processus (.ksm-) ─────────────────── */
body.dark-mode .ksm-pme-badge {
  background: rgba(245,158,11,.18) !important;
  border-color: rgba(217,119,6,.4) !important;
  color: #fbbf24 !important;
}
body.dark-mode .ksm-service-card {
  background: #1e293b !important;
  border-color: rgba(255,255,255,.06) !important;
  box-shadow: 0 8px 25px rgba(0,0,0,.3) !important;
}
body.dark-mode .ksm-service-card:hover {
  border-color: rgba(37,99,235,.3) !important;
  box-shadow: 0 20px 50px rgba(37,99,235,.18) !important;
}
body.dark-mode .ksm-service-icon {
  background: linear-gradient(135deg, rgba(37,99,235,.25), rgba(37,99,235,.4)) !important;
}
body.dark-mode .ksm-service-titles h3 { color: #f1f5f9 !important; }
body.dark-mode .ksm-service-target { color: #60a5fa !important; }
body.dark-mode .ksm-service-desc { color: #cbd5e1 !important; }
body.dark-mode .ksm-service-features { color: #94a3b8 !important; }
body.dark-mode .ksm-service-meta {
  background: #0f172a !important;
  border-color: rgba(37,99,235,.15) !important;
}
body.dark-mode .ksm-service-meta-label { color: #94a3b8 !important; }
body.dark-mode .ksm-service-meta-value { color: #f1f5f9 !important; }
body.dark-mode .ksm-process-step {
  background: #1e293b !important;
  border-color: rgba(255,255,255,.06) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,.25) !important;
}
body.dark-mode .ksm-process-step h4 { color: #f1f5f9 !important; }
body.dark-mode .ksm-process-step p { color: #94a3b8 !important; }
body.dark-mode .ksm-process-tag {
  background: rgba(37,99,235,.15) !important;
  color: #60a5fa !important;
}
/* SLA banner — adapté en dark amber pour conserver l'avertissement visuel */
body.dark-mode .ksm-sla {
  background: linear-gradient(135deg, rgba(217,119,6,.12), rgba(217,119,6,.18)) !important;
  border-left-color: #d97706 !important;
}
body.dark-mode .ksm-sla-icon { background: rgba(245,158,11,.25) !important; }
body.dark-mode .ksm-sla h3 { color: #fbbf24 !important; }
body.dark-mode .ksm-sla p { color: #fde68a !important; }
body.dark-mode .ksm-sla strong { color: #fbbf24 !important; }

/* ── 18. Services hub — Stats banner + Pourquoi NexK + sub-cards ────────── */
body.dark-mode .ksp-section-tag.revente {
  background: rgba(37,99,235,.15) !important;
  color: #60a5fa !important;
  border-color: rgba(37,99,235,.3) !important;
}
body.dark-mode .ksp-stat-item {
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(255,255,255,.12) !important;
}
body.dark-mode .ksp-why-card {
  background: #1e293b !important;
  border-color: rgba(255,255,255,.06) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,.25) !important;
}
body.dark-mode .ksp-why-card:hover {
  border-color: rgba(37,99,235,.25) !important;
  box-shadow: 0 14px 32px rgba(37,99,235,.15) !important;
}
body.dark-mode .ksp-why-icon {
  background: linear-gradient(135deg, rgba(37,99,235,.25), rgba(37,99,235,.4)) !important;
}
body.dark-mode .ksp-why-text h3 { color: #f1f5f9 !important; }
body.dark-mode .ksp-why-text p { color: #cbd5e1 !important; }

/* Cards services hub (3 expertises + 4 revente) */
body.dark-mode .ksp-card,
body.dark-mode .ksp-card-sm {
  background: #1e293b !important;
  border-color: rgba(255,255,255,.06) !important;
}
body.dark-mode .ksp-card h3,
body.dark-mode .ksp-card-sm-head h3 { color: #f1f5f9 !important; }
body.dark-mode .ksp-card-desc,
body.dark-mode .ksp-card-sm-head p { color: #94a3b8 !important; }
body.dark-mode .ksp-icon-wrap,
body.dark-mode .ksp-icon-sm {
  background: linear-gradient(135deg, rgba(37,99,235,.25), rgba(37,99,235,.4)) !important;
}
body.dark-mode .ksp-card-pricing,
body.dark-mode .ksp-card-sm-pricing {
  background: rgba(37,99,235,.06) !important;
  border-color: rgba(37,99,235,.15) !important;
}
body.dark-mode .ksp-price-label { color: #94a3b8 !important; }
body.dark-mode .ksp-price-value { color: #f1f5f9 !important; }
body.dark-mode .ksp-inclus { color: #f1f5f9 !important; }
body.dark-mode .ksp-list li { color: #cbd5e1 !important; border-bottom-color: rgba(255,255,255,.05) !important; }
body.dark-mode .ksp-btn-alt,
body.dark-mode .ksp-btn-sm-alt {
  background: rgba(37,99,235,.12) !important;
  color: #60a5fa !important;
  border-color: rgba(37,99,235,.3) !important;
}
body.dark-mode .ksp-sec-label { color: #94a3b8 !important; }
body.dark-mode .ksh-teaser {
  background: linear-gradient(135deg, #162032, #1e293b) !important;
  border-color: rgba(37,99,235,.15) !important;
}
body.dark-mode .ksh-teaser-text h4 { color: #f1f5f9 !important; }
body.dark-mode .ksh-teaser-text p { color: #94a3b8 !important; }
body.dark-mode .ksh-teaser-icon {
  background: linear-gradient(135deg, rgba(37,99,235,.25), rgba(37,99,235,.4)) !important;
}

/* ── 19. Page VoIP — Dual marché Belgique / Côte d'Ivoire ───────────────── */
body.dark-mode .kvp-market-be {
  background: linear-gradient(135deg, rgba(217,119,6,.12), rgba(217,119,6,.18)) !important;
  border-color: rgba(217,119,6,.3) !important;
}
body.dark-mode .kvp-market-be h3 { color: #fbbf24 !important; }
body.dark-mode .kvp-market-be .kvp-market-tagline { color: #fbbf24 !important; }
body.dark-mode .kvp-market-be p { color: #fde68a !important; }
body.dark-mode .kvp-market-be ul li { color: #fde68a !important; }
body.dark-mode .kvp-market-be ul li::before { color: #fbbf24 !important; }
body.dark-mode .kvp-market-be .kvp-market-cta {
  background: #f1f5f9 !important;
  color: #1e293b !important;
}

body.dark-mode .kvp-market-ci {
  background: linear-gradient(135deg, rgba(220,38,38,.12), rgba(220,38,38,.18)) !important;
  border-color: rgba(220,38,38,.3) !important;
}
body.dark-mode .kvp-market-ci h3 { color: #fca5a5 !important; }
body.dark-mode .kvp-market-ci .kvp-market-tagline { color: #fca5a5 !important; }
body.dark-mode .kvp-market-ci p { color: #fecaca !important; }
body.dark-mode .kvp-market-ci ul li { color: #fecaca !important; }
body.dark-mode .kvp-market-ci ul li::before { color: #fca5a5 !important; }
body.dark-mode .kvp-market-ci .kvp-market-cta {
  background: rgba(255,255,255,.08) !important;
  color: #fca5a5 !important;
  border-color: rgba(220,38,38,.3) !important;
}

/* ── 20. Formulaires audit Belgique (.nf-) ──────────────────────────────── */
body.dark-mode .nf-tabs { background: rgba(255,255,255,.04) !important; }
body.dark-mode .nf-tab { color: #94a3b8 !important; }
body.dark-mode .nf-tab.active {
  background: #1e293b !important;
  color: #60a5fa !important;
}
body.dark-mode .nf-f label { color: #cbd5e1 !important; }
body.dark-mode .nf-f input,
body.dark-mode .nf-f textarea,
body.dark-mode .nf-f select {
  background: #0f172a !important;
  border-color: rgba(255,255,255,.1) !important;
  color: #e2e8f0 !important;
}
body.dark-mode .nf-f input::placeholder,
body.dark-mode .nf-f textarea::placeholder { color: #64748b !important; }
body.dark-mode .nf-f input:focus,
body.dark-mode .nf-f textarea:focus,
body.dark-mode .nf-f select:focus {
  border-color: #60a5fa !important;
  box-shadow: 0 0 0 3px rgba(37,99,235,.2) !important;
}
body.dark-mode .nf-consent { color: #94a3b8 !important; }
body.dark-mode .nf-consent a { color: #60a5fa !important; }
body.dark-mode .nf-sub { color: #94a3b8 !important; }

/* ── 21. Formulaire audit Côte d'Ivoire (.kci-) — accents orange ────────── */
body.dark-mode .kci-f label { color: #cbd5e1 !important; }
body.dark-mode .kci-f input,
body.dark-mode .kci-f textarea,
body.dark-mode .kci-f select {
  background: #0f172a !important;
  border-color: rgba(255,255,255,.1) !important;
  color: #e2e8f0 !important;
}
body.dark-mode .kci-f input::placeholder,
body.dark-mode .kci-f textarea::placeholder { color: #64748b !important; }
body.dark-mode .kci-f input:focus,
body.dark-mode .kci-f textarea:focus,
body.dark-mode .kci-f select:focus {
  border-color: #fb923c !important;
  box-shadow: 0 0 0 3px rgba(249,115,22,.2) !important;
}
body.dark-mode .kci-consent { color: #94a3b8 !important; }
body.dark-mode .kci-consent a { color: #fb923c !important; }


/* ============================================================================
   ─── DARK MODE PATCH v5 — bugs résiduels Côte d'Ivoire + .kz-remote ────────
   Ajouté après tests Gerald 2026-05-09 — couvre les sections cream/light
   restantes sur la page Audit CI + sécurité kz-remote.
   ============================================================================ */

/* ── 23. Page Côte d'Ivoire — annonce cream (.kci-annonce) ──────────────── */
body.dark-mode .kci-annonce {
  background: linear-gradient(135deg, rgba(249,115,22,.12), rgba(217,119,6,.18)) !important;
  border-left-color: #f97316 !important;
}
body.dark-mode .kci-annonce h2 { color: #fb923c !important; }
body.dark-mode .kci-annonce p { color: #fed7aa !important; }
body.dark-mode .kci-annonce strong { color: #fb923c !important; }

/* ── 24. Page Côte d'Ivoire — intro (.kci-intro) ────────────────────────── */
body.dark-mode .kci-intro h2 { color: #f1f5f9 !important; }
body.dark-mode .kci-intro p { color: #cbd5e1 !important; }
body.dark-mode .kci-intro strong { color: #f1f5f9 !important; }

/* ── 25. Page Côte d'Ivoire — section "Pourquoi NexK" (.kci-why) ────────── */
body.dark-mode .kci-why {
  background: linear-gradient(135deg, #1e293b, rgba(249,115,22,.10)) !important;
  border: 1px solid rgba(249,115,22,.18) !important;
}
body.dark-mode .kci-why h2 { color: #f1f5f9 !important; }
body.dark-mode .kci-why-sub { color: #cbd5e1 !important; }
body.dark-mode .kci-why-item {
  background: #0f172a !important;
  border-color: rgba(255,255,255,.06) !important;
}
body.dark-mode .kci-why-item h4 { color: #f1f5f9 !important; }
body.dark-mode .kci-why-item p { color: #94a3b8 !important; }
/* .num garde son gradient orange — déjà bien en dark */

/* ── 26. Page Côte d'Ivoire — pré-inscription cards (.kci-pre-) ─────────── */
body.dark-mode .kci-pre-hd h2 { color: #f1f5f9 !important; }
body.dark-mode .kci-pre-hd p { color: #94a3b8 !important; }
body.dark-mode .kci-pre-card {
  background: #1e293b !important;
  border-color: rgba(255,255,255,.06) !important;
  box-shadow: 0 8px 25px rgba(0,0,0,.3) !important;
}
body.dark-mode .kci-pre-card h3 { color: #f1f5f9 !important; }
body.dark-mode .kci-pre-card > .sub { color: #94a3b8 !important; }

/* ── 27. .kz-remote SUR-PROTECTION (override inline tenace) ─────────────── */
/* Triple-fallback pour battre l'inline-style et tout cache */
body.dark-mode div.kz-remote,
body.dark-mode .kz-section .kz-remote,
body.dark-mode .kz-grid .kz-remote {
  background: linear-gradient(135deg, #162032, #1e293b) !important;
  background-color: #1e293b !important;
  border: 1px solid rgba(37,99,235,.15) !important;
}
body.dark-mode div.kz-remote h4,
body.dark-mode .kz-section .kz-remote h4 { color: #f1f5f9 !important; }
body.dark-mode div.kz-remote p,
body.dark-mode .kz-section .kz-remote p { color: #94a3b8 !important; }

/* Le sous-conteneur kz-remote peut avoir un kz-remote-text wrapper */
body.dark-mode .kz-remote-text h4 { color: #f1f5f9 !important; }
body.dark-mode .kz-remote-text p { color: #94a3b8 !important; }

/* ── 28. Sécurité globale — h2 dans nk-section-header doit toujours être clair ─── */
/* Si jamais le sélecteur précédent est masqué par une autre règle, force ici */
body.dark-mode .nk-section-header h2,
body.dark-mode .wp-block-html .nk-section-header h2,
body.dark-mode .wp-block-group .nk-section-header h2,
body.dark-mode div .nk-section-header h2 { color: #f1f5f9 !important; }
body.dark-mode .nk-section-header p,
body.dark-mode .wp-block-html .nk-section-header p,
body.dark-mode .wp-block-group .nk-section-header p { color: #94a3b8 !important; }

/* ── 29. Wrapper section sur home — fix outer light bg si présent ───────── */
body.dark-mode .kw-section { background: transparent !important; }
body.dark-mode .ks-section { background: transparent !important; }
body.dark-mode .kw-bottom { background: linear-gradient(135deg,#0f172a,#1e3a8a) !important; }
body.dark-mode .kw-bottom-text h3 { color: #f1f5f9 !important; }
body.dark-mode .kw-bottom-text p { color: rgba(255,255,255,.7) !important; }

.nk-logo-link {

  display: inline-flex !important;

  align-items: center !important;

  flex-direction: row !important;

  flex-wrap: nowrap !important;

  gap: 12px !important;

  text-decoration: none !important;

  color: inherit !important;

  cursor: pointer;

}

.nk-logo-link:hover,

.nk-logo-link:focus,

.nk-logo-link:visited {

  text-decoration: none !important;

  color: inherit !important;

}

.nk-logo-link > * {

  flex-shrink: 0 !important;

}


/* ============================================================================
   FIN — CSS GLOBAL v2
   ============================================================================ */
