/* Regular (200) */
@font-face {
  font-family: "TradeGothicNextRegular";
  src:
    url("typo/TradeGothicNextLTW05-Rg.woff2") format("woff2"),
    url("typo/TradeGothicNextLTW05-Rg.woff") format("woff"),
    url("typo/TradeGothicNextLTPro-Rg.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap; /* évite le flash invisible */
}

/* Condensed */
@font-face {
  font-family: "TradeGothicNextCond";
  src:
    url("typo/TradeGothicNextLTW05-Cond.woff2") format("woff2"),
    url("typo/TradeGothicNextLTW05-Cond.woff") format("woff"),
    url("typo/TradeGothicNextLTPro-Cn.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap; /* évite le flash invisible */  
}

/* Light */
@font-face {
  font-family: "TradeGothicNextLight";
  src:
    url("typo/TradeGothicNextLTW05-Light.woff2") format("woff2"),
    url("typo/TradeGothicNextLTW05-Light.woff") format("woff"),
    url("typo/TradeGothicNextLTPro-Lt.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap; /* évite le flash invisible */  
}

:root {
  --bg-1: #0d4b86;
  --bg-2: #0a2442;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-soft: rgba(255, 255, 255, 0.12);
  --panel-strong: rgba(10, 36, 66, 0.55);
  --text: #ffffff;
  --text-dark: #13212f;
  --muted: rgba(255, 255, 255, 0.5);
  --accent: #15c2c8;
  --accent-dark: #0f6f7a;
  --border: rgba(255, 255, 255, 0.16);
  --shadow: 0 1.1rem 3rem rgba(0, 0, 0, 0.28);
  --frame-padding: clamp(12px, 1vw, 20px);
  --radius-xl: clamp(22px, 2vw, 34px);
  --radius-lg: clamp(18px, 1.5vw, 28px);
  --radius-md: clamp(14px, 1.2vw, 20px);
  --space-1: clamp(0.4rem, 0.5vw, 0.7rem);
  --space-2: clamp(0.75rem, 1vw, 1.1rem);
  --space-3: clamp(1rem, 1.3vw, 1.4rem);
  --space-4: clamp(1.4rem, 1.8vw, 2rem);
  --space-5: clamp(2rem, 2.2vw, 2.8rem);
  --space-6: clamp(2.8rem, 3vw, 3.6rem);
  --tem-col-w: 25%;           /* colonnes 1, 3 et 4 */
  --tem-gap: 1%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: "TradeGothicNextLight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

body {
  margin: 0;
  /* font-family: Arial, Helvetica, sans-serif; */
  color: var(--text);

  background-image:
    url('../assets/background-1500-1034.jpg'),
    radial-gradient(circle at 20% 15%, rgba(255,255,255,0.08), transparent 22%),
    radial-gradient(circle at 80% 10%, rgba(255,255,255,0.07), transparent 20%),
    radial-gradient(circle at 50% 85%, rgba(21,194,200,0.1), transparent 24%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2) 65%);

  background-size:
    cover,
    auto,
    auto,
    auto,
    auto;

  background-position:
    center center,
    0 0,
    0 0,
    0 0,
    0 0;

  background-repeat:
    no-repeat,
    no-repeat,
    no-repeat,
    no-repeat,
    no-repeat;

  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.45) 0.7px, transparent 0.7px),
    linear-gradient(90deg, transparent 0 46%, rgba(255,255,255,0.06) 50%, transparent 54%);
  background-size: 24px 24px, 100% 180px;
  mix-blend-mode: screen;
}

body.has-modal {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.device-frame {
  min-height: 100%;
  display: grid;
  place-items: center;
}

.app-shell {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding-top: 40px;
}

/* .app-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 4%, rgba(255,255,255,0.08) 6%, transparent 8% 92%, rgba(255,255,255,0.08) 94%, transparent 96%),
    linear-gradient(180deg, transparent 0 60%, rgba(255,255,255,0.08) 62%, transparent 66%);
  opacity: 0.2;
} */

.app-header {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(150px, 18%) 1fr;
  align-items: start;
  gap: 80px;
}

.brand {
  align-self: start;
  margin-left: 10px;
}

.main-nav {
  display: flex;
  gap: 3rem;
  align-items: anchor-center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-pill {
  background: transparent;
  border: 0;
  color: var(--muted);
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.55rem;
  padding: 0.15rem 0.5rem 0.8rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.nav-pill:hover,
.nav-pill:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.nav-pill.is-active {
  color: #fff;
}

.nav-icon {
  width: 60px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  aspect-ratio: 1;
  position: relative;
  display: inline-block;
  opacity: 0.5;
}

.nav-pill.is-active .nav-icon {
  width: 80px;
  opacity: 0.92;
}

.nav-icon::before,
.nav-icon::after {
  content: "";
  position: absolute;
}

.nav-icon--chat {
  background-image: url('../assets/menu-temoignages_blanc.png');
}

.nav-icon--eye {
  background-image: url('../assets/menu-big_sensitive_blanc.png');
}

.nav-icon--cnxt {
  background-image: url('../assets/menu-cnxt_blanc.png');
}

.nav-label {
  font-size: clamp(0.95rem, 1.35vw, 1.65rem);
  line-height: 1.2;
  text-align: center;
}

.info-button {
  position: absolute;
  top: clamp(0.85rem, 1.8vw, 1.6rem);
  right: clamp(0.85rem, 1.8vw, 1.4rem);
  z-index: 10;
  width: 27px;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  color: var(--bg-2);
  font-weight: 700;
  box-shadow: 0 0.4rem 1rem rgba(0,0,0,0.22);
  font-size: 1.2rem;
}

.screen-indicators {
  position: absolute;
  right: -1.85rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: grid;
  gap: 0.7rem;
}

.dot-button {
  width: clamp(11px, 1vw, 16px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.28);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}

.dot-button.is-active {
  background: var(--accent);
}

.screen {
  position: absolute;
  /* inset: clamp(12rem, 14.5vw, 12rem) clamp(2rem, 4vw, 3rem) clamp(1.2rem, 2vw, 1.8rem); */
  inset: 185px 45px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(2%);
  transition: opacity 0.28s ease, transform 0.28s ease;
  height: calc(100% - 185px);
}

.screen.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.screen-panel {
  height: 100%;
  /* border-radius: var(--radius-md); */
  position: relative;
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-width: none;
}

/* .screen-panel.hero-panel {
  height: auto;
} */

.section-heading {
  display: grid;
  justify-items: start;
  gap: 0.35rem;
  padding-bottom: var(--space-3);
}

.section-heading h1,
.hero-overlay h1,
.solutions-copy h1 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3.35rem);
  font-weight: 500;
}

.section-subtitle,
.hero-meta,
.solutions-intro {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  line-height: 1.45;
  max-width: 60ch;
}

.hero-panel {
  background: rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
  aspect-ratio: 1.94;
  width: 100%;
}

.hero-image {
  position: relative;
  inset: 0;
  width: 100%;
  aspect-ratio: 1.94;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.hero-overlay {
  position: absolute;
  left: 10%;
  bottom: 20%;
  z-index: 1;
  /* width: min(44%, 620px); */
  padding: 30px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(11,44,75,0.28), rgba(4,25,47,0.54));
  /* backdrop-filter: blur(6px); */
  box-shadow: var(--shadow);
}

.hero-kicker,
.solutions-kicker {
  margin: 0 0 0.45rem;
  color: var(--accent);
  font-size: clamp(1rem, 1.45vw, 1.45rem);
  font-weight: 700;
}

.hero-text {
  display: grid;
  gap: 0.3rem;
  margin-top: var(--space-3);
  font-size: clamp(1.05rem, 1.4vw, 1.75rem);
  line-height: 1.35;
}

.hero-text p {
  margin: 0;
}

.hero-meta {
  margin-top: var(--space-3);
}

.sec-sensitive {
  position: relative;
  margin-bottom: 50px;
}

#section2-title, #section5-title {
  width: 80%;
  text-align: center;
  margin: auto;
}

#section2-text {
  width: 70%;
  text-align: center;
  margin: auto;
  font-size: 1.4rem;
}

