/*
Theme Name:  NovaSiteWeb 2026
Theme URI:   https://novasiteweb.fr
Author:      Khalil — NovaSiteWeb
Author URI:  https://novasiteweb.fr
Description: Thème WordPress sur-mesure NovaSiteWeb. Sobre et premium, mobile-first, PageSpeed optimisé. Design system 2026.
Version:     3.1.0
License:     GNU General Public License v2 or later
Text Domain: novasiteweb
Tags:        custom-logo, custom-menu, featured-images, full-width-template, theme-options
*/

/* ══ Polices locales (variables, hébergées dans le thème) ══ */
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('assets/fonts/plus-jakarta-sans-var.woff2') format('woff2-variations');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('assets/fonts/dm-sans-var.woff2') format('woff2-variations');
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}


/* ═══════════════════════════════════════════
   DESIGN SYSTEM — tokens NovaSiteWeb 2026
   ═══════════════════════════════════════════ */
:root {
  /* Couleurs */
  --c-blue:     #004aad;
  --c-blue-90:  #003a87;
  --c-blue-10:  #e8f2ff;
  --c-blue-20:  #d0e4ff;
  --c-black:    #0a0a0a;
  --c-white:    #ffffff;
  --c-gray-95:  #f5f5f5;
  --c-gray-90:  #ebebeb;
  --c-gray-70:  #b0b0b0;
  --c-gray-50:  #787878;
  --c-gray-30:  #3a3a3a;

  /* Typographie */
  --f-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-head: 'Plus Jakarta Sans', var(--f-sans);

  /* Tailles de texte — fluid */
  --t-xs:   clamp(.6875rem, 1.5vw, .75rem);
  --t-sm:   clamp(.8125rem, 2vw, .875rem);
  --t-base: clamp(.9375rem, 2.5vw, 1rem);
  --t-lg:   clamp(1rem, 3vw, 1.125rem);
  --t-xl:   clamp(1.25rem, 4vw, 1.5rem);
  --t-2xl:  clamp(1.5rem, 5vw, 2rem);
  --t-3xl:  clamp(1.875rem, 6vw, 2.5rem);
  --t-4xl:  clamp(2.25rem, 8vw, 3.5rem);
  --t-5xl:  clamp(2.75rem, 10vw, 5rem);
  --t-6xl:  clamp(3.5rem, 13vw, 7rem);

  /* Espacement */
  --s-1:  .25rem;
  --s-2:  .5rem;
  --s-3:  .75rem;
  --s-4:  1rem;
  --s-5:  1.25rem;
  --s-6:  1.5rem;
  --s-8:  2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;

  /* Layout */
  --max-w:      1100px;
  --max-w-text: 680px;
  --px:         clamp(1.25rem, 5vw, 4rem);
  --py:         clamp(4rem, 10vw, 7rem);

  /* Bordure */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-full: 9999px;
  --border: 1px solid var(--c-gray-90);

  /* Ombre */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,.07);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.10);

  /* Transition */
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ═══════════════════════════════════════════
   RESET
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  font-size: var(--t-base);
  color: var(--c-gray-30);
  background: var(--c-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--c-blue); text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ═══════════════════════════════════════════
   TYPOGRAPHIE
   ═══════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--f-head);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--c-black);
}
h1 { font-size: var(--t-5xl); }
h2 { font-size: var(--t-4xl); }
h3 { font-size: var(--t-2xl); }
h4 { font-size: var(--t-xl); }

.nsw-eyebrow {
  display: inline-block;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: var(--s-4);
}

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */
.nsw-wrap {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}
.nsw-section {
  padding-block: var(--py);
  padding-inline: var(--px);
}
.nsw-section-sm {
  padding-block: clamp(2.5rem, 6vw, 4rem);
  padding-inline: var(--px);
}
.nsw-inner {
  max-width: var(--max-w);
  margin-inline: auto;
}
.nsw-line { height: 1px; background: var(--c-gray-90); }

/* ═══════════════════════════════════════════
   BOUTONS
   ═══════════════════════════════════════════ */
.nsw-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: .75rem 1.5rem;
  border-radius: var(--r-md);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  transition: background .15s var(--ease), color .15s, border-color .15s, transform .15s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.nsw-btn:hover { transform: translateY(-1px); }
.nsw-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.nsw-btn-primary {
  background: var(--c-blue);
  color: var(--c-white);
  border-color: var(--c-blue);
}
.nsw-btn-primary:hover { background: var(--c-blue-90); border-color: var(--c-blue-90); color: var(--c-white); }

.nsw-btn-secondary {
  background: var(--c-white);
  color: var(--c-black);
  border-color: var(--c-gray-90);
}
.nsw-btn-secondary:hover { border-color: var(--c-black); color: var(--c-black); }

.nsw-btn-dark {
  background: var(--c-black);
  color: var(--c-white);
  border-color: var(--c-black);
}
.nsw-btn-dark:hover { background: var(--c-gray-30); border-color: var(--c-gray-30); color: var(--c-white); }

.nsw-btn-ghost-white {
  background: transparent;
  color: rgba(255,255,255,.6);
  border-color: rgba(255,255,255,.2);
}
.nsw-btn-ghost-white:hover { border-color: rgba(255,255,255,.5); color: var(--c-white); }

/* ═══════════════════════════════════════════
   SKIP LINKS
   ═══════════════════════════════════════════ */
.nsw-skip a {
  position: absolute;
  top: -100%;
  left: var(--s-4);
  z-index: 99999;
  padding: .6rem 1.2rem;
  background: var(--c-blue);
  color: var(--c-white);
  border-radius: 0 0 var(--r-md) var(--r-md);
  font-size: var(--t-sm);
  font-weight: 600;
}
.nsw-skip a:focus { top: 0; }

/* ═══════════════════════════════════════════
   HEADER & NAV
   ═══════════════════════════════════════════ */
#nsw-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow .25s;
}
#nsw-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.4); }

.nsw-header-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-8);
}

/* Logo */
.nsw-logo {
  font-family: var(--f-head);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -.035em;
  color: var(--c-white);
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.nsw-logo b { color: #4d8fe8; font-weight: 800; }
.nsw-logo img { height: 30px; width: auto; }

/* Nav */
.nsw-nav {
  display: none;
  align-items: center;
  gap: var(--s-8);
}
.nsw-nav a {
  font-size: var(--t-sm);
  font-weight: 500;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .15s;
  position: relative;
  padding-bottom: 2px;
}
.nsw-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1.5px;
  background: #4d8fe8;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s var(--ease);
}
.nsw-nav a:hover,
.nsw-nav a[aria-current="page"] { color: var(--c-white); }
.nsw-nav a:hover::after,
.nsw-nav a[aria-current="page"]::after { transform: scaleX(1); }

/* ── Burger 2 traits + texte "Menu / Fermer" ── */
.nsw-burger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: none;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
.nsw-burger:hover { border-color: rgba(255,255,255,.4); }
.nsw-burger[aria-expanded="true"] {
  border-color: #fff;
  background: #fff;
}
.nsw-burger[aria-expanded="true"] .nsw-burger-lines span { background: var(--c-black); }
.nsw-burger[aria-expanded="true"] .nsw-burger-label { color: var(--c-black); }

/* Les 2 traits */
.nsw-burger-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
  flex-shrink: 0;
}
.nsw-burger-lines span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  transition: background .15s;
}

