/* ═══════════════════════════════════════════════════════════
   SUPERHUMAN WELLNESS — main.css
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ── VARIABLES ───────────────────────────────────────────── */
:root {
  --noir:  #1C1A17;
  --or:    #B8965A;
  --vert:  #143D28;
  --creme: #FAF8F5;
  --beige: #EAE4DC;
  --gris:  #5C5652;
  --serif: 'EB Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
}

/* ── BASE ────────────────────────────────────────────────── */
body {
  font-family: var(--sans);
  background: var(--creme);
  color: var(--noir);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITY ─────────────────────────────────────────────── */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow--or   { color: var(--or); }
.eyebrow--vert { color: var(--vert); }
.eyebrow--light { color: rgba(255,255,255,.5); }

.tag {
  display: inline-block;
  border: 1px solid var(--beige);
  color: var(--gris);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 8px;
  border-radius: 2px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }

.btn--dark   { background: var(--noir); color: #fff; }
.btn--or     { background: var(--or);   color: #fff; }
.btn--vert   { background: var(--vert); color: #fff; }
.btn--white  { background: #fff;        color: var(--noir); }
.btn--outline {
  background: transparent;
  color: var(--noir);
  border: 1px solid var(--beige);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  padding: 14px 28px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background .2s;
}
.btn--outline-white:hover { background: rgba(255,255,255,.1); }
.btn--ghost-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.3); padding: 14px 28px; border-radius: 2px; font-size: 13px; font-weight: 600; letter-spacing: .06em; cursor: pointer; transition: background .2s, border-color .2s; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }
.btn--ghost-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.btn--outline-light { background: transparent; color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.25); padding: 14px 28px; border-radius: 2px; font-size: 13px; font-weight: 600; letter-spacing: .06em; cursor: pointer; transition: all .2s; display: inline-flex; align-items: center; text-decoration: none; }
.btn--outline-light:hover { color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-noir { background: transparent; color: var(--noir); border: 1px solid var(--beige); padding: 14px 28px; border-radius: 2px; font-size: 13px; font-weight: 600; letter-spacing: .06em; cursor: pointer; transition: all .2s; display: inline-flex; align-items: center; text-decoration: none; }
.btn--outline-noir:hover { border-color: var(--or); color: var(--or); }
.btn--ghost-vert {
  background: transparent;
  color: var(--vert);
  border: none;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn--ghost-vert::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: var(--vert);
}

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  height: 84px;
  background: rgba(28,26,23,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
/* Image PNG réelle */
.nav__logo-img { height: 86px; width: auto; display: block; }

/* Fallback SVG monogram + wordmark */
.nav__logo-fallback {
  display: none;
  align-items: center;
  gap: 11px;
}
.nav__logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav__logo-name {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}
.nav__logo-name strong { font-weight: 700; }
.nav__logo-tag {
  display: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav__item { position: relative; }

.nav__item-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,.65);
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: color .2s, background .2s;
  background: none;
  border: none;
  font-family: var(--sans);
  white-space: nowrap;
}
.nav__item-btn:hover,
.nav__item:hover .nav__item-btn {
  color: #fff;
  background: rgba(255,255,255,.06);
}

.nav__item-link {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,.65);
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: color .2s, background .2s;
}
.nav__item-link:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
}

.nav__chevron {
  width: 12px; height: 12px;
  opacity: .5;
  transition: transform .22s, opacity .2s;
  flex-shrink: 0;
}
.nav__item:hover .nav__chevron { transform: rotate(180deg); opacity: .9; }

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #22201D;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  padding: 18px 8px 8px;
  min-width: 220px;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 300;
}
.nav__dropdown--wide { min-width: 270px; }
.nav__item:hover .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 5px;
  transition: background .15s;
}
.nav__dropdown-item:hover { background: rgba(255,255,255,.06); }

.nav__dropdown-icon {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.nav__dropdown-icon svg { width: 15px; height: 15px; }

.nav__dropdown-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  margin-bottom: 2px;
  line-height: 1.2;
}
.nav__dropdown-desc {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  line-height: 1.4;
}
.nav__dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,.07);
  margin: 6px 0;
}

/* ── LANGUAGE SWITCHER ───────────────────────────────────── */
.nav__lang {
  position: relative;
  flex-shrink: 0;
  margin-right: 14px;
}
.nav__lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 4px;
  padding: 7px 11px;
  color: rgba(255,255,255,.6);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.nav__lang-toggle:hover {
  border-color: rgba(201,169,110,.5);
  color: var(--or);
}
.nav__lang-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  background: #1a1815;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 6px;
  min-width: 148px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.nav__lang.open .nav__lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  border: none;
  background: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: background .15s, color .15s;
  text-align: left;
}
.nav__lang-option:hover { background: rgba(255,255,255,.06); color: #fff; }
.nav__lang-option.active { color: var(--or); }
.nav__lang-code {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--or);
  background: rgba(184,153,84,.15);
  border: 1px solid rgba(184,153,84,.3);
  border-radius: 3px;
  padding: 2px 6px;
  line-height: 1.4;
  flex-shrink: 0;
}

.nav__cta { flex-shrink: 0; }
.nav__cta-btn {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 10px 22px;
  background: var(--or);
  color: #fff;
  border-radius: 3px;
  transition: opacity .2s, transform .15s;
}
.nav__cta-btn:hover { opacity: .85; transform: translateY(-1px); }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  padding: 140px 80px 80px;
  background: var(--noir);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(28,26,23,.78) 35%, rgba(28,26,23,.32) 100%),
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(74,107,90,.12) 0%, transparent 70%);
}
.page-hero__bg--plain::before {
  background-image:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(74,107,90,.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(184,150,90,.07) 0%, transparent 60%);
}
.page-hero__content { position: relative; max-width: 720px; }
.page-hero__eyebrow { margin-bottom: 20px; }
.page-hero__title {
  font-family: var(--serif);
  font-size: clamp(40px,5vw,68px);
  font-weight: 400;
  color: #fff;
  line-height: 1.06;
  margin-bottom: 20px;
}
.page-hero__title em { font-style: italic; color: var(--or); }
.page-hero__title .av { color: var(--vert); font-style: normal; }
.page-hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.page-hero__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
}
.breadcrumb a { color: rgba(255,255,255,.35); transition: color .2s; }
.breadcrumb a:hover { color: rgba(255,255,255,.7); }
.breadcrumb span { color: rgba(255,255,255,.2); }

/* ── SECTION COMMONS ─────────────────────────────────────── */
.section { padding: 100px 80px; }
.section--creme { background: var(--creme); }
.section--beige { background: var(--beige); }
.section--noir  { background: var(--noir); }
.section--vert  { background: var(--vert); }

