/* =========================================================
   MBOLANITECH — Landing page
   ========================================================= */

:root {
  --bg:        #F3F0EB;       /* beige clair */
  --bg-2:      #EDE8E1;       /* beige plus sombre */
  --bg-3:      #E5DFD5;
  --ink:       #1A1A1A;
  --ink-2:     #2A2A2A;
  --ink-3:     #565552;
  --ink-4:     #8A8780;
  --line:      rgba(26,26,26,.10);
  --line-2:    rgba(26,26,26,.18);
  --red:       #C41E3A;
  --red-2:     #A6172F;
  --red-soft:  rgba(196,30,58,.08);
  --paper:     #FAF8F4;
  --black:     #111110;
  --white:     #FBFAF7;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 22px;

  --font-display: "Outfit", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif:   "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --font-body:    ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

  --shadow-card: 0 1px 0 rgba(26,26,26,.04), 0 12px 36px -22px rgba(26,26,26,.18);
  --shadow-hover: 0 1px 0 rgba(26,26,26,.04), 0 28px 60px -28px rgba(196,30,58,.32);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--red); color: #fff; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.h-display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(46px, 6.8vw, 96px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  text-wrap: balance;
  color: var(--ink);
}
.h-display .logo-type {
  font-family: "Instrument Serif", "Source Serif Pro", "Iowan Old Style", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 1.04em;
  display: inline-block;
  vertical-align: baseline;
  color: var(--ink);
}
.h-display .underline-red {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.h-display .underline-red::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.18em;
  background: var(--red);
  z-index: -1;
  transform-origin: left center;
}

.h-section {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin: 14px 0 0;
  text-wrap: balance;
}
.h-section--xl {
  font-size: clamp(48px, 6vw, 88px);
  letter-spacing: -0.028em;
}
.h-section.dark { color: var(--white); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.section-tag::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--ink-3);
}
.section-tag.light { color: rgba(255,255,255,.6); }
.section-tag.light::before { background: rgba(255,255,255,.6); }