#section2 div.slider__inner {
  margin-top: 50px;
}

#section2 ul.splide__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#section2 .splide__slide:first-child {
  width: 18%;
  margin: auto;
}

#section2 .splide__slide:nth-child(2) {
  width: 23%;
  margin: auto;
}

#section2 .splide__slide:nth-child(3) {
  width: 28%;
  margin: auto;
}

#section2 .splide__slide:nth-child(4) {
  width: 31%;
}

#section2 li.splide__slide {
  height: 100%;
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
  text-align: center;
}

#section2 li.splide__slide img {
  align-items: center;
  justify-content: center;
  vertical-align: bottom;
  margin: 0 auto;
  width: 80%;
  opacity: 0.5;
  border-radius: 50%;
}

#section2 .big-vision-evolution__img-wrapper .big-vision-evolution__img-grid {
  --extra-size: 6rem;
  height: calc(100% + var(--extra-size) * 2);
  left: calc(var(--extra-size) * -1);
  max-width: unset;
  position: absolute;
  top: calc(var(--extra-size) * -1);
  width: calc(100% + var(--extra-size) * 2);
  z-index: -2;
}

#section2 .d-xl-flex {
  display: flex;
}

#section2 .big-vision-evolution__img-line-inner img {
  display: block;  
  height: 1.5rem;
  max-width: unset;
  width: auto;
}

