/* ============================================================
   NovaVax Conseil — main.css v3.0
   Design : Split-hero · Photo droite · Badge flottant · Cards icon+text
   Navy #0D1B3E | Gold #C9A84C | Cream #F8F6F2
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0D1B3E;
  --gold:   #C9A84C;
  --gold-d: #b8922e;
  --muted:  #6B7A99;
  --cream:  #F8F6F2;
  --white:  #FFFFFF;
  --text:   #1A1A2E;
  --border: rgba(13,27,62,.10);
  --shadow: 0 4px 28px rgba(13,27,62,.10);
  --shadow-lg: 0 12px 48px rgba(13,27,62,.14);
  --radius: 16px;
  --radius-sm: 8px;
  --container: 1240px;
  --topbar-h: 40px;
  --nav-h: 76px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { color: var(--muted); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
em { font-style: italic; }
button { cursor: pointer; font-family: inherit; }

/* ── Utility ── */
.nv-text--navy  { color: var(--navy); }
.nv-text--gold  { color: var(--gold); }
.nv-text--white { color: var(--white); }
.nv-container   { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* ── Fade-up ── */
.nv-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
  transition-delay: var(--delay, 0s);
}
.nv-fade-up.is-visible { opacity: 1; transform: none; }

/* ── Eyebrow label ── */
.nv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.nv-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Buttons ── */
.nv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  transition: all .22s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.nv-btn--navy   { background: var(--navy); color: var(--white); border-color: var(--navy); }
.nv-btn--navy:hover { background: #162d5e; border-color: #162d5e; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(13,27,62,.25); }
.nv-btn--gold   { background: var(--gold); color: var(--white); border-color: var(--gold); }
.nv-btn--gold:hover { background: var(--gold-d); border-color: var(--gold-d); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.35); }
.nv-btn--outline { background: transparent; color: var(--navy); border-color: rgba(13,27,62,.35); }
.nv-btn--outline:hover { background: var(--navy); color: var(--white); border-color: var(--navy); transform: translateY(-2px); }
.nv-btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.nv-btn--outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.nv-btn--full { width: 100%; justify-content: center; }
.nv-btn--sm { padding: 9px 20px; font-size: .8rem; }

/* ── Section generic ── */
.nv-section { padding: 96px 0; }
.nv-section--cream { background: var(--cream); }
.nv-section--dark  { background: var(--navy); }

.nv-section__header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.nv-section__header h2 { margin-top: 10px; }
.nv-section__header p  { margin-top: 14px; font-size: 1.05rem; }
.nv-section--dark .nv-section__header h2 { color: var(--white); }
.nv-section--dark .nv-section__header p  { color: rgba(255,255,255,.60); }

.nv-grid   { display: grid; gap: 24px; }
.nv-grid--3 { grid-template-columns: repeat(3, 1fr); }
.nv-grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ════════════════════════════════════
   TOP BAR
════════════════════════════════════ */
.nv-topbar {
  height: var(--topbar-h);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  font-size: .75rem;
  color: rgba(255,255,255,.55);
}
.nv-topbar__left { display: flex; gap: 20px; align-items: center; }
.nv-topbar__left a { color: rgba(255,255,255,.55); transition: color .2s; }
.nv-topbar__left a:hover { color: var(--gold); }
.nv-topbar__left span::before { content: '·'; margin-right: 8px; }
.nv-topbar__left span:first-child::before { display: none; }
.nv-topbar__right { display: flex; gap: 14px; align-items: center; }
.nv-topbar__lang {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 2px 8px;
  border-radius: 4px;
  color: rgba(255,255,255,.5);
  transition: all .2s;
  cursor: pointer;
}
.nv-topbar__lang.active,
.nv-topbar__lang:hover { background: rgba(255,255,255,.12); color: var(--white); }

/* ════════════════════════════════════
   NAV
════════════════════════════════════ */
.nv-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.nv-nav.scrolled { box-shadow: 0 4px 24px rgba(13,27,62,.10); }

.nv-nav__logo { height: 52px; display: flex; align-items: center; flex-shrink: 0; }
.nv-nav__logo img { height: 100%; width: auto; object-fit: contain; }