/* Texte "Menu" / "Fermer" */
.nsw-burger-label {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color .15s;
  line-height: 1;
  white-space: nowrap;
}

/* ── Menu mobile — overlay fond noir ── */
.nsw-mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-black);
  z-index: 899;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: clamp(1.25rem,4vw,2rem) var(--px) clamp(2rem,5vw,3rem);
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.nsw-mobile-nav.open { display: flex; }

/* Liens nav mobile avec icônes */
.nsw-mobile-nav .nsw-mnav-link {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  text-decoration: none;
  transition: padding-left .2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.nsw-mobile-nav .nsw-mnav-link:last-of-type { border-bottom: none; }
.nsw-mobile-nav .nsw-mnav-link:hover,
.nsw-mobile-nav .nsw-mnav-link:focus { padding-left: var(--s-2); outline: none; }

/* Icône ronde */
.nsw-mnav-ico {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s;
}
.nsw-mobile-nav .nsw-mnav-link:hover .nsw-mnav-ico,
.nsw-mobile-nav .nsw-mnav-link:focus .nsw-mnav-ico { background: rgba(0,74,173,.4); }
.nsw-mnav-ico svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255,255,255,.55);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
  transition: stroke .15s;
}
.nsw-mobile-nav .nsw-mnav-link:hover .nsw-mnav-ico svg,
.nsw-mobile-nav .nsw-mnav-link:focus .nsw-mnav-ico svg { stroke: #fff; }

/* Textes */
.nsw-mnav-text { flex: 1; min-width: 0; }
.nsw-mnav-name {
  font-family: var(--f-head);
  font-size: clamp(1.1rem, 3.5vw, 1.3rem);
  font-weight: 700;
  color: rgba(255,255,255,.85);
  letter-spacing: -.02em;
  line-height: 1.15;
  display: block;
  transition: color .15s;
}
.nsw-mobile-nav .nsw-mnav-link:hover .nsw-mnav-name { color: #fff; }
.nsw-mnav-desc {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  margin-top: 2px;
  font-weight: 300;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Flèche */
.nsw-mnav-arr {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .15s, background .15s;
}
.nsw-mnav-arr svg {
  width: 12px;
  height: 12px;
  stroke: rgba(255,255,255,.3);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  display: block;
  transition: stroke .15s;
}
.nsw-mobile-nav .nsw-mnav-link:hover .nsw-mnav-arr { border-color: rgba(0,74,173,.5); background: rgba(0,74,173,.25); }
.nsw-mobile-nav .nsw-mnav-link:hover .nsw-mnav-arr svg { stroke: #7aacf7; }

/* CTAs mobile */
.nsw-mobile-cta {
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

/* Info contact pied de menu */
.nsw-mobile-contact-info {
  margin-top: var(--s-5);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex-wrap: wrap;
  font-size: .75rem;
  color: rgba(255,255,255,.2);
}
.nsw-mobile-contact-info svg {
  width: 11px;
  height: 11px;
  stroke: rgba(255,255,255,.2);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  flex-shrink: 0;
}

@media (min-width: 820px) {
  .nsw-nav { display: flex; }
  .nsw-burger { display: none; }
}

/* ═══════════════════════════════════════════
   HERO — sobre et premium
   ═══════════════════════════════════════════ */
.nsw-hero {
  padding-block: clamp(5rem, 14vw, 10rem);
  padding-inline: var(--px);
  background: var(--c-white);
  position: relative;
  overflow: hidden;
}
/* Halo très subtil */
.nsw-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at 50% 30%, rgba(0,74,173,.05) 0%, transparent 65%);
  pointer-events: none;
}
.nsw-hero-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  position: relative;
}
.nsw-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-4);
  border: var(--border);
  border-radius: var(--r-full);
  font-size: var(--t-xs);
  font-weight: 500;
  color: var(--c-gray-50);
  margin-bottom: var(--s-8);
  background: var(--c-white);
}
.nsw-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}
.nsw-hero h1 {
  max-width: 820px;
  margin-bottom: var(--s-6);
}
.nsw-hero h1 em { font-style: normal; color: var(--c-blue); }
.nsw-hero-sub {
  font-size: var(--t-lg);
  color: var(--c-gray-50);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: var(--s-10);
  font-weight: 300;
}
.nsw-hero-actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: clamp(3rem, 8vw, 5rem);
}
/* Proof line */
.nsw-hero-proof {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
  padding-top: clamp(2rem, 5vw, 3rem);
  border-top: var(--border);
}
.nsw-hero-stat-n {
  font-family: var(--f-head);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--c-black);
  line-height: 1;
  margin-bottom: 4px;
}
.nsw-hero-stat-n i { color: var(--c-blue); font-style: normal; }
.nsw-hero-stat-l { font-size: var(--t-xs); color: var(--c-gray-70); letter-spacing: .04em; text-transform: uppercase; }

/* ═══════════════════════════════════════════
   SERVICES — grille à bordures
   ═══════════════════════════════════════════ */
.nsw-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.nsw-service {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-bottom: var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  text-decoration: none;
  color: inherit;
  background: var(--c-white);
  transition: background .15s;
  position: relative;
}
.nsw-service:last-child { border-bottom: none; }
.nsw-service:hover { background: var(--c-gray-95); }
.nsw-service-top { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s-4); }
.nsw-service-ico {
  width: 42px; height: 42px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nsw-service-ico svg { width: 18px; height: 18px; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.nsw-service-arr {
  width: 30px; height: 30px;
  border-radius: var(--r-sm);
  border: var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .15s, border-color .15s;
}
.nsw-service-arr svg { width: 13px; height: 13px; stroke: var(--c-gray-70); fill: none; stroke-width: 2; stroke-linecap: round; transition: stroke .15s; }
.nsw-service:hover .nsw-service-arr { background: var(--c-blue); border-color: var(--c-blue); }
.nsw-service:hover .nsw-service-arr svg { stroke: var(--c-white); }
.nsw-service-name { font-family: var(--f-head); font-size: var(--t-lg); font-weight: 700; color: var(--c-black); }
.nsw-service-desc { font-size: var(--t-sm); color: var(--c-gray-50); line-height: 1.7; font-weight: 300; }
.nsw-service-tag {
  display: inline-block;
  font-size: var(--t-xs);
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--r-sm);
  align-self: flex-start;
}

/* ═══════════════════════════════════════════
   RÉSULTATS / PROOF
   ═══════════════════════════════════════════ */
.nsw-proof-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--c-gray-90); border: 1px solid var(--c-gray-90); border-radius: var(--r-lg); overflow: hidden; }
.nsw-proof-card {
  background: var(--c-white);
  padding: clamp(1.5rem,4vw,2rem);
  display: flex; flex-direction: column; gap: var(--s-4);
  text-decoration: none; color: inherit;
  transition: background .15s;
}
.nsw-proof-card:hover { background: var(--c-gray-95); }
.nsw-proof-head { display: flex; align-items: center; gap: var(--s-3); }
.nsw-proof-avatar { width: 38px; height: 38px; border-radius: var(--r-md); background: var(--c-blue-10); border: var(--border); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.nsw-proof-name { font-family: var(--f-head); font-size: var(--t-sm); font-weight: 700; color: var(--c-black); }
.nsw-proof-meta { font-size: var(--t-xs); color: var(--c-gray-70); margin-top: 2px; }
.nsw-proof-stats { display: flex; gap: var(--s-6); }
.nsw-proof-stat-n { font-family: var(--f-head); font-size: clamp(1.4rem,4vw,2rem); font-weight: 800; color: var(--c-blue); line-height: 1; letter-spacing: -.03em; }
.nsw-proof-stat-l { font-size: var(--t-xs); color: var(--c-gray-70); margin-top: 3px; text-transform: uppercase; letter-spacing: .06em; }
.nsw-proof-quote { font-size: var(--t-sm); color: var(--c-gray-50); line-height: 1.7; font-style: italic; font-weight: 300; }
.nsw-proof-link { display: flex; align-items: center; gap: 5px; font-size: var(--t-sm); font-weight: 600; color: var(--c-blue); padding-top: var(--s-4); border-top: var(--border); }
.nsw-proof-link svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; transition: transform .15s; }
.nsw-proof-card:hover .nsw-proof-link svg { transform: translateX(3px); }