.hero-tagline {
  margin: 0 0 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.red-mark { color: var(--red); }
.tagline-sign {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.lede {
  font-family: var(--font-display);
  font-size: clamp(22px, 1.6vw, 26px);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: 0.005em;
  color: var(--ink-3);
  max-width: 56ch;
  margin: 0 0 36px;
  text-wrap: pretty;
}

/* DM Serif — réservé au mot « entreprise » du hero */
.wordmark{display:inline-block;height:.82em;width:auto;vertical-align:-.045em}
.wordmark--sm{height:1.05em;vertical-align:-.16em}
.dm-serif {
  font-family: "DM Serif Display", "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.04em;
  letter-spacing: -0.005em;
  color: var(--ink);
}

/* Bouton WhatsApp flottant (global) */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1A1A1A;
  color: #fff;
  box-shadow: 0 6px 20px -6px rgba(0,0,0,.45);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover {
  background: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -8px rgba(37,211,102,.55);
}
.wa-float svg { width: 28px; height: 28px; }
@media (max-width: 640px) {
  .wa-float { width: 52px; height: 52px; right: 18px; bottom: 18px; }
  .wa-float svg { width: 26px; height: 26px; }
}

/* =========================================================
   NAV
   ========================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 12px 40px;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  padding-left: 8px;
}
.brand-logo {
  display: block;
  height: clamp(36px, 4.2vw, 48px);
  width: auto;
  max-width: none;
  user-select: none;
  -webkit-user-drag: none;
}
.brand-logo--footer {
  height: 36px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  white-space: nowrap;
}
.nav-links a {
  font-size: 14px;
  color: var(--ink-2);
  padding: 6px 0;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--ink);
  transform: scaleX(0); transform-origin: left center;
  transition: transform .25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.005em;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.nav-cta:hover { background: var(--red); transform: translateY(-1px); }
.nav-cta.nav-wa {
  background: #25D366;
  box-shadow: 0 6px 16px -10px rgba(37,211,102,.7);
}
.nav-cta.nav-wa:hover {
  background: #1FB855;
  box-shadow: 0 12px 22px -10px rgba(37,211,102,.7);
}

.nav-burger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line-2);
  border-radius: 99px;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 16px; height: 1.5px;
  background: var(--ink);
}
.nav-burger span:nth-child(1) { top: 15px; }
.nav-burger span:nth-child(2) { bottom: 15px; }

@media (max-width: 880px) {
  .nav { grid-template-columns: auto 1fr auto; padding: 14px 20px; gap: 12px; }
  .nav-links { display: none; }
  .nav-burger { display: inline-block; }
  .nav-cta { display: none; }
  .nav.open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); padding: 20px;
    border-bottom: 1px solid var(--line);
  }
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  border-radius: 99px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 26px -12px rgba(196,30,58,.6);
}
.btn-primary:hover {
  background: var(--red-2);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -10px rgba(196,30,58,.55);
}
.btn-ghost {
  border-color: var(--red);
  color: var(--red);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--red-soft);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
}

.hero-grain {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(196,30,58,.08), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(26,26,26,.05), transparent 60%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 80px;
  padding: 32px 40px 80px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}

.hero-left { max-width: 720px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}
.hero-stats > div { padding: 4px 24px 4px 0; }
.hero-stats > div + div { border-left: 1px solid var(--line); padding-left: 24px; }
.hero-stats dt {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-stats dd {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--ink-3);
}

/* ---- Stats: entrance minimaliste & élégante ---- */
.hero-stats > div {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1);
}
.hero-stats dt { position: relative; display: inline-block; }
.hero-left.is-in .hero-stats > div { opacity: 1; transform: none; }
.hero-left.is-in .hero-stats > div:nth-child(1) { transition-delay: .25s; }
.hero-left.is-in .hero-stats > div:nth-child(2) { transition-delay: .37s; }
.hero-left.is-in .hero-stats > div:nth-child(3) { transition-delay: .49s; }
@media (prefers-reduced-motion: reduce) {
  .hero-stats > div { opacity: 1; transform: none; transition: none; }
}

/* ---- AGENT.IA card: signature logo en bas ---- */
.diag-brand {
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.diag-brand-logo {
  height: 13px;
  width: auto;
  display: block;
  opacity: .9;
  -webkit-mask-image: linear-gradient(105deg, #000 38%, rgba(0,0,0,.25) 50%, #000 62%);
  mask-image: linear-gradient(105deg, #000 38%, rgba(0,0,0,.25) 50%, #000 62%);
  -webkit-mask-size: 260% 100%;
  mask-size: 260% 100%;
  -webkit-mask-position: 130% 0;
  mask-position: 130% 0;
  animation: brandSheen 5s ease-in-out infinite;
}
@keyframes brandSheen {
  0%, 12% { -webkit-mask-position: 130% 0; mask-position: 130% 0; }
  50% { -webkit-mask-position: -30% 0; mask-position: -30% 0; }
  88%, 100% { -webkit-mask-position: -30% 0; mask-position: -30% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .diag-brand-logo { animation: none; -webkit-mask-image: none; mask-image: none; }
}

/* hero right diagram */
.hero-right {
  position: relative;
  align-self: center;
}
.diagram {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.hero-cube-img {
  position: static;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-top: -10px;
  height: auto;
  object-fit: contain;
  object-position: center top;
  z-index: 1;
  pointer-events: none;
}

.diag-card {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}
.diag-main {
  position: static;
  width: 340px;
  max-width: 100%;
  align-self: flex-end;
  margin-top: 0;
  padding: 18px 18px 14px;
  z-index: 2;
}
.diag-head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.diag-tag { font-weight: 600; color: var(--ink); }
.diag-pulse {
  display: inline-block;
  width: 8px; height: 8px; border-radius: 99px;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(196,30,58,.16);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(196,30,58,.16); }
  50% { box-shadow: 0 0 0 8px rgba(196,30,58,.04); }
}

.diag-body {
  display: flex; flex-direction: column;
  padding: 14px 0 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-2);
}
.diag-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 0;
}
.diag-row .ok { color: #2A6F4A; }
.diag-row.pending { color: var(--ink-3); }
.pending-dot {
  width: 8px; height: 8px; border-radius: 99px;
  background: transparent;
  border: 1.5px solid var(--red);
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.diag-foot {
  display: flex; gap: 8px; align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

.diag-human {
  bottom: 60px; left: 0;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  width: 200px;
  color: var(--ink);
}
.diag-human-t { font-size: 13px; font-weight: 500; }
.diag-human-s { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); margin-top: 2px; }

.diag-line {
  position: absolute;
  left: 100px; top: 200px;
  width: 140px; height: 60px;
  border-left: 1px dashed var(--line-2);
  border-bottom: 1px dashed var(--line-2);
  border-bottom-left-radius: 30px;
}

.diag-badge {
  position: absolute;
  top: 0; left: 40px;
  padding: 6px 12px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  border-radius: 99px;
}
.diag-badge span { color: var(--red); }

.hero-marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-2);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 18px 0;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  text-transform: uppercase;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
}
.marquee-track i { color: var(--red); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 20px 24px 60px; }
  .hero-right { max-width: 520px; }
  .hero-cube-img { width: 100%; margin-left: 0; margin-top: 0; }
  .hero-stats > div + div { padding-left: 16px; }
}
@media (max-width: 640px) {
  .hero { padding-top: 40px; }
  .hero-right { max-width: 440px; margin: 0 auto; }
  .diagram { gap: 18px; }
  .diag-main { display: block; width: 100%; align-self: center; margin-top: 0; }
  .hero-cube-img { width: 100%; margin-left: 0; margin-top: 0; height: auto; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-stats dt { font-size: 20px; }
  .hero-stats dd { font-size: 11px; }
}

/* =========================================================
   ABOUT
   ========================================================= */

.about {
  padding: 120px 0 100px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 80px;
}
.big-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
}
.big-text em { font-style: italic; color: var(--red); }
.big-text strong { font-weight: 600; }
.big-text .red-bold { font-style: normal; font-weight: 700; color: var(--red); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.pillar {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.pillar:last-child { border-right: none; padding-right: 0; }
.pillar:nth-child(n+2) { padding-left: 32px; }

.pillar-icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  color: var(--ink);
  background: var(--paper);
  margin-bottom: 18px;
  transition: background .25s, color .25s, transform .25s;
}
.pillar:hover .pillar-icon {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: rotate(-4deg);
}
.pillar-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-4);
  margin-bottom: 10px;
}
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.012em;
  margin: 0 0 8px;
}
.pillar p { color: var(--ink-3); margin: 0; font-size: 14.5px; }