.section__header { text-align: center; margin-bottom: 64px; }
.section__eyebrow { margin-bottom: 16px; }
.section__title {
  font-family: var(--serif);
  font-size: clamp(30px,4vw,48px);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 16px;
  color: var(--noir);
}
.section__title em  { font-style: italic; color: var(--or); }
.section__title .av { color: var(--vert); font-style: normal; }
.section__title--light { color: #fff; }
.section__sub {
  font-size: 15px;
  color: var(--gris);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.75;
}
.section__sub--light { color: rgba(255,255,255,.5); }

/* ── CARD GRID ───────────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.card-grid--4 { grid-template-columns: repeat(4,1fr); }
.card-grid--2 { grid-template-columns: repeat(2,1fr); }

.card {
  background: #fff;
  border: 1px solid var(--beige);
  border-radius: 4px;
  padding: 40px 36px;
  transition: box-shadow .35s ease, transform .35s ease, border-color .35s ease;
  display: flex;
  flex-direction: column;
}
.card__body { flex: 1; }
.card a[href] { margin-top: auto; }
.card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.10);
  transform: translateY(-6px);
  border-color: rgba(184,150,90,.25);
}
.card:hover .card__icon {
  background: rgba(184,150,90,.12);
  transition: background .35s ease;
}
.card:hover .card__icon svg {
  transform: scale(1.15);
  transition: transform .35s ease;
}
.card--dark {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.card--link { cursor: pointer; }

.card__num {
  font-size: 18px;
  font-weight: 600;
  color: var(--or);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.card__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card__icon svg { width: 22px; height: 22px; }
.card__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--noir);
  margin-bottom: 10px;
}
.card__title--light { color: #fff; }
.card__body {
  font-size: 14px;
  color: var(--gris);
  line-height: 1.75;
  margin-bottom: 20px;
}
.card__body--light { color: rgba(255,255,255,.55); }
.card__arrow {
  font-size: 18px;
  color: var(--or);
  transition: transform .2s;
}
.card:hover .card__arrow { transform: translateX(4px); }

/* ── SPLIT LAYOUT ────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__visual {
  background: var(--vert);
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.split__visual--dark { background: var(--noir); }
.split__visual--or   { background: var(--or); }

.split__visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.3) 0%, transparent 60%);
}
.split__placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.split__placeholder-inner {
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
}
.split__placeholder-inner svg { width: 32px; height: 32px; opacity: .3; }

.split__content {
  background: var(--creme);
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split__content--beige { background: var(--beige); }
.split__content--noir  { background: var(--noir); }

.split__eyebrow { margin-bottom: 18px; }
.split__title {
  font-family: var(--serif);
  font-size: clamp(28px,3vw,42px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 18px;
}
.split__title em  { font-style: italic; color: var(--or); }
.split__title .av { color: var(--vert); font-style: normal; }
.split__title--light { color: #fff; }
.split__body {
  font-size: 15px;
  color: var(--gris);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 32px;
}
.split__body--light { color: rgba(255,255,255,.5); }
.split__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* ── STEPS (méthode) ─────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--beige);
  border-radius: 4px;
  overflow: hidden;
}
.step {
  padding: 48px 40px;
  border-right: 1px solid var(--beige);
  background: #fff;
  display: flex;
  flex-direction: column;
}
.step:last-child { border-right: none; }
.step__num { font-size: 18px; font-weight: 600; color: var(--or); letter-spacing: .1em; margin-bottom: 16px; }
.step__title { font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--noir); margin-bottom: 12px; line-height: 1.25; }
.step__body  { font-size: 14px; color: var(--gris); line-height: 1.75; margin-bottom: 24px; flex: 1; }

/* ── STATS BAR ───────────────────────────────────────────── */
.statsbar {
  background: var(--beige);
  border-top: 1px solid #D9D3CB;
  border-bottom: 1px solid #D9D3CB;
  display: flex;
}
.statsbar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 24px;
  border-right: 1px solid #D9D3CB;
  text-align: center;
}
.statsbar__item:last-child { border-right: none; }
.statsbar__num {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--noir);
  line-height: 1;
  margin-bottom: 6px;
}
.statsbar__num span { color: var(--or); }
.statsbar__label { font-size: 12px; color: var(--gris); }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials { background: var(--noir); padding: 100px 80px; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.testimonial {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px;
  padding: 36px 32px;
}
.testimonial__stars { color: var(--or); font-size: 11px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial__quote {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 28px;
}
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(74,107,90,.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--or);
  flex-shrink: 0;
}
.testimonial__name  { font-size: 14px; font-weight: 600; color: #fff; }
.testimonial__role  { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 2px; }

/* ── TEAM CARDS ──────────────────────────────────────────── */
.team-card {
  background: #fff;
  border: 1px solid var(--beige);
  border-radius: 4px;
  overflow: hidden;
}
.team-card__photo {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--vert);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.team-card__photo-placeholder {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 32px;
  color: rgba(255,255,255,.5);
}
.team-card__body { padding: 32px; }
.team-card__name { font-family: var(--serif); font-size: 22px; font-weight: 500; margin-bottom: 4px; }
.team-card__role { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--or); margin-bottom: 16px; }
.team-card__bio  { font-size: 14px; color: var(--gris); line-height: 1.75; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--beige);
}
.faq-item:first-child { border-top: 1px solid var(--beige); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--noir);
  gap: 20px;
}
.faq-question:hover { color: var(--vert); }
.faq-icon {
  width: 24px; height: 24px;
  border: 1px solid var(--beige);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .3s, background .2s;
  font-size: 14px;
  color: var(--gris);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--vert); border-color: var(--vert); color: #fff; }
.faq-answer {
  font-size: 15px;
  color: var(--gris);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 24px; }

/* ── CONTACT FORM ────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--noir);
}
.form-input, .form-select, .form-textarea {
  font-family: var(--sans);
  font-size: 14px;
  padding: 14px 16px;
  border: 1px solid var(--beige);
  border-radius: 3px;
  background: #fff;
  color: var(--noir);
  transition: border-color .2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--vert);
}
.form-textarea { resize: vertical; min-height: 130px; }

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  background: var(--vert);
  padding: 100px 80px;
  text-align: center;
}
.cta-section__eyebrow { color: rgba(255,255,255,.5); font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 24px; }
.cta-section__title {
  font-family: var(--serif);
  font-size: clamp(32px,4vw,52px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  max-width: 600px;
  margin: 0 auto 20px;
}
.cta-section__title em { font-style: italic; color: var(--or); }
.cta-section__sub {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  max-width: 420px;
  margin: 0 auto 44px;
  line-height: 1.75;
}
.cta-section__actions { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--noir); padding: 72px 80px 40px; }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo { font-family: var(--serif); font-size: 20px; font-weight: 500; color: #fff; margin-bottom: 14px; }
.footer__logo span { color: var(--or); }
.footer__tagline { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 280px; }
.footer__col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 20px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer__links a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
}
.footer__copy { font-size: 12px; color: rgba(255,255,255,.25); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 12px; color: rgba(255,255,255,.25); transition: color .2s; }
.footer__legal a:hover { color: rgba(255,255,255,.5); }

/* ── BLOG ────────────────────────────────────────────────── */
.blog-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--beige); margin-bottom: 48px; }
.blog-tab {
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gris);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
}
.blog-tab.active { color: var(--vert); border-bottom-color: var(--vert); }
.blog-tab:hover  { color: var(--noir); }
.blog-panel { display: none; }
.blog-panel.active { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.blog-card {
  background: #fff;
  border: 1px solid var(--beige);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  cursor: pointer;
}
.blog-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.07); transform: translateY(-2px); }
.blog-card__thumb { height: 180px; background: var(--beige); position: relative; display: flex; align-items: center; justify-content: center; }
.blog-card__thumb-label { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gris); }
.blog-card__body { padding: 28px; }
.blog-card__tag  { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--or); margin-bottom: 10px; }
.blog-card__title { font-family: var(--serif); font-size: 18px; font-weight: 500; line-height: 1.3; margin-bottom: 10px; }
.blog-card__date  { font-size: 12px; color: var(--gris); }