.nv-nav__links { display: flex; align-items: center; gap: 4px; }
.nv-nav__links a {
  padding: 8px 14px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: .65;
  transition: opacity .2s, color .2s;
  position: relative;
}
.nv-nav__links a:hover { opacity: 1; }
.nv-nav__links a.current-page,
.nv-nav__links a[aria-current] { opacity: 1; color: var(--navy); }
.nv-nav__links a.current-page::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.nv-nav__right { display: flex; align-items: center; gap: 12px; }

/* Burger */
.nv-nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nv-nav__burger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all .3s; }
.nv-nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nv-nav__burger.open span:nth-child(2) { opacity: 0; }
.nv-nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nv-nav__mobile {
  display: none;
  position: fixed;
  top: calc(var(--topbar-h) + var(--nav-h));
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px;
  z-index: 998;
  box-shadow: var(--shadow);
}
.nv-nav__mobile.open { display: block; }
.nv-nav__mobile ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.nv-nav__mobile a {
  display: block;
  padding: 10px 0;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}

/* ════════════════════════════════════
   HERO — Split layout
════════════════════════════════════ */
.nv-hero {
  display: grid;
  grid-template-columns: 46fr 54fr;
  min-height: calc(100vh - var(--topbar-h) - var(--nav-h));
  overflow: hidden;
}

/* LEFT */
.nv-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 40px;
  background: var(--white);
}
.nv-hero__left h1 { margin-bottom: 20px; }
.nv-hero__left h1 em { color: var(--gold); font-style: italic; }
.nv-hero__left > p { font-size: 1.05rem; max-width: 480px; margin-bottom: 36px; }

.nv-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* RIGHT */
.nv-hero__right {
  position: relative;
  overflow: hidden;
}

.nv-hero__photo {
  width: 100%;
  height: 100%;
  background-color: #1a3560;
  background-image: var(--hero-img, none);
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 32px 0 0 32px;
}
.nv-hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,27,62,.30) 0%, transparent 60%);
  border-radius: inherit;
}

/* Floating badge */
.nv-hero__badge {
  position: absolute;
  bottom: 48px;
  left: -28px;
  z-index: 2;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,.30);
  min-width: 240px;
}
.nv-hero__badge-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nv-hero__badge-icon svg { width: 28px; height: 28px; fill: none; stroke: var(--white); stroke-width: 1.8; }
.nv-hero__badge-num  { display: block; font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--white); line-height: 1; }
.nv-hero__badge-text { display: block; font-size: .78rem; color: rgba(255,255,255,.60); margin-top: 3px; max-width: 130px; line-height: 1.35; }

/* ════════════════════════════════════
   APPROACH — Icon + Text cards
════════════════════════════════════ */
.nv-approach { padding: 100px 0; background: var(--white); }

.nv-approach__header { text-align: center; margin-bottom: 60px; }
.nv-approach__header h2 { margin-top: 8px; }