#section2 .big-vision-evolution__img-line-text p {
  color: #0ac8be;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  line-height: 1.5;
}

#section2 .big-vision-evolution__img-line {
  max-width: 100%;
  position: relative;
  margin-top: 50px;
  width: 100%;
}

#section2 .big-vision-evolution__img-line-inner {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-start;
  overflow: hidden;
}

#section2 .big-vision-evolution__img-line-text {
  flex: 0 1 max-content;
  padding: 0 2.3rem;
  white-space: nowrap;
}

#section2 .big-vision-evolution__img-line-inner:last-child {
  justify-content: flex-end;
}

#section2 .big-vision-evolution__img-line-inner {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-start;
  overflow: hidden;
}

#section2 .content_target {
  display: none;
}

#section2 .content_target h1 {
  text-align: center;
  width: 80%;
  margin: auto;
}

#section2 .content_target .text-module__text {
  font-size: 1.4rem;
  text-align: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.big-thumb{
  all: unset;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}
.big-thumb:focus-visible{
  outline: 2px solid #4c9ffe;
  outline-offset: 4px;
  border-radius: 16px;
}
.big-thumb img {
  border-radius: var(--radius-md);
}
.big-media img{
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* === Overlay / Lightbox === */
.big-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  display: none;
  place-items: center;
  z-index: 999;
  padding: 2vh;
}
.big-overlay[data-open="true"]{ display: grid; }

.big-player{
  width: 95%;
  aspect-ratio: 16 / 9;
  max-width: 95vw;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  overflow: hidden;
  background: #000;
}
.big-player video{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

#sensitiveFrame {
  /* margin-top: 100px; */
  width: 100%;
  height: 1750px;
  border: 0;
  background: transparent;
  /* overflow-y: hidden; */
  scrollbar-width: 0;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  background: rgba(2, 13, 26, 0.56);
  backdrop-filter: blur(8px);
  z-index: 100;
}

.modal-backdrop.is-open {
  display: grid;
}

.modal-card {
  width: min(60vw, 860px);
  max-width: 100%;
  max-height: min(86vh, 960px);
  background: #f6f8fb;
  color: #1a2735;
  border-radius: clamp(22px, 2vw, 30px);
  box-shadow: 0 1.4rem 3rem rgba(0,0,0,0.35);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
}

