/* Satina IT Paris — feuille de style unifiée */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Syne:wght@600;700;800&display=swap");

/* ── Reset & base ── */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html[dir="rtl"] body {
  font-family: "DM Sans", "Segoe UI", Tahoma, sans-serif;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--gradient-mesh);
  pointer-events: none;
  z-index: 0;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-2);
}

h1, h2, h3, h4 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.35rem); }
h3 { font-size: 1.25rem; }

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

p:last-child {
  margin-bottom: 0;
}

/* ── Layout ── */
.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

main {
  position: relative;
  z-index: 1;
}

.page-home main {
  padding-top: 0;
}

#ambient-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: var(--canvas-opacity);
}

/* ── Utilitaires ── */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ── Skip link ── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10001;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #06080f;
  font-weight: 700;
  border-radius: 8px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ── Preloader ── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 0.5s ease, visibility 0.5s;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__logo {
  height: 56px;
  width: auto;
  animation: preloaderPulse 1.2s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.6; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}

/* ── Crystal surface ── */
.crystal {
  background: var(--crystal-bg);
  backdrop-filter: var(--crystal-blur);
  -webkit-backdrop-filter: var(--crystal-blur);
  border: 1px solid var(--crystal-border);
  box-shadow: var(--crystal-shadow);
}

/* ── Header fixe overlay (sections démarrent en haut, scroll sous la nav) ── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.85rem 0;
  pointer-events: none;
}

.site-header {
  position: static;
  background: transparent;
  border: none;
  box-shadow: none;
  pointer-events: none;
}

.site-header__cluster,
.nav-ribbon,
.site-header__inner,
.site-header__widget,
.nav-toggle,
.site-header__actions,
.lang-picker {
  pointer-events: auto;
}

.site-header__cluster {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: min(1320px, 96vw);
  margin: 0 auto;
}

.site-header__widget {
  flex-shrink: 0;
}

.site-header.is-scrolled .nav-ribbon,
.site-header.is-scrolled .site-header__inner {
  background: rgba(8, 12, 22, 0.82);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45), var(--crystal-shadow);
  border-color: rgba(56, 189, 248, 0.2);
}

.site-header.is-scrolled .paris-capsule--square {
  background: rgba(8, 12, 22, 0.82);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45), var(--crystal-shadow);
  border-color: rgba(56, 189, 248, 0.2);
}

[data-theme="light"] .site-header.is-scrolled .nav-ribbon,
[data-theme="light"] .site-header.is-scrolled .site-header__inner,
[data-theme="light"] .site-header.is-scrolled .paris-capsule--square {
  background: rgba(255, 255, 255, 0.88);
}

.nav-ribbon,
.site-header__inner {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0.6rem 0.6rem 1.1rem;
  border-radius: 100px;
  background: var(--crystal-bg);
  backdrop-filter: var(--crystal-blur);
  -webkit-backdrop-filter: var(--crystal-blur);
  border: 1px solid var(--crystal-border);
  box-shadow: var(--crystal-shadow);
}

.site-header.is-scrolled .nav-ribbon,
.site-header.is-scrolled .site-header__inner {
  padding: 0.5rem 0.6rem 0.5rem 1rem;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.15rem);
  white-space: nowrap;
  grid-column: 1;
}

.site-header__brand img {
  height: clamp(56px, 7vw, 76px);
  width: auto;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.35));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.site-header__brand:hover img {
  transform: scale(1.04);
  filter: drop-shadow(0 8px 24px var(--accent-glow));
}

.site-header__name {
  letter-spacing: -0.02em;
}

.site-nav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  font-weight: 600;
  padding: 0.55rem 1.15rem;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
  background: var(--surface-hover);
}

.site-nav a.is-active {
  color: var(--text);
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.site-header__actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  justify-self: end;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--crystal-border);
  border-radius: 12px;
  background: var(--crystal-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-toggle:hover {
  border-color: var(--border-strong);
  box-shadow: 0 0 20px var(--accent-glow);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Lang picker premium */
.lang-picker {
  position: relative;
}