.nv-approach__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.nv-approach__card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border: 1px solid rgba(13,27,62,.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(13,27,62,.06);
  transition: box-shadow .3s, transform .3s;
}
.nv-approach__card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.nv-approach__icon {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nv-approach__icon--navy { background: var(--navy); border-radius: 14px; }
.nv-approach__icon--gold { background: var(--gold); border-radius: 50%; }
.nv-approach__icon svg  { width: 34px; height: 34px; fill: none; stroke: var(--white); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.nv-approach__body { flex: 1; }
.nv-approach__name {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  display: block;
  margin-bottom: 8px;
}
.nv-approach__line {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 10px;
  border-radius: 1px;
}
.nv-approach__body p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* ════════════════════════════════════
   STATS BAR (dark full-width)
════════════════════════════════════ */
.nv-statsbar {
  background: var(--navy);
  padding: 0;
}
.nv-statsbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  height: 88px;
  gap: 0;
}
.nv-statsbar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  padding: 0 24px 0 0;
}
.nv-statsbar__item + .nv-statsbar__item {
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,.12);
}
.nv-statsbar__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.nv-statsbar__icon svg { width: 36px; height: 36px; fill: none; stroke: rgba(255,255,255,.50); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.nv-statsbar__text { font-size: .82rem; color: rgba(255,255,255,.70); line-height: 1.3; font-weight: 500; }
.nv-statsbar__text strong { display: block; color: var(--white); }
.nv-statsbar__cta { flex-shrink: 0; padding-left: 32px; margin-left: auto; }

/* ════════════════════════════════════
   TIERS / SERVICES
════════════════════════════════════ */
.nv-tiers { align-items: stretch; }

.nv-tier {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: box-shadow .3s, transform .3s;
}
.nv-tier:hover { box-shadow: 0 12px 40px rgba(13,27,62,.12); transform: translateY(-4px); }

.nv-tier--featured {
  border-color: var(--gold);
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(201,168,76,.18);
}
.nv-tier--featured:hover { box-shadow: 0 16px 48px rgba(201,168,76,.25); }

.nv-tier__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.nv-tier__audience {
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(107,122,153,.08);
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-block;
  align-self: flex-start;
}
.nv-tier--featured .nv-tier__audience { background: rgba(201,168,76,.10); color: var(--gold); }

.nv-tier__tag { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.nv-tier h3   { font-size: 1.45rem; color: var(--navy); }

.nv-tier__price { display: flex; align-items: baseline; gap: 4px; line-height: 1; margin: 4px 0; }
.nv-tier__price sup { font-family: 'DM Sans', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-top: 8px; }
.nv-tier__price .nv-price { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--navy); }
.nv-tier__price--text { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--navy); }
.nv-tier__info { font-size: .78rem; color: var(--muted); margin-top: -4px; }
.nv-tier__desc { font-size: .88rem; color: var(--muted); }

.nv-tier__features { display: flex; flex-direction: column; gap: 7px; }
.nv-tier__features li { font-size: .86rem; color: var(--text); padding-left: 20px; position: relative; }
.nv-tier__features li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.nv-tier__opts-title { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); }

.nv-opts { display: flex; flex-direction: column; gap: 7px; }
.nv-opt { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: var(--text); cursor: pointer; padding: 8px 12px; border-radius: var(--radius-sm); background: rgba(13,27,62,.03); transition: background .2s; }
.nv-opt:hover { background: rgba(13,27,62,.07); }
.nv-opt input { accent-color: var(--gold); width: 15px; height: 15px; flex-shrink: 0; }
.nv-opt span   { margin-left: auto; font-weight: 700; color: var(--gold); font-size: .8rem; }
.nv-opt--light { background: rgba(255,255,255,.07); color: rgba(255,255,255,.85); }
.nv-opt--light:hover { background: rgba(255,255,255,.13); }

.nv-tier__note { font-size: .74rem; color: var(--muted); text-align: center; }
.nv-tier--featured .nv-tier__note { color: rgba(255,255,255,.40); }
.nv-proforma-btn { background: none; border: 1px dashed var(--muted); color: var(--muted); border-radius: 50px; padding: 8px 18px; font-size: .82rem; font-weight: 500; transition: all .2s; }
.nv-proforma-btn:hover { border-color: var(--navy); color: var(--navy); }
.nv-pay-btn { margin-top: auto; }
.nv-tiers__note { text-align: center; font-size: .78rem; color: var(--muted); margin-top: 32px; padding: 14px 24px; background: rgba(13,27,62,.03); border-radius: var(--radius-sm); border: 1px solid var(--border); }

/* ════════════════════════════════════
   WHY SECTION (dark)
════════════════════════════════════ */
.nv-section--dark h2 { color: var(--white); }
.nv-section--dark h4 { color: var(--white); }

.nv-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.08); border-radius: var(--radius); overflow: hidden; margin-bottom: 48px; }
.nv-stat { display: flex; flex-direction: column; align-items: center; padding: 28px 20px; background: rgba(255,255,255,.04); text-align: center; }
.nv-stat strong { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); display: block; }
.nv-stat span   { font-size: .8rem; color: rgba(255,255,255,.55); margin-top: 6px; }