@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--line); padding: 28px 0 !important; }
  .pillar:last-child { border-bottom: none; }
}

/* =========================================================
   POLES
   ========================================================= */

.poles {
  padding: 100px 0 120px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.poles-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}
.poles-lede {
  color: var(--ink-3);
  font-size: 16px;
  margin: 0;
  max-width: 44ch;
}

.poles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 16px;
}

/* Pole IA spans 4 cols */
.pole {
  background: #C9B8A8;
  border: 1px solid rgba(26,26,26,.12);
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
  color: var(--ink);
  animation: poleFloat 6s cubic-bezier(.2,.7,.2,1) infinite;
  will-change: transform;
}
.poles-grid > .pole:nth-child(2) { animation-delay: -1.5s; }
.poles-grid > .pole:nth-child(3) { animation-delay: -2.5s; }
.poles-grid > .pole:nth-child(4) { animation-delay: -3.5s; }
.poles-grid > .pole:nth-child(5) { animation-delay: -4.5s; }
.pole:hover { animation-play-state: paused; }
/* lévitation verticale douce en boucle — identique aux cartes « Domaines de compétences » */
@keyframes poleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@media (prefers-reduced-motion: reduce) {
  .pole { animation: none; }
}
.pole:hover {
  border-color: rgba(196,30,58,.5);
  box-shadow: var(--shadow-hover);
}
.pole:hover .pole-icon,
.pole:hover .pole-icon-xl {
  color: var(--red);
  transform: rotate(-6deg) scale(1.05);
}
.pole-icon, .pole-icon-xl {
  transition: transform .3s, color .3s;
}

.pole-ia {
  grid-column: 1 / -1;
  background: #C9B8A8;
  color: var(--ink);
  border-color: rgba(26,26,26,.12);
  padding: 40px;
}
.pole-ia:hover { border-color: var(--red); box-shadow: 0 28px 60px -28px rgba(196,30,58,.5); }

.pole-marker {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: var(--ink-3);
}
.pole-marker-num { color: var(--ink); font-weight: 600; }
.pole-marker-status { display: inline-flex; align-items: center; gap: 8px; }
.pole-marker-status.is-active { color: var(--ink); font-weight: 600; }
.pole-status {
  display: inline-flex; align-items: center; gap: 7px;
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3);
  background: rgba(26,26,26,.05);
  border: 1px solid var(--line-2);
  border-radius: 99px;
  padding: 5px 11px;
  width: fit-content;
}
.pole-status .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ink-4);
  box-shadow: 0 0 0 3px rgba(138,135,128,.18);
}
.pulse {
  width: 7px; height: 7px; border-radius: 99px;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(196,30,58,.25);
  animation: pulse 1.8s ease-in-out infinite;
}

.pole-ia-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