.lang-picker__btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--crystal-border);
  background: var(--crystal-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.lang-picker__btn:hover {
  border-color: var(--border-strong);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.lang-picker__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 11rem;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  border-radius: 14px;
  background: var(--crystal-bg);
  backdrop-filter: var(--crystal-blur);
  -webkit-backdrop-filter: var(--crystal-blur);
  border: 1px solid var(--crystal-border);
  box-shadow: var(--crystal-shadow), 0 20px 50px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 1100;
}

.lang-picker.is-open .lang-picker__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-picker__menu button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-picker__menu button:hover,
.lang-picker__menu button.is-active {
  background: rgba(56, 189, 248, 0.12);
  color: var(--text);
}

.lang-select {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 0.5rem 0.85rem;
  padding-right: 2rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8'%3E%3Cpath d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  min-width: 8.5rem;
  font-family: inherit;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--crystal-border);
  background: var(--crystal-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.theme-toggle:hover {
  border-color: var(--border-strong);
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateY(-1px);
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(4, 6, 12, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  padding: 5.5rem 1.5rem 2rem;
  background: var(--crystal-bg);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border-left: 1px solid var(--crystal-border);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav a {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 1.05rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav a:hover,
.mobile-nav a.is-active {
  background: rgba(56, 189, 248, 0.1);
  color: var(--text);
}

.mobile-nav__cta {
  margin-top: auto;
  padding-top: 1.5rem;
}

@media (max-width: 1024px) {
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header__cluster {
    gap: 0.5rem;
    width: min(100%, 96vw);
  }

  .nav-ribbon,
  .site-header__inner {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem 0.65rem;
    padding: 0.55rem 0.75rem 0.55rem 1rem;
  }

  .site-header__brand {
    flex-shrink: 0;
  }

  .site-header__actions {
    display: flex;
    flex-shrink: 0;
  }

  .nav-toggle {
    margin-left: auto;
  }

  .site-header__actions .btn-sm {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header__name {
    display: none;
  }

  .paris-capsule--square {
    width: 3.65rem;
    height: 3.65rem;
    padding: 0.35rem 0.3rem;
    border-radius: 14px;
  }

  .paris-capsule--square .paris-capsule__city {
    font-size: 0.58rem;
  }

  .paris-capsule--square .paris-capsule__time {
    font-size: 0.64rem;
  }

  .paris-capsule--square .paris-capsule__avail {
    font-size: 0.52rem;
  }
}

/* ── Boutons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  text-decoration: none;
  font-family: inherit;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--gradient);
  color: #06080f;
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--accent-glow);
  color: #06080f;
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
  background: var(--surface-hover);
  color: var(--text);
  transform: translateY(-1px);
}

.btn-ghost.crystal-outline {
  background: var(--crystal-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--crystal-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* ── Sections ── */
.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section--alt {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.section--glow {
  position: relative;
}

.section--glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 60%;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.5), transparent);
}

.section-divider-wave {
  height: 1px;
  border: none;
  margin: 0;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head.center {
  text-align: center;
}

/* ── Reveal animations ── */
.reveal {
  opacity: 1;
  transform: none;
}

body.js-ready .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(28px);
}

body.js-ready .reveal.visible,
.page-home .reveal {
  opacity: 1;
  transform: none;
}

/* ── Hero cinématique fullscreen (bord haut = bord écran) ── */
.hero-cinematic {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-top: 0;
  margin-top: 0;
  isolation: isolate;
}

.hero-immersive .hero-slide__overlay {
  background: linear-gradient(
    115deg,
    rgba(3, 5, 8, 0.88) 0%,
    rgba(3, 5, 8, 0.45) 42%,
    rgba(3, 5, 8, 0.25) 70%,
    rgba(3, 5, 8, 0.55) 100%
  );
}

.hero-fx__beam {
  position: absolute;
  top: -20%;
  left: 30%;
  width: 40%;
  height: 140%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(56, 189, 248, 0.12) 35%,
    rgba(129, 140, 248, 0.08) 55%,
    transparent
  );
  transform: skewX(-12deg);
  filter: blur(40px);
  animation: beamSweep 8s ease-in-out infinite alternate;
}

@keyframes beamSweep {
  0% { opacity: 0.6; transform: skewX(-12deg) translateX(-8%); }
  100% { opacity: 1; transform: skewX(-12deg) translateX(8%); }
}

.hero-fx__noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-float-chip {
  position: absolute;
  padding: 0.45rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: 100px;
  border: 1px solid var(--crystal-border);
  background: var(--crystal-bg);
  backdrop-filter: var(--crystal-blur);
  box-shadow: var(--crystal-shadow);
  animation: chipFloat 6s ease-in-out infinite;
  z-index: 3;
}

.hero-float-chip--1 { top: 22%; right: 12%; animation-delay: 0s; }
.hero-float-chip--2 { top: 38%; right: 22%; animation-delay: -2s; }
.hero-float-chip--3 { bottom: 32%; right: 8%; animation-delay: -4s; }

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-slide-counter {
  position: absolute;
  top: calc(var(--nav-height) + 1.5rem);
  right: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  opacity: 0.12;
  pointer-events: none;
  letter-spacing: -0.04em;
}

.hero-slide-counter__cur {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 1;
}

.hero-slide-panel .hero-title {
  font-size: clamp(2.75rem, 7vw, 4.75rem);
  line-height: 1.05;
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.5);
}

.hero-slide-panel .tag {
  box-shadow: 0 0 30px var(--accent-glow);
}


.hero-fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-fx__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 75% 15%, rgba(56, 189, 248, 0.2), transparent 55%),
    radial-gradient(ellipse 70% 50% at 15% 85%, rgba(99, 102, 241, 0.18), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(129, 140, 248, 0.08), transparent 60%);
  animation: meshPulse 12s ease-in-out infinite alternate;
}

