/* ===========================================================
   ITDot — V1 « Plus de rouge »
   Audacieuse, énergique. Rouge dominant, type Archivo massif.
   =========================================================== */

:root {
  --red:      #9b1b1f;
  --red-deep: #6f1c1f;
  --red-2:    #b8232a;
  --ink:      #3e3d3c;
  --ink-soft: #5a5856;
  --black:    #000000;
  --paper:    #ffffff;
  --rose:     #f7eef3;
  --rose-2:   #fbf6f8;
  --text-on-dark: rgba(255,255,255,.85);

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --r-lg: 26px;
  --r-md: 16px;
}

html, body { background: var(--paper); }
body {
  font-family: var(--font-body);
  color: var(--ink);
  font-size: clamp(16px, 1.05vw, 18px);
  overflow-x: clip;
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* Display type */
h1, h2, h3, .display { font-family: var(--font-display); font-weight: 800; line-height: .98; letter-spacing: -.02em; }
.eyebrow {
  font-family: var(--font-body); font-weight: 600;
  font-size: .94rem; letter-spacing: .22em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .7em;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: currentColor; display: inline-block; }

/* ---------------- Header ---------------- */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
  padding: 18px 0;
}
.hdr.is-scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 8px 30px rgba(62,61,60,.10);
  border-bottom: 1px solid rgba(62,61,60,.08);
  padding: 10px 0;
}
.hdr__row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 900; font-size: 1.35rem; letter-spacing: -.03em; color: #fff; transition: color .4s ease; }
.hdr.is-scrolled .brand { color: var(--ink); }
.brand .mark { width: 38px; height: 38px; border-radius: 11px; background: var(--red); color: #fff; display: grid; place-items: center; font-size: 1rem; font-weight: 900; box-shadow: 0 6px 18px rgba(155,27,31,.25); transition: background .4s ease, color .4s ease; }
.hdr.is-scrolled .brand .mark { background: var(--red); color: #fff; }
.brand .mark span { transform: translateY(1px); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: .4em;
  padding: .6em .9em; border-radius: 99px; color: rgba(255,255,255,.95);
  font-weight: 500; font-size: 1.08rem; transition: background .25s ease, color .25s ease;
}
.nav__link:hover { background: rgba(255,255,255,.1); color: #fff; }
.brand__logo { height: 40px; width: auto; display: block; }
.footer .brand__logo { height: 34px; }
.hdr.is-scrolled .brand__logo--white { display: none !important; }
.hdr.is-scrolled .brand__logo--dark { display: block !important; }
.hdr.is-scrolled .nav__link { color: var(--black); }
.hdr.is-scrolled .nav__link:hover { background: rgba(62,61,60,.07); color: var(--ink); }
.hdr.is-scrolled .nav__cta.btn--red { background: var(--ink); color: #fff; }
.hdr.is-scrolled .nav__cta.btn--red:hover { background: #2a2928; opacity: 1; }
.hdr.is-scrolled .burger { background: rgba(62,61,60,.08); }
.hdr.is-scrolled .burger span, .hdr.is-scrolled .burger span::before, .hdr.is-scrolled .burger span::after { background: var(--ink); }
.nav__link .chev { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .3s ease; }
.nav__item:hover .chev { transform: rotate(225deg) translateY(-2px); }

/* ---------------- Sélecteur de langue (toggle FR | EN) ---------------- */
.lang-switch { display: inline-flex; align-items: center; margin-left: 10px; padding: 2px; border-radius: 99px; background: rgba(255,255,255,.12); font-family: ui-monospace, monospace; font-size: .8rem; font-weight: 600; }
.lang-switch__opt { padding: .35em .62em; border-radius: 99px; color: rgba(255,255,255,.72); letter-spacing: .04em; transition: color .2s ease, background .2s ease; }
.lang-switch__opt:hover { color: #fff; }
.lang-switch__opt.is-active { color: var(--red); background: #fff; }
/* En-tête sur fond clair (scrollé / pages internes) */
.hdr.is-scrolled .lang-switch, .page-inner .hdr .lang-switch { background: rgba(62,61,60,.08); }
.hdr.is-scrolled .lang-switch__opt, .page-inner .hdr .lang-switch__opt { color: var(--ink-soft); }
.hdr.is-scrolled .lang-switch__opt:hover, .page-inner .hdr .lang-switch__opt:hover { color: var(--ink); }
.hdr.is-scrolled .lang-switch__opt.is-active, .page-inner .hdr .lang-switch__opt.is-active { color: #fff; background: var(--red); }
/* Mobile : la nav devient un panneau blanc → variante fond clair, centrée */
@media (max-width: 920px) {
  .lang-switch { background: rgba(62,61,60,.08); margin: 10px 0 0; align-self: center; }
  .lang-switch__opt { color: var(--ink-soft); }
  .lang-switch__opt:hover { color: var(--ink); }
  .lang-switch__opt.is-active { color: #fff; background: var(--red); }
}

.dropdown { position: relative; }
.dropdown__panel {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 260px; padding: 10px; border-radius: 18px;
  background: #fff; box-shadow: 0 26px 60px rgba(111,28,31,.22), 0 0 0 1px rgba(0,0,0,.04);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .28s cubic-bezier(.16,1,.3,1);
}
.dropdown:hover .dropdown__panel, .dropdown:has(:focus-visible) .dropdown__panel { opacity: 1; visibility: visible; transform: none; }
.dropdown__panel a { display: block; padding: .7em .85em; border-radius: 12px; color: var(--ink); font-weight: 500; transition: background .2s ease, color .2s ease; }
.dropdown__panel a:hover { background: var(--rose); color: var(--red); }
.dropdown__panel a small { display: block; font-weight: 400; color: var(--ink-soft); font-size: .94rem; margin-top: 2px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: .85em 1.4em; border-radius: 99px; font-weight: 600; font-size: .98rem;
  transition: transform .3s cubic-bezier(.16,1,.3,1), background .3s ease, color .3s ease, box-shadow .3s ease;
  will-change: transform;
}
/* Hover uniforme : élévation + surbrillance rouge sur tous les boutons */
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(155,27,31,.5); }
.btn--light { background: #fff; color: var(--red); box-shadow: 0 10px 26px rgba(0,0,0,.16); }
.btn--red { background: var(--red); color: #fff; box-shadow: 0 4px 12px rgba(155,27,31,.2); transition: background .3s ease, box-shadow .3s ease, transform .3s ease; }
.btn--red:hover { background: var(--red-deep); }
.btn--ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.45); }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--outline { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px rgba(62,61,60,.28); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn .arrow { transition: transform .3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.burger { display: none; width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.1); position: relative; }
.burger span, .burger span::before, .burger span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px; background: #fff; transform: translate(-50%,-50%); transition: .3s; }
.hdr.is-scrolled .burger span, .hdr.is-scrolled .burger span::before, .hdr.is-scrolled .burger span::after { background: var(--ink); }
.burger span::before { transform: translate(-50%,-7px); }
.burger span::after { transform: translate(-50%,5px); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: #fff; overflow: hidden; isolation: isolate;
  background: #1a1a1a;
}
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -3; }
.hero__video-overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(135deg, rgba(20,18,18,.66) 0%, rgba(20,18,18,.46) 50%, rgba(20,18,18,.64) 100%); }
@keyframes floatBlob { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(4vmax,-3vmax) scale(1.08); } 66% { transform: translate(-3vmax,4vmax) scale(.96); } }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E"); opacity: .05; pointer-events: none; }

.hero__inner { padding-top: 120px; padding-bottom: 60px; width: 100%; text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.hero__eyebrow { color: #fff; margin-bottom: 26px; }
.hero h1 {
  font-family: "Archivo Black", sans-serif; font-size: clamp(2.4rem, 7vw, 6.5rem); font-weight: 400;
  letter-spacing: -.035em; line-height: .92; max-width: 16ch;
}
.hero h1 .ln { display: block; overflow: hidden; }
.hero h1 .ln > span { display: block; }
html.anim-on .hero h1 .ln > span { transform: translateY(110%); animation: heroUp 1s cubic-bezier(.16,1,.3,1) forwards; }
html.anim-on .hero h1 .ln:nth-child(2) > span { animation-delay: .12s; }
html.anim-on .hero h1 .ln:nth-child(3) > span { animation-delay: .24s; }
.hero h1 em { font-style: normal; color: #c42528; }
@keyframes heroUp { to { transform: none; } }
.hero__sub { font-size: clamp(1.1rem, 1.8vw, 1.45rem); color: #fff; max-width: 46ch; margin: 30px 0 38px; font-weight: 600; }
html.anim-on .hero__sub { opacity: 0; animation: fadeIn 1s ease .5s forwards; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__actions .btn { padding: 1em 1.8em; font-size: 1.05rem; }
html.anim-on .hero__actions { opacity: 0; animation: fadeIn 1s ease .7s forwards; }
@keyframes fadeIn { to { opacity: 1; } }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.6); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; }
.hero__scroll .line { width: 1px; height: 40px; background: linear-gradient(rgba(255,255,255,.6), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { transform: scaleY(.4); opacity: .4; transform-origin: top; } 50% { transform: scaleY(1); opacity: 1; transform-origin: top; } }

/* ---------------- Section scaffold ---------------- */
.section { padding: clamp(72px, 10vw, 150px) 0; position: relative; }
.section--ink { background: var(--ink); color: #fff; }
.section--rose { background: var(--rose); }
.section--red { background: linear-gradient(160deg, var(--red) 0%, var(--red-deep) 100%); color: #fff; }
.section__head { max-width: 740px; margin-bottom: 56px; }
.section__head.center { margin-inline: auto; text-align: center; }
.section h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.3rem); color: var(--ink-soft); margin-top: 22px; line-height: 1.6; }
.section--ink .lead, .section--red .lead { color: rgba(255,255,255,.82); }

/* ---------------- Intro split ---------------- */
.intro { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(34px, 6vw, 90px); align-items: center; }
.intro__big { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.6rem); line-height: 1.12; letter-spacing: -.02em; }
.intro__big b { color: var(--red); }
.intro__txt p { color: var(--ink-soft); font-size: 1.08rem; line-height: 1.7; }
.intro__txt p + p { margin-top: 18px; }

/* ---------------- Intro visual composition ---------------- */
.intro__visual { position: relative; min-height: 380px; }
.iv { position: relative; width: 100%; height: 100%; }
.iv__badge { position: absolute; z-index: 2; display: flex; align-items: center; gap: 8px; background: #fff; padding: 10px 18px; border-radius: 12px; font-family: var(--font-body); font-size: .94rem; font-weight: 600; color: var(--ink); box-shadow: 0 8px 30px rgba(62,61,60,.13); white-space: nowrap; }
.iv__badge svg { color: var(--red); flex-shrink: 0; }
.iv__badge--top { top: -5%; right: 0%; }
.iv__badge--bottom { bottom: 10%; right: -12%; }
html.anim-on .iv__badge[data-reveal] { transition-duration: 1.4s; }

/* ---------------- Stats ---------------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; border-radius: var(--r-lg); overflow: hidden; background: rgba(255,255,255,.12); }
.stat { background: var(--red); padding: clamp(28px,3vw,46px) clamp(22px,2.5vw,34px); position: relative; transition: background .35s ease; overflow: hidden; }
.stat::before { content: ""; position: absolute; inset: 0; background: radial-gradient(140% 120% at var(--mx,80%) var(--my,0%), rgba(255,255,255,.22), transparent 60%); opacity: 0; transition: opacity .4s ease; }
.stat:hover::before { opacity: 1; }
.stat__ico { width: 54px; height: 54px; border-radius: 14px; background: rgba(255,255,255,.14); display: grid; place-items: center; margin-bottom: 20px; }
.stat__ico img { width: 30px; height: 30px; filter: brightness(0) invert(1); opacity: .92; }
.stat__num { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.4rem, 4vw, 3.6rem); line-height: 1; letter-spacing: -.03em; }
.stat__label { font-weight: 600; margin-top: 12px; font-size: 1.05rem; }
.stat__desc { color: rgba(255,255,255,.72); font-size: .94rem; margin-top: 6px; line-height: 1.45; }

/* ---------------- Services ---------------- */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.svc {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: #fff; color: var(--ink); padding: clamp(28px,3vw,42px);
  min-height: 290px; display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 18px 40px rgba(62,61,60,.06);
  border: 1px solid rgba(62,61,60,.08);
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease, color .45s ease;
  isolation: isolate;
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
  transform: translate3d(0,0,0);
  will-change: transform;
}
.svc__fill { position: absolute; inset: 0; z-index: -1; background: linear-gradient(150deg, var(--red), var(--red-deep)); transform: translate3d(0,101%,0); transition: transform .5s cubic-bezier(.16,1,.3,1); will-change: transform; }
.svc:hover .svc__fill { transform: translate3d(0,0,0); }
.svc:hover { transform: translate3d(0,-6px,0); color: #fff; box-shadow: 0 30px 60px rgba(155,27,31,.3); }
.svc:hover .svc__num, .svc:hover .svc__ico { color: #fff; border-color: rgba(255,255,255,.3); }
.svc:hover .svc__ico img { filter: brightness(0) invert(1); }
.svc:hover .svc__desc { color: var(--text-on-dark); }
.svc__top { display: flex; align-items: flex-start; justify-content: space-between; }
.svc__ico { width: 64px; height: 64px; border-radius: 16px; background: var(--rose); display: grid; place-items: center; transition: background .4s ease; }
.svc:hover .svc__ico { background: rgba(255,255,255,.16); }
.svc__ico img { width: 34px; height: 34px; transition: filter .4s ease; }
.svc__num { font-family: ui-monospace, monospace; font-size: .94rem; color: var(--red); border: 1px solid rgba(155,27,31,.3); padding: .3em .7em; border-radius: 99px; transition: color .4s ease, border-color .4s ease; }
.svc h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); margin-top: 26px; }
.svc__desc { color: var(--ink-soft); margin-top: 12px; line-height: 1.6; transition: color .4s ease; }

/* ---------------- Presence map ---------------- */
.presence { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px,5vw,70px); align-items: center; }

.map { position: relative; width: 100%; max-width: 560px; margin-inline: auto; aspect-ratio: 4 / 5; display: grid; place-items: center; border-radius: var(--r-lg); overflow: hidden; background: radial-gradient(120% 95% at 50% 5%, #ffffff, var(--rose) 65%, var(--rose-2)); border: 1px solid rgba(155,27,31,.14); box-shadow: 0 26px 60px rgba(111,28,31,.10); }
.map__plot { position: relative; height: 92%; aspect-ratio: 300 / 500; }
.map__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(62,61,60,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(62,61,60,.05) 1px, transparent 1px); background-size: 30px 30px; mask-image: radial-gradient(120% 100% at 50% 30%, #000, transparent 88%); }
.map__shapes { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: fill; filter: drop-shadow(0 6px 14px rgba(62,61,60,.14)); }
.map svg.map__links { position: absolute; inset: 0; width: 100%; height: 100%; }
.map__links path { stroke: rgba(155,27,31,.5); stroke-width: 1.1; fill: none; stroke-dasharray: 4 5; animation: dash 14s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -200; } }
.node { position: absolute; transform: translate(-50%,-50%); display: grid; place-items: center; cursor: pointer; }
.node__dot { width: 13px; height: 13px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 3px rgba(155,27,31,.3), 0 2px 6px rgba(0,0,0,.22); transition: transform .3s ease, box-shadow .3s ease; }
.node__pulse { position: absolute; width: 13px; height: 13px; border-radius: 50%; background: rgba(155,27,31,.45); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(4); opacity: 0; } }
.node.is-active .node__dot, .node:hover .node__dot { transform: scale(1.28); box-shadow: 0 0 0 5px rgba(155,27,31,.42), 0 2px 8px rgba(0,0,0,.3); }
.node__tag { position: absolute; top: -27px; left: 50%; transform: translateX(-50%); font-family: ui-monospace, monospace; font-size: .75rem; font-weight: 500; color: var(--ink); background: rgba(255,255,255,.97); border: 1px solid rgba(62,61,60,.16); padding: .26em .62em; border-radius: 7px; white-space: nowrap; box-shadow: 0 3px 10px rgba(62,61,60,.16); transition: background .3s ease, color .3s ease, border-color .3s ease; pointer-events: none; }
.node.is-active .node__tag, .node:hover .node__tag { background: var(--red); color: #fff; border-color: var(--red); }
.map__inset-circle { position: absolute; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(120,120,120,.25); background: rgba(120,120,120,.03); transform: translate(-50%,-50%); pointer-events: none; z-index: 1; }
.node--right .node__tag { top: 50%; left: calc(100% + 10px); transform: translateY(-50%); }
.node--right.is-active .node__tag, .node--right:hover .node__tag { background: var(--red); color: #fff; border-color: var(--red); }

/* France map variant */
.map--france { max-width: 460px; aspect-ratio: 300 / 280; }
.map--france .map__plot { aspect-ratio: 300 / 222; height: 85%; width: 120%; position: relative; left: 50%; transform: translate(-41%, -12%); }
.node--sm .node__dot { width: 9px; height: 9px; }
.node--sm .node__pulse { width: 9px; height: 9px; }
.node--sm .node__tag { font-size: .75rem; top: -27px; }
.map__panel { margin: 16px auto 0; max-width: 560px; padding: 16px 20px; border-radius: 16px; background: #fff; border: 1px solid rgba(62,61,60,.1); box-shadow: 0 12px 30px rgba(62,61,60,.08); }
html.anim-on .map__panel { opacity: 0; transform: translateY(8px); transition: opacity .4s ease, transform .4s ease; }
html.anim-on .map__panel.is-shown { opacity: 1; transform: none; }
.map__panel h4 { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); }
.map__panel p { color: var(--ink-soft); font-size: .94rem; margin-top: 4px; }

/* ---------------- Partners (bandeau défilant, sans cadre) ---------------- */
.pmarquee { margin-top: 40px; overflow: hidden; position: relative; left: 50%; transform: translateX(-50%); width: min(90vw, 1500px); max-width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.pmarquee__track { display: flex; align-items: center; gap: clamp(48px, 7vw, 110px); width: max-content; animation: pscroll 36s linear infinite; padding: 10px 0; }
.pmarquee:hover .pmarquee__track { animation-play-state: paused; }
@keyframes pscroll { to { transform: translateX(-50%); } }
.pmarquee img { height: 46px; width: auto; object-fit: contain; opacity: .85; transition: filter .35s ease, opacity .35s ease, transform .35s ease; }
.pmarquee img:hover { opacity: 1; transform: scale(1.03); filter: brightness(1.3); }

.platinum { display: inline-flex; align-items: center; gap: .6em; white-space: nowrap; font-family: ui-monospace, monospace; font-size: .94rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); background: var(--rose); padding: .5em 1em; border-radius: 99px; margin-bottom: 24px; }

/* ---------------- Lenovo Platinum award ---------------- */
.platinum-award { padding-top: 0; }
.platinum-award__card::after { content: ""; display: block; clear: both; }
.platinum-award__media {
  float: left;
  width: clamp(300px, 38vw, 460px);
  margin: 0 clamp(28px, 4vw, 56px) 28px 0;
  display: flex; flex-direction: column; align-items: flex-start; gap: 22px;
}
.platinum-award__media img { width: 100%; height: auto; border-radius: var(--r-md); box-shadow: 0 14px 34px rgba(62, 61, 60, .20); }
.platinum-award__media .platinum { margin-bottom: 0; }
.platinum-award__body h2 { font-size: clamp(1.45rem, 2.4vw, 2.1rem); color: var(--red); margin-bottom: 20px; }
.platinum-award__body p { color: var(--ink-soft); line-height: 1.65; margin-top: 14px; }
.platinum-award__body p:first-of-type { margin-top: 0; }
.platinum-award__body em { font-style: italic; color: var(--ink); font-weight: 600; }
@media (max-width: 800px) {
  .platinum-award__media { float: none; width: 100%; margin: 0 0 24px; align-items: stretch; }
}

/* ---------------- CTA band ---------------- */
.cta-band { text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { font-size: clamp(2.4rem, 6vw, 5rem); max-width: 18ch; margin-inline: auto; }
.cta-band p { color: var(--text-on-dark); font-size: 1.2rem; margin: 22px auto 36px; max-width: 50ch; }
.cta-band__big { position: absolute; inset: auto 0 -10% 0; font-family: var(--font-display); font-weight: 900; font-size: 14vw; color: rgba(255,255,255,.05); white-space: nowrap; pointer-events: none; text-align: center; line-height: 1; user-select: none; }
.section--ink .cta-band__big { color: rgba(155,27,31,.18); }
.section--ink.cta-band { position: relative; overflow: hidden; }
.section--ink.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 120% at 50% 120%, rgba(155,27,31,.28), transparent 70%); pointer-events: none; }

/* ---------------- Newsletter ---------------- */
.newsletter { background: var(--rose); border-top: 1px solid rgba(62,61,60,.15); border-bottom: 1px solid rgba(62,61,60,.15); }
.newsletter__inner { display: flex; align-items: center; justify-content: space-between; gap: clamp(30px,5vw,60px); }
.newsletter__text { flex: 1; min-width: 0; }
.newsletter__form { flex: 0 0 auto; width: clamp(340px,42%,520px); }
.newsletter__fields { display: flex; gap: 10px; }
.newsletter__input { flex: 1; padding: .85em 1.2em; border-radius: 12px; border: 1px solid rgba(62,61,60,.15); background: #fff; font-size: .95rem; font-family: var(--font-body); color: var(--ink); transition: border-color .3s ease, box-shadow .3s ease; }
.newsletter__input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(155,27,31,.1); }
.newsletter__input::placeholder { color: var(--ink-soft); }
.newsletter__btn { white-space: nowrap; flex-shrink: 0; }
@media (max-width: 768px) {
  .newsletter__inner { flex-direction: column; text-align: center; }
  .newsletter__text { align-items: center; display: flex; flex-direction: column; }
  .newsletter__form { width: 100%; max-width: 400px; }
  .newsletter__fields { flex-direction: column; }
}

/* ---------------- Footer ---------------- */
.footer { background: var(--black); color: rgba(255,255,255,.9); padding: clamp(60px,7vw,90px) 0 40px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { color: #fff; margin-bottom: 20px; }
.footer__contact li { display: flex; gap: 10px; padding: 6px 0; font-size: .95rem; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; flex: none; margin-top: 2px; color: var(--red-2); }
.footer__contact a { color: inherit; transition: color .25s ease; }
.footer__contact a:hover { color: #fff; }
.footer h5 { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: .02em; margin-bottom: 16px; text-transform: uppercase; }
.footer__links a { display: block; padding: 6px 0; transition: color .25s ease, padding .25s ease; }
.footer__links a:hover { color: #fff; padding-left: 6px; }
.footer__bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: .94rem; color: rgba(255,255,255,.5); }

/* ---------------- Responsive ---------------- */
@media (max-width: 1080px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
}
/* ---- Global responsive: CTA band, intro visual, badges ---- */
@media (max-width: 768px) {
  .cta-band { min-height: auto !important; height: auto !important; padding: clamp(50px,8vw,70px) 0 !important; }
  .cta-band h2 { font-size: clamp(1.6rem,5vw,2.4rem) !important; }
  .cta-band p { font-size: 1rem; }
  .cta-band .wrap { margin-top: 0 !important; }

  /* Indicateur "Défiler" décoratif — masqué pour ne pas chevaucher les boutons */
  .hero__scroll { display: none; }

  /* Badges intro : on garde le flottant comme sur desktop, mais ancrés à
     droite (right:0) pour qu'ils débordent vers l'intérieur de l'image plutôt
     que hors de l'écran quand la largeur diminue. Recouvrir l'image est OK. */
  .iv__badge { font-size: .8rem; padding: 8px 14px; }
  .iv__badge--top { top: 0; right: 0 !important; }
  .iv__badge--bottom { bottom: 8%; right: 0 !important; }
  .intro__visual { min-height: 260px; }
}

@media (max-width: 920px) {
  .burger { display: grid; place-items: center; z-index: 200; }

  /* Overlay — removed, close via document click instead */

  .nav {
    position: fixed; top: 12px; right: 12px; bottom: auto; left: auto;
    width: min(90vw, 340px);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.18), 0 0 0 1px rgba(62,61,60,.08);
    padding: 16px;
    transform: scale(.95) translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .25s ease;
    overflow-y: auto;
    max-height: calc(100vh - 24px);
    z-index: 160;
  }
  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  /* Nav links — dark on white */
  .nav__link,
  .page-inner .hdr .nav__link {
    color: var(--ink) !important;
    font-size: 1rem;
    font-weight: 600;
    padding: .7em .8em;
    border-radius: 10px;
    justify-content: space-between;
  }
  .nav__link:hover,
  .page-inner .hdr .nav__link:hover {
    background: rgba(62,61,60,.06) !important;
    color: var(--ink) !important;
  }

  /* Chevron */
  .nav__link .chev {
    border-color: var(--ink) !important;
  }

  /* Dropdown panels */
  .dropdown__panel {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none;
    background: rgba(62,61,60,.04);
    border-radius: 8px;
    margin: 0 0 4px;
    max-height: 0; overflow: hidden;
    padding: 0 8px;
    transition: max-height .4s ease, padding .4s ease;
  }
  .dropdown__panel a {
    color: var(--ink-soft);
    font-size: .94rem;
    padding: .55em .8em;
    border-radius: 8px;
    display: block;
  }
  .dropdown__panel a:hover { background: rgba(62,61,60,.06); color: var(--ink); }
  .dropdown.is-expanded .dropdown__panel { max-height: 320px; padding: 6px 8px; }
  .dropdown.is-expanded .chev { transform: rotate(225deg) translateY(-2px); }

  /* CTA button */
  .nav .btn,
  .nav__cta.btn--red,
  .page-inner .hdr .nav__cta.btn--red {
    background: var(--red) !important;
    color: #fff !important;
    margin-top: 8px;
    border-radius: 10px;
    text-align: center;
    justify-content: center;
  }
  .nav__cta.btn--red:hover,
  .page-inner .hdr .nav__cta.btn--red:hover {
    background: var(--red-deep) !important;
  }

  /* Separator line before CTA */
  .nav .nav__cta { border-top: 1px solid rgba(62,61,60,.1); padding-top: 12px; }

  .intro, .presence { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: 1fr; }
  }
@media (max-width: 560px) {
    .footer__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .cta-band__big { bottom: 0%; font-size: 22vw; }
}

/* ---- Cartes (Présence) : anti-débordement en colonne unique ---- */
@media (max-width: 920px) {
  /* Empêche les colonnes de grille de gonfler au-delà de l'écran à cause du
     contenu des cartes (plot 120%, étiquettes nowrap). */
  .presence > * { min-width: 0; }
  .map, .map--france { max-width: 100%; }
  .map__panel { max-width: 100%; }

  /* France : on neutralise le cadrage zoomé desktop. L'image reste en
     object-fit:fill et les pastilles en % → les villes restent bien placées. */
  .map--france .map__plot {
    width: 100%; height: 100%;
    left: auto; transform: none;
  }
}