/* ═══════════════════════════════════════════
   TARIFS
   ═══════════════════════════════════════════ */
.nsw-plans-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-4); }
.nsw-plan { border: var(--border); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; background: var(--c-white); }
.nsw-plan.nsw-plan-featured { border: 2px solid var(--c-blue); }
.nsw-plan-head { padding: clamp(1.5rem,4vw,2rem); border-bottom: var(--border); position: relative; }
.nsw-plan-crown { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--c-blue); color: var(--c-white); font-size: var(--t-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 3px 12px; border-radius: 0 0 var(--r-sm) var(--r-sm); white-space: nowrap; }
.nsw-plan-name { font-size: var(--t-xs); font-weight: 600; color: var(--c-gray-70); letter-spacing: .1em; text-transform: uppercase; margin-bottom: var(--s-3); }
.nsw-plan-price { font-family: var(--f-head); font-size: clamp(2rem,5vw,2.75rem); font-weight: 800; letter-spacing: -.04em; color: var(--c-black); line-height: 1; margin-bottom: var(--s-1); }
.nsw-plan-price sup { font-size: 1.1rem; vertical-align: top; margin-top: .3rem; }
.nsw-plan-price sub { font-size: var(--t-sm); font-weight: 400; color: var(--c-gray-70); vertical-align: baseline; }
.nsw-plan-note { font-size: var(--t-xs); color: var(--c-gray-70); margin-bottom: var(--s-3); }
.nsw-plan-desc { font-size: var(--t-sm); color: var(--c-gray-50); line-height: 1.65; font-weight: 300; }
.nsw-plan-body { padding: clamp(1.25rem,3vw,1.75rem); flex: 1; display: flex; flex-direction: column; }
.nsw-plan-feats { display: flex; flex-direction: column; gap: var(--s-3); margin-bottom: var(--s-6); flex: 1; }
.nsw-plan-feat { display: flex; align-items: flex-start; gap: var(--s-3); font-size: var(--t-sm); color: var(--c-gray-30); line-height: 1.55; }
.nsw-plan-feat svg { width: 14px; height: 14px; stroke: var(--c-blue); fill: none; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; margin-top: 1px; }
.nsw-plan-action { display: flex; align-items: center; justify-content: center; padding: .7rem; border-radius: var(--r-md); font-size: var(--t-sm); font-weight: 600; text-decoration: none; transition: all .15s; }
.nsw-plan-featured .nsw-plan-action { background: var(--c-blue); color: var(--c-white); }
.nsw-plan-featured .nsw-plan-action:hover { background: var(--c-blue-90); color: var(--c-white); }
.nsw-plan:not(.nsw-plan-featured) .nsw-plan-action { background: var(--c-gray-95); color: var(--c-black); border: var(--border); }
.nsw-plan:not(.nsw-plan-featured) .nsw-plan-action:hover { border-color: var(--c-black); }

/* ═══════════════════════════════════════════
   TÉMOIGNAGES
   ═══════════════════════════════════════════ */
.nsw-temos-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-4); }
.nsw-temo { background: var(--c-white); border: var(--border); border-radius: var(--r-lg); padding: clamp(1.5rem,4vw,2rem); display: flex; flex-direction: column; gap: var(--s-5); }
.nsw-temo-stars { color: #f59e0b; font-size: var(--t-sm); letter-spacing: .05em; }
.nsw-temo-text { font-size: var(--t-base); color: var(--c-gray-30); line-height: 1.8; font-style: italic; font-weight: 300; flex: 1; }
.nsw-temo-text strong { color: var(--c-black); font-style: normal; font-weight: 600; }
.nsw-temo-foot { display: flex; align-items: center; gap: var(--s-3); padding-top: var(--s-5); border-top: var(--border); }
.nsw-temo-av { width: 36px; height: 36px; border-radius: 50%; background: var(--c-blue-10); border: 1px solid var(--c-blue-20); display: flex; align-items: center; justify-content: center; font-size: .875rem; flex-shrink: 0; }
.nsw-temo-name { font-size: var(--t-sm); font-weight: 600; color: var(--c-black); }
.nsw-temo-role { font-size: var(--t-xs); color: var(--c-gray-70); margin-top: 1px; }
.nsw-temo-badge { margin-left: auto; font-size: var(--t-xs); font-weight: 600; padding: 2px 8px; border-radius: var(--r-sm); background: var(--c-blue-10); color: var(--c-blue); flex-shrink: 0; }

/* ═══════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════ */
.nsw-cta-block { background: var(--c-black); }
.nsw-cta-block h2 { color: var(--c-white); margin-bottom: var(--s-4); }
.nsw-cta-block h2 em { font-style: normal; color: #60a5fa; }
.nsw-cta-block p { color: rgba(255,255,255,.4); max-width: 480px; margin-bottom: var(--s-8); font-weight: 300; font-size: var(--t-lg); }
.nsw-cta-actions { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.nsw-cta-note { margin-top: var(--s-6); font-size: var(--t-xs); color: rgba(255,255,255,.25); display: flex; align-items: center; gap: var(--s-2); }

/* ═══════════════════════════════════════════
   FORMULAIRE CONTACT
   ═══════════════════════════════════════════ */
.nsw-form { display: flex; flex-direction: column; gap: var(--s-4); }
.nsw-form-row { display: grid; grid-template-columns: 1fr; gap: var(--s-4); }
.nsw-field { display: flex; flex-direction: column; gap: var(--s-2); }
.nsw-field label { font-size: var(--t-xs); font-weight: 600; color: var(--c-black); letter-spacing: .04em; text-transform: uppercase; }
.nsw-field input,
.nsw-field textarea,
.nsw-field select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--c-gray-90);
  border-radius: var(--r-md);
  font-family: var(--f-sans);
  font-size: var(--t-base);
  color: var(--c-black);
  background: var(--c-white);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none;
}
.nsw-field input:focus,
.nsw-field textarea:focus,
.nsw-field select:focus {
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(0,74,173,.09);
}
.nsw-field textarea { resize: vertical; min-height: 130px; line-height: 1.65; }

/* ═══════════════════════════════════════════
   BLOG ARCHIVE 2026
   ═══════════════════════════════════════════ */
/* Post featured (large) */
.nsw-post-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  padding-bottom: clamp(2.5rem,6vw,4rem);
  margin-bottom: clamp(2.5rem,6vw,4rem);
  border-bottom: var(--border);
  text-decoration: none;
  color: inherit;
}
.nsw-post-featured:hover .nsw-post-featured-title { color: var(--c-blue); }
.nsw-post-featured:hover .nsw-post-featured-img img { transform: scale(1.02); }
.nsw-post-featured-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--c-blue-10);
}
.nsw-post-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.nsw-post-featured-cat { font-size: var(--t-xs); font-weight: 700; color: var(--c-blue); letter-spacing: .1em; text-transform: uppercase; margin-bottom: var(--s-3); }
.nsw-post-featured-title { font-family: var(--f-head); font-size: var(--t-3xl); font-weight: 800; letter-spacing: -.03em; color: var(--c-black); line-height: 1.12; margin-bottom: var(--s-4); transition: color .15s; }
.nsw-post-featured-excerpt { font-size: var(--t-base); color: var(--c-gray-50); line-height: 1.75; font-weight: 300; margin-bottom: var(--s-5); max-width: 560px; }
.nsw-post-featured-meta { display: flex; align-items: center; gap: var(--s-4); font-size: var(--t-xs); color: var(--c-gray-70); }
.nsw-post-featured-meta span { display: flex; align-items: center; gap: var(--s-1); }