@keyframes meshPulse {
  0% { opacity: 0.85; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.hero-fx__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat 18s ease-in-out infinite;
}

.hero-orb--1 {
  width: 320px;
  height: 320px;
  top: 15%;
  right: 10%;
  background: rgba(56, 189, 248, 0.25);
}

.hero-orb--2 {
  width: 260px;
  height: 260px;
  bottom: 25%;
  left: 5%;
  background: rgba(99, 102, 241, 0.22);
  animation-delay: -6s;
}

.hero-orb--3 {
  width: 180px;
  height: 180px;
  top: 45%;
  left: 40%;
  background: rgba(167, 139, 250, 0.15);
  animation-delay: -12s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(24px, -20px) scale(1.08); }
  66% { transform: translate(-16px, 12px) scale(0.95); }
}

.hero-cinematic__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.9s ease-in-out, visibility 0.9s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  pointer-events: auto;
}

.hero-slide__bg {
  position: absolute;
  inset: -4%;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease-out;
  filter: saturate(1.08) contrast(1.05);
  will-change: transform;
}

.hero-slide.is-active .hero-slide__bg {
  transform: scale(1);
  animation: heroKenBurns 8s ease-out forwards;
}

@keyframes heroKenBurns {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

.hero-cinematic__content {
  position: relative;
  z-index: 4;
  padding-top: calc(var(--nav-height) + 1.25rem);
  padding-bottom: clamp(14rem, 26vh, 17rem);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-slide-panel {
  display: none;
  max-width: 720px;
}

.hero-slide-panel.is-active {
  display: block;
  animation: heroFadeIn 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-slide-panel .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border-strong);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.1rem;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-slide-panel h1 {
  font-size: clamp(2.35rem, 6vw, 4rem);
  margin-bottom: 0.65rem;
  letter-spacing: -0.03em;
}

.hero-slide-panel h1 .accent {
  display: block;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 0.88em;
  margin-top: 0.15em;
}

.hero-slide-panel p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 560px;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.hero-panel-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Crystal stats */
.crystal-stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(5rem, 11vh, 7rem);
  z-index: 15;
  pointer-events: none;
}

.crystal-stats__inner {
  width: min(1160px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  pointer-events: auto;
}

.crystal-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.35rem 1rem;
  min-height: 118px;
  border-radius: 20px;
  background: var(--crystal-bg);
  backdrop-filter: var(--crystal-blur);
  -webkit-backdrop-filter: var(--crystal-blur);
  border: 1px solid var(--crystal-border);
  box-shadow: var(--crystal-shadow);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.crystal-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent);
  pointer-events: none;
  border-radius: 20px 20px 0 0;
}