.modal-scroll {
  overflow: auto;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2.5vw, 1.8rem) 0;
  outline: none;
}

.modal-brand {
  max-width: 170px;
  padding-bottom: 0.8rem;
}

.modal-copy h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.35rem, 1.8vw, 2rem);
}

.modal-section {
  padding-block: 0.65rem;
}

.modal-section h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1rem, 1.25vw, 1.3rem);
  text-align: center;
}

.modal-section p {
  margin: 0 0 1rem;
  line-height: 1.56;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
}

.scroll-hint {
  position: sticky;
  bottom: 0;
  margin: 0;
  padding: 1rem 0 1.15rem;
  background: linear-gradient(180deg, rgba(246,248,251,0), rgba(246,248,251,1) 28%);
  text-align: center;
  font-size: 1rem;
}

.scroll-hint.is-hidden {
  opacity: 0;
}

.modal-actions {
  display: flex;
  justify-content: center;
  padding: 0.9rem 1rem 1.3rem;
  background: #f6f8fb;
}

.primary-button {
  min-width: 220px;
  padding: 0.95rem 1.35rem;
  border: 0;
  border-radius: 16px;
  background: #16989b;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 0.8rem 1.6rem rgba(22,152,155,0.25);
}

.primary-button:disabled {
  cursor: not-allowed;
  background: #9bb7bd;
  box-shadow: none;
}


/* Grille 3 colonnes fixes */
.tem-grid{
  display: grid;
  grid-template-columns: 20% calc(100% - 73%) 24% 26%;
  column-gap: var(--tem-gap);
  /* justify-content: center; */
  align-items: start;
  max-width: 2250px;
  margin: 0 auto;
  /* padding: var(--gap); */
}

/* Colonnes en flex pour empiler depuis le haut */
.tem-col{
  display: flex;
  flex-direction: column;
  gap: var(--tem-gap);
  align-items: stretch;
}
.tem-1  { grid-column: 1; }
.tem-2  { grid-column: 2; }
.tem-3  { grid-column: 3; }
.tem-4  { grid-column: 4; }

/* Cartes poster */
.tem-card { 
  width: 100%; 
  margin-bottom: 4%;
}
.tem-media{
  position: relative;
  aspect-ratio: 9 / 16;   /* ~1576x2812 */
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  transition: transform .2s ease;
  background: #000;
}
.tem-media:hover { transform: translateY(-2px); }

/* Poster cliquable (bouton accessible) */
.tem-thumb{
  all: unset;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
}
.tem-thumb:focus-visible{
  outline: 2px solid #4c9ffe;
  outline-offset: 4px;
  border-radius: var(--radius-md);
}
.tem-media img{
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* === Overlay / Lightbox === */
.tem-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  display: none;
  place-items: center;
  z-index: 999;
  padding: 2vh;
}
.tem-overlay[data-open="true"]{ display: grid; }