/* Grille posts secondaires */
.nsw-posts-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-6); }
.nsw-post-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  gap: var(--s-4);
}
.nsw-post-card:hover .nsw-post-card-title { color: var(--c-blue); }
.nsw-post-card:hover .nsw-post-card-img img { transform: scale(1.03); }
.nsw-post-card-img {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 3/2;
  background: var(--c-blue-10);
  flex-shrink: 0;
}
.nsw-post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s var(--ease); }
.nsw-post-card-cat { font-size: var(--t-xs); font-weight: 700; color: var(--c-blue); letter-spacing: .1em; text-transform: uppercase; }
.nsw-post-card-title { font-family: var(--f-head); font-size: var(--t-xl); font-weight: 700; letter-spacing: -.02em; color: var(--c-black); line-height: 1.25; transition: color .15s; }
.nsw-post-card-excerpt { font-size: var(--t-sm); color: var(--c-gray-50); line-height: 1.7; font-weight: 300; }
.nsw-post-card-meta { display: flex; align-items: center; gap: var(--s-3); font-size: var(--t-xs); color: var(--c-gray-70); margin-top: auto; padding-top: var(--s-4); border-top: var(--border); }

/* Pagination */
.nsw-pagination { display: flex; align-items: center; justify-content: center; gap: var(--s-2); margin-top: clamp(2.5rem,6vw,4rem); }
.nsw-pagination a,
.nsw-pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--r-md);
  font-size: var(--t-sm); font-weight: 600;
  border: var(--border);
  color: var(--c-gray-30);
  text-decoration: none;
  transition: all .15s;
}
.nsw-pagination a:hover { border-color: var(--c-blue); color: var(--c-blue); }
.nsw-pagination .current { background: var(--c-blue); border-color: var(--c-blue); color: var(--c-white); }

/* ═══════════════════════════════════════════
   SINGLE ARTICLE 2026
   ═══════════════════════════════════════════ */
/* Progress bar lecture */
.nsw-progress-bar {
  position: fixed;
  top: 68px;
  left: 0;
  height: 2px;
  background: var(--c-blue);
  z-index: 800;
  width: 0%;
  transition: width .1s linear;
}

/* Layout article */
.nsw-article-header {
  padding-block: clamp(3rem,8vw,5.5rem);
  padding-inline: var(--px);
  max-width: var(--max-w);
  margin-inline: auto;
}
.nsw-article-hero-img {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  margin-bottom: clamp(2rem,5vw,3rem);
}
.nsw-article-hero-img img { width: 100%; border-radius: var(--r-xl); aspect-ratio: 16/8; object-fit: cover; }

.nsw-article-layout > * { min-width: 0; }
.nsw-article-layout {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem,5vw,4rem);
  padding-bottom: clamp(4rem,10vw,7rem);
}

/* Contenu prose */
.nsw-prose { max-width: var(--max-w-text); }
.nsw-prose > * + * { margin-top: 1.25rem; }
.nsw-prose h2 { font-size: var(--t-2xl); margin-top: 2.5rem; margin-bottom: .75rem; }
.nsw-prose h3 { font-size: var(--t-xl); margin-top: 2rem; margin-bottom: .5rem; }
.nsw-prose p { font-size: var(--t-base); line-height: 1.82; color: var(--c-gray-30); }
.nsw-prose a { color: var(--c-blue); text-decoration: underline; text-underline-offset: 3px; }
.nsw-prose a:hover { color: var(--c-blue-90); }
.nsw-prose ul { list-style: none; padding-left: 0; }
.nsw-prose ul li { display: flex; gap: var(--s-3); align-items: flex-start; margin-bottom: var(--s-3); }
.nsw-prose ul li::before { content: ''; display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--c-blue); flex-shrink: 0; margin-top: .55em; }
.nsw-prose ol { counter-reset: item; padding-left: 0; }
.nsw-prose ol li { display: flex; gap: var(--s-3); align-items: flex-start; margin-bottom: var(--s-3); counter-increment: item; }
.nsw-prose ol li::before { content: counter(item); display: flex; align-items: center; justify-content: center; min-width: 22px; height: 22px; font-size: .75rem; font-weight: 700; color: var(--c-blue); background: var(--c-blue-10); border-radius: 50%; flex-shrink: 0; margin-top: .15em; }
.nsw-prose blockquote { border-left: 3px solid var(--c-blue); padding: var(--s-4) var(--s-6); background: var(--c-gray-95); border-radius: 0 var(--r-md) var(--r-md) 0; margin-block: var(--s-6); }
.nsw-prose blockquote p { color: var(--c-black); font-size: var(--t-lg); font-style: italic; font-weight: 400; }
.nsw-prose img { border-radius: var(--r-lg); margin-block: var(--s-6); width: 100%; }
.nsw-prose code { font-size: .875em; background: var(--c-gray-95); border: var(--border); padding: 2px 6px; border-radius: 4px; }
.nsw-prose pre { background: var(--c-black); color: #e4e4e7; padding: var(--s-6); border-radius: var(--r-md); overflow-x: auto; font-size: var(--t-sm); margin-block: var(--s-6); }
.nsw-prose hr { border: none; border-top: var(--border); margin-block: var(--s-8); }
.nsw-prose strong { color: var(--c-black); font-weight: 600; }

/* Table des matières sticky */
.nsw-toc {
  position: sticky;
  top: calc(68px + 2rem);
  align-self: start;
  background: var(--c-gray-95);
  border: var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-5);
}
.nsw-toc-title { font-family: var(--f-head); font-size: var(--t-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--c-black); margin-bottom: var(--s-4); }
.nsw-toc ul { display: flex; flex-direction: column; gap: var(--s-2); }
.nsw-toc a { font-size: var(--t-sm); color: var(--c-gray-50); text-decoration: none; transition: color .15s; line-height: 1.5; display: block; padding: var(--s-1) 0; border-left: 2px solid transparent; padding-left: var(--s-3); }
.nsw-toc a:hover, .nsw-toc a.active { color: var(--c-blue); border-color: var(--c-blue); }