.crystal-stat:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--crystal-shadow), 0 20px 50px var(--accent-glow);
}

.crystal-stat__num {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.35rem, 4.5vw, 3.1rem);
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 1;
}

.crystal-stat__label {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.35;
  max-width: 9rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.crystal-stat__label--highlight {
  color: #ffffff;
  font-weight: 700;
}

.stat-item__value {
  font-variant-numeric: tabular-nums;
}

/* Hero dots & scroll hint */
.hero-cinematic__dots {
  position: absolute;
  bottom: clamp(2rem, 5vh, 3rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 14;
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.hero-dot {
  width: 48px;
  height: 4px;
  border-radius: 4px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.hero-dot__fill {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--accent);
  border-radius: inherit;
  box-shadow: 0 0 12px var(--accent-glow);
}

.hero-dot.is-active .hero-dot__fill {
  animation: dotProgress 3s linear forwards;
}

@keyframes dotProgress {
  from { width: 0; }
  to { width: 100%; }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 13;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  animation: bounce 2.5s ease infinite;
}

.hero-scroll-hint::after {
  content: "";
  width: 1px;
  height: 28px;
  background: linear-gradient(var(--accent), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Legacy stats */
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.stats-band--hero {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(4.5rem, 10vh, 6.5rem);
  z-index: 12;
  padding: 0;
  background: transparent;
  border: none;
  pointer-events: none;
}

.stats-band--hero .stats-band__grid {
  pointer-events: auto;
}

.stat-glass {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.stat-glass:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 16px 48px var(--accent-glow);
}

.stat-glass .stat-item__value {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.05;
}

.stat-glass .stat-item__label {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  font-weight: 500;
}

/* ── Glass card ── */
.glass-card {
  position: relative;
  overflow: hidden;
  background: var(--crystal-bg);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--crystal-border);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: var(--crystal-shadow);
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
  border-radius: inherit;
}

.glass-card img {
  border-radius: 12px;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ── Promise ── */
.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.promise-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.promise-list li {
  padding: 0.65rem 0 0.65rem 1.75rem;
  position: relative;
  color: var(--text-muted);
}

.promise-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
}

/* ── Service cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--crystal-bg);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--crystal-border);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: var(--crystal-shadow);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
  border-radius: inherit;
  transition: opacity 0.35s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 14px 14px 0 0;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--crystal-shadow), 0 20px 50px var(--accent-glow);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card__num {
  font-family: "Syne", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.35;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  transition: opacity 0.35s ease;
}

.service-card:hover .service-card__num {
  opacity: 0.65;
}

.service-card h3 {
  color: var(--text);
  margin: 0;
  position: relative;
  z-index: 1;
}

.service-card p {
  flex: 1;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.service-card .link-arrow {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.service-card .link-arrow::after {
  content: " →";
  display: inline-block;
  transition: transform 0.25s ease;
}

.service-card:hover .link-arrow::after {
  transform: translateX(4px);
}

/* ── Vision ── */
.vision-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.vision-visual {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.vision-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.vision-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  pointer-events: none;
}

/* ── Références marquee 100vw ── */
.references-premium {
  position: relative;
  padding: clamp(6rem, 12vw, 9rem) 0 clamp(6.5rem, 11vw, 8.5rem);
  overflow: hidden;
}

.references-premium__glow {
  position: absolute;
  top: 35%;
  left: 50%;
  width: min(900px, 90vw);
  height: 420px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(56, 189, 248, 0.14) 0%, rgba(99, 102, 241, 0.08) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.references-premium__head {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.references-premium .section-head.center {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}

.references-premium__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.references-premium__lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 640px;
  margin-inline: auto;
}

.partners-marquee-wrap {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.partners-marquee {
  overflow: hidden;
  padding: 0.5rem 0;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  width: max-content;
  padding: 2rem clamp(2rem, 4vw, 4rem);
  animation: marquee 55s linear infinite;
  will-change: transform;
}

.partners-marquee-wrap:hover .partners-track {
  animation-play-state: paused;
}

.reference-card {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3rem) clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(145deg, var(--bg-glass) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--border);
  border-radius: 28px;
  min-width: clamp(280px, 28vw, 380px);
  min-height: clamp(150px, 18vw, 200px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s ease, box-shadow 0.5s ease;
}

.reference-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, var(--accent-glow), transparent 65%);
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.reference-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: var(--border-strong);
  box-shadow: 0 28px 72px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.reference-card:hover::before {
  opacity: 1;
}

.reference-card img {
  position: relative;
  z-index: 1;
  height: clamp(88px, 14vw, 128px);
  width: auto;
  max-width: min(320px, 34vw);
  object-fit: contain;
  filter: grayscale(0.08) brightness(1.1) contrast(1.04);
  transition: filter 0.45s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.reference-card:hover img {
  filter: none;
  transform: scale(1.1);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── CTA band ── */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--crystal-bg);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--crystal-border);
  border-radius: 20px;
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-top: 2rem;
  box-shadow: var(--crystal-shadow);
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  width: 80%;
  height: 100%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(56, 189, 248, 0.15), transparent 70%);
  pointer-events: none;
}

.cta-band h2 {
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.cta-band p {
  position: relative;
  z-index: 1;
}

.cta-band .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

/* ── Page hero (pages internes) ── */
.page-hero {
  padding: calc(var(--nav-height) + 2.5rem) 0 clamp(3rem, 6vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: transparent;
  border-bottom: 1px solid var(--border);
  margin-top: 0;
}

body:not(.page-home) main {
  padding-top: 0;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(56, 189, 248, 0.12), transparent 60%),
    var(--gradient-soft);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-hero h1 {
  letter-spacing: -0.03em;
}

.page-hero--premium h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

.page-inner .section {
  position: relative;
}

.page-inner .service-card,
.page-inner .value-card,
.page-inner .glass-card {
  position: relative;
}

.page-content-premium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .page-content-premium {
    grid-template-columns: 1fr;
  }
}

.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: var(--text-faint);
  margin-bottom: 1.25rem;
}

.page-hero .breadcrumb a {
  color: var(--text-muted);
}

/* ── Contenu & valeurs ── */
.content-block {
  max-width: 720px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.value-card {
  position: relative;
  overflow: hidden;
  background: var(--crystal-bg);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--crystal-border);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: var(--crystal-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0.8;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--crystal-shadow), 0 16px 40px var(--accent-glow);
}

.value-card h3 {
  color: var(--accent);
  font-size: 1rem;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info-item {
  margin-bottom: 1.25rem;
}

.contact-info-item strong {
  display: block;
  color: var(--text);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-success {
  display: none;
  padding: 1rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 10px;
  color: var(--text);
  margin-top: 1rem;
}

.form-success.is-visible {
  display: block;
}

/* ── Footer ── */
.site-footer {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent, var(--bg-elevated) 12%);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer a:hover,
.site-footer__grid a:hover {
  color: var(--accent);
}

.site-footer__logo {
  height: clamp(56px, 7vw, 72px);
  width: auto;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.28));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.site-footer__brand:hover .site-footer__logo {
  transform: scale(1.04);
  filter: drop-shadow(0 8px 28px var(--accent-glow));
}

.site-footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-faint);
}

/* ── Widget Paris (navbar) + WhatsApp flottant ── */
.float-widgets {
  position: fixed;
  z-index: 9990;
  pointer-events: none;
  inset: 0;
}

.float-widgets > * {
  pointer-events: auto;
}

.paris-capsule {
  background: var(--crystal-bg);
  backdrop-filter: var(--crystal-blur);
  -webkit-backdrop-filter: var(--crystal-blur);
  border: 1px solid var(--crystal-border);
  box-shadow: var(--crystal-shadow);
}

.paris-capsule--square {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  width: 4.35rem;
  height: 4.35rem;
  padding: 0.4rem 0.35rem;
  border-radius: 18px;
  text-align: center;
  line-height: 1.15;
}

[data-theme="light"] .paris-capsule--square {
  background: var(--crystal-bg);
}

.paris-capsule__row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  max-width: 100%;
}

.paris-capsule__row--weather {
  gap: 0.15rem;
}

.paris-capsule--square .paris-capsule__sep {
  display: none;
}

.paris-capsule__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.55);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.paris-capsule__city {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1;
}