.pole-icon-xl {
  width: 64px; height: 64px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(26,26,26,.18);
  border-radius: var(--r-md);
  margin-bottom: 22px;
  color: var(--ink);
}
.pole-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 2.6vw, 40px);
  letter-spacing: -0.022em;
  line-height: 1.06;
  margin: 0 0 18px;
  text-wrap: balance;
  color: var(--ink);
}
.pole-desc {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.55;
  max-width: 52ch;
  margin: 0 0 28px;
}
.pole-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.pole-points li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 0;
  border-top: 1px solid rgba(26,26,26,.08);
}
.pole-points li:first-child,
.pole-points li:nth-child(2) { border-top-color: rgba(26,26,26,.16); }
.pt-num { color: var(--red); font-family: var(--font-mono); font-size: 13px; }

.pole-ia-side {
  display: flex; flex-direction: column;
  gap: 22px;
  padding-left: 36px;
  border-left: 1px solid rgba(26,26,26,.12);
}
.offers-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.offers {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.offer {
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 99px;
  color: rgba(255,255,255,.85);
}
.offer-hi {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.pole-mini-diagram {
  display: flex; flex-direction: column; gap: 8px;
  padding: 16px;
  background: rgba(26,26,26,.04);
  border: 1px solid rgba(26,26,26,.08);
  border-radius: var(--r-md);
}
.ia-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ia-svc {
  padding: 18px 18px 20px;
  background: #FAF8F4;
  border: 1px solid rgba(26,26,26,.07);
  border-radius: var(--r-md);
  box-shadow: 0 12px 28px -16px rgba(26,26,26,.45);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.ia-svc:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -18px rgba(26,26,26,.5);
  border-color: rgba(196,30,58,.32);
}
.ia-svc h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  margin: 0 0 6px;
  color: var(--ink);
}
.ia-svc p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink-2);
}
@media (max-width: 1024px) {
  .ia-services { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .ia-services { grid-template-columns: 1fr; }
}
.mini-row {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 10px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
}
.mini-row .bar {
  display: block;
  height: 4px;
  background: rgba(26,26,26,.08);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}
.mini-row .bar > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, rgba(26,26,26,.55), var(--red));
}

.pole-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  padding: 14px 20px;
  background: var(--ink);
  color: var(--white);
  border-radius: 99px;
  align-self: flex-start;
  transition: background .2s, color .2s, transform .2s;
  text-wrap: balance;
}
.pole-cta:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-1px);
}

.pole-secondary {
  grid-column: span 2;
  display: flex; flex-direction: column;
}
.pole-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px;
}
.pole-num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.pole-icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(26,26,26,.20);
  border-radius: var(--r-md);
  color: var(--ink);
  background: rgba(255,255,255,.18);
}
.pole-title-sm {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  line-height: 1.15;
  text-wrap: balance;
  color: var(--ink);
}
.pole-desc-sm {
  color: var(--ink-2);
  font-size: 15px;
  margin: 0 0 22px;
  max-width: 38ch;
}
.pole-services {
  margin-top: auto;
  display: flex; flex-wrap: wrap; gap: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(26,26,26,.12);
}
.pole-services span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(255,255,255,.35);
  color: var(--ink);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .poles-head { grid-template-columns: 1fr; gap: 16px; }
  .poles-grid { grid-template-columns: repeat(2, 1fr); }
  .pole-secondary { grid-column: span 1; }
  .pole-ia-grid { grid-template-columns: 1fr; gap: 24px; }
  .pole-ia-side { padding-left: 0; border-left: none; border-top: 1px solid rgba(26,26,26,.12); padding-top: 24px; }
}
@media (max-width: 640px) {
  .poles-grid { grid-template-columns: 1fr; }
  .pole-ia, .pole { padding: 24px; }
  .pole-points { grid-template-columns: 1fr; }
}

/* =========================================================
   WHY (dark band)
   ========================================================= */

.why {
  background: var(--bg-2);
  color: var(--ink);
  padding: 100px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-head {
  max-width: 720px;
  margin-bottom: 60px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-cell {
  padding: 40px 28px 40px 0;
  border-right: 1px solid var(--line);
}
.why-cell:nth-child(n+2) { padding-left: 28px; }
.why-cell:last-child { border-right: none; padding-right: 0; }
.why-icon {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-2);
  background: var(--paper);
  border-radius: var(--r-md);
  color: var(--ink);
  margin-bottom: 28px;
  transition: background .25s, color .25s, transform .25s, border-color .25s;
}
.why-cell:hover .why-icon {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: rotate(-4deg);
}
.why-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--red);
  margin-bottom: 28px;
}
.why-cell h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--ink);
}
.why-cell p {
  color: var(--ink-3);
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
}
@media (max-width: 880px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-cell:nth-child(2) { border-right: none; }
  .why-cell:nth-child(1), .why-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 520px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-cell { border-right: none !important; border-bottom: 1px solid var(--line); padding: 28px 0 !important; }
  .why-cell:last-child { border-bottom: none; }
}