/* ── BOOKING ─────────────────────────────────────────────── */
.booking-frame {
  background: #fff;
  border: 1px solid var(--beige);
  border-radius: 4px;
  padding: 48px;
  text-align: center;
}
.booking-frame__title { font-family: var(--serif); font-size: 28px; font-weight: 400; margin-bottom: 12px; }
.booking-frame__sub   { font-size: 15px; color: var(--gris); margin-bottom: 32px; }
.booking-slots { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 32px; }
.booking-slot {
  padding: 16px 12px;
  border: 1px solid var(--beige);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.booking-slot:hover { background: var(--vert); color: #fff; border-color: var(--vert); }
.booking-slot__date { font-size: 11px; color: var(--gris); margin-bottom: 4px; }
.booking-slot:hover .booking-slot__date { color: rgba(255,255,255,.7); }
.booking-slot__time { font-size: 15px; font-weight: 600; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .section { padding: 80px 40px; }
  .page-hero { padding: 120px 40px 60px; }
  .card-grid--4 { grid-template-columns: repeat(2,1fr); }
  .footer__top  { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav__links { display: none; }
  .section { padding: 60px 24px; }
  .page-hero { padding: 110px 24px 56px; }
  .card-grid, .card-grid--4, .card-grid--2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse { direction: ltr; }
  .split__visual { min-height: 260px; }
  .split__content { padding: 48px 28px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--beige); }
  .step:last-child { border-bottom: none; }
  .testimonials { padding: 60px 24px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer { padding: 48px 24px 32px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; }
  .blog-panel.active { grid-template-columns: 1fr; }
  .booking-slots { grid-template-columns: 1fr 1fr; }
  .statsbar { flex-wrap: wrap; }
  .statsbar__item { flex: 1 1 50%; }
}

/* ════════════════════════════════════════════════════════════
   V2 — Composants refonte (segmentation, MIIV, animations)
   ════════════════════════════════════════════════════════════ */

/* ── Reveal animations ─────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(.16,.84,.32,1), transform 0.9s cubic-bezier(.16,.84,.32,1);
  will-change: opacity, transform;
}
[data-reveal="fade"] { transform: none; }
[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(.96); }
.is-revealed { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── Hero v2 statique ──────────────────────────────────────── */
.v2hero { min-height: 92vh; background: var(--noir); color:#fff; position:relative; display:flex; align-items:center; justify-content:center; padding: 140px 80px 80px; overflow:hidden; }
.v2hero__bg { position:absolute; inset:0; background-size: cover; background-position: center; opacity: 0.4; }
.v2hero__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(28,26,23,.55) 0%, rgba(28,26,23,.85) 60%, rgba(28,26,23,1) 100%); }
.v2hero__glow { position:absolute; inset:0; background: radial-gradient(ellipse at 30% 40%, rgba(184,150,90,.15) 0%, transparent 55%); }
.v2hero__content { position:relative; max-width: 1100px; text-align:center; z-index:2; }
.v2hero__eyebrow { display:inline-block; font-size: 11px; font-weight:700; letter-spacing:.28em; text-transform:uppercase; color: var(--or); background: rgba(184,150,90,.1); border:1px solid rgba(184,150,90,.3); padding: 9px 20px; margin-bottom: 36px; border-radius: 2px; }
.v2hero__title { font-family: var(--serif); font-size: clamp(32px, 4.6vw, 54px); font-weight: 500; line-height: 1.18; color:#fff; margin-bottom: 32px; letter-spacing: -0.01em; }
.v2hero__title em { font-style: italic; color: var(--or); }
.v2hero__poetry { font-family: var(--serif); font-style: italic; font-size: clamp(15px, 1.5vw, 19px); color: rgba(255,255,255,.55); max-width: 720px; margin: 0 auto 56px; line-height: 1.7; }
.v2hero__actions { display:flex; gap: 16px; justify-content:center; flex-wrap:wrap; margin-bottom: 56px; }
.v2hero__scroll { font-size: 11px; letter-spacing: .22em; text-transform:uppercase; color: rgba(255,255,255,.4); animation: floatScroll 2.6s ease-in-out infinite; }
@keyframes floatScroll { 0%,100% { transform: translateY(0); opacity:.55; } 50% { transform: translateY(6px); opacity: 1; } }

/* ── Segmentation B2B/B2C ──────────────────────────────────── */
.v2seg { background: var(--creme); padding: 110px 80px; }
.v2seg__header { text-align:center; margin-bottom: 64px; }
.v2seg__eyebrow { font-size: 11px; font-weight:700; letter-spacing:.22em; text-transform:uppercase; color: var(--or); margin-bottom: 14px; }
.v2seg__title { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 42px); font-weight: 500; color: var(--noir); line-height: 1.2; }
.v2seg__title em { font-style:italic; color: var(--or); }
.v2seg__grid { display:grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1200px; margin: 0 auto; }
.v2seg__card { background:#fff; border:1px solid var(--beige); border-radius:4px; padding: 56px 48px; text-decoration:none; color: inherit; display:flex; flex-direction:column; transition: transform .45s cubic-bezier(.16,.84,.32,1), box-shadow .45s, border-color .3s; position:relative; overflow:hidden; }
.v2seg__card::before { content:""; position:absolute; top:0; left:0; right:0; height:3px; background: var(--or); transform: scaleX(0); transform-origin: left; transition: transform .55s cubic-bezier(.16,.84,.32,1); }
.v2seg__card:hover { transform: translateY(-6px); box-shadow: 0 30px 80px -20px rgba(0,0,0,.18); border-color: rgba(184,150,90,.3); }
.v2seg__card:hover::before { transform: scaleX(1); }
.v2seg__card--vert::before { background: var(--vert); }
.v2seg__label { font-size: 12px; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color: var(--or); margin-bottom: 22px; }
.v2seg__card--vert .v2seg__label { color: var(--vert); }
.v2seg__heading { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 30px); font-weight: 600; color: var(--noir); margin-bottom: 18px; line-height: 1.25; }
.v2seg__desc { font-size: 15px; color: var(--gris); line-height: 1.8; margin-bottom: 36px; flex:1; }
.v2seg__arrow { font-size: 13px; font-weight: 600; color: var(--noir); letter-spacing: .04em; display:flex; align-items:center; gap: 12px; }
.v2seg__arrow span { display:inline-block; transition: transform .35s cubic-bezier(.16,.84,.32,1); }
.v2seg__card:hover .v2seg__arrow span { transform: translateX(8px); }

/* ── SW n'est pas ─────────────────────────────────────────── */
.v2nest { background: var(--noir); padding: 110px 80px; color:#fff; }
.v2nest__wrap { max-width: 1100px; margin: 0 auto; }
.v2nest__title { font-family: var(--serif); font-size: clamp(30px, 4vw, 44px); font-weight: 500; text-align:center; margin-bottom: 64px; line-height: 1.2; }
.v2nest__title em { font-style: italic; color: var(--or); }
.v2nest__grid { display:grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.v2nest__sub { font-size: 12px; font-weight:700; letter-spacing:.22em; text-transform:uppercase; margin-bottom: 28px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.15); }
.v2nest__sub--no { color: #c86a5e; }
.v2nest__sub--yes { color: var(--or); }
.v2nest__list { list-style:none; display:flex; flex-direction:column; gap: 16px; padding:0; margin:0; }
.v2nest__list li { font-size: 15px; color: rgba(255,255,255,.78); line-height: 1.65; display:flex; gap: 14px; }
.v2nest__list li::before { flex-shrink:0; font-weight:700; }
.v2nest__list--no li::before { content:"×"; color:#c86a5e; font-size: 18px; line-height:1.4; }
.v2nest__list--yes li::before { content:"→"; color: var(--or); }

/* ── MIIV (Mesurer/Identifier/Intervenir/Valider) ──────────── */
.v2miiv { background: var(--creme); padding: 110px 80px; }
.v2miiv__header { text-align:center; margin-bottom: 64px; }
.v2miiv__grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.v2miiv__card { background:#fff; border:1px solid var(--beige); border-radius:4px; padding: 44px 28px; position:relative; transition: transform .4s cubic-bezier(.16,.84,.32,1), box-shadow .4s; }
.v2miiv__card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px -15px rgba(0,0,0,.12); }
.v2miiv__card::before { content:""; position:absolute; top:0; left:0; width:44px; height:3px; background: var(--or); }
.v2miiv__letter { font-family: var(--serif); font-size: 64px; font-weight: 700; color: var(--or); line-height: 1; margin-bottom: 18px; }
.v2miiv__name { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--noir); margin-bottom: 14px; }
.v2miiv__desc { font-size: 14px; color: var(--gris); line-height: 1.75; }

/* ── Stats harmonisées ─────────────────────────────────────── */
.v2stats { padding: 100px 80px; background: var(--beige); }
.v2stats__header { text-align:center; margin-bottom: 56px; }
.v2stats__grid { display:grid; grid-template-columns: repeat(6, 1fr); gap: 16px; max-width: 1300px; margin: 0 auto; }
.v2stats__item { background:#fff; border:1px solid var(--beige); border-radius:4px; padding: 32px 14px; text-align:center; transition: transform .35s, border-color .35s; }
.v2stats__item:hover { transform: translateY(-3px); border-color: rgba(184,150,90,.4); }
.v2stats__num { font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); font-weight: 700; color: var(--or); line-height: 1; margin-bottom: 10px; }
.v2stats__num sup { font-size: .5em; vertical-align: super; }
.v2stats__label { font-size: 11px; color: var(--gris); letter-spacing: .04em; text-transform: uppercase; line-height: 1.5; }

/* ── Quiz CTA bandeau (vert) ───────────────────────────────── */
.v2quizcta { background: var(--vert); padding: 120px 80px; color:#fff; text-align:center; position:relative; overflow:hidden; }
.v2quizcta::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 75% 30%, rgba(184,150,90,.18) 0%, transparent 50%); }
.v2quizcta__wrap { position:relative; max-width: 820px; margin: 0 auto; }
.v2quizcta__eyebrow { font-size: 11px; font-weight:700; letter-spacing:.28em; text-transform:uppercase; color: var(--or); margin-bottom: 22px; }
.v2quizcta__title { font-family: var(--serif); font-size: clamp(30px, 4vw, 46px); font-weight: 500; line-height: 1.18; margin-bottom: 24px; }
.v2quizcta__title em { font-style: italic; color: var(--or); }
.v2quizcta__desc { font-size: 16px; color: rgba(255,255,255,.72); max-width: 620px; margin: 0 auto 40px; line-height: 1.75; }
.v2quizcta__meta { display:flex; gap: 40px; justify-content:center; margin-bottom: 44px; flex-wrap:wrap; }
.v2quizcta__meta-item { font-size: 11px; color: rgba(255,255,255,.55); letter-spacing:.1em; text-transform:uppercase; }
.v2quizcta__meta-item strong { color:#fff; display:block; font-size: 22px; font-family: var(--serif); margin-bottom: 4px; letter-spacing:0; text-transform:none; font-weight:600; }

/* ── Hover global subtle sur cards existantes ──────────────── */
.card { transition: transform .4s cubic-bezier(.16,.84,.32,1), box-shadow .4s, border-color .3s; }
.card:not(.card--dark):hover { transform: translateY(-4px); box-shadow: 0 18px 48px -16px rgba(0,0,0,.12); }

@media (max-width: 1100px) {
  .v2miiv__grid { grid-template-columns: repeat(2, 1fr); }
  .v2stats__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .v2hero { padding: 110px 24px 60px; min-height: auto; }
  .v2seg, .v2nest, .v2miiv, .v2stats, .v2quizcta { padding-left: 24px; padding-right: 24px; padding-top: 70px; padding-bottom: 70px; }
  .v2seg__grid, .v2nest__grid { grid-template-columns: 1fr; gap: 20px; }
  .v2seg__card { padding: 40px 28px; }
  .v2miiv__grid { grid-template-columns: 1fr; }
  .v2stats__grid { grid-template-columns: repeat(2, 1fr); }
  .v2quizcta__meta { gap: 24px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE FLUID — tous écrans
   ═══════════════════════════════════════════════════════════ */

/* --- Base fluide : les sections héritent de padding fluides --- */
.section, .cta-section, .page-hero,
.v2hero, .v2seg, .v2nest, .v2stats, .v2miiv, .v2quizcta,
section[class*="section"] {
  padding-left: clamp(20px, 5vw, 80px);
  padding-right: clamp(20px, 5vw, 80px);
}

/* --- Images & médias : jamais de débordement --- */
img, video, iframe { max-width: 100%; height: auto; }
video.v2hero__bg, .page-hero__bg { width: 100%; height: 100%; }

/* --- Grilles auto-fluides par classe --- */
@media (max-width: 1100px) {
  .card-grid, .steps-grid, .testimonials__grid,
  .t2__grid, .proto-grid, .techp__family {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .t1 { grid-template-columns: 1fr !important; }
  .footer__top { grid-template-columns: repeat(2, 1fr) !important; gap: 40px !important; }
  .roi-wrap { grid-template-columns: 1fr !important; gap: 40px !important; }
  .engagement-grid, .concept-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 820px) {
  /* --- Nav mobile : logo + hamburger, CTA caché (accessible via menu) --- */
  .nav { padding: 12px 16px !important; gap: 6px !important; max-width:100vw; box-sizing:border-box; }
  .nav__logo-img { max-width: 120px !important; height:auto !important; }
  .nav__logo-fallback { max-width: 120px !important; }
  .nav__logo-wordmark { display: none !important; }
  .nav__logo-tag { display: none !important; }
  .nav__links { display: none !important; }
  .nav__cta { display: none !important; }
  .nav__lang, .nav__search-btn { display: none !important; }

  /* --- Hero allégé mobile --- */
  .v2hero__content, .page-hero__content { padding: 0 16px !important; }
  .v2hero__title, .page-hero__title { font-size: clamp(28px, 7vw, 40px) !important; line-height: 1.15 !important; }
  .v2hero__poetry { font-size: 15px !important; line-height: 1.6 !important; }
  .v2hero__actions { flex-direction: column !important; gap: 12px !important; width: 100%; }
  .v2hero__actions .btn { width: 100% !important; justify-content: center !important; }
  .btn { padding: 14px 20px !important; font-size: 13px !important; }

  /* --- Grids mono-colonne --- */
  .card-grid, .steps-grid, .testimonials__grid,
  .t2__grid, .proto-grid, .engagement-grid, .concept-grid,
  .techp__family, .techp__list { grid-template-columns: 1fr !important; }
  .techp__family { gap: 24px !important; padding: 40px 0 !important; }
  .techp__fam-head { position: static !important; }
  .techp__fam-roman { font-size: 56px !important; }
  .footer__top { grid-template-columns: 1fr !important; gap: 32px !important; }
  .v2stats__grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .v2stats__num { font-size: 32px !important; }

  /* --- Titres de section --- */
  .section__title { font-size: clamp(26px, 6vw, 36px) !important; line-height: 1.2 !important; }
  .section__sub { font-size: 15px !important; }

  /* --- Sections padding vertical réduit --- */
  .section, .cta-section, section[class*="section"] {
    padding-top: clamp(50px, 8vw, 80px) !important;
    padding-bottom: clamp(50px, 8vw, 80px) !important;
  }

  /* --- Testimonials/cards : marge et padding fluides --- */
  .testimonial { padding: 28px 22px !important; }
  .card, .step, .proto-card, .tech-card { padding: 28px 22px !important; }

  /* --- Team cards --- */
  .team-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .team-card__photo { height: 260px !important; }

  /* --- Hide flottant CTA mobile --- */
  .floating-cta, .prendre-rdv-flottant { display: none !important; }

  /* --- Statsbar horizontal → vertical --- */
  .statsbar { grid-template-columns: 1fr 1fr !important; gap: 0 !important; }
  .statsbar__item { border-right: none !important; border-bottom: 1px solid var(--beige) !important; padding: 20px !important; }

  /* --- ROI calculator full-width mobile --- */
  .roi-inputs { gap: 24px !important; }
  .roi-result { padding: 32px 24px !important; }
}

@media (max-width: 480px) {
  .v2stats__grid, .statsbar { grid-template-columns: 1fr !important; }
  .statsbar__item { border-bottom: 1px solid var(--beige) !important; border-right: none !important; }
  .v2hero__title, .page-hero__title { font-size: clamp(26px, 8vw, 32px) !important; }
  .v2quizcta__meta { flex-direction: column; gap: 16px !important; align-items: center; }
  .section__title { font-size: 24px !important; }
  .breadcrumb { font-size: 11px !important; }
  .footer__bottom { flex-direction: column !important; gap: 16px !important; text-align: center !important; }
  .footer__legal { flex-wrap: wrap !important; justify-content: center !important; gap: 12px !important; }
}

/* --- Hero video : sur mobile, préférer le poster image pour perf --- */
@media (max-width: 640px) and (prefers-reduced-data: reduce) {
  .v2hero video.v2hero__bg { display: none; }
  .v2hero::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background-image: url('../images/hero-photobio-sport.jpg');
    background-size: cover; background-position: center;
  }
}

/* --- Smooth scrolling + touch friendly --- */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100vw; }
a, button, .btn { -webkit-tap-highlight-color: rgba(184,150,90,.2); }
a.btn, button.btn, .nav__cta-btn { min-height: 44px; }
input, textarea, select { font-size: 16px; } /* évite zoom auto iOS */

/* --- Overlays/fixed elements capés à viewport --- */
.nav__search-overlay, .nav__mobile-overlay, #cookieBanner,
[class*="cookie-banner"], [class*="cookieBanner"] {
  max-width: 100vw !important;
  box-sizing: border-box !important;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE AUDIT — compression verticale, vraies hiérarchies
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 820px) {
  /* === Padding vertical drastiquement réduit === */
  .section, .cta-section, section[class*="section"],
  section[style*="padding:80px"], section[style*="padding:100px"], section[style*="padding:120px"],
  section[style*="padding-top:80px"], section[style*="padding-top:100px"], section[style*="padding-top:120px"],
  div[style*="padding:80px"], div[style*="padding:100px"], div[style*="padding:120px"] {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* === Hero hauteur raisonnable === */
  .v2hero, .page-hero {
    min-height: auto !important;
    height: auto !important;
    padding: 90px 20px 50px !important;
  }
  .v2hero__content, .page-hero__content { padding: 0 !important; max-width: 100% !important; }
  .v2hero__bg, .page-hero__bg { position: absolute !important; inset: 0 !important; }
  .v2hero__poetry { margin: 18px auto 24px !important; }
  .v2hero p { margin-bottom: 12px !important; }

  /* === Segmentation cards : compactes === */
  .v2seg__grid { gap: 14px !important; }
  .v2seg__card { padding: 24px 20px !important; }
  .v2seg__heading { font-size: 18px !important; line-height: 1.25 !important; margin-bottom: 10px !important; }
  .v2seg__desc { font-size: 13px !important; line-height: 1.55 !important; margin-bottom: 16px !important; }
  .v2seg__label { font-size: 10px !important; margin-bottom: 12px !important; }
  .v2seg__arrow { font-size: 12px !important; }

  /* === Vidéo hero allégée sur mobile === */
  .v2hero video.v2hero__bg { object-position: center; }

  /* === Titres : tailles humaines === */
  h1, .v2hero__title, .page-hero__title { font-size: clamp(26px, 7vw, 36px) !important; line-height: 1.18 !important; margin-bottom: 16px !important; }
  h2, .section__title, .v2seg__title { font-size: clamp(22px, 6vw, 30px) !important; line-height: 1.22 !important; }
  h3, .section__sub, .v2seg__heading { font-size: clamp(18px, 4.5vw, 22px) !important; line-height: 1.3 !important; }
  .v2hero__poetry, .page-hero__sub { font-size: 14px !important; line-height: 1.55 !important; }

  /* === Cards : padding compressé === */
  .card, .step, .proto-card, .tech-card, .testimonial,
  .v2seg__card, .v2nest__list, .v2miiv__card, .v2quizcta__wrap,
  .team-card, .bio-section, .ci-card, .securite-section,
  div[style*="padding:48px"], div[style*="padding:40px"], div[style*="padding:36px"] {
    padding: 24px 20px !important;
  }

  /* === Grille MIIV concept (4 cards) : 2 cols compact === */
  .concept-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .concept-grid > div { padding: 22px 16px !important; }
  .concept-grid h3 { font-size: 16px !important; }
  .concept-grid p { font-size: 12px !important; line-height: 1.55 !important; }

  /* === Engagement grid (4 promesses) === */
  .engagement-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .engagement-grid > div { padding: 22px 16px !important; }
  .engagement-grid h3 { font-size: 15px !important; }
  .engagement-grid p { font-size: 12px !important; line-height: 1.55 !important; }

  /* === Stats : 2 colonnes serrées === */
  .v2stats__grid, .statsbar__wrap { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  .v2stats__item { padding: 18px 12px !important; }
  .v2stats__num { font-size: 28px !important; line-height: 1 !important; }
  .v2stats__label { font-size: 10px !important; line-height: 1.3 !important; }

  /* === Hero section concept SW === */
  section[style*="padding:120px 80px"] { padding: 56px 20px !important; }

  /* === Espacements internes plus serrés === */
  .v2hero__actions { gap: 10px !important; margin-top: 20px !important; }
  .section__header { margin-bottom: 32px !important; }
  .section__sub { margin-top: 12px !important; }

  /* === Espace headers SW concept === */
  div[style*="margin:0 auto 72px"], div[style*="margin: 0 auto 72px"],
  div[style*="margin:0 auto 64px"], div[style*="margin: 0 auto 64px"],
  div[style*="margin:0 auto 80px"], div[style*="margin: 0 auto 80px"] {
    margin: 0 auto 36px !important;
  }

  /* === Tech premium 4 familles : compact === */
  .techp__wrap { padding: 50px 20px !important; }
  .techp__family { gap: 16px !important; padding: 36px 0 !important; }
  .techp__fam-roman { font-size: 48px !important; margin-bottom: 8px !important; }
  .techp__fam-name { font-size: 20px !important; margin-bottom: 8px !important; }
  .techp__fam-desc { font-size: 13px !important; margin-bottom: 8px !important; }
  .techp__item { padding: 16px 0 !important; gap: 12px !important; grid-template-columns: 36px 1fr 18px !important; }
  .techp__name { font-size: 16px !important; }
  .techp__desc { font-size: 12px !important; line-height: 1.5 !important; }

  /* === Proto cards : padding réduit === */
  .proto-grid { gap: 10px !important; }
  .proto-card { padding: 20px 18px !important; }
  .proto-title { font-size: 16px !important; }
  .proto-body { font-size: 12px !important; line-height: 1.5 !important; }

  /* === Team cards : photo plus compacte === */
  .team-card__photo { height: 220px !important; }
  .team-card__body { padding: 24px 20px !important; }
  .team-card__name { font-size: 22px !important; }
  .team-card__bio { font-size: 13px !important; line-height: 1.6 !important; }
  .team-card__role { font-size: 10px !important; margin-bottom: 6px !important; }

  /* === Bio dédiée page (Emmanuelle, Rémy, Coester) === */
  .bio-page { padding: 80px 20px 60px !important; }
  .bio-hero { gap: 28px !important; margin-bottom: 40px !important; }
  .bio-photo { width: 100% !important; max-width: 200px !important; height: 220px !important; margin: 0 auto !important; }
  .bio-name { font-size: clamp(28px, 7vw, 38px) !important; }
  .bio-tagline { font-size: 15px !important; line-height: 1.6 !important; }
  .bio-section { margin-bottom: 36px !important; padding-bottom: 36px !important; }
  .bio-section h2 { font-size: 11px !important; margin-bottom: 14px !important; }
  .bio-section p { font-size: 14px !important; line-height: 1.7 !important; margin-bottom: 12px !important; }
  .quote-block { padding: 24px 22px !important; }
  .quote-block p { font-size: 1rem !important; line-height: 1.6 !important; }
  .approche-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
  .approche-item { padding: 14px 16px !important; }
  .expertise-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .expertise-card { padding: 18px 18px !important; }
  .breadcrumb-bio { margin-bottom: 28px !important; }

  /* === Sécurité page === */
  .securite-page { padding: 80px 20px 60px !important; }
  .securite-section { margin-bottom: 32px !important; padding-bottom: 32px !important; }
  .ci-grid { gap: 16px !important; }
  .ci-card { padding: 22px 20px !important; }

  /* === Quiz CTA === */
  .v2quizcta__wrap { padding: 0 !important; }
  .v2quizcta__title { font-size: clamp(24px, 6vw, 32px) !important; }
  .v2quizcta__meta { gap: 16px !important; flex-direction: column !important; align-items: center !important; }

  /* === Boutons compactés === */
  .btn { padding: 13px 20px !important; font-size: 13px !important; min-height: 46px !important; }

  /* === Eyebrow plus discrets === */
  .eyebrow, .v2hero__eyebrow, .section__eyebrow { font-size: 10px !important; letter-spacing: .18em !important; margin-bottom: 14px !important; }

  /* === Footer compact 2 colonnes === */
  .footer { padding: 40px 20px 24px !important; }
  .footer__top { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 24px 16px !important; }
  .footer__top > div:first-child { grid-column: 1 / -1 !important; margin-bottom: 8px !important; }
  .footer__logo-img { width: 160px !important; }
  .footer__tagline { font-size: 12px !important; line-height: 1.5 !important; }
  .footer__col-title { font-size: 10px !important; margin-bottom: 10px !important; letter-spacing: .12em !important; }
  .footer__links li { padding: 4px 0 !important; }
  .footer__links a { font-size: 12px !important; }
  .footer__bottom { padding-top: 24px !important; flex-direction: column !important; gap: 12px !important; align-items: center !important; text-align: center !important; }
  .footer__copy, .footer__legal a { font-size: 10px !important; }
  .footer__legal { flex-wrap: wrap !important; justify-content: center !important; gap: 8px 14px !important; }

  /* === Sections inline avec padding fixé en style === */
  section[style*="padding:60px 80px"] { padding: 40px 20px !important; }
  section[style*="padding: 60px 80px"] { padding: 40px 20px !important; }

  /* === Wrappers max-width contraints === */
  .v2concept__wrap, .v2hero__content { max-width: 100% !important; }
  div[style*="max-width:1100px"], div[style*="max-width: 1100px"],
  div[style*="max-width:1200px"], div[style*="max-width: 1200px"],
  div[style*="max-width:1300px"], div[style*="max-width: 1300px"] {
    max-width: 100% !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   CATCH-ALL GRIDS INLINE (toutes pages, sélecteurs d'attributs)
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 820px) {
  /* Inline grids 2 colonnes → 1 col mobile */
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns:1fr 1.6fr"],
  div[style*="grid-template-columns: 1fr 1.6fr"],
  div[style*="grid-template-columns:1.6fr 1fr"],
  div[style*="grid-template-columns:320px 1fr"],
  div[style*="grid-template-columns: 320px 1fr"],
  div[style*="grid-template-columns:280px 1fr"],
  div[style*="grid-template-columns:repeat(2,1fr)"],
  div[style*="grid-template-columns:repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Inline grids 3-4 colonnes → 2 cols ou 1 col selon contexte */
  div[style*="grid-template-columns:repeat(3,1fr)"],
  div[style*="grid-template-columns:repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  div[style*="grid-template-columns:repeat(4,1fr)"],
  div[style*="grid-template-columns:repeat(4, 1fr)"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
  div[style*="grid-template-columns:repeat(5,1fr)"],
  div[style*="grid-template-columns:repeat(6,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  /* Tech premium familles : tout en 1 col compact, sticky off */
  .techp__family { grid-template-columns: 1fr !important; gap: 14px !important; padding: 28px 0 !important; border-top-width: 1px !important; }
  .techp__fam-head { position: static !important; }
  .techp__fam-roman { font-size: 40px !important; margin-bottom: 6px !important; }
  .techp__fam-name { font-size: 18px !important; }
  .techp__fam-desc { font-size: 12px !important; max-width: none !important; }
  .techp__fam-count { font-size: 9px !important; }
  .techp__item { padding: 14px 0 !important; gap: 10px !important; grid-template-columns: 28px 1fr 14px !important; }
  .techp__num { font-size: 11px !important; padding-top: 0 !important; }
  .techp__name { font-size: 15px !important; margin-bottom: 4px !important; }
  .techp__desc { font-size: 12px !important; line-height: 1.45 !important; }
  .techp__arrow { font-size: 14px !important; padding-top: 2px !important; }

  /* Proto cards : 2 cols mobile (au lieu de 1) pour densité */
  .proto-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  .proto-card { padding: 16px 14px !important; }
  .proto-num { font-size: 9px !important; letter-spacing: .14em !important; }
  .proto-title { font-size: 14px !important; line-height: 1.2 !important; margin-bottom: 4px !important; }
  .proto-body { font-size: 11px !important; line-height: 1.4 !important; }
  .proto-arrow { font-size: 11px !important; }

  /* Bilan-profil : items et sections compressés */
  .bloc, .bilan-bloc { padding: 24px 18px !important; margin-bottom: 16px !important; }
  .bloc__title, .bilan-title { font-size: 18px !important; }
  .bloc__question { font-size: 14px !important; }

  /* Page-hero descriptions */
  .page-hero__sub { font-size: 14px !important; line-height: 1.55 !important; max-width: 100% !important; }
  .page-hero__actions { flex-direction: column !important; gap: 10px !important; width: 100%; }
  .page-hero__actions .btn { width: 100% !important; justify-content: center !important; }

  /* Breadcrumb plus discret */
  .breadcrumb { font-size: 11px !important; margin-bottom: 16px !important; }

  /* Card-grid (7 axes particuliers, 6 cards equivalents) : 2 cols compact mobile */
  .card-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .card-grid .card { padding: 18px 14px !important; }
  .card__icon { width: 36px !important; height: 36px !important; margin-bottom: 12px !important; }
  .card__icon svg { width: 18px !important; height: 18px !important; }
  .card__title { font-size: 14px !important; line-height: 1.2 !important; margin-bottom: 8px !important; }
  .card__body { font-size: 11.5px !important; line-height: 1.45 !important; }

  /* Steps grid universel */
  .steps-grid { gap: 16px !important; }
  .step__num { font-size: 24px !important; margin-bottom: 8px !important; }
  .step__title { font-size: 16px !important; margin-bottom: 8px !important; }
  .step__body { font-size: 13px !important; line-height: 1.55 !important; }
  .step__checks li { font-size: 12px !important; }
  .step__badge { font-size: 9px !important; padding: 3px 8px !important; }
  .step__cta { font-size: 11px !important; }

  /* Toggle parcours BtoC/BtoB */
  .parcours-toggle__btn { padding: 8px 16px !important; font-size: 12px !important; }
  .parcours-toggle { margin-bottom: 28px !important; }

  /* Booking form encadrement-medical */
  .booking-frame { padding: 24px 18px !important; max-width: 100% !important; }
  .booking-form { gap: 14px !important; }

  /* Encadrement-medical bio Coester sections internes */
  .em-coester-grid > div:first-child { display: flex; justify-content: center; }
  .em-coester-photo { max-width: 200px !important; aspect-ratio: 3/4 !important; margin: 0 auto !important; }

  /* Notre-histoire team grid : compact + bio tronquée */
  .team-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .team-card__photo { aspect-ratio: 16/10 !important; max-height: 200px !important; }
  .team-card__photo img { object-position: center top !important; }
  .team-card__body { padding: 20px !important; }
  .team-card__name { font-size: 20px !important; line-height: 1.15 !important; margin-bottom: 6px !important; }
  .team-card__role { font-size: 10px !important; margin-bottom: 8px !important; }
  .team-card__bio { font-size: 12.5px !important; line-height: 1.55 !important; display:-webkit-box !important; -webkit-line-clamp:5 !important; -webkit-box-orient:vertical !important; overflow:hidden !important; margin-bottom: 12px !important; }
  .team-card__tags { gap: 6px !important; }
  .team-card__tag { font-size: 10px !important; padding: 3px 8px !important; }
  .team-card__cta { font-size: 11px !important; }

  /* Hero parallax fond : ne pas dépasser */
  .page-hero__bg { background-position: center !important; background-size: cover !important; }

  /* Listes ul/ol dans contenus serrées */
  .v2nest__list, ul[style*="list-style:none"] { font-size: 13px !important; gap: 10px !important; }

  /* Cartes secteur SW concept ("c'que nous faisons") */
  .v2concept__manifest, .v2concept__lead { font-size: 15px !important; line-height: 1.6 !important; padding: 0 4px !important; }

  /* T1 split (pages homepage style) */
  .t1 { grid-template-columns: 1fr !important; }
  .t1__visual img { max-height: 260px; object-fit: cover; width: 100%; }
  .t1__content { padding: 32px 20px !important; }
  .t1__title { font-size: 26px !important; line-height: 1.2 !important; }
  .t1__body { font-size: 14px !important; }

  /* T2 méthode protocole */
  .t2 { padding: 56px 20px !important; }
  .t2__grid { gap: 14px !important; }
  .t2__card { padding: 24px 20px !important; }
  .t2__title { font-size: 26px !important; }
  .t2__sub { font-size: 14px !important; }

  /* Témoignages */
  .testimonial { padding: 22px 18px !important; }
  .testimonial__quote { font-size: 14px !important; line-height: 1.6 !important; }

  /* CTA section */
  .cta-section { padding: 56px 20px !important; }
  .cta-section__title { font-size: clamp(22px, 6vw, 30px) !important; line-height: 1.2 !important; }
  .cta-section__sub { font-size: 14px !important; }
  .cta-section__actions { flex-direction: column !important; gap: 12px !important; }
  .cta-section__actions .btn { width: 100% !important; justify-content: center !important; }

  /* Niveau bilan-profil : éviter overflow */
  .quiz-card, .quiz-question, .quiz-options { padding: 20px 16px !important; }
  .quiz-options label { font-size: 13px !important; padding: 12px 14px !important; }

  /* ROI calculator */
  .roi-wrap { gap: 28px !important; }
  .roi-result { padding: 28px 22px !important; }
  .roi-result-num { font-size: 36px !important; }

  /* FAQ accordion */
  .faq__item { padding: 16px 18px !important; }
  .faq__question { font-size: 14px !important; }
  .faq__answer { font-size: 13px !important; line-height: 1.6 !important; }
}

@media (max-width: 480px) {
  /* === Sur très petit : Concept SW & Engagement : on garde 2 cols même sur mobile === */
  .concept-grid, .engagement-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  .concept-grid > div, .engagement-grid > div { padding: 16px 12px !important; }
  .concept-grid h3, .engagement-grid h3 { font-size: 13px !important; line-height:1.2 !important; margin-bottom: 8px !important; }
  .concept-grid p, .engagement-grid p { font-size: 11px !important; line-height: 1.45 !important; }
  .concept-grid div[style*="font-size:48px"] { font-size: 32px !important; margin-bottom: 8px !important; }

  /* === Stats : 2 colonnes serrées === */
  .v2stats__grid, .statsbar__wrap { grid-template-columns: 1fr 1fr !important; gap: 6px !important; }
  .v2stats__item { padding: 14px 8px !important; }
  .v2stats__num { font-size: 24px !important; }
  .v2stats__label { font-size: 9px !important; }

  /* === Tech premium 1 col === */
  .techp__item { grid-template-columns: 1fr !important; }
  .techp__num { font-size: 12px !important; }
  .techp__arrow { display: none !important; }

  /* === Proto cards : on garde 2 cols denses même sur very small === */
  .proto-grid { grid-template-columns: 1fr 1fr !important; gap: 6px !important; }
  .proto-card { padding: 14px 10px !important; }
  .proto-title { font-size: 13px !important; }
  .proto-body { font-size: 10.5px !important; line-height: 1.4 !important; }
  .proto-num { font-size: 8px !important; }
  .proto-arrow { font-size: 10px !important; }

  /* === Hero ultra compact === */
  .v2hero, .page-hero { padding: 90px 18px 50px !important; }
  .v2hero__title, .page-hero__title { font-size: 24px !important; }

  /* === Team grid === */
  .team-grid { gap: 16px !important; }

  /* === Bio dédiée === */
  .bio-page { padding: 70px 18px 50px !important; }
  .bio-hero { grid-template-columns: 1fr !important; gap: 20px !important; }
  .bio-photo { max-width: 160px !important; height: 180px !important; }
}

/* ════════════════════════════════════════════════════════════════
   MOBILE AUDIT — Patches 2026-04 (FAQ / Bloom / Hero CTAs / Team)
   ════════════════════════════════════════════════════════════════ */

/* --- Hero CTA buttons : full-width stack < 480px --- */
@media (max-width: 480px) {
  .v2hero__actions,
  .page-hero__actions,
  .cta-section__actions,
  .hero__actions { flex-direction: column !important; width: 100% !important; gap: 10px !important; }
  .v2hero__actions .btn,
  .page-hero__actions .btn,
  .cta-section__actions .btn,
  .cta-section__actions a,
  .hero__actions .btn { width: 100% !important; justify-content: center !important; text-align: center !important; }
}

/* --- Statsbar : 1 colonne stricte < 480px pour lisibilité --- */
@media (max-width: 480px) {
  .statsbar { grid-template-columns: 1fr !important; display: grid !important; }
  .statsbar__item { border-right: none !important; border-bottom: 1px solid var(--beige) !important; padding: 18px 16px !important; text-align: center; }
  .statsbar__item:last-child { border-bottom: none !important; }
  .statsbar__num { font-size: 30px !important; }
  .statsbar__label { font-size: 11px !important; line-height: 1.4 !important; }
}

/* --- Team home grid : 2 cols compactes + hauteur photo bornée < 480px --- */
@media (max-width: 480px) {
  .team-home-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  .team-home-grid [style*="aspect-ratio:4/3"],
  .team-home-grid [style*="aspect-ratio: 4/3"] { aspect-ratio: 1/1 !important; max-height: 170px !important; }
  .team-home-grid [style*="padding:22px"] { padding: 14px 10px 16px !important; }
  .team-home-grid [style*="font-size:20px"] { font-size: 13px !important; line-height: 1.25 !important; }
  .team-home-grid [style*="font-size:13px"] { font-size: 10.5px !important; }
  .team-home-grid [style*="font-size:11px"] { font-size: 9.5px !important; letter-spacing: .14em !important; }
}

/* --- Concept/Engagement grids : ajustements fins < 480px --- */
@media (max-width: 480px) {
  .concept-grid > div, .engagement-grid > div { padding: 14px 10px !important; }
  .concept-grid h3, .engagement-grid h3 { font-size: 12px !important; margin-bottom: 6px !important; }
  .concept-grid p, .engagement-grid p { font-size: 10.5px !important; line-height: 1.45 !important; }
  .concept-grid div[style*="font-size:48px"] { font-size: 28px !important; margin-bottom: 6px !important; }
}

/* --- Programme inclut (prog-box) < 480px : compacter --- */
@media (max-width: 480px) {
  .prog-box__card { padding: 26px 20px !important; }
  .prog-box__price { font-size: 20px !important; margin-bottom: 20px !important; }
  .prog-box__list { gap: 11px !important; }
  .prog-box__list li { font-size: 13.5px !important; }
}

/* ════════════════════════════════════════════════════════════════
   MOBILE AUDIT 2 — Patches 2026-04-16 (blog, activité, techno, etc.)
   ════════════════════════════════════════════════════════════════ */

/* --- Blog : articles-grid 3col → 1col mobile, etude-card simplifiée --- */
@media (max-width: 768px) {
  .articles-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .etude-card { grid-template-columns: auto 1fr !important; gap: 14px !important; padding: 20px !important; }
  .etude-year { display: none !important; }
  .etude-title { font-size: 15px !important; }
  .etude-excerpt { font-size: 12px !important; }
  .blog-tabs { gap: 0 !important; }
  .blog-tab { padding: 12px 18px !important; font-size: 11px !important; }
}
@media (max-width: 480px) {
  .articles-grid { gap: 14px !important; }
  .article-card__body { padding: 18px !important; }
  .article-card__title { font-size: 16px !important; }
  .article-card__excerpt { font-size: 12px !important; margin-bottom: 10px !important; }
}

/* --- Activité physique : modalite-grid, compare-table, statsbar inline --- */
@media (max-width: 480px) {
  .modalite-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .modalite-card { padding: 22px 18px !important; }
  .modalite-title { font-size: 16px !important; }
  .modalite-body { font-size: 12.5px !important; }
  .integration-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
  .compare-table { display: block !important; overflow-x: auto !important; -webkit-overflow-scrolling: touch; font-size: 11px !important; }
}

/* --- Technologies : techp roman trop gros, padding wrap, fam-head sticky --- */
@media (max-width: 420px) {
  .techp__wrap { padding: 36px 16px !important; }
  .techp__fam-roman { font-size: 36px !important; }
  .techp__fam-head { position: static !important; top: auto !important; }
  .techp__name { font-size: 14px !important; }
  .techp__desc { font-size: 11.5px !important; }
}

/* --- Inline padding 120px 80px (concept SW, engagement) → compact mobile --- */
@media (max-width: 480px) {
  section[style*="padding:120px 80px"],
  section[style*="padding: 120px 80px"],
  section[style*="padding:120px"] {
    padding: 48px 18px !important;
  }
  section[style*="padding:120px"] div[style*="margin:0 auto 72px"],
  section[style*="padding:120px"] div[style*="margin: 0 auto 72px"] {
    margin-bottom: 36px !important;
  }
}

/* --- ROI calculator sticky fix mobile --- */
@media (max-width: 640px) {
  .roi-result { position: static !important; top: auto !important; }
  .roi-wrap { gap: 24px !important; }
}

/* --- Entreprises : titre inline 32px --- */
@media (max-width: 480px) {
  h2[style*="font-size:32px"] { font-size: 22px !important; line-height: 1.25 !important; }
}

/* --- Boutons white-space sur très petit écran --- */
@media (max-width: 375px) {
  .btn { white-space: normal !important; text-align: center !important; }
  .v2hero__title { font-size: 24px !important; }
  .page-hero__title { font-size: 22px !important; }
  .section__title { font-size: 22px !important; }
}

/* --- Team home grid : initiales EG trop grosses --- */
@media (max-width: 420px) {
  .team-home-grid [style*="font-size:64px"] { font-size: 28px !important; }
  .team-home-grid [style*="aspect-ratio:4/3"],
  .team-home-grid [style*="aspect-ratio: 4/3"] { max-height: 130px !important; }
}

/* ════════════════════════════════════════════════════════════════
   ULTRA-SMALL MOBILE (360px et moins) — iPhone SE 1ère gen / Android compact
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 360px) {
  body, html { overflow-x: hidden; max-width: 100vw; }
  .page-hero, .v2hero { padding: 80px 14px 40px !important; }
  .v2hero__title, .page-hero__title { font-size: 22px !important; line-height: 1.15 !important; }
  .section__title { font-size: 20px !important; }
  .section__sub { font-size: 13px !important; }
  section[style*="padding:120px"] { padding: 40px 14px !important; }
  .card-grid .card, .step, .card { padding: 14px 12px !important; }
  .statsbar { grid-template-columns: 1fr !important; }
  .statsbar__num { font-size: 26px !important; }
  .statsbar__num span, .v2stats__num span { display: inline-block; white-space: nowrap; }
  .concept-grid > div, .engagement-grid > div { padding: 12px 9px !important; }
  .concept-grid h3, .engagement-grid h3 { font-size: 11.5px !important; }
  .concept-grid p, .engagement-grid p { font-size: 10px !important; }
  .footer { padding: 40px 14px 24px !important; }
}