.paris-capsule--square .paris-capsule__dot {
  width: 5px;
  height: 5px;
}

.paris-capsule__sep {
  color: var(--text-faint);
  font-size: 0.65rem;
  opacity: 0.7;
  user-select: none;
}

.paris-capsule__time {
  font-family: "Syne", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  line-height: 1;
}

.paris-capsule--square .paris-capsule__weather-icon {
  font-size: 0.72rem;
}

.paris-capsule__weather-icon {
  font-size: 0.85rem;
  line-height: 1;
  flex-shrink: 0;
}

.paris-capsule__temp {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  line-height: 1;
}

.paris-capsule__avail {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
  line-height: 1;
  margin: 0;
  padding: 0;
  border: none;
}

.paris-capsule--square .paris-capsule__avail {
  margin-top: 0.05rem;
  padding-top: 0.2rem;
  border-top: 1px solid var(--border);
  width: 100%;
}

.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 9991;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #2ee66a, #25d366);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 6px 24px rgba(37, 211, 102, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.whatsapp-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: waPulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .promise-grid,
  .vision-block {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .crystal-stats__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .crystal-stat {
    min-height: 100px;
    padding: 1.1rem 0.75rem;
  }

  .crystal-stat__num {
    font-size: 2rem;
  }

  .stats-band__grid,
  .stats-band--hero .stats-band__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .hero-cinematic__content {
    padding-bottom: clamp(13rem, 28vh, 16rem);
  }
}