/* =========================================================
   PROCESS
   ========================================================= */

.process {
  padding: 120px 0;
}
/* ---- Testimonial ---- */
.testimonial {
  padding: 100px 0 40px;
}
.testimonial-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.testimonial-sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.35vw, 22px);
  color: var(--ink-3);
  margin: 18px 0 0;
}
.testimonial-card {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 48px 56px;
  box-shadow: var(--shadow-card);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.testimonial-card:hover {
  border-color: rgba(196,30,58,.35);
  box-shadow: 0 24px 60px -28px rgba(196,30,58,.25);
}
.testimonial-header {
  margin: -48px -56px 32px;
  padding: 24px 32px;
  background: #F5F1ED;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial-header img {
  display: block;
  height: 90px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.testimonial-quote {
  margin: 0 0 24px;
  padding: 12px 0 0;
  max-width: 56ch;
}
.testimonial-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: var(--ink-3);
  text-wrap: pretty;
}
.testimonial-quote .qm {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--red);
  font-size: 1.3em;
  line-height: 0;
  vertical-align: -0.04em;
}
.testimonial-stars {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 24px;
}
.testimonial-sep {
  border: none;
  border-top: 2px solid var(--red);
  width: 56px;
  margin: 0 0 24px;
}
.testimonial-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.testimonial-person { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 99px;
  background: var(--ink);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 15px;
}
.testimonial-name {
  font-family: "DM Serif Display", "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ink);
  white-space: nowrap;
}
.testimonial-role {
  font-family: "DM Serif Display", "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.2;
  color: var(--bg-warm-fg, #9C8870);
  margin-top: 4px;
  letter-spacing: -0.005em;
}
.testimonial-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1.5px solid var(--red);
  color: var(--red);
  border-radius: 99px;
  font-weight: 600;
  font-size: 14px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.testimonial-cta:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-1px);
}
@media (max-width: 720px) {
  .testimonial-card { padding: 36px 28px 32px; }
  .testimonial-header { margin: -36px -28px 28px; padding: 20px 24px; }
  .testimonial-header img { height: 64px; }
  .testimonial-foot { flex-direction: column; align-items: flex-start; }
}
.process-lede {
  color: var(--ink-3);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.3vw, 21px);
  font-weight: 500;
  max-width: 56ch;
  margin: 16px 0 64px;
  letter-spacing: 0.005em;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 75px;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.step {
  padding: 0;
  position: relative;
  z-index: 1;
}
.step-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
  background: var(--bg);
  padding-bottom: 8px;
  position: relative;
}
.step-icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-2);
  background: var(--paper);
  border-radius: var(--r-md);
  color: var(--ink);
  transition: color .25s, background .25s, transform .25s, border-color .25s;
}
.step:hover .step-icon {
  color: var(--red);
  border-color: var(--red);
  transform: rotate(-4deg);
}
.step-idx {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  background: var(--ink);
  color: var(--white);
  border-radius: 99px;
}
.step h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.012em;
  margin: 0 0 8px;
}
.step p { color: var(--ink-3); font-size: 15px; margin: 0; max-width: 28ch; }

@media (max-width: 880px) {
  /* Timeline en VERTICAL : rail d'icônes à gauche, connecteurs vers le bas */
  .timeline {
    display: flex;
    flex-direction: column;
    gap: 44px;
    overflow: visible;
  }
  .timeline::before { display: none; }
  .step {
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-areas:
      "icon title"
      "icon desc";
    column-gap: 22px;
    align-items: start;
    padding: 0;
    border-bottom: none;
  }
  .step-top {
    grid-area: icon;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 56px;
    margin-bottom: 0;
    padding-bottom: 0;
    background: transparent;
  }
  .step h4 { grid-area: title; margin: 4px 0 8px; }
  .step p { grid-area: desc; max-width: none; }
  /* Connecteur vertical + flèche entre chaque étape */
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 27px;
    top: calc(100% + 8px);
    width: 2px;
    height: 28px;
    background: var(--line-2);
    transform: translateX(-50%);
  }
  .step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 27px;
    top: calc(100% + 30px);
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
    transform: translateX(-50%) rotate(45deg);
    z-index: 1;
  }
}

/* =========================================================
   QUOTE
   ========================================================= */