/* CTA article flottant */
.nsw-article-cta {
  background: var(--c-blue-10);
  border: 1px solid var(--c-blue-20);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  margin-top: var(--s-8);
}
.nsw-article-cta h3 { font-size: var(--t-xl); margin-bottom: var(--s-3); }
.nsw-article-cta p { font-size: var(--t-sm); color: var(--c-gray-50); margin-bottom: var(--s-5); font-weight: 300; }

/* Article metas header */
.nsw-article-meta { display: flex; align-items: center; gap: var(--s-5); flex-wrap: wrap; font-size: var(--t-xs); color: var(--c-gray-70); margin-bottom: var(--s-6); }
.nsw-article-meta-item { display: flex; align-items: center; gap: var(--s-1); }
.nsw-article-cat { display: inline-block; font-size: var(--t-xs); font-weight: 700; color: var(--c-blue); letter-spacing: .1em; text-transform: uppercase; margin-bottom: var(--s-4); }
.nsw-article-title { max-width: 820px; }
.nsw-article-excerpt { font-size: var(--t-lg); color: var(--c-gray-50); max-width: 620px; line-height: 1.7; font-weight: 300; margin-top: var(--s-5); }

/* ═══════════════════════════════════════════
   PORTFOLIO
   ═══════════════════════════════════════════ */
.nsw-folio-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-6); }
.nsw-folio-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: var(--s-4); }
.nsw-folio-card:hover .nsw-folio-img img { transform: scale(1.03); }
.nsw-folio-card:hover .nsw-folio-name { color: var(--c-blue); }
.nsw-folio-img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--c-blue-10); }
.nsw-folio-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.nsw-folio-tags { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.nsw-folio-tag { font-size: var(--t-xs); font-weight: 600; padding: 2px 8px; border-radius: var(--r-sm); background: var(--c-gray-95); color: var(--c-gray-50); border: var(--border); }
.nsw-folio-name { font-family: var(--f-head); font-size: var(--t-lg); font-weight: 700; color: var(--c-black); transition: color .15s; }
.nsw-folio-meta { font-size: var(--t-xs); color: var(--c-gray-70); }

/* ═══════════════════════════════════════════
   PAGE 404
   ═══════════════════════════════════════════ */
.nsw-404 { min-height: calc(100vh - 68px); display: flex; align-items: center; justify-content: center; text-align: center; padding: var(--py) var(--px); }
.nsw-404-num { font-family: var(--f-head); font-size: clamp(7rem,22vw,14rem); font-weight: 800; letter-spacing: -.05em; color: var(--c-blue-10); line-height: 1; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
#nsw-footer {
  background: var(--c-black);
  color: rgba(255,255,255,.45);
}
.nsw-footer-top {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: clamp(3rem,8vw,5rem) var(--px);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nsw-footer-brand-logo { font-family: var(--f-head); font-size: 1.125rem; font-weight: 800; color: var(--c-white); margin-bottom: var(--s-4); letter-spacing: -.03em; }
.nsw-footer-brand-logo b { color: var(--c-blue); }
.nsw-footer-brand p { font-size: var(--t-sm); line-height: 1.75; font-weight: 300; max-width: 280px; }
.nsw-footer-col h5 { font-size: var(--t-xs); font-weight: 700; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .1em; margin-bottom: var(--s-5); }
.nsw-footer-col ul { display: flex; flex-direction: column; gap: var(--s-3); }
.nsw-footer-col a { font-size: var(--t-sm); color: rgba(255,255,255,.35); text-decoration: none; font-weight: 300; transition: color .15s; }
.nsw-footer-col a:hover { color: var(--c-white); }
.nsw-footer-bottom {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: var(--s-6) var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-4);
  font-size: var(--t-xs);
  color: rgba(255,255,255,.2);
}
.nsw-footer-legal { display: flex; gap: var(--s-5); flex-wrap: wrap; }
.nsw-footer-legal a { color: rgba(255,255,255,.2); text-decoration: none; transition: color .15s; font-size: var(--t-xs); }
.nsw-footer-legal a:hover { color: rgba(255,255,255,.5); }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (min-width: 580px) {
  .nsw-form-row { grid-template-columns: 1fr 1fr; }
  .nsw-posts-grid { grid-template-columns: repeat(2, 1fr); }
  .nsw-proof-grid { grid-template-columns: repeat(3, 1fr); }
  .nsw-plans-grid { grid-template-columns: repeat(3, 1fr); }
  .nsw-temos-grid { grid-template-columns: repeat(3, 1fr); }
  .nsw-folio-grid { grid-template-columns: repeat(2, 1fr); }
  .nsw-footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .nsw-services-grid { grid-template-columns: 1fr 1fr; }
  .nsw-service:nth-child(odd):last-child { grid-column: 1 / -1; }
}
@media (min-width: 820px) {
  .nsw-post-featured { grid-template-columns: 1.1fr 1fr; align-items: center; }
  .nsw-posts-grid { grid-template-columns: repeat(3, 1fr); }
  .nsw-folio-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════ */
.nsw-bg-white  { background: var(--c-white); }
.nsw-bg-gray   { background: var(--c-gray-95); }
.nsw-bg-black  { background: var(--c-black); }
.nsw-text-center { text-align: center; }
.nsw-text-muted  { color: var(--c-gray-50); }

/* Animations */
@keyframes nsw-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@supports (animation-timeline: view()) {
  .nsw-reveal {
    animation: nsw-up .55s var(--ease) both;
    animation-timeline: view();
    animation-range: entry 0% entry 38%;
    animation-delay: var(--delay, 0ms);
  }
}
@media (prefers-reduced-motion: reduce) {
  .nsw-reveal, *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
}

/* WordPress */
.alignleft  { float: left; margin: 0 var(--s-6) var(--s-4) 0; }
.alignright { float: right; margin: 0 0 var(--s-4) var(--s-6); }
.aligncenter { display: block; margin-inline: auto; }
.wp-caption-text { font-size: var(--t-xs); color: var(--c-gray-70); text-align: center; margin-top: var(--s-2); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ═══════════════════════════════════════════
   ACCUEIL CONVERSION — v3
   ═══════════════════════════════════════════ */

/* Hero noir */
.nsw-hero-dark {
  background: var(--c-black);
  padding: clamp(4rem,10vw,7rem) var(--px) clamp(3rem,7vw,5rem);
  position: relative;
  overflow: hidden;
}
.nsw-hero-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .025;
  pointer-events: none;
}
.nsw-hero-dark::after {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,74,173,.16) 0%, transparent 65%);
  pointer-events: none;
}
.nsw-hero-dark-in {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem,6vw,4rem);
  align-items: center;
}
@media (min-width: 860px) {
  .nsw-article-layout { grid-template-columns: minmax(0,1fr) 260px; } .nsw-hero-dark-in { grid-template-columns: 1.1fr 1fr; } }