.nv-lang-block { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius); padding: 36px; margin-bottom: 48px; }
.nv-lang-block__header { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.nv-lang-block__grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.nv-lang-block__item   { display: flex; flex-direction: column; gap: 8px; }
.nv-lang-block__icon   { font-size: 1.8rem; }
.nv-lang-block__item strong { color: var(--white); font-size: .95rem; }
.nv-lang-block__item p      { font-size: .84rem; color: rgba(255,255,255,.50); margin: 0; }

.nv-reasons { gap: 18px; }
.nv-reason { display: flex; gap: 20px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius); padding: 26px; transition: background .3s; }
.nv-reason:hover { background: rgba(255,255,255,.08); }
.nv-reason__num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); opacity: .5; flex-shrink: 0; line-height: 1; padding-top: 2px; }
.nv-reason h4 { color: var(--white); margin-bottom: 6px; }
.nv-reason p  { font-size: .86rem; color: rgba(255,255,255,.50); margin: 0; }

/* ════════════════════════════════════
   PROCESS
════════════════════════════════════ */
.nv-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.nv-process::before { content: ''; position: absolute; top: 35px; left: calc(12.5%); right: calc(12.5%); height: 2px; background: linear-gradient(to right, var(--gold), rgba(201,168,76,.2)); }
.nv-process__step { text-align: center; padding: 0 20px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.nv-process__circle { width: 70px; height: 70px; border-radius: 50%; background: var(--white); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--navy); position: relative; z-index: 1; flex-shrink: 0; }
.nv-section--cream .nv-process__circle { background: var(--cream); }
.nv-process__step h4 { font-size: .95rem; color: var(--navy); }
.nv-process__step p  { font-size: .84rem; color: var(--muted); }