.quote { padding: 40px 0 100px; }
.quote-card {
  background: var(--paper);
  border-left: 6px solid var(--red);
  border-radius: var(--r-md);
  padding: 56px 64px;
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  box-shadow: var(--shadow-card);
}
.quote-mark {
  position: absolute;
  top: 24px; right: 56px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 120px;
  line-height: 1;
  color: var(--red);
  opacity: 0.16;
}
.quote-card blockquote {
  margin: 0 0 36px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--ink);
  max-width: 60ch;
}
.quote-card blockquote em { font-style: italic; color: var(--red); }
.quote-card figcaption {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.quote-meta { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 44px; height: 44px;
  background: var(--ink);
  color: var(--white);
  border-radius: 99px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.quote-name { font-weight: 500; font-size: 15px; }
.quote-role { color: var(--ink-3); font-size: 13px; margin-top: 2px; }
.quote-logo { color: var(--ink-3); }

@media (max-width: 640px) {
  .quote-card { padding: 36px 28px; }
  .quote-mark { right: 24px; font-size: 80px; }
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact {
  background: var(--bg-2);
  color: var(--ink);
  padding: 100px 0 120px;
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-intro { max-width: 460px; }
.contact-lede {
  color: var(--ink-2);
  font-size: 17px;
  margin: 18px 0 40px;
  line-height: 1.55;
}
.contact-lede strong { color: var(--ink); font-weight: 700; }

.wa-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  background: #25D366;
  color: #fff;
  border-radius: 99px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 18px 0 0;
  box-shadow: 0 10px 24px -14px rgba(37,211,102,.7);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.wa-pill:hover {
  transform: translateY(-1px);
  background: #1FB855;
  box-shadow: 0 16px 30px -14px rgba(37,211,102,.75);
  color: #fff;
}
.wa-pill-icon {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.15);
  border-radius: 99px;
}

.contact-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.contact-list li {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 500;
}
.contact-list svg { color: var(--red); flex-shrink: 0; }
.contact-list a:hover { color: var(--red); }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: var(--shadow-card);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field > span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  width: 100%;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-4); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(196,30,58,.10);
}
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-3) 50%),
                    linear-gradient(135deg, var(--ink-3) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 13px) center;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}
.field select option { background: var(--white); color: var(--ink); }