.tem-player{
  height: 95vh;
  aspect-ratio: 9 / 16;
  max-width: 95vw;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  overflow: hidden;
  background: #000;
}
.tem-player video{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-card__overlay {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 1;
  padding: clamp(0.8rem, 1vw, 1rem);
  display: grid;
  gap: 0.55rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.36rem 0.66rem;
  border-radius: 0.25rem;
  /* background: rgba(21,194,200,0.88); */
  background: linear-gradient(90deg, #0b234f 0%, #12386a 18%, #1c5586 45%, #2c78a8 72%, #6ec7df 100%);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(0.68rem, 0.8vw, 0.8rem);
  font-weight: 700;
}

.testimonial-card__name {
  margin: 35px 0 0 10px;
  position: relative;
  z-index: 1;
}

.testimonial-card__quote {
  margin: 90px 0 0 10px;
  position: relative;
  font-weight: 600;
  z-index: 1;
}

.testimonial-card__name {
  font-size: clamp(0.78rem, 0.9vw, 0.92rem);
  color: #fff;
  text-shadow:
  0 1px 2px rgba(0, 0, 0, 0.28),
  0 0 1px rgba(0, 0, 0, 0.18);
}

.testimonial-card__quote {
  font-size: 1.7rem;
  line-height: 1.3;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "TradeGothicNextCond", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}


/* Curseur Sensitive 2 femmes */

.big-sensitive {
  position: relative;
  width: 100%;
  overflow: hidden;
}

#section4 {
  margin-bottom: 100px;
}

.big-sensitive__inner {
  position: relative;
  display: grid;
  grid-template-columns: 40% 59%;
  column-gap: 1%;
  width: 100%;
  /* min-height: 1012px; */
  margin: 0 auto;
  padding: 4.2rem 4.4rem 6rem;
}

.big-sensitive__copy {
  position: relative;
  z-index: 5;
}

.big-sensitive__overline {
  margin: 0 0 1.4rem;
  font-size: 1.9rem;
  line-height: .95;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.big-sensitive__title {
  max-width: 58rem;
  margin: 0 0 2rem;
  font-size: 1.4rem;
  line-height: 1.06;
  font-weight: 500;
}

.big-sensitive__text {
  max-width: 58rem;
}

.big-sensitive__text p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.42;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.86);
}

.big-sensitive__switcher {
  margin-top: 30px;
}

.big-sensitive__switcher h4 {
  margin: 0 0 15px;
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 400;
}

.big-sensitive__cards {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.card {
  position: relative;
  min-height: 125px;
}

.card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.card label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.25rem 2.2rem 2.1rem;
  cursor: pointer;
  transition: background-color .2s ease, opacity .2s ease;
}

.card--low label {
  background: rgba(255, 255, 255, 0.10);
}

.card--high label {
  background: rgba(255, 255, 255, 0.10);
}

.card.is-active.card--low label {
  opacity: 1;
  background: rgba(24, 199, 198, .96);
}

.card.is-active.card--high label {
  opacity: 1;
  background: rgba(24, 199, 198, .96);
}

.card label::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 1.3rem;
  height: 1.3rem;
  border: 1px solid #fff;
  border-radius: 50%;
}

.card label::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 25px;
  width: 0.7rem;
  height: 0.5rem;
  border-left: .15rem solid #fff;
  border-bottom: .15rem solid #fff;
  transform: rotate(-45deg) scale(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.card.is-active label::after {
  transform: rotate(-45deg) scale(1);
}

.card__name,
.card__level {
  display: block;
}

.card__name {
  margin-bottom: .9rem;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
}

.card__level {
  font-size: 0.9rem;
  line-height: 1.1;
  font-weight: 400;
}

.big-sensitive__tooltip {
  position: relative;
  /* min-height: 22rem; */
  margin-top: 2rem;
  --pointer-left: calc(25% - 10px);
}

.big-sensitive__tooltip::before {
  content: "";
  position: absolute;
  top: -5px;
  left: var(--pointer-left);
  width: 10px;
  height: 10px;
  background: #fff;
  transform: rotate(45deg);
  z-index: 2;
}

.big-sensitive__tooltip-content {
  position: absolute;
  inset: 0;
  background: #fff;
  color: #111;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  display: inline-table;
}

.big-sensitive__tooltip-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.big-sensitive__tooltip-content.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.big-sensitive__visual {
  position: relative;
  /* min-height: 95rem; */
}

.big-sensitive__slides {
  position: relative;
  /* height: 88rem; */
}

.big-sensitive__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .45s ease;
}

.big-sensitive__slide.is-active {
  opacity: 1;
}

.big-sensitive__woman {
  position: absolute;
  left: 10px;
  top: 120px;
  height: 400px;
  width: auto;
  max-width: none;
}