/* ════════════════════════════════════
   CONTACT
════════════════════════════════════ */
.nv-contact { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.nv-contact__info h2    { margin: 12px 0 16px; }
.nv-contact__info > p   { font-size: 1rem; margin-bottom: 28px; }
.nv-contact__items      { display: flex; flex-direction: column; gap: 12px; }
.nv-contact__item       { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--text); }
.nv-contact__item a     { color: var(--navy); font-weight: 500; }
.nv-contact__item a:hover { color: var(--gold); }
.nv-contact__form       { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.nv-proforma-banner     { background: linear-gradient(135deg, rgba(201,168,76,.10), rgba(13,27,62,.05)); border: 1px solid rgba(201,168,76,.30); border-left: 4px solid var(--gold); border-radius: var(--radius-sm); padding: 12px 16px; font-size: .86rem; color: var(--navy); margin-bottom: 18px; }
.nv-form-row            { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.nv-field               { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.nv-field label         { font-size: .8rem; font-weight: 600; color: var(--navy); letter-spacing: .03em; }
.nv-field input,
.nv-field textarea      { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--text); background: var(--white); outline: none; transition: border-color .2s, box-shadow .2s; width: 100%; }
.nv-field input:focus,
.nv-field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.12); }
.nv-field textarea      { resize: vertical; min-height: 120px; }
.nv-field input::placeholder,
.nv-field textarea::placeholder { color: #b8c0cc; }
.nv-form-row .nv-field  { margin-bottom: 0; }
.nv-wc-badge            { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 600; color: var(--muted); background: rgba(127,84,179,.07); border: 1px solid rgba(127,84,179,.18); padding: 6px 14px; border-radius: 50px; margin-top: 18px; }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.nv-footer { background: #06101f; padding: 72px 0 0; }
.nv-footer__inner { max-width: var(--container); margin: 0 auto; padding: 0 32px 56px; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 44px; border-bottom: 1px solid rgba(255,255,255,.07); }
.nv-footer__logo  { height: 56px; width: auto; margin-bottom: 18px; }
.nv-footer__brand p { font-size: .86rem; color: rgba(255,255,255,.40); line-height: 1.7; max-width: 280px; }
.nv-footer__heading { font-family: 'DM Sans', sans-serif; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.nv-footer__col ul { display: flex; flex-direction: column; gap: 9px; }
.nv-footer__col a  { font-size: .86rem; color: rgba(255,255,255,.50); transition: color .2s; }
.nv-footer__col a:hover { color: var(--white); }
.nv-footer__contact-item { display: flex; flex-direction: column; gap: 2px; margin-bottom: 12px; }
.nv-footer__contact-item .label { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.30); }
.nv-footer__contact-item a,
.nv-footer__contact-item span { font-size: .86rem; color: rgba(255,255,255,.60); }
.nv-footer__contact-item a:hover { color: var(--gold); }
.nv-footer__bottom { max-width: var(--container); margin: 0 auto; padding: 22px 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nv-footer__bottom p { font-size: .78rem; color: rgba(255,255,255,.30); }
.nv-footer__legal   { display: flex; gap: 18px; }
.nv-footer__legal a { font-size: .76rem; color: rgba(255,255,255,.30); transition: color .2s; }
.nv-footer__legal a:hover { color: rgba(255,255,255,.65); }

/* ════════════════════════════════════
   RÉALISATIONS (archive + single)
════════════════════════════════════ */
.nv-archive { padding-top: calc(var(--topbar-h) + var(--nav-h) + 80px); padding-bottom: 100px; }
.nv-archive__header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.nv-archive__header h1 { margin: 8px 0 14px; }
.nv-filter-bar  { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.nv-filter-btn  { padding: 7px 20px; border-radius: 50px; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; border: 1.5px solid var(--border); background: var(--white); color: var(--navy); cursor: pointer; transition: all .2s; }
.nv-filter-btn:hover,
.nv-filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.nv-portfolio   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.nv-portfolio__card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .3s, transform .3s; display: flex; flex-direction: column; }
.nv-portfolio__card:hover { box-shadow: 0 12px 40px rgba(13,27,62,.12); transform: translateY(-4px); }
.nv-portfolio__bar { height: 4px; background: var(--gold); }
.nv-portfolio__bar--navy  { background: var(--navy); }
.nv-portfolio__bar--muted { background: var(--muted); }
.nv-portfolio__body { padding: 26px; flex: 1; }
.nv-portfolio__meta { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.nv-portfolio__cat  { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.nv-portfolio__tier { font-size: .7rem; font-weight: 700; background: rgba(201,168,76,.10); color: var(--gold); border-radius: 50px; padding: 2px 10px; }
.nv-portfolio__card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.nv-portfolio__card p  { font-size: .86rem; }
.nv-portfolio__result  { display: inline-flex; align-items: center; gap: 5px; background: rgba(42,140,74,.09); color: #2A8C4A; border-radius: 50px; padding: 4px 12px; font-size: .78rem; font-weight: 700; margin-top: 12px; }
.nv-portfolio__tags    { padding: 14px 26px 18px; display: flex; gap: 6px; flex-wrap: wrap; border-top: 1px solid var(--border); }
.nv-portfolio__tag     { font-size: .7rem; font-weight: 500; background: rgba(13,27,62,.05); color: var(--navy); border-radius: 50px; padding: 3px 10px; }

/* Single réalisation */
.nv-single { padding-top: calc(var(--topbar-h) + var(--nav-h) + 60px); padding-bottom: 100px; }
.nv-single__hero { background: var(--navy); padding: 72px 0; margin-bottom: 64px; }
.nv-single__hero .nv-container { max-width: 800px; }
.nv-single__hero h1 { color: var(--white); margin: 10px 0 18px; }
.nv-single__hero p  { color: rgba(255,255,255,.60); font-size: 1.02rem; }
.nv-single__content { max-width: 800px; margin: 0 auto; }
.nv-single__back    { display: inline-flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.55); margin-bottom: 36px; transition: gap .2s; }
.nv-single__back:hover { gap: 12px; }
.nv-single__content .entry-content p  { margin-bottom: 16px; }
.nv-single__content .entry-content h2 { margin: 28px 0 12px; }

/* Generic page */
.nv-page { padding-top: calc(var(--topbar-h) + var(--nav-h) + 80px); padding-bottom: 100px; max-width: 800px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.nv-page h1 { margin-bottom: 28px; }
.nv-page .entry-content p { margin-bottom: 16px; }

/* WC form */
.nv-wc-form        { width: 100%; }
.nv-wc-form button { width: 100%; }

/* ══════════════════════════════════
   LANGUAGE SWITCHER
════════════════════════════════════ */
.nv-lang-switcher {
  display: flex; align-items: center; gap: 2px;
}

/* Version topbar (fond navy) */
.nv-topbar .nv-lang-switcher { gap: 0; }
.nv-topbar .nv-lang__item {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 3px 9px; border-radius: 50px;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  color: rgba(255,255,255,.50); transition: all .18s ease;
  text-transform: uppercase;
}
.nv-topbar .nv-lang__item:hover  { color: rgba(255,255,255,.85); }
.nv-topbar .nv-lang__item.active { color: #fff; background: rgba(255,255,255,.14); }

/* Version nav (fond blanc) */
.nv-nav__lang .nv-lang__item {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border-radius: 50px;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  color: rgba(13,27,62,.45); transition: all .18s ease;
  text-transform: uppercase;
}
.nv-nav__lang .nv-lang__item:hover  { color: var(--navy); }
.nv-nav__lang .nv-lang__item.active {
  color: var(--navy); background: rgba(13,27,62,.07);
}

/* Séparateur entre les langues */
.nv-lang-switcher .nv-lang__item + .nv-lang__item {
  position: relative;
}
.nv-topbar .nv-lang-switcher .nv-lang__item + .nv-lang__item::before {
  content: '·'; color: rgba(255,255,255,.25);
  margin-right: 2px; font-weight: 400;
}

/* Sur mobile : sélecteur dans le drawer */
@media (max-width: 768px) {
  .nv-nav__lang { display: none; }
}
/* Langue dans le drawer mobile */
.nv-mobile-lang {
  justify-content: center; margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.nv-mobile-lang .nv-lang__item {
  padding: 6px 16px; border-radius: 50px;
  font-size: .82rem; font-weight: 700; letter-spacing: .08em;
  color: rgba(13,27,62,.45); transition: all .18s ease;
  text-transform: uppercase;
}
.nv-mobile-lang .nv-lang__item.active {
  color: var(--navy); background: rgba(13,27,62,.07);
}
.nv-mobile-lang .nv-lang__item:hover { color: var(--navy); }

/* ── Tier — prix HT + meta ── */
.nv-tier__ht {
  font-size: .82rem; font-weight: 500; color: var(--muted);
  margin-left: 4px; vertical-align: bottom; line-height: 3.2;
}
.nv-tier__price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px; }
.nv-tier__price .nv-price {
  font-family: 'Playfair Display', serif; font-size: 2.8rem;
  font-weight: 700; color: var(--navy); line-height: 1;
}
.nv-tier--featured .nv-tier__price .nv-price { color: var(--navy); }

.nv-tier__meta { display: flex; flex-direction: column; gap: 4px; margin: 10px 0 16px; }
.nv-tier__meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem; color: var(--muted);
}
.nv-tier__meta-item svg { flex-shrink: 0; stroke: var(--muted); }
.nv-tier__commission {
  font-size: .78rem; color: var(--gold); font-weight: 600;
  background: rgba(201,168,76,.08); border-radius: 6px;
  padding: 4px 8px; margin-top: 2px; display: inline-block;
}

/* ── Bouton Stripe ── */
.nv-stripe-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 7px; margin-top: 20px;
}
.nv-stripe-btn svg { stroke: currentColor; }

/* ── Bouton Bon de commande ── */
.nv-bc-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; width: 100%; margin-top: 10px;
  padding: 9px 16px; border: 1.5px dashed rgba(13,27,62,.22);
  border-radius: 50px; background: transparent;
  font-size: .82rem; font-weight: 600; color: var(--muted);
  letter-spacing: .02em; transition: all .22s ease;
}
.nv-bc-btn svg { stroke: currentColor; flex-shrink: 0; }
.nv-bc-btn:hover {
  border-color: var(--navy); color: var(--navy);
  background: rgba(13,27,62,.04);
}
.nv-tier--featured .nv-bc-btn { border-color: rgba(201,168,76,.35); color: rgba(201,168,76,.80); }
.nv-tier--featured .nv-bc-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.06); }

/* ── Modal Bon de commande ── */
.nv-bc-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.nv-bc-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(13,27,62,.55);
  backdrop-filter: blur(4px);
}
.nv-bc-modal__card {
  position: relative; z-index: 1;
  background: var(--white); border-radius: var(--radius);
  padding: 40px; max-width: 460px; width: 100%;
  box-shadow: 0 24px 64px rgba(13,27,62,.22);
  animation: nvModalIn .28s ease;
}
@keyframes nvModalIn {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.nv-bc-modal__close {
  position: absolute; top: 16px; right: 18px;
  background: none; border: none; font-size: 1rem;
  color: var(--muted); padding: 4px 8px; border-radius: 50px;
  transition: background .18s, color .18s;
}
.nv-bc-modal__close:hover { background: var(--cream); color: var(--navy); }
.nv-bc-modal__fields { display: flex; flex-direction: column; gap: 14px; }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1100px) {
  .nv-hero { grid-template-columns: 1fr 1fr; }
  .nv-hero__left { padding: 60px 40px 60px 28px; }
  .nv-statsbar__item { padding: 0 16px 0 0; }
  .nv-statsbar__item + .nv-statsbar__item { padding-left: 16px; }
  .nv-statsbar__text { font-size: .76rem; }
  .nv-approach__grid { gap: 16px; }
}

@media (max-width: 900px) {
  .nv-hero { grid-template-columns: 1fr; min-height: auto; }
  .nv-hero__left { padding: 60px 28px; text-align: center; align-items: center; }
  .nv-hero__right { height: 380px; }
  .nv-hero__photo { border-radius: 0; }
  .nv-hero__badge { left: 24px; bottom: 24px; }
  .nv-approach__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .nv-statsbar__inner { height: auto; flex-wrap: wrap; padding: 24px 32px; gap: 16px; }
  .nv-statsbar__item { flex: calc(50% - 16px); }
  .nv-statsbar__item + .nv-statsbar__item { border-left: none; padding-left: 0; }
  .nv-statsbar__cta { width: 100%; padding-left: 0; }
  .nv-statsbar__cta .nv-btn { width: 100%; justify-content: center; }
  .nv-grid--3 { grid-template-columns: 1fr 1fr; }
  .nv-grid--2 { grid-template-columns: 1fr; }
  .nv-process { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nv-process::before { display: none; }
  .nv-contact { grid-template-columns: 1fr; gap: 40px; }
  .nv-portfolio { grid-template-columns: 1fr 1fr; }
  .nv-lang-block__grid { grid-template-columns: 1fr; gap: 20px; }
  .nv-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --topbar-h: 0px; }
  .nv-topbar { display: none; }
  .nv-nav__links { display: none; }
  .nv-nav__right .nv-btn { display: none; }
  .nv-nav__burger { display: flex; }
  .nv-nav { padding: 0 20px; }
  .nv-grid--3 { grid-template-columns: 1fr; }
  .nv-stats-row { grid-template-columns: 1fr 1fr; }
  .nv-section { padding: 64px 0; }
  .nv-tiers.nv-grid--3 { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .nv-form-row { grid-template-columns: 1fr; }
  .nv-contact__form { padding: 24px; }
  .nv-footer__inner { grid-template-columns: 1fr; }
  .nv-footer__bottom { flex-direction: column; text-align: center; }
  .nv-portfolio { grid-template-columns: 1fr; }
  .nv-process { grid-template-columns: 1fr; }
  .nv-reasons { grid-template-columns: 1fr; }
  .nv-hero__ctas { flex-direction: column; align-items: center; }
  .nv-hero__ctas .nv-btn { width: 100%; max-width: 280px; justify-content: center; }
  .nv-lang-block { padding: 20px; }
}

@media (max-width: 480px) {
  .nv-container { padding: 0 16px; }
  .nv-hero__left { padding: 44px 16px; }
  .nv-hero__badge { left: 12px; min-width: auto; padding: 14px 16px; }
  .nv-hero__badge-num { font-size: 1.7rem; }
}