.nsw-hd-eyebrow {
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
  margin-bottom: 1.5rem;
}
.nsw-hd-eyebrow b { color: rgba(255,255,255,.55); font-weight: 600; }
.nsw-hero-dark h1 {
  font-size: clamp(2.4rem,7.5vw,4.6rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.nsw-hero-dark h1 .dot { color: #4d8fe8; }
.nsw-hero-dark h1 .muted {
  display: block;
  color: rgba(255,255,255,.22);
  font-size: .6em;
  font-weight: 300;
  letter-spacing: -.01em;
  margin-top: .3em;
  line-height: 1.4;
}
.nsw-hd-sub {
  font-size: .9375rem;
  color: rgba(255,255,255,.38);
  line-height: 1.75;
  max-width: 420px;
  font-weight: 300;
  margin-bottom: 2rem;
}
.nsw-hd-sub b { color: rgba(255,255,255,.65); font-weight: 500; }
.nsw-hd-ctas { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: clamp(2rem,5vw,3.5rem); }
.nsw-hd-proof {
  display: flex;
  gap: clamp(1.5rem,4vw,2.5rem);
  flex-wrap: wrap;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.nsw-hd-stat-n {
  font-family: var(--f-head);
  font-size: clamp(1.4rem,3.5vw,1.9rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 3px;
}
.nsw-hd-stat-n i { color: #4d8fe8; font-style: normal; }
.nsw-hd-stat-l {
  font-size: .65rem;
  color: rgba(255,255,255,.28);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Bouton ghost blanc (hero noir) */
.nsw-btn-ghostw {
  background: transparent;
  color: rgba(255,255,255,.5);
  border-color: rgba(255,255,255,.15);
}
.nsw-btn-ghostw:hover { border-color: rgba(255,255,255,.4); color: #fff; }
.nsw-btn-ghostw svg { stroke: currentColor; }

/* Carte résultat */
.nsw-rcard {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nsw-rc-h {
  padding: .9rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nsw-rc-h span:first-child {
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
}
.nsw-rc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .6875rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(34,197,94,.12);
  color: #22c55e;
}
.nsw-rc-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #22c55e; }
.nsw-rc-cl { padding: 1rem 1.25rem .4rem; display: flex; align-items: center; gap: .75rem; }
.nsw-rc-av {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(0,74,173,.2);
  border: 1px solid rgba(0,74,173,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
}
.nsw-rc-nm { font-family: var(--f-head); font-size: .875rem; font-weight: 700; color: #fff; }
.nsw-rc-mt { font-size: .6875rem; color: rgba(255,255,255,.3); margin-top: 2px; }
.nsw-rc-maps { padding: .75rem 1.25rem; display: grid; grid-template-columns: 1fr auto 1fr; gap: .75rem; align-items: center; }
.nsw-rc-mc { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.nsw-rc-ml { font-size: .575rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.2); font-weight: 600; }
.nsw-rc-mv { font-family: var(--f-head); font-size: 1.9rem; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.nsw-rc-mv.b { color: rgba(255,255,255,.15); }
.nsw-rc-mv.a { color: #22c55e; }
.nsw-rc-ms { font-size: .575rem; color: rgba(255,255,255,.2); text-align: center; }
.nsw-rc-ar { width: 26px; height: 26px; border-radius: 50%; background: rgba(34,197,94,.1); display: flex; align-items: center; justify-content: center; }
.nsw-rc-ar svg { width: 12px; height: 12px; stroke: #22c55e; fill: none; stroke-width: 2; stroke-linecap: round; }
.nsw-rc-q {
  margin: 0 1.25rem;
  padding: .45rem .875rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 7px;
  font-size: .6875rem;
  color: rgba(255,255,255,.3);
  display: flex; align-items: center; gap: .5rem;
}
.nsw-rc-q svg { width: 11px; height: 11px; stroke: rgba(255,255,255,.3); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.nsw-rc-t { margin: .6rem 1.25rem 0; padding: .8rem 0 1.1rem; border-top: 1px solid rgba(255,255,255,.06); }
.nsw-rc-st { font-size: .7rem; color: #f59e0b; margin-bottom: .45rem; }
.nsw-rc-tx { font-size: .75rem; color: rgba(255,255,255,.4); line-height: 1.6; font-style: italic; font-weight: 300; }

/* Constats (pains) */
.nsw-pains {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--c-gray-90);
  border: 1px solid var(--c-gray-90);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 680px) { .nsw-pains { grid-template-columns: repeat(3,1fr); } }
.nsw-pain { background: #fff; padding: 1.75rem; display: flex; flex-direction: column; gap: .75rem; }
.nsw-pain-n { font-family: var(--f-head); font-size: 2rem; font-weight: 800; color: var(--c-blue); letter-spacing: -.04em; line-height: 1; }
.nsw-pain-t { font-family: var(--f-head); font-size: .9375rem; font-weight: 700; color: var(--c-black); }
.nsw-pain-d { font-size: .8125rem; color: var(--c-gray-50); line-height: 1.7; font-weight: 300; }

/* Process 3 étapes */
.nsw-proc { display: grid; grid-template-columns: 1fr; gap: 1.5rem; counter-reset: step; }
@media (min-width: 680px) { .nsw-proc { grid-template-columns: repeat(3,1fr); } }
.nsw-proc-s { position: relative; padding-top: 1.25rem; }
.nsw-proc-s::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--f-head);
  font-size: .75rem;
  font-weight: 800;
  color: var(--c-blue);
  letter-spacing: .1em;
  position: absolute;
  top: 0; left: 0;
}
.nsw-proc-s::after { content: ''; position: absolute; top: .45rem; left: 2.2rem; right: 0; height: 1px; background: var(--c-gray-90); }
.nsw-proc-t { font-family: var(--f-head); font-size: 1rem; font-weight: 700; color: var(--c-black); margin-bottom: .5rem; }
.nsw-proc-d { font-size: .8125rem; color: var(--c-gray-50); line-height: 1.7; font-weight: 300; }
.nsw-proc-d b { color: var(--c-gray-30); font-weight: 600; }

/* Sur mesure ligne */
.nsw-custom-line { margin-top: 1.25rem; font-size: .8125rem; color: var(--c-gray-50); display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.nsw-custom-line svg { width: 14px; height: 14px; stroke: var(--c-gray-50); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.nsw-custom-line a { font-weight: 600; }

/* FAQ accordéon */
.nsw-faq { max-width: 680px; }
.nsw-faq details { border-bottom: 1px solid var(--c-gray-90); }
.nsw-faq summary {
  padding: 1.1rem 0;
  font-family: var(--f-head);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--c-black);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nsw-faq summary::-webkit-details-marker { display: none; }
.nsw-faq summary::after { content: '+'; font-size: 1.25rem; font-weight: 300; color: var(--c-gray-70); transition: transform .2s; flex-shrink: 0; }
.nsw-faq details[open] summary::after { transform: rotate(45deg); }
.nsw-faq p { padding-bottom: 1.1rem; font-size: .8425rem; color: var(--c-gray-50); line-height: 1.75; font-weight: 300; max-width: 560px; }

/* ═══════════════════════════════════════════
   BARRE CTA MOBILE STICKY
   ═══════════════════════════════════════════ */
.nsw-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 880; /* sous menu mobile (899) et cookies (9990) */
  display: none;
  gap: .625rem;
  padding: .625rem var(--px) calc(.625rem + env(safe-area-inset-bottom, 0px));
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.08);
}
.nsw-mobile-bar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1rem;
  border-radius: var(--r-md);
  font-size: .8125rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.nsw-mobile-bar a svg { width: 14px; height: 14px; flex-shrink: 0; }
.nsw-mbar-call {
  background: var(--c-blue);
  color: #fff;
  border: 1.5px solid var(--c-blue);
}
.nsw-mbar-call svg { stroke: #fff; }
.nsw-mbar-devis {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.15);
}
.nsw-mbar-devis svg { stroke: rgba(255,255,255,.85); }

/* Visible uniquement mobile, hors page contact */
@media (max-width: 819px) {
  body:not(.page-template-page-contact) .nsw-mobile-bar { display: flex; }
  /* Ne pas masquer le bas de page */
  body:not(.page-template-page-contact) { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
  /* Le pill cookies remonte au-dessus de la barre */
  body:not(.page-template-page-contact) #nvck-pill { bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
  body:not(.page-template-page-contact) #nvck-banner { bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
}

/* ── Sommaire mobile (article) ── */

/* Desktop : sommaire sticky sidebar visible, mobile masqué / et inversement */
@media (min-width: 860px) {
  .nsw-tocbar { display: none !important; }
}
@media (max-width: 859px) {
  .nsw-toc { display: none !important; }
}

/* ═══════════════════════════════════════════
   BLOCS ARTICLES (patterns Gutenberg nvar-*)
   ═══════════════════════════════════════════ */

/* Callouts */
.nvar-callout {
  border-left: 4px solid var(--c-blue); background: #f8fafe;
  border-radius: 0 8px 8px 0; padding: 1rem 1.25rem;
  margin: 1.5rem 0; font-size: .875rem; color: var(--c-gray-30); line-height: 1.75;
}
.nvar-callout strong { color: var(--c-blue); font-weight: 600; }
.nvar-callout-warn {
  border-left: 4px solid #ef9f27; background: #fdf7ec;
  border-radius: 0 8px 8px 0; padding: 1rem 1.25rem;
  margin: 1.5rem 0; font-size: .875rem; color: var(--c-gray-30); line-height: 1.75;
}
.nvar-callout-warn strong { color: #c49a2a; font-weight: 600; }

/* Stat highlight */
.nvar-stat {
  background: var(--c-black); border-radius: 12px;
  padding: clamp(1.25rem, 3vw, 1.5rem); margin: 1.5rem 0;
  display: flex; align-items: flex-start; gap: 1rem; flex-wrap: wrap;
}
@media (min-width: 600px) { .nvar-stat { align-items: center; } }
.nvar-stat-n {
  font-family: var(--f-head); font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 800; color: #4d8fe8; line-height: 1; flex-shrink: 0; letter-spacing: -.04em;
}
.nvar-stat-text { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.7; font-weight: 300; flex: 1; min-width: 200px; }
.nvar-stat-text strong { color: #fff; font-weight: 600; }

/* Exemple réel */
.nvar-exemple {
  background: #e0f5ee; border: 1px solid #b8e8d5;
  border-radius: 12px; padding: clamp(1.25rem, 3vw, 1.5rem); margin: 1.5rem 0;
}
.nvar-exemple-label {
  font-size: .625rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: #0f6e56; margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.nvar-exemple-label svg { width: 12px; height: 12px; stroke: #0f6e56; fill: none; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; }
.nvar-exemple p { font-size: .8125rem; color: #1a4a3a; line-height: 1.7; margin: 0; font-weight: 300; }
.nvar-exemple p strong { font-weight: 600; color: #0f6e56; }

/* Étapes numérotées */
.nvar-steps { display: flex; flex-direction: column; margin: 1.5rem 0; position: relative; }
.nvar-steps::before {
  content: ''; position: absolute; left: 18px; top: 36px; bottom: 36px;
  width: 2px; background: var(--c-gray-90);
}
.nvar-step { display: flex; align-items: flex-start; gap: 14px; padding-bottom: 1.5rem; position: relative; z-index: 1; }
.nvar-step:last-child { padding-bottom: 0; }
.nvar-step-num {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--c-blue); display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-size: .875rem; font-weight: 800; color: #fff;
}
.nvar-step-title { font-family: var(--f-head); font-size: .875rem; font-weight: 700; color: var(--c-black); margin-bottom: 5px; }
.nvar-step-text { font-size: .8125rem; color: var(--c-gray-50); line-height: 1.65; font-weight: 300; }
.nvar-step-text strong { color: var(--c-black); font-weight: 600; }

/* Checklist */
.nvar-checklist {
  background: var(--c-gray-95); border-radius: 12px;
  padding: clamp(1.25rem, 3vw, 1.5rem); margin: 1.5rem 0;
}
.nvar-checklist-title {
  font-family: var(--f-head); font-size: .8125rem; font-weight: 800;
  color: var(--c-black); text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.nvar-checklist-title svg { width: 15px; height: 15px; stroke: var(--c-blue); fill: none; stroke-width: 1.5; stroke-linecap: round; flex-shrink: 0; }
.nvar-checklist-items { display: flex; flex-direction: column; gap: 8px; list-style: none; padding: 0; margin: 0; }
.nvar-checklist-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .8125rem; color: var(--c-gray-30); line-height: 1.6;
}
.nvar-checklist-item::before { display: none !important; }
.nvar-checklist-item-ico {
  width: 20px; height: 20px; border-radius: 5px; flex-shrink: 0;
  background: var(--c-blue); display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.nvar-checklist-item-ico svg { width: 11px; height: 11px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; }
.nvar-checklist-item strong { font-weight: 600; color: var(--c-black); }

/* CTA inline */
.nvar-cta-inline {
  background: var(--c-blue); border-radius: 12px;
  padding: clamp(1.5rem, 4vw, 2rem); margin: 2.5rem 0; text-align: center;
}
.nvar-cta-inline h3 {
  font-family: var(--f-head); font-weight: 800;
  font-size: clamp(1.2rem, 4vw, 1.6rem); color: #fff; margin: 0 0 8px;
}
.nvar-cta-inline p { color: rgba(255,255,255,.7); font-size: .8125rem; margin: 0 0 1.25rem; }
.nvar-cta-inline-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: #fff; color: var(--c-blue);
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 800; border-radius: 6px; text-decoration: none; transition: all .2s;
}
.nvar-cta-inline-btn:hover { background: var(--c-gray-95); transform: translateY(-2px); }
.nvar-cta-inline-btn svg { width: 13px; height: 13px; stroke: var(--c-blue); fill: none; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; }

/* ── Logo : point bleu final ── */
.nsw-logo-dot { color: #4d8fe8; }
.nsw-footer-brand-logo .nsw-logo-dot { color: #4d8fe8; }

/* ── Logo header : lockup monogramme + wordmark ── */
.nsw-logo { display: inline-flex; align-items: center; gap: .55rem; }
.nsw-logo-text { line-height: 1; }

/* ── Newsletter ── */
.nsw-nl { background: var(--c-black); border-radius: var(--r-lg); padding: clamp(1.75rem, 4vw, 2.5rem); margin-top: 3rem; position: relative; overflow: hidden; }
.nsw-nl::before { content: ''; position: absolute; top: -90px; right: -90px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(0,74,173,.28) 0%, transparent 70%); pointer-events: none; }
.nsw-nl-title { font-family: var(--f-head); font-size: clamp(1.15rem, 3.5vw, 1.45rem); font-weight: 800; letter-spacing: -.03em; color: #fff; margin-bottom: .5rem; position: relative; }
.nsw-nl-sub { font-size: .8125rem; color: rgba(255,255,255,.45); font-weight: 300; line-height: 1.7; max-width: 460px; margin-bottom: 1.25rem; position: relative; }
.nsw-nl-form { display: flex; gap: .625rem; flex-wrap: wrap; position: relative; }
.nsw-nl-form input { flex: 1; min-width: 200px; padding: .85rem 1.05rem; border-radius: 9px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06); color: #fff; font-size: .875rem; font-family: inherit; outline: none; }
.nsw-nl-form input::placeholder { color: rgba(255,255,255,.3); }
.nsw-nl-form input:focus { border-color: #4d8fe8; }
.nsw-nl-msg { display: none; margin-top: .875rem; font-size: .8125rem; position: relative; }
.nsw-nl-legal { margin-top: .875rem; font-size: .65rem; color: rgba(255,255,255,.22); position: relative; }

/* ══ Anti-débordement mobile dans les articles ══ */
.nsw-prose { overflow-wrap: break-word; }
.nsw-prose a { word-break: break-word; }
.nsw-prose img { max-width: 100%; height: auto; }
.nsw-prose h2, .nsw-prose h3 { scroll-margin-top: 140px; }

/* ══ Sommaire mobile : barre sticky moderne ══ */
.nsw-tocbar {
  position: sticky; top: 76px; z-index: 40;
  margin: 0 0 1.5rem;
  background: rgba(255,255,255,.88);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid var(--c-gray-90); border-radius: 14px;
  box-shadow: 0 8px 28px rgba(10,10,10,.07);
}
.nsw-tocbar-btn {
  display: flex; align-items: center; gap: .625rem; width: 100%;
  padding: .8rem 1rem; background: none; border: 0; cursor: pointer;
  font-family: var(--f-sans); text-align: left;
}
.nsw-tocbar-label {
  flex: 1; min-width: 0; font-size: .8125rem; font-weight: 600; color: var(--c-black);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nsw-tocbar-step {
  font-family: var(--f-head); font-size: .6875rem; font-weight: 800;
  color: var(--c-blue); background: var(--c-blue-10);
  padding: 3px 9px; border-radius: var(--r-full); flex-shrink: 0;
}
.nsw-tocbar-step:empty { display: none; }
.nsw-tocbar-chev { color: var(--c-gray-50); flex-shrink: 0; transition: transform .25s; }
.nsw-tocbar.open .nsw-tocbar-chev { transform: rotate(180deg); }
.nsw-tocbar-track { height: 2px; background: var(--c-gray-90); border-radius: 0 0 14px 14px; overflow: hidden; }
.nsw-tocbar-fill { display: block; height: 100%; width: 0; background: var(--c-blue); transition: width .2s linear; }
.nsw-tocbar-panel {
  position: absolute; left: 0; right: 0; top: calc(100% + 8px);
  background: #fff; border: 1px solid var(--c-gray-90); border-radius: 14px;
  box-shadow: 0 18px 50px rgba(10,10,10,.14);
  max-height: min(55vh, 420px); overflow-y: auto; -webkit-overflow-scrolling: touch;
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity .2s, transform .2s;
  padding: .5rem;
}
.nsw-tocbar.open .nsw-tocbar-panel { opacity: 1; transform: none; pointer-events: auto; }
.nsw-tocbar-panel ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.nsw-tocbar-panel a {
  display: flex; align-items: baseline; gap: .75rem;
  padding: .625rem .75rem; border-radius: 9px;
  font-size: .8125rem; color: var(--c-gray-30); text-decoration: none; line-height: 1.45;
}
.nsw-tocbar-panel a i {
  font-style: normal; font-family: var(--f-head); font-weight: 800;
  font-size: .6875rem; color: var(--c-gray-70); min-width: 20px; letter-spacing: -.02em;
}
.nsw-tocbar-panel a.is-h3 { padding-left: 2.7rem; font-size: .75rem; color: var(--c-gray-50); }
.nsw-tocbar-panel a.active { background: var(--c-blue-10); color: var(--c-blue); font-weight: 600; }
.nsw-tocbar-panel a.active i { color: var(--c-blue); }

/* ══ Sommaire desktop : sidebar numérotée + indicateur ══ */
.nsw-toc ul { counter-reset: none; }
.nsw-toc a {
  display: flex; align-items: baseline; gap: .625rem;
  border-left: 2px solid var(--c-gray-90);
  padding: .375rem 0 .375rem .875rem;
  border-radius: 0; transition: color .15s, border-color .15s, background .15s;
}
.nsw-toc a i {
  font-style: normal; font-family: var(--f-head); font-weight: 800;
  font-size: .625rem; color: var(--c-gray-70); min-width: 18px; letter-spacing: -.02em;
  transition: color .15s;
}
.nsw-toc a.is-h3 { padding-left: 2.4rem; font-size: .75rem; }
.nsw-toc a span { flex: 1; }
.nsw-toc a.active { color: var(--c-blue); border-color: var(--c-blue); background: linear-gradient(90deg, var(--c-blue-10), transparent 80%); font-weight: 600; }
.nsw-toc a.active i { color: var(--c-blue); }


/* ══ Accessibilité : navigation clavier ══ */
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--c-blue); outline-offset: 3px; border-radius: 4px; }
.nsw-hero-dark :focus-visible, .nsw-cta-block :focus-visible, .nsw-header :focus-visible,
.nsw-footer :focus-visible, .nsw-nl :focus-visible { outline-color: #4d8fe8; }
.nsw-skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--c-blue); color: #fff; padding: .75rem 1.25rem;
  border-radius: 0 0 10px 0; font-size: .875rem; font-weight: 600; text-decoration: none;
}
.nsw-skip:focus { left: 0; }