.big-sensitive__grid {
  position: absolute;
  z-index: 0;
}

.big-sensitive__grid img {
  display: block;
  width: 100%;
  height: auto;
}

.big-sensitive__grid--left {
  left: -6px;
  top: 193px;
  width: 520px;
}

.big-sensitive__glow {
  position: absolute;
  left: 120px;
  top: 167px;
  width: 270px;
  height: 300px;
  background: rgba(24, 199, 198, .44);
  filter: blur(10px);
  border-radius: 45%;
}

.big-sensitive__callout {
  position: relative;
  top: 20px;
  left: 390px;
  width: 260px;
  z-index: 4;
}

.big-sensitive__callout-inner {
  position: relative;
  left: 0;
}

.big-sensitive__callout-icon {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 0 10px;
}

.big-sensitive__callout-text {
  position: relative;
  /* min-height: 31rem; */
}

.callout-copy {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .25s ease;
}

.callout-copy.is-active {
  opacity: 1;
}

.callout-copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
}

.big-sensitive__callout-line {
  position: relative ;
  left: -47px;
  top: 145px;
  width: 53px;
  height: 58px;
}

.big-sensitive__meter {
  position: relative;
  left: 200px;
  top: 410px;
  width: 170px;
  z-index: 4;
}

.big-sensitive__meter-scale {
  display: block;
  width: 100%;
  height: auto;
}

.big-sensitive__meter-arrow {
  position: absolute;
  bottom: -16px;
  width: 10px;
  height: 10px;
  transition: left .2s ease-in-out;
}

.big-sensitive__meter-arrow.low {
  left: 7px;
}

.big-sensitive__meter-arrow.high {
  left: 155px;
}

/* Curseur image rue */

.slider-container {
  background: rgba(74, 201, 227, 0.2); /* cyan très lumineux */
  backdrop-filter: blur(3px) saturate(70%);
  -webkit-backdrop-filter: blur(12px) saturate(70%);
  width: 35%;
  margin: auto;
  padding: 20px;
  border: 1px solid white;
  border-radius: 20px;
  display: inline-block;
}

.slider-title {
  font-size: 1.2em;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}

.track {
  position: relative;
  height: 50px;
  overflow: visible;
  z-index: 2;
}

#ticks { touch-action: pan-y; }  /* et pas 'none' */

.ticks {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin: 0 10px;
  position: relative;
}

.tick {
  width: 3px;
  background: white;
  height: 20px;
  border-radius: 30%;
  transform: scaleY(1);
  transform-origin: center;
  transition: transform 0.2s ease-out;
}

.tick.tall {
  height: 40px;
}

.labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  padding: 0 10px;
  font-weight: bold;
  font-size: 15px;
}

.cursor-dot {
  visibility: hidden;
  position: absolute;
  bottom: -10px;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  transform: translateX(-50%);
  transition: left 0.3s ease;
}

.ripple {
  visibility: hidden;
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 70%, transparent 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.2), 0 0 30px rgba(255, 255, 255, 0.1);
  transition: top 0.1s, left 0.1s, opacity 0.4s ease;
  opacity: 1;
}

.ripple.fade-out {
  opacity: 0;
}

#image-display, #slider-display {
  display: block;
  width: 100%;
}

#image-display {
  background-image: url(../assets/photo-rue-curseur.jpg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 50px;
  text-align: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
}

#slider-display {
  margin-top: 50px;
  text-align: center;
}

#image-display img {
  width: 2000px;
  border: 1px solid white;
  border-radius: 20px;
}

#image-display img.noshow {
  display: none;
}

div.spacer {
  height: 100px;
}


/* Ecosystème */

#screen-solutions .screen-panel {
  background: rgba(255,255,255,0.8);
  border-radius: var(--radius-md);
  height: auto;
  /* min-height: 90%; */
  padding-bottom: 10px;
}

#eco-content {
  width: 100%;
}

#eco-content svg {
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  z-index: 0;
}