.check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
  cursor: pointer;
  user-select: none;
}
.check input {
  appearance: none;
  width: 18px; height: 18px;
  border: 1px solid var(--line-2);
  background: var(--white);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.check input:checked {
  background: var(--red);
  border-color: var(--red);
}
.check input:checked::after {
  content: "";
  position: absolute;
  left: 5px; top: 1px;
  width: 6px; height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-submit { align-self: flex-start; margin-top: 4px; }
.form-submit.is-loading .btn-label::after { content: "…"; }

.form-toast {
  display: none;
  align-items: center; gap: 10px;
  padding: 14px 16px;
  background: rgba(42,111,74,.10);
  border: 1px solid rgba(42,111,74,.4);
  color: #2A6F4A;
  border-radius: var(--r-md);
  font-size: 14px;
}
.form-toast.show { display: flex; }
.form-toast svg { color: #2A6F4A; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  background: var(--bg-2);
  padding: 64px 0 24px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-brand .brand--footer { padding-left: 0; }
.footer-tag {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  margin: 20px 0 0;
  max-width: 32ch;
  text-align: center;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-social svg { color: var(--red); }
.footer-solutions li a,
.footer-contacts li > a,
.footer-contacts li > svg + a,
.footer-contacts li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-solutions li a {
  font-weight: 700;
  color: var(--ink);
  font-size: 14.5px;
  transition: color .2s;
}
.footer-solutions li a svg { color: var(--red); flex-shrink: 0; }
.footer-solutions li a:hover { color: var(--red); }
.footer-contacts {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.footer-contacts li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.footer-contacts li > svg { color: var(--red); flex-shrink: 0; }
.footer-contacts a { color: inherit; }
.footer-contacts a:hover { color: var(--red); }
.footer-contacts .is-bold { font-weight: 700; color: var(--ink); }
.footer-contacts .phones { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.footer-contacts .phone-sep { color: var(--ink-4); }
.footer-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-col a { font-size: 14.5px; color: var(--ink-2); transition: color .2s; }
.footer-col a:hover { color: var(--red); }
.footer-col li { font-size: 14.5px; color: var(--ink-2); }

.footer-tagline {
  font-size: 14.5px;
  font-weight: 600;
  white-space: nowrap;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px;
  font-size: 13px;
  color: var(--ink-3);
}
.footer-legal { display: flex; gap: 10px; }
.footer-legal a:hover { color: var(--red); }

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* =========================================================
   PORTFOLIO TEASER (bloc déplacé depuis la maquette)
   ========================================================= */
.pf-teaser{background:var(--bg-2);border-top:1px solid var(--line);padding:clamp(72px,9vw,118px) 0}
.pf-grid{display:grid;grid-template-columns:1.08fr .92fr;gap:clamp(40px,6vw,84px);align-items:center;margin-top:10px}
.pf-lede{color:var(--ink-3);font-size:clamp(17px,1.25vw,19px);max-width:50ch;margin:22px 0 26px;line-height:1.62}
.pf-name{font-family:var(--font-display);font-weight:600;color:var(--ink)}
.pf-tags{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 32px}
.pf-tag{font-family:var(--font-mono);font-size:12px;letter-spacing:.03em;color:var(--ink-2);border:1px solid var(--line-2);border-radius:999px;padding:6px 13px}
.pf-cta{display:inline-flex;align-items:center;gap:10px;font-family:var(--font-display);font-weight:600;font-size:15px;color:var(--white);background:var(--ink);border:1.5px solid var(--ink);border-radius:999px;padding:13px 22px;transition:transform .22s cubic-bezier(.2,.7,.2,1),box-shadow .22s,background .2s,border-color .2s}
.pf-cta:hover{transform:translateY(-2px);box-shadow:var(--shadow-hover);background:var(--red);border-color:var(--red)}
.pf-cta svg{width:16px;height:16px;transition:transform .22s cubic-bezier(.2,.7,.2,1)}
.pf-cta:hover svg{transform:translate(3px,-3px)}
.pf-card{background:var(--paper);border:1px solid var(--line-2);border-radius:var(--r-lg);box-shadow:var(--shadow-card);overflow:hidden}
.pf-card-head{display:flex;align-items:center;gap:10px;padding:15px 18px;border-bottom:1px solid var(--line);font-family:var(--font-mono);font-size:12.5px;font-weight:600;letter-spacing:.08em;color:var(--ink)}
.pf-card-head .dot{width:9px;height:9px;border-radius:50%;background:var(--red);box-shadow:0 0 0 4px var(--red-soft);flex:none}
.pf-card-head .dots{margin-left:auto;display:flex;gap:6px}
.pf-card-head .dots i{width:8px;height:8px;border-radius:50%;border:1px solid var(--line-2)}
.pf-card-body{padding:12px 18px 18px;font-family:var(--font-mono);font-size:13px;line-height:2.05}
.pf-row{display:flex;gap:14px;border-bottom:1px dashed transparent;transition:border-color .2s}
.pf-row:hover{border-color:var(--line)}
.pf-row .k{color:var(--ink-4);min-width:92px}
.pf-row .k::before{content:"› ";color:var(--line-2)}
.pf-row .v{color:var(--ink)}
.pf-row .v b{color:var(--red);font-weight:700}
.pf-cursor{display:inline-block;width:8px;height:1.05em;background:var(--red);margin-left:4px;transform:translateY(2px);animation:pfblink 1.1s steps(1) infinite}
@keyframes pfblink{50%{opacity:0}}
@media (max-width:880px){.pf-grid{grid-template-columns:1fr;gap:38px}.pf-card{max-width:460px}}

/* =========================================================
   AJOUTS INTÉGRATION — honeypot, états formulaire, accessibilité
   ========================================================= */

/* Honeypot anti-spam : hors écran, invisible et ignoré par les lecteurs d'écran */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Pastille « Actif » sur les pôles secondaires : espacement net sous l'en-tête */
.pole-secondary .pole-status { margin: 0 0 14px; }

/* États du toast : succès (vert, par défaut) / erreur (rouge) */
.form-toast .ic-err { display: none; }
.form-toast.error {
  background: rgba(196,30,58,.08);
  border-color: rgba(196,30,58,.45);
  color: var(--red-2);
}
.form-toast.error .ic-ok { display: none; }
.form-toast.error .ic-err { display: inline-block; color: var(--red-2); }

/* Bouton d'envoi pendant le chargement */
.form-submit:disabled { opacity: .72; cursor: progress; }

/* Focus clavier visible et cohérent (accessibilité) */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  border-radius: 4px;
}
/* Les champs ont déjà un anneau de focus dédié : pas de double contour */
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible { outline: none; }

/* Mobile : le logo wordmark MBOLANITECH est très large (ratio ~9.75:1) et le SVG
   n'a pas de dimensions intrinsèques. On réduit sa HAUTEUR (la largeur suit le ratio)
   pour laisser la place au bouton menu et empêcher tout débordement horizontal. */
@media (max-width: 880px) {
  .brand-logo { height: 26px; width: auto; max-width: none; }
  .brand-logo--footer { height: 26px; width: auto; max-width: none; }
}
@media (max-width: 420px) {
  .brand-logo { height: 22px; }
}

/* =========================================================
   OFFRES IA — section accueil
   ========================================================= */
.offres { padding: 100px 0; background: var(--bg); }
.offres-head { max-width: 760px; margin-bottom: 44px; }
.offres-lede { color: var(--ink-3); font-size: 16px; margin: 16px 0 0; max-width: 62ch; line-height: 1.6; }
.offres-lede strong { color: var(--ink); font-weight: 600; }
.offres-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.offre-card {
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 20px 18px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.offre-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(196,30,58,.32); }
.offre-card--hi { background: var(--ink); border-color: var(--ink); }
.offre-card--hi .offre-name { color: #fff; }
.offre-card--hi .offre-for { color: rgba(255,255,255,.72); }
.offre-card--hi .offre-sup { color: #fff; border-color: rgba(255,255,255,.28); }
.offre-top { display: flex; flex-direction: column; gap: 8px; }
.offre-name { font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; color: var(--ink); }
.offre-sup { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-3); border: 1px solid var(--line-2); border-radius: 99px; padding: 3px 9px; width: fit-content; }
.offre-for { margin: 0; font-size: 13px; line-height: 1.5; color: var(--ink-2); }
.offres-note { margin: 26px 0 0; font-size: 13.5px; line-height: 1.6; color: var(--ink-3); max-width: 76ch; }
.offres-note strong { color: var(--ink); font-weight: 600; }
.offres-cta { margin-top: 30px; margin-bottom: 0; }
@media (max-width: 1024px) { .offres-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .offres-grid { grid-template-columns: 1fr; } .offres { padding: 72px 0; } }

/* Principe de supervision (About) */
.about-principle {
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  color: var(--ink-3);
  border-left: 3px solid var(--red);
  padding-left: 18px;
}
.about-principle strong { color: var(--ink); font-weight: 600; }

/* =========================================================
   WEGLOT — déplacé en bas à GAUCHE (évite le chevauchement avec le bouton WhatsApp, en bas à droite)
   ========================================================= */
.weglot-container,
.country-selector,
.wg-default,
.weglot_switcher,
#weglot-switcher,
.wgcurrent,
[class*="wg-drop"] {
  left: 22px !important;
  right: auto !important;
  bottom: 22px !important;
  z-index: 9000 !important;
}
/* Le bouton WhatsApp reste prioritaire et cliquable */
.wa-float { z-index: 9999 !important; }
@media (max-width: 768px) {
  .weglot-container,
  .country-selector,
  .wg-default,
  .weglot_switcher,
  #weglot-switcher,
  .wgcurrent,
  [class*="wg-drop"] {
    left: 14px !important;
    right: auto !important;
    bottom: 14px !important;
  }
}

/* =========================================================
   PRISE DE RENDEZ-VOUS — options, note sécurité, liens CTA
   ========================================================= */
.rdv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.rdv-opt { background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 24px; display: flex; flex-direction: column; gap: 10px; box-shadow: var(--shadow-card); }
.rdv-opt .dur { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--red); }
.rdv-opt h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; margin: 0; color: var(--ink); letter-spacing: -0.01em; }
.rdv-opt p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-2); }
.rdv-opt .btn { margin-top: auto; align-self: flex-start; padding: 12px 18px; font-size: 14px; }
.rdv-opt { transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.rdv-opt:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -18px rgba(26,26,26,.18); border-color: rgba(196,30,58,.32); }
@media (prefers-reduced-motion: reduce) { .rdv-opt:hover { transform: none; } }
.rdv-note { font-size: 13.5px; color: var(--ink-3); margin: 18px 0 0; max-width: 72ch; line-height: 1.6; }
.rdv-note strong { color: var(--ink); font-weight: 600; }
.rdv-secu { font-size: 13px; color: var(--ink-3); background: var(--bg-2); border: 1px solid var(--line); border-left: 3px solid var(--red); border-radius: var(--r-md); padding: 12px 16px; margin: 4px 0 18px; line-height: 1.55; }
.rdv-secu strong { color: var(--ink); font-weight: 600; }
/* Notice « réservation bientôt disponible » (repli Cal.com) */
.rdv-soon { margin: 16px 0 0; font-size: 13.5px; line-height: 1.55; color: var(--ink); background: var(--red-soft); border: 1px solid rgba(196,30,58,.3); border-radius: var(--r-md); padding: 12px 16px; }
.rdv-soon a { color: var(--red); font-weight: 600; }
@media (max-width: 880px){ .rdv-grid { grid-template-columns: 1fr; } }