@media (max-width: 768px) {
  .stats-band__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .stat-glass {
    padding: 1.15rem 0.85rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .crystal-stats__inner {
    gap: 0.6rem;
  }

  .crystal-stat__label {
    font-size: 0.72rem;
  }
}

/* ── Sections immersives ── */
.section--mesh {
  position: relative;
  isolation: isolate;
}

.section--mesh::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 80% 20%, rgba(56, 189, 248, 0.08), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.section--grid-bg {
  position: relative;
}

.section--grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000, transparent 90%);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 90%);
  pointer-events: none;
  z-index: 0;
}

.section--depth {
  position: relative;
  overflow: hidden;
}

.section--depth::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(129, 140, 248, 0.12), transparent 65%);
  pointer-events: none;
}

.section__bg-glow {
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(ellipse at center, var(--accent-glow), transparent 70%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-divider-wave {
  height: 2px;
  border: none;
  margin: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(56, 189, 248, 0.5) 20%,
    rgba(129, 140, 248, 0.5) 50%,
    rgba(56, 189, 248, 0.5) 80%,
    transparent
  );
  box-shadow: 0 0 40px var(--accent-glow);
}

.service-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(56, 189, 248, 0.12),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
}

@media (max-width: 900px) {
  .hero-float-chip {
    display: none;
  }
  .hero-slide-counter {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-slide__bg,
  .partners-track,
  .hero-dot.is-active .hero-dot__fill,
  .hero-scroll-hint,
  .hero-fx__mesh,
  .hero-orb,
  .preloader__logo,
  .paris-capsule__dot,
  .whatsapp-float__pulse {
    animation: none !important;
    transition: none !important;
  }

  .hero-dot.is-active .hero-dot__fill {
    width: 100%;
  }

  body.js-ready .reveal:not(.visible) {
    opacity: 1;
    transform: none;
  }
}