#eco-content .ecoitems {
  display: grid;
  justify-content: space-between;
  align-items: start;
  position: relative;
  z-index: 1;
  grid-template-columns: 15% 15% 15% 15% 15%;
  width: 80%;
  margin: 30px auto 0;
}

/* chaque cercle */
#eco-content .ecoitem {
  text-align: center;
  flex: 1;
  position: relative;
  transition: transform 0.3s ease, left 0.3s ease, right 0.3s ease, top 0.3s ease;
  background-size: cover;
  background-position: center;
}

#eco-content div.circle img {
  border-radius: 50%;
  margin: auto;
  max-width: 80px;
}

#eco-content div.circle img.active {
  box-shadow: rgb(10, 200, 190) 0px 3.2px 120px 4.8px;
}

/* texte sous le cercle */
#eco-content .label {
  /* font-size: 35px; */
  color: #000;
  font-weight: 500;
}

#eco-content div.content_target {
  display: grid;
  grid-template-columns: 70% 30%;
  align-content: start;
  gap: 10px;
}

#eco-content div.content_container {
  /* margin-top: 450px; */
  /* padding: 0 50px;  */
  width: 80%;
  margin: auto;
}

#eco-content div.content_container h1 {
  color: #0ac5ba;
}

#eco-content div.content_container h1.title {
  margin-bottom: 0;
}

#eco-content div.content_container h2.baseline {
  color: #000;
  margin-bottom: 40px;
  margin-top: 0;
}

#eco-content .features{
  list-style: none;
  margin: 0 0 0 40px;
  padding: 0;
  display: grid;
  row-gap: 16px;
}

#eco-content .feature{
  display: flex;
  align-items: flex-start;           /* aligne le haut du texte avec l’icône */
  column-gap: 14px;
  margin-bottom: 10px;
}

#eco-content .feature__icon{
  width: 25px;                       /* ajuste si ton PNG est plus grand/petit */
  height: 25px;
  flex: 0 0 28px;
  background-image: url("../assets/coche.png");
  background-repeat: no-repeat;
  background-size: contain;          /* couvre sans déformer */
  background-position: center;
  margin-top: 4px;                   /* petit calage vertical */
}

/* Bloc texte (2 lignes) */
#eco-content .feature__text{
  line-height: 1.25;
}

#eco-content .feature__line1{
  margin: 0 0 2px 0;
  color: #0b0b0b;
  font-size: 20px;
  font-weight: bold;
}

#eco-content .feature__line2{
  margin: 0;
  color: #0ac5ba;
  font-size: 20px;
  font-weight: bold;                  /* bien gras comme sur l’image */
  text-transform: uppercase;
  letter-spacing: .02em;             /* léger tracking */
}

#eco-content div.flotant {
  position: relative;
}

#eco-content div.flotant img {
  margin-top: 22px;
}


/* 
#eco-content #smart div.flotant {
  position: absolute;
  right: 100px;
  bottom: 0px;
}

#eco-content #smart div.flotant img {
  height: 480px;
}

#eco-content #pro div.flotant {
  position: absolute;
  right: 50px;
  bottom: 200px;
}

#eco-content #pro div.flotant img {
  height: 750px;
}

#eco-content #myopia div.flotant {
  position: absolute;
  right: 50px;
  bottom: 150px;
}

#eco-content #myopia div.flotant img {
  height: 1000px;
  border: 2px solid #0ac5ba;
}

#eco-content #vision div.flotant {
  position: absolute;
  right: 0;
  bottom: -3px;
}

#eco-content #vision div.flotant img {
  width: 850px;
}

#eco-content #tracking div.flotant {
  position: absolute;
  right: 50px;
  bottom: -3px;
} */

#eco-content div.stores {
  position: absolute;
  width: 50%;
  margin-left: 25%;
  bottom: 0;
  right: 0;
}

#eco-content div.stores img {
  margin-right: 100px;
  width: 300px;
}