:root {
  --ink: #071426;
  --ink-soft: #13243c;
  --muted: #627188;
  --line: #dce7f2;
  --blue: #246bff;
  --blue-deep: #082b66;
  --cyan: #28d2ea;
  --surface: #ffffff;
  --surface-soft: #f4f8fd;
  --warm: #fff8ef;
  --glass: rgba(255, 255, 255, 0.76);
  --shadow: 0 24px 70px rgba(7, 20, 38, 0.12);
  --shadow-soft: 0 16px 40px rgba(7, 20, 38, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 3%, rgba(36, 107, 255, 0.14), transparent 34rem),
    radial-gradient(circle at 92% 9%, rgba(40, 210, 234, 0.16), transparent 30rem),
    linear-gradient(180deg, #fbfdff 0%, #f4f8fd 46%, #ffffff 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section-shell {
  width: min(calc(100% - 32px), var(--max));
  min-width: 0;
  margin: 0 auto;
}

.section-shell + .section-shell {
  margin-top: 108px;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 60;
  width: min(calc(100% - 28px), var(--max));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(40, 210, 234, 0.28);
  border-radius: 999px;
  background: rgba(6, 16, 30, 0.82);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(4, 12, 24, 0.9);
  border-color: rgba(40, 210, 234, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 178px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ink), var(--blue-deep));
  color: white;
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: white;
  font-size: 0.98rem;
}

.brand small {
  color: rgba(111, 239, 244, 0.8);
  font-size: 0.76rem;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  gap: 4px;
}

.desktop-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(175, 249, 253, 0.86);
  font-size: 0.9rem;
  font-weight: 750;
}

.desktop-nav a:hover {
  background: rgba(40, 210, 234, 0.11);
  color: white;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(40, 210, 234, 0.94);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: 0 14px 30px rgba(40, 210, 234, 0.2);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(40, 210, 234, 0.3);
  border-radius: 50%;
  background: rgba(40, 210, 234, 0.14);
  color: white;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 86px 14px auto;
  z-index: 50;
  display: none;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(40, 210, 234, 0.24);
  border-radius: 24px;
  background: rgba(4, 12, 24, 0.86);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(40, 210, 234, 0.16);
  background: rgba(40, 210, 234, 0.08);
  color: rgba(175, 249, 253, 0.92);
  font-weight: 800;
}

.mobile-menu a:hover,
.mobile-menu a:active {
  background: rgba(40, 210, 234, 0.18);
  color: #ffffff;
}

.hero.section-shell {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 150px max(24px, calc((100vw - 1360px) / 2)) 42px;
  overflow: hidden;
  color: white;
  background: #04101f;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(4, 12, 24, 0.55) 0%, rgba(4, 12, 24, 0.24) 52%, rgba(4, 12, 24, 0.5) 100%),
    linear-gradient(180deg, rgba(4, 12, 24, 0.58) 0%, rgba(4, 12, 24, 0.04) 38%, rgba(4, 12, 24, 0.72) 74%, rgba(3, 9, 20, 0.94) 100%);
}

.hero::after {
  background:
    radial-gradient(circle at 72% 46%, rgba(40, 210, 234, 0.22), transparent 32rem);
}

.live-badge {
  position: absolute;
  z-index: 2;
  top: clamp(94px, 12vh, 132px);
  left: max(24px, calc((100vw - 1360px) / 2));
  display: inline-flex;
  align-items: center;
  gap: 11px;
  max-width: calc(100% - 48px);
  margin: 0;
  padding: 9px 16px 9px 14px;
  border: 1px solid rgba(40, 210, 234, 0.34);
  border-radius: 999px;
  background: rgba(4, 12, 24, 0.5);
  backdrop-filter: blur(12px);
  color: white;
  font-size: 0.9rem;
  line-height: 1.2;
}

.live-badge strong {
  font-weight: 850;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.live-sub {
  padding-left: 11px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(235, 244, 255, 0.66);
  font-weight: 650;
  font-size: 0.82rem;
}

.live-dot {
  width: 9px;
  height: 9px;
  flex: none;
  border-radius: 50%;
  background: #3ad17a;
  box-shadow: 0 0 0 0 rgba(58, 209, 122, 0.55);
  animation: livePulse 2.2s ease-out infinite;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(58, 209, 122, 0.55);
  }
  70% {
    box-shadow: 0 0 0 11px rgba(58, 209, 122, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(58, 209, 122, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .live-dot {
    animation: none;
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 1360px);
  max-width: 1360px;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.48fr);
  align-items: end;
  gap: 26px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(40, 210, 234, 0.24);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
  color: var(--cyan);
}

.hero h1 {
  grid-column: 1;
  grid-row: 2;
  max-width: 880px;
  margin-bottom: 0;
  color: white;
  font-size: clamp(2.65rem, 5.1vw, 5.6rem);
  line-height: 0.91;
  letter-spacing: -0.05em;
}

.hero .hero-lead {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(235, 244, 255, 0.8);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
}

.hero .hero-actions {
  grid-column: 2;
  grid-row: 3;
  margin-top: 14px;
}

.hero .trust-row {
  grid-column: 1;
  grid-row: 3;
  margin-top: 14px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 7.2vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: -0.058em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.7vw, 4.3rem);
  line-height: 0.99;
  letter-spacing: -0.048em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.36rem;
  line-height: 1.12;
  letter-spacing: -0.024em;
}

.hero-lead,
.section-heading p,
.detail-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.72vw, 1.23rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary,
.button-dark {
  background: linear-gradient(135deg, #112a49, #071426);
  color: white;
  box-shadow:
    0 16px 38px rgba(13, 38, 67, 0.26),
    inset 0 0 0 1px rgba(69, 240, 239, 0.18);
}

.button-primary:hover,
.button-dark:hover {
  box-shadow:
    0 20px 46px rgba(40, 210, 234, 0.24),
    inset 0 0 0 1px rgba(69, 240, 239, 0.34);
}

.button-secondary,
.button-light {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
}

.button-secondary:hover,
.button-light:hover {
  border-color: rgba(40, 210, 234, 0.55);
  box-shadow: 0 14px 32px rgba(40, 210, 234, 0.12);
}

.hero .button-primary,
.cockpit-hero .button-primary {
  background: linear-gradient(135deg, #45f0ef, var(--cyan));
  color: var(--ink);
  box-shadow: 0 20px 48px rgba(40, 210, 234, 0.24);
}

.hero .button-secondary,
.cockpit-hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span,
.platform-pill,
.floating-card,
.pill {
  border: 1px solid rgba(220, 231, 242, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 30px rgba(7, 20, 38, 0.07);
}

.trust-row span {
  padding: 9px 13px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero .trust-row span,
.cockpit-hero .trust-row span {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.hero-composition {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-width: 0;
  overflow: hidden;
}

.screen-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.screen-card-main {
  inset: 0;
}

.screen-card img,
.screen-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.screen-card-main img,
.screen-card-main video {
  aspect-ratio: auto;
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  min-width: 136px;
  padding: 14px 16px;
}

.floating-card strong {
  font-size: 0.96rem;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.card-agenda {
  top: 72px;
  left: 56px;
}

.card-invoice {
  right: 48px;
  top: 78px;
}

.card-site {
  left: 70px;
  bottom: 82px;
}

.platform-pill {
  position: absolute;
  right: 54px;
  bottom: 82px;
  padding: 12px 16px;
  color: var(--blue-deep);
  font-weight: 900;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.cockpit-hero.section-shell {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 96px max(24px, calc((100vw - 1360px) / 2)) 42px;
  overflow: hidden;
  color: white;
  background: #04101f;
}

.cockpit-hero::before,
.cockpit-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.cockpit-hero::before {
  background:
    linear-gradient(90deg, rgba(4, 12, 24, 0.55) 0%, rgba(4, 12, 24, 0.24) 52%, rgba(4, 12, 24, 0.5) 100%),
    linear-gradient(180deg, rgba(4, 12, 24, 0.62) 0%, rgba(4, 12, 24, 0.04) 38%, rgba(4, 12, 24, 0.74) 74%, rgba(3, 9, 20, 0.94) 100%);
}

.cockpit-hero::after {
  background:
    radial-gradient(circle at 72% 46%, rgba(40, 210, 234, 0.22), transparent 32rem),
    radial-gradient(circle at 12% 84%, rgba(255, 47, 117, 0.1), transparent 28rem);
}

.cockpit-hero .hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 1360px);
  max-width: 1360px;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.48fr);
  align-items: end;
  gap: 26px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(40, 210, 234, 0.24);
  background: transparent;
}

.cockpit-hero .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
  color: var(--cyan);
}

.cockpit-hero h2 {
  grid-column: 1;
  grid-row: 2;
  max-width: 880px;
  margin-bottom: 0;
  color: white;
  font-size: clamp(2.65rem, 5.1vw, 5.6rem);
  line-height: 0.91;
  letter-spacing: -0.05em;
}

.cockpit-hero .hero-lead {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(235, 244, 255, 0.8);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
}

.cockpit-hero .hero-actions {
  grid-column: 2;
  grid-row: 3;
  margin-top: 14px;
}

.cockpit-hero .trust-row {
  grid-column: 1;
  grid-row: 3;
  margin-top: 14px;
}

/* --- Jonction Store -> Cockpit --- */
.journey-bridge {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  padding: 96px max(24px, calc((100vw - 1040px) / 2)) 104px;
  color: white;
  background:
    radial-gradient(circle at 50% 4%, rgba(40, 210, 234, 0.16), transparent 34rem),
    radial-gradient(circle at 84% 92%, rgba(255, 47, 117, 0.1), transparent 30rem),
    linear-gradient(180deg, #04101f 0%, #061425 48%, #04101f 100%);
}

.journey-spine {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(40, 210, 234, 0) 0%,
    rgba(40, 210, 234, 0.5) 14%,
    rgba(40, 210, 234, 0.5) 86%,
    rgba(40, 210, 234, 0) 100%
  );
  pointer-events: none;
}

.journey-spine::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -140px;
  width: 6px;
  height: 140px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(69, 240, 239, 0), rgba(69, 240, 239, 0.95), rgba(69, 240, 239, 0));
  filter: blur(2px);
  animation: spineFlow 4.6s linear infinite;
}

@keyframes spineFlow {
  0% {
    top: -140px;
  }
  100% {
    top: 100%;
  }
}

.journey-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}

.journey-head {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.journey-head h2 {
  margin-bottom: 14px;
  color: white;
}

.journey-lead {
  margin: 0;
  color: rgba(235, 244, 255, 0.72);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
}

.journey-steps {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 34px;
}

.journey-step {
  position: relative;
  width: calc(50% - 34px);
  padding: 22px 24px;
  border: 1px solid rgba(40, 210, 234, 0.2);
  border-radius: 24px;
  background: rgba(8, 18, 32, 0.74);
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.journey-step:nth-child(odd) {
  margin-right: auto;
}

.journey-step:nth-child(even) {
  margin-left: auto;
}

.journey-node {
  position: absolute;
  top: 30px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #45f0ef;
  border: 3px solid #061425;
  box-shadow:
    0 0 0 5px rgba(40, 210, 234, 0.16),
    0 0 18px rgba(69, 240, 239, 0.75);
  z-index: 2;
}

.journey-step:nth-child(odd) .journey-node {
  right: -42px;
}

.journey-step:nth-child(even) .journey-node {
  left: -42px;
}

.journey-num {
  display: block;
  margin-bottom: 6px;
  color: var(--cyan);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

.journey-step h3 {
  margin-bottom: 8px;
  color: white;
}

.journey-step p {
  margin: 0;
  color: rgba(235, 244, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.5;
}

.journey-signature {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 54px auto 0;
  text-align: center;
  color: rgba(235, 244, 255, 0.72);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  line-height: 1.5;
}

.journey-signature strong {
  color: white;
  font-weight: 850;
}

/* --- Cockpit modulaire & communautaire --- */
.modular-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.modular-card {
  position: relative;
  padding: 30px 30px 32px;
  border: 1px solid rgba(220, 231, 242, 0.92);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 14% -10%, rgba(40, 210, 234, 0.12), transparent 18rem),
    var(--glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.modular-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), rgba(40, 210, 234, 0) 72%);
  opacity: 0.75;
}

.modular-index {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.modular-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
}

.modular-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.modular-signature {
  max-width: 760px;
  margin: 32px auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 1.9vw, 1.4rem);
  font-weight: 700;
  line-height: 1.45;
}

.modular-signature strong {
  color: var(--ink);
  font-weight: 900;
}

/* --- Modules métier (plaquettes) --- */
.modules-showcase {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.module-plaquette {
  display: grid;
  gap: 28px;
}

.module-plaquette-img {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #04101f;
}

.module-plaquette-img img {
  display: block;
  width: 100%;
  height: auto;
}

.module-legend {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 28px;
}

.module-item {
  padding: 22px 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.module-item h3 {
  margin: 0;
  font-size: 1.14rem;
  font-weight: 850;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.module-baseline {
  margin: 4px 0 12px;
  font-weight: 800;
  font-size: 0.92rem;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.module-item p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.modules-closing {
  max-width: 760px;
  margin: 8px auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  font-weight: 600;
  line-height: 1.5;
}

.modules-closing strong {
  color: var(--ink);
  font-weight: 850;
}

.modules-closing .button {
  display: inline-flex;
  margin-top: 18px;
}

@media (max-width: 860px) {
  .module-legend {
    grid-template-columns: 1fr;
  }
}

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

/* --- Réalisations --- */
.realisation-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tag-jooma {
  color: var(--blue-deep);
  background: rgba(40, 210, 234, 0.18);
}

.tag-metier {
  color: #1f5130;
  background: rgba(58, 209, 122, 0.2);
}

.tag-refonte {
  color: #8a3f2c;
  background: rgba(160, 74, 48, 0.12);
  border: 1px solid rgba(160, 74, 48, 0.32);
}

/* Featured (dark, editorial) — palette chaude façon Kike */
.realisation-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid rgba(160, 74, 48, 0.22);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 6%, rgba(184, 137, 63, 0.14), transparent 26rem),
    linear-gradient(145deg, rgba(245, 239, 228, 0.94), rgba(235, 226, 210, 0.94)),
    url("../img/realisations/kike-paper.jpg") center / cover;
  box-shadow: 0 24px 62px rgba(80, 52, 30, 0.16);
}

.realisation-feature-shot {
  position: relative;
  display: block;
  min-height: 320px;
  overflow: hidden;
  background: #ece3d3;
}

.realisation-feature-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 500ms ease;
}

.realisation-feature:hover .realisation-feature-shot img {
  transform: scale(1.03);
}

.realisation-feature-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 38px 40px;
  color: #3a2e24;
}

.realisation-feature-body h3 {
  margin: 0;
  color: #2c241c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.realisation-feature-body p {
  margin: 0;
  color: rgba(58, 46, 36, 0.82);
  font-size: 1.02rem;
  line-height: 1.55;
}

.realisation-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 10px 0 6px;
  padding: 0;
  list-style: none;
}

.realisation-stats li {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(160, 74, 48, 0.16);
  background: rgba(160, 74, 48, 0.05);
}

.realisation-stats strong {
  display: flex;
  align-items: flex-end;
  color: #a0492f;
  font-size: clamp(1.7rem, 2.6vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.realisation-stats .stat-arrow {
  align-self: center;
  margin: 0 3px;
  font-size: 0.62em;
  opacity: 0.5;
}

.realisation-stats .stat-unit {
  margin-left: 6px;
  color: rgba(74, 56, 42, 0.72);
  font-size: 0.46em;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
}

.realisation-stats span {
  color: rgba(74, 56, 42, 0.74);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.realisation-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.realisation-feature .button-primary {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 800;
  background: linear-gradient(135deg, #c2613f, #a64c30);
  color: #fdf4e8;
  box-shadow: 0 12px 26px rgba(150, 68, 42, 0.32);
}

.realisation-feature .button-primary:hover {
  box-shadow: 0 16px 32px rgba(194, 97, 63, 0.4);
}

.realisation-feature .realisation-link {
  color: #a0492f;
}

.realisation-feature .realisation-link:hover {
  color: #c2613f;
}

/* Supporting cards (light) */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.realisation-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(220, 231, 242, 0.92);
  border-radius: var(--radius-xl);
  background: var(--glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.realisation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.realisation-shot {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #04101f;
}

.realisation-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 400ms ease;
}

.realisation-card:hover .realisation-shot img {
  transform: scale(1.04);
}

.realisation-shot .realisation-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 14, 26, 0.84);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.36);
  color: #ffffff;
}

.realisation-shot .tag-jooma {
  color: #8fe9f6;
}

.realisation-shot .tag-metier {
  color: #8ce4ae;
}

.realisation-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 16, 31, 0.34) 0%, transparent 36%, transparent 80%, rgba(4, 16, 31, 0.18) 100%);
  pointer-events: none;
}

.realisation-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 24px 24px;
}

.realisation-body h3 {
  margin: 0;
  color: var(--ink);
}

.realisation-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.realisation-link {
  color: var(--blue);
  font-weight: 850;
  font-size: 0.94rem;
}

.realisation-body .realisation-link {
  margin-top: 6px;
}

.realisation-link:hover {
  text-decoration: underline;
}

@media (max-width: 860px) {
  .realisation-feature {
    grid-template-columns: 1fr;
  }

  .realisation-feature-shot {
    min-height: 220px;
  }

  .realisation-feature-body {
    padding: 28px 24px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .journey-spine::after {
    animation: none;
    opacity: 0;
  }
}

@media (max-width: 760px) {
  .journey-bridge {
    padding: 64px 16px 72px 40px;
  }

  .journey-head {
    text-align: left;
    margin-bottom: 40px;
  }

  .journey-spine {
    left: 20px;
    transform: none;
  }

  .journey-spine::after {
    left: 0;
  }

  .journey-step {
    width: 100%;
    margin: 0;
  }

  .journey-step:nth-child(odd) .journey-node,
  .journey-step:nth-child(even) .journey-node {
    left: -32px;
    right: auto;
  }

  .journey-signature {
    text-align: left;
    margin-top: 40px;
  }
}

.split-offers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.offer-card,
.feature-card,
.site-panel,
.difference-card,
.proof-card,
.contact-card,
.image-frame {
  border: 1px solid rgba(220, 231, 242, 0.92);
  border-radius: var(--radius-xl);
  background: var(--glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.offer-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
}

.offer-jooma {
  background:
    radial-gradient(circle at 15% 10%, rgba(40, 210, 234, 0.16), transparent 24rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(245, 248, 253, 0.78));
}

.offer-sites {
  background:
    radial-gradient(circle at 88% 8%, rgba(79, 107, 255, 0.16), transparent 24rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(243, 245, 253, 0.78));
}

/* Deux univers : identité par carte */
.offer-emblem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
}

.offer-emblem svg {
  width: 25px;
  height: 25px;
}

.offer-jooma .offer-emblem {
  color: #0e8ba3;
  background: rgba(40, 210, 234, 0.16);
  box-shadow: inset 0 0 0 1px rgba(40, 210, 234, 0.28);
}

.offer-sites .offer-emblem {
  color: #3a52e0;
  background: rgba(79, 107, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(79, 107, 255, 0.28);
}

.offer-jooma .offer-label {
  color: #0e8ba3;
}

.offer-sites .offer-label {
  color: #3a52e0;
}

/* Puces en coches colorées par univers */
.offer-card .check-list li {
  padding-left: 32px;
}

.offer-card .check-list li::before {
  content: "";
  top: 0.08em;
  width: 20px;
  height: 20px;
  border-radius: 0;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='16.5 9 10.5 15 7.5 12'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='16.5 9 10.5 15 7.5 12'/%3E%3C/svg%3E") center / contain no-repeat;
}

.offer-jooma .check-list li::before {
  background: linear-gradient(135deg, #45f0ef, #1fb6cf);
}

.offer-sites .check-list li::before {
  background: linear-gradient(135deg, #6b8cff, #3a52e0);
}

/* Boutons équilibrés, liseré accent par univers */
.offer-jooma .offer-cta {
  box-shadow:
    0 16px 38px rgba(13, 38, 67, 0.24),
    inset 0 0 0 1px rgba(69, 240, 239, 0.34);
}

.offer-jooma .offer-cta:hover {
  box-shadow:
    0 20px 46px rgba(40, 210, 234, 0.3),
    inset 0 0 0 1px rgba(69, 240, 239, 0.5);
}

.offer-sites .offer-cta {
  box-shadow:
    0 16px 38px rgba(13, 38, 67, 0.24),
    inset 0 0 0 1px rgba(107, 140, 255, 0.4);
}

.offer-sites .offer-cta:hover {
  box-shadow:
    0 20px 46px rgba(79, 107, 255, 0.32),
    inset 0 0 0 1px rgba(107, 140, 255, 0.6);
}

.offer-label,
.proof-copy span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-card p,
.feature-card p,
.site-panel p,
.difference-item p,
.proof-card p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-weight: 760;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.detail-grid,
.site-layout,
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 26px;
}

.detail-copy {
  min-width: 0;
}

.quote-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 0;
  padding: 13px 18px;
  border-radius: 14px;
  border: 1px solid rgba(40, 210, 234, 0.32);
  background: rgba(40, 210, 234, 0.08);
  color: var(--ink-soft) !important;
  font-weight: 800;
}

.quote-line::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(40, 210, 234, 0.16);
}

.image-frame {
  padding: 16px;
  overflow: hidden;
}

.image-frame-dark {
  background: linear-gradient(145deg, var(--ink), var(--blue-deep));
}

.image-frame img,
.image-frame video {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.feature-grid,
.proof-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.jooma-detail .feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 194px;
  padding: 24px;
}

.feature-card span,
.difference-item span {
  display: inline-flex;
  width: 13px;
  height: 13px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.site-panel {
  padding: 30px;
}

.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 9px 13px;
  color: var(--ink-soft);
  font-weight: 800;
}

.site-panel-visual {
  display: grid;
  gap: 20px;
}

.site-panel-visual img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 22px 50px rgba(7, 20, 38, 0.12);
}

.site-panel-visual strong,
.site-panel-visual span {
  display: block;
}

.site-panel-visual span {
  margin-top: 6px;
  color: var(--muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline-item {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #edf5ff;
  color: var(--blue);
  font-weight: 900;
}

.timeline-item p {
  color: var(--muted);
}

.difference-card {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 34px;
  padding: 40px;
  background:
    radial-gradient(circle at top left, rgba(40, 210, 234, 0.12), transparent 28rem),
    rgba(255, 255, 255, 0.84);
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.difference-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}

.difference-item span {
  width: 10px;
  height: 10px;
  margin-bottom: 10px;
}

.difference-item p {
  margin: 0;
  font-weight: 770;
}

.proof-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-card {
  overflow: hidden;
}

.proof-image {
  background: var(--surface-soft);
}

.proof-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.proof-copy {
  padding: 20px;
}

.proof-copy h3 {
  margin-bottom: 8px;
}

.contact-section {
  margin-bottom: 80px;
}

.contact-card {
  align-items: start;
  padding: 36px;
  background:
    radial-gradient(circle at 12% 14%, rgba(40, 210, 234, 0.15), transparent 26rem),
    rgba(255, 255, 255, 0.84);
}

.contact-actions {
  margin-top: 28px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 107, 255, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Contact — carte sombre immersive, plus voyante */
.contact-card {
  border: 1px solid rgba(40, 210, 234, 0.28);
  background:
    radial-gradient(circle at 14% 10%, rgba(40, 210, 234, 0.24), transparent 30rem),
    radial-gradient(circle at 92% 94%, rgba(36, 107, 255, 0.18), transparent 28rem),
    linear-gradient(145deg, #061222, #071426 68%, #0a1728);
  box-shadow: 0 34px 92px rgba(7, 20, 38, 0.32);
}

.contact-card .contact-copy .eyebrow {
  color: var(--cyan);
}

.contact-card .contact-copy h2 {
  color: #ffffff;
}

.contact-card .contact-copy p {
  color: rgba(235, 244, 255, 0.78);
}

.contact-card .button-primary {
  background: linear-gradient(135deg, #45f0ef, var(--cyan));
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(40, 210, 234, 0.28);
}

.contact-card .button-primary:hover {
  box-shadow: 0 22px 52px rgba(40, 210, 234, 0.4);
}

.contact-card .button-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.contact-card .button-secondary:hover {
  border-color: rgba(69, 240, 239, 0.6);
  box-shadow: 0 14px 32px rgba(40, 210, 234, 0.18);
}

.contact-card .contact-form label {
  color: rgba(235, 244, 255, 0.86);
}

.contact-card .contact-form input,
.contact-card .contact-form select,
.contact-card .contact-form textarea {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.contact-card .contact-form select option {
  color: #071426;
}

.contact-card .contact-form input::placeholder,
.contact-card .contact-form textarea::placeholder {
  color: rgba(235, 244, 255, 0.45);
}

.contact-card .contact-form input:focus,
.contact-card .contact-form select:focus,
.contact-card .contact-form textarea:focus {
  border-color: rgba(69, 240, 239, 0.7);
  box-shadow: 0 0 0 4px rgba(40, 210, 234, 0.18);
}

.contact-card .form-note {
  color: rgba(235, 244, 255, 0.6);
}

/* Popup Cockpit */
.cockpit-modal[hidden] {
  display: none;
}

.cockpit-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cockpit-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 24, 0.64);
  backdrop-filter: blur(6px);
}

.cockpit-modal-dialog {
  position: relative;
  z-index: 1;
  width: clamp(320px, 62vw, 1060px);
  max-height: 86vh;
  overflow: auto;
  padding: 34px 36px 36px;
  border: 1px solid rgba(40, 210, 234, 0.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 6%, rgba(40, 210, 234, 0.16), transparent 30rem),
    linear-gradient(145deg, #061222, #071426 70%, #0a1728);
  color: white;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
}

.cockpit-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.cockpit-modal-close:hover {
  border-color: rgba(69, 240, 239, 0.6);
  background: rgba(40, 210, 234, 0.16);
}

.cockpit-modal-dialog .eyebrow {
  color: var(--cyan);
}

.cockpit-modal-dialog h3 {
  margin-bottom: 18px;
  color: white;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: -0.03em;
}

.cockpit-modal-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cockpit-modal-gallery img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cockpit-modal-placeholder {
  grid-column: 1 / -1;
  margin: 0;
  padding: 48px 20px;
  text-align: center;
  border: 1px dashed rgba(40, 210, 234, 0.34);
  border-radius: 18px;
  background: rgba(40, 210, 234, 0.06);
  color: rgba(235, 244, 255, 0.72);
  font-weight: 700;
}

@media (max-width: 680px) {
  .cockpit-modal-dialog {
    width: 94vw;
    padding: 26px 22px;
  }

  .cockpit-modal-gallery {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  width: 100%;
  margin-top: 0;
  color: rgba(226, 236, 248, 0.72);
  font-size: 0.94rem;
  background:
    radial-gradient(circle at 12% 0%, rgba(36, 107, 255, 0.16), transparent 30rem),
    radial-gradient(circle at 88% 12%, rgba(40, 210, 234, 0.12), transparent 26rem),
    linear-gradient(180deg, #061423 0%, #04101f 100%);
  border-top: 1px solid rgba(40, 210, 234, 0.16);
}

.footer-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 64px 0 44px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr;
  gap: 40px 52px;
}

.site-footer p {
  margin: 0;
}

.footer-col-brand {
  max-width: 360px;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
}

.footer-brand-lockup img {
  border-radius: 10px;
}

.footer-tagline {
  margin: 16px 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(226, 236, 248, 0.64);
}

.footer-h {
  margin: 0 0 16px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(226, 236, 248, 0.5);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links li {
  margin: 0;
  color: rgba(226, 236, 248, 0.7);
}

.site-footer a {
  color: rgba(226, 236, 248, 0.84);
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: var(--cyan);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  border: 1px solid rgba(226, 236, 248, 0.16);
  color: rgba(226, 236, 248, 0.84);
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.footer-social a:hover {
  color: #04101f;
  background: var(--cyan);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  padding: 11px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #45f0ef, var(--cyan));
  color: var(--ink) !important;
  font-weight: 700 !important;
  font-size: 0.92rem;
}

.footer-cta:hover {
  color: var(--ink) !important;
  transform: translateY(-1px);
}

.footer-bottom {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 20px 0 44px;
  border-top: 1px solid rgba(226, 236, 248, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(226, 236, 248, 0.5);
}

.footer-top {
  color: rgba(226, 236, 248, 0.72) !important;
  font-weight: 600 !important;
}

.footer-top:hover {
  color: var(--cyan) !important;
}

/* --- Bandeau vitrine (avant footer) --- */
.vitrine-band {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: clamp(340px, 46vw, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 96px;
  padding: max(28px, 5vw) max(24px, calc((100vw - 1180px) / 2));
  background: linear-gradient(145deg, #061222, #0a1728);
  color: white;
}

.vitrine-img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vitrine-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 12, 24, 0.86) 0%, rgba(4, 12, 24, 0.5) 48%, rgba(4, 12, 24, 0.2) 100%),
    linear-gradient(180deg, rgba(4, 12, 24, 0.1) 40%, rgba(4, 12, 24, 0.72) 100%);
}

.vitrine-copy {
  max-width: 640px;
}

.vitrine-copy .eyebrow {
  color: var(--cyan);
}

.vitrine-copy h2 {
  margin-bottom: 14px;
  color: white;
}

.vitrine-copy p {
  margin: 0;
  color: rgba(235, 244, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.55;
}

@media (prefers-reduced-motion: no-preference) {
  .floating-card,
  .platform-pill {
    animation: float 6s ease-in-out infinite;
  }

  .card-invoice {
    animation-delay: -2s;
  }

  .card-site {
    animation-delay: -4s;
  }

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

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .hero,
  .cockpit-hero .hero-copy,
  .detail-grid,
  .site-layout,
  .contact-card,
  .difference-card {
    grid-template-columns: 1fr;
  }

  .cockpit-hero.section-shell {
    min-height: 100svh;
    padding: 96px 24px 72px;
  }

  .cockpit-hero .hero-copy {
    gap: 14px;
  }

  .cockpit-hero .eyebrow,
  .cockpit-hero h2,
  .cockpit-hero .hero-lead,
  .cockpit-hero .hero-actions,
  .cockpit-hero .trust-row {
    grid-column: 1;
    grid-row: auto;
  }

  .split-offers,
  .feature-grid,
  .proof-gallery,
  .timeline,
  .difference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jooma-detail .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero.section-shell {
    min-height: 100svh;
    padding: 150px 24px 72px;
  }

  .hero-copy {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero .eyebrow,
  .hero h1,
  .hero .hero-lead,
  .hero .hero-actions,
  .hero .trust-row {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-composition {
    inset: 0;
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .section-shell {
    width: min(calc(100% - 24px), var(--max));
  }

  .section-shell + .section-shell {
    margin-top: 72px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(2.35rem, 10.4vw, 3.05rem);
    line-height: 1;
    letter-spacing: -0.044em;
  }

  h2 {
    font-size: clamp(2rem, 10.6vw, 3.1rem);
  }

  .hero.section-shell,
  .cockpit-hero.section-shell {
    min-height: 100svh;
    padding: 112px 12px 34px;
  }

  .live-badge {
    top: 78px;
    left: 12px;
    gap: 8px;
    padding: 8px 13px;
    font-size: 0.82rem;
  }

  .live-sub {
    display: none;
  }

  .hero-copy,
  .cockpit-hero .hero-copy {
    width: 100%;
    max-width: none;
    padding: 16px 0 0;
    border-radius: 0;
    border-top: 1px solid rgba(40, 210, 234, 0.24);
    background: transparent;
  }

  .hero .eyebrow,
  .cockpit-hero .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    line-height: 1.35;
  }

  .hero h1,
  .cockpit-hero h2 {
    font-size: clamp(1.9rem, 9.8vw, 2.7rem);
    line-height: 0.96;
    letter-spacing: -0.035em;
    text-wrap: balance;
  }

  .hero .hero-lead,
  .cockpit-hero .hero-lead {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .hero-composition {
    inset: 0;
    min-height: 0;
    border-radius: 0;
  }

  .screen-card-main {
    inset: 0;
  }

  .floating-card {
    min-width: 104px;
    padding: 10px 12px;
  }

  .card-agenda {
    top: 28px;
    left: 22px;
  }

  .card-invoice {
    right: 18px;
    top: 32px;
  }

  .card-site {
    left: 20px;
    bottom: 26px;
  }

  .platform-pill {
    right: 18px;
    bottom: 30px;
  }

  .split-offers,
  .feature-grid,
  .proof-gallery,
  .timeline,
  .difference-grid {
    grid-template-columns: 1fr;
  }

  .offer-card,
  .site-panel,
  .difference-card,
  .contact-card {
    padding: 22px;
    border-radius: 24px;
  }

  .image-frame {
    padding: 10px;
    border-radius: 24px;
  }

  .image-frame img,
  .image-frame video,
  .site-panel-visual img {
    border-radius: 18px;
  }

  .jooma-detail .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .feature-card {
    min-height: auto;
    padding: 16px;
  }

  .feature-card h3 {
    font-size: 1.04rem;
    line-height: 1.18;
  }

  .feature-card p {
    font-size: 0.9rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 32px;
  }

  .footer-col-brand {
    max-width: none;
  }

  .vitrine-band {
    margin-top: 64px;
    min-height: 360px;
  }
}

/* Mobile : la vidéo "app vivante" devient une vraie scène visible, le texte passe dessous */
@media (max-width: 680px) {
  .hero.section-shell,
  .cockpit-hero.section-shell {
    display: block;
    min-height: 0;
    padding: 0 0 8px;
    overflow: hidden;
  }

  .hero::before,
  .hero::after,
  .cockpit-hero::before,
  .cockpit-hero::after {
    display: none;
  }

  .hero-composition {
    position: relative;
    inset: auto;
    height: clamp(300px, 52svh, 520px);
    overflow: hidden;
  }

  .hero .hero-composition {
    margin-top: 72px;
  }

  .cockpit-hero .hero-composition {
    margin-top: 0;
    height: auto;
    aspect-ratio: 1920 / 1222;
  }

  .cockpit-hero .screen-card,
  .cockpit-hero .screen-card-main video {
    object-fit: contain;
    background: #04101f;
  }

  .screen-card-main video,
  .screen-card-main img {
    object-position: center;
  }

  .hero-composition::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(4, 12, 24, 0.16) 0%,
      rgba(4, 12, 24, 0) 24%,
      rgba(4, 12, 24, 0) 60%,
      rgba(4, 12, 24, 0.96) 100%
    );
  }

  .hero-copy,
  .cockpit-hero .hero-copy {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 12px 16px 26px;
    border-top: none;
    background: #04101f;
  }

  .hero-copy .eyebrow {
    margin-bottom: 8px;
  }

  .hero-copy .hero-lead {
    margin-top: 12px;
  }

  .hero-copy .hero-actions {
    margin-top: 18px;
  }

  .hero-copy .trust-row {
    margin-top: 14px;
  }

  .live-badge {
    top: 86px;
    left: 16px;
  }

  .cockpit-hero .live-badge {
    top: 14px;
  }
}

/* --- FAQ (accordéon) --- */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid rgba(220, 231, 242, 0.92);
  border-radius: 16px;
  background: var(--glass);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  color: var(--ink);
  font-weight: 850;
  font-size: 1.05rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: none;
  color: var(--cyan);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item[open] summary {
  color: var(--blue-deep);
}

.faq-answer {
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-answer p {
  margin: 0;
}

.form-note-trace {
  position: relative;
  margin-top: 4px;
  padding-left: 20px;
}

.form-note-trace::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
  font-weight: 900;
}

/* ===================== HERO PERSONNEL (Yann) ===================== */
.person-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  padding: 120px max(24px, calc((100vw - 1240px) / 2)) 64px;
  background:
    radial-gradient(circle at 82% 12%, rgba(40, 210, 234, 0.16), transparent 34rem),
    radial-gradient(circle at 6% 90%, rgba(36, 107, 255, 0.14), transparent 30rem),
    linear-gradient(150deg, #04101f, #071426 68%, #0a1728);
  color: white;
}

.person-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.person-hero-copy {
  min-width: 0;
}

.person-hero .eyebrow {
  color: var(--cyan);
}

#person-title {
  margin: 0 0 22px;
}

.ph-name {
  display: block;
  color: #ffffff;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.ph-tagline {
  display: block;
  margin-top: 14px;
  color: rgba(235, 244, 255, 0.94);
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.ph-tagline .cyan,
.person-hero .cyan {
  color: var(--cyan);
}

.person-hero-lead {
  max-width: 560px;
  margin: 0 0 26px;
  color: rgba(235, 244, 255, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.6;
}

.person-hero .hero-actions {
  margin-top: 0;
}

.person-signature {
  margin: 26px 0 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sig-name {
  font-family: "Segoe Script", "Bradley Hand", "Brush Script MT", cursive;
  font-size: 1.9rem;
  color: #ffffff;
  line-height: 1;
}

.sig-role {
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.person-hero-photo {
  position: relative;
}

.person-hero-photo img {
  width: 100%;
  height: auto;
  max-height: 74vh;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid rgba(40, 210, 234, 0.24);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

/* ===================== BARRE D'EXPERTISES ===================== */
.expertise-bar {
  width: 100%;
  padding: 22px max(24px, calc((100vw - 1240px) / 2));
  background: linear-gradient(180deg, #061425, #04101f);
  border-top: 1px solid rgba(40, 210, 234, 0.16);
  border-bottom: 1px solid rgba(40, 210, 234, 0.16);
  color: white;
}

.expertise-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
  max-width: 1240px;
  margin: 0 auto;
}

.expertise-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.expertise-logo {
  height: 26px;
  width: auto;
  align-self: flex-start;
  max-width: 150px;
  object-fit: contain;
}

.expertise-brand span {
  color: rgba(175, 249, 253, 0.75);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.expertise-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 230px;
}

.expertise-list strong {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 850;
}

.expertise-list span {
  color: rgba(235, 244, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.3;
}

/* ===================== MON HISTOIRE — récit cinématographique ===================== */
.story {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  padding: 24px max(24px, calc((100vw - 900px) / 2)) 40px;
  background:
    radial-gradient(circle at 80% 6%, rgba(40, 210, 234, 0.12), transparent 40rem),
    radial-gradient(circle at 14% 94%, rgba(36, 107, 255, 0.1), transparent 36rem),
    linear-gradient(180deg, #04101f, #061425 50%, #04101f);
  color: white;
}

.story-chapter {
  position: relative;
  z-index: 1;
  min-height: 48vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 26px 0;
}

.story .cyan {
  color: var(--cyan);
}

.story-num {
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.35em;
}

.story-h {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
}

.story-p {
  margin: 0;
  max-width: 640px;
  color: rgba(235, 244, 255, 0.82);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.5;
}

/* Ouverture */
.story-open {
  min-height: 66vh;
}

.story-kicker {
  margin-bottom: 22px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.story-open-title {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.story-open-line {
  margin: 0;
  color: rgba(235, 244, 255, 0.7);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.story-scroll {
  margin-top: 44px;
  color: rgba(235, 244, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.story-scroll::after {
  content: "↓";
  display: block;
  margin: 10px auto 0;
  font-size: 1.1rem;
  animation: storyBounce 1.8s ease-in-out infinite;
}

@keyframes storyBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* Chapitre-constat */
.story-statement {
  min-height: 56vh;
}

.story-over {
  margin: 0 0 18px;
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.story-statement-title {
  margin: 0;
  max-width: 880px;
  font-size: clamp(1.7rem, 4.4vw, 3rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: #ffffff;
}

/* Apparition JOOMA */
.story-jooma {
  min-height: 62vh;
}

.story-jooma::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 42%, rgba(40, 210, 234, 0.2), transparent 40%);
  pointer-events: none;
}

.story-jooma-logo {
  height: 52px;
  width: auto;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 34px rgba(40, 210, 234, 0.45));
}

.story-jooma-title {
  margin: 0;
  font-size: clamp(2rem, 5.6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #ffffff;
}

.story-jooma-line {
  margin: 18px 0 0;
  color: rgba(235, 244, 255, 0.7);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

/* Final */
.story-final {
  min-height: 56vh;
}

.story-final-line {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
}

.story-quote {
  margin: 34px auto 0;
  max-width: 720px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(235, 244, 255, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  font-style: italic;
  line-height: 1.5;
}

/* Révélation au scroll — active uniquement si le JS tourne (.js-reveal) */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.js-reveal .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .story-scroll::after {
    animation: none;
  }
}

.histoire-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.histoire-card {
  padding: 24px 24px 26px;
  border: 1px solid rgba(220, 231, 242, 0.92);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% -20%, rgba(40, 210, 234, 0.1), transparent 16rem),
    var(--glass);
  box-shadow: var(--shadow-soft);
}

.histoire-index {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.histoire-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.histoire-signature {
  max-width: 820px;
  margin: 30px auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.5;
}

.histoire-signature strong {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 900px) {
  .person-hero-inner {
    grid-template-columns: 1fr;
  }

  .person-hero-photo {
    order: -1;
    max-width: 420px;
  }

  .person-hero-photo img {
    max-height: 52vh;
  }

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

@media (max-width: 680px) {
  .person-hero {
    padding: 100px 16px 44px;
  }

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

  .expertise-brand {
    border-right: none;
    padding-right: 0;
  }
}

/* ===================== PAGE WEST COAST ARCADES (néon rétro) ===================== */
.wca {
  --neon-cyan: #2ee6d6;
  --neon-orange: #ff8a3d;
  --neon-violet: #a06bff;
  --wca-ink: #eef0ff;
  --wca-muted: rgba(226, 230, 255, 0.72);
  display: block;
  color: var(--wca-ink);
  background:
    radial-gradient(circle at 12% 3%, rgba(160, 107, 255, 0.14), transparent 34rem),
    radial-gradient(circle at 88% 16%, rgba(46, 230, 214, 0.12), transparent 34rem),
    linear-gradient(180deg, #0a0a1f, #0e0b26 42%, #0a0a1f);
}

.wca-section {
  width: min(calc(100% - 40px), 1120px);
  margin: 0 auto;
  padding: 60px 0;
}

.wca-hero {
  width: min(calc(100% - 40px), 1200px);
  margin: 0 auto;
  padding: 132px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 44px;
}

.wca-eyebrow,
.wca-kicker {
  margin: 0 0 16px;
  color: var(--neon-cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wca-hero h1 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.wca-grad {
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-violet) 58%, var(--neon-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wca-lead {
  max-width: 560px;
  margin: 0 0 26px;
  color: var(--wca-muted);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.6;
}

.wca-hero-visual img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(46, 230, 214, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(46, 230, 214, 0.12);
}

.wca-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wca-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.wca-btn:hover {
  transform: translateY(-2px);
}

.wca-btn-primary {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-violet));
  color: #0a0a1f;
  box-shadow: 0 16px 40px rgba(46, 230, 214, 0.28);
}

.wca-btn-ghost {
  border-color: rgba(226, 230, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.wca-btn-ghost:hover {
  border-color: var(--neon-cyan);
}

.wca-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.wca-head h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.wca-head p {
  margin: 0;
  color: var(--wca-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.wca-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wca-badge-done {
  color: #0a0a1f;
  background: var(--neon-cyan);
}

.wca-badge-soon {
  color: var(--neon-orange);
  background: rgba(255, 138, 61, 0.14);
  border: 1px solid rgba(255, 138, 61, 0.45);
}

.wca-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.wca-card {
  padding: 24px;
  border: 1px solid rgba(226, 230, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
}

.wca-ico {
  display: block;
  margin-bottom: 12px;
  font-size: 1.7rem;
}

.wca-card h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.12rem;
}

.wca-card p {
  margin: 0;
  color: var(--wca-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.wca-keymsg {
  max-width: 760px;
  margin: 26px 0 0;
  color: #ffffff;
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  line-height: 1.45;
}

.wca-keymsg strong {
  color: var(--neon-cyan);
}

.wca-keymsg-inline {
  margin-top: 16px;
}

.wca-jooma-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 0;
  padding: 12px 16px;
  border: 1px solid rgba(160, 107, 255, 0.4);
  border-radius: 12px;
  background: rgba(160, 107, 255, 0.1);
  color: var(--wca-muted);
  font-size: 0.95rem;
}

.wca-jooma-note strong {
  color: var(--neon-violet);
}

.wca-dot {
  width: 9px;
  height: 9px;
  flex: none;
  border-radius: 50%;
  background: var(--neon-violet);
  box-shadow: 0 0 10px var(--neon-violet);
}

.wca-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.wca-diagram {
  text-align: center;
}

.wca-diagram svg {
  width: 100%;
  max-width: 420px;
}

.wca-node circle {
  fill: rgba(46, 230, 214, 0.08);
  stroke: rgba(46, 230, 214, 0.55);
  stroke-width: 1.5;
}

.wca-node text {
  fill: #cfeeea;
  font-size: 12px;
  font-weight: 700;
  text-anchor: middle;
}

.wca-hub circle {
  fill: rgba(160, 107, 255, 0.16);
  stroke: var(--neon-violet);
  stroke-width: 2;
}

.wca-hub text {
  fill: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-anchor: middle;
}

.wca-diagram-cap {
  margin-top: 14px;
  color: var(--wca-muted);
  font-size: 0.9rem;
}

.wca-vision-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wca-vision-list li {
  position: relative;
  padding-left: 20px;
}

.wca-vision-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
}

.wca-vision-list strong {
  display: block;
  margin-bottom: 3px;
  color: #ffffff;
}

.wca-vision-list span {
  color: var(--wca-muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.wca-map-block {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: center;
  margin-top: 40px;
}

.wca-map svg {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.wca-ring {
  fill: none;
  stroke: rgba(46, 230, 214, 0.35);
  stroke-width: 1.4;
}

.wca-pin {
  fill: var(--neon-orange);
}

.wca-spot {
  fill: var(--neon-cyan);
}

.wca-map-lbl {
  fill: rgba(226, 230, 255, 0.6);
  font-size: 10px;
  text-anchor: middle;
}

.wca-map-copy h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.4rem;
}

.wca-map-copy p {
  margin: 0 0 10px;
  color: var(--wca-muted);
  line-height: 1.6;
}

.wca-why {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.wca-why-item {
  padding: 22px;
  border: 1px solid rgba(226, 230, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.wca-why-item h3 {
  margin: 0 0 8px;
  color: var(--neon-cyan);
  font-size: 1.1rem;
}

.wca-why-item p {
  margin: 0;
  color: var(--wca-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.wca-cta {
  width: min(calc(100% - 40px), 1120px);
  margin: 20px auto 80px;
  padding: 54px 40px;
  text-align: center;
  border: 1px solid rgba(46, 230, 214, 0.28);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(160, 107, 255, 0.18), transparent 60%),
    linear-gradient(180deg, #12102b, #0a0a1f);
}

.wca-cta h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
}

.wca-cta p {
  margin: 0 0 24px;
  color: var(--wca-muted);
}

.wca-cta .wca-actions {
  justify-content: center;
}

@media (max-width: 900px) {
  .wca-hero {
    grid-template-columns: 1fr;
    padding-top: 112px;
  }

  .wca-hero-visual {
    order: -1;
  }

  .wca-grid,
  .wca-why {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wca-vision-grid,
  .wca-map-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .wca-grid,
  .wca-why {
    grid-template-columns: 1fr;
  }
}

/* ===================== Header logo + brand ===================== */
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  object-fit: contain;
}

.brand-name {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.01em;
}

/* Tops de page (sous le header fixe) */
.real-intro,
.jooma-cta-section {
  padding-top: 128px;
}

.jooma-cta-section {
  padding-bottom: 20px;
}

/* Bandeau bleuté en haut des pages claires (derrière le header) */
.real-intro {
  position: relative;
}

.real-intro::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: linear-gradient(180deg, #dbe6f6 0%, #e9f1fb 55%, transparent 100%);
}

/* ===================== Choix de direction (accueil) ===================== */
.direction-section {
  margin-top: 12px;
}

.direction-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  align-items: stretch;
}

.direction-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 34px;
  border: 1px solid rgba(220, 231, 242, 0.92);
  border-radius: var(--radius-xl);
  background: var(--glass);
  box-shadow: var(--shadow-soft);
}

.direction-jooma {
  text-decoration: none;
  color: inherit;
  background:
    radial-gradient(circle at 18% 0%, rgba(40, 210, 234, 0.16), transparent 24rem),
    linear-gradient(150deg, #061222, #0a1728);
  border-color: rgba(40, 210, 234, 0.28);
  color: #ffffff;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.direction-jooma:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 66px rgba(7, 20, 38, 0.3);
}

.direction-logo {
  height: 40px;
  width: auto;
  align-self: flex-start;
}

.direction-card h3 {
  margin: 0;
  font-size: 1.35rem;
  color: inherit;
}

.direction-real h3 {
  color: var(--ink);
}

.direction-jooma p {
  color: rgba(235, 244, 255, 0.78);
  margin: 0;
}

.direction-real > p {
  color: var(--muted);
  margin: 0;
}

.direction-go {
  margin-top: auto;
  color: var(--cyan);
  font-weight: 850;
}

.direction-real .direction-go {
  color: var(--blue);
}

.direction-encarts {
  display: grid;
  gap: 10px;
  margin: 4px 0;
}

.direction-encart {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(220, 231, 242, 0.92);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.direction-encart:hover {
  border-color: rgba(40, 210, 234, 0.5);
  transform: translateX(3px);
}

.direction-encart strong {
  display: block;
  color: var(--ink);
  margin-bottom: 2px;
}

.direction-encart span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

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

/* ===================== Popup Contact ===================== */
.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 24, 0.66);
  backdrop-filter: blur(6px);
}

.contact-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 32px 34px 34px;
  border: 1px solid rgba(40, 210, 234, 0.26);
  border-radius: 24px;
  background: linear-gradient(150deg, #061222, #071426 70%, #0a1728);
  color: white;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.5);
}

.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.contact-modal-close:hover {
  border-color: rgba(69, 240, 239, 0.6);
}

.contact-modal-dialog .eyebrow {
  color: var(--cyan);
}

.contact-modal-dialog h3 {
  margin: 0 0 18px;
  color: white;
  font-size: 1.5rem;
}

.contact-modal-dialog .contact-form label {
  color: rgba(235, 244, 255, 0.86);
}

.contact-modal-dialog .contact-form input,
.contact-modal-dialog .contact-form select,
.contact-modal-dialog .contact-form textarea {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.contact-modal-dialog .contact-form select option {
  color: #071426;
}

.contact-modal-dialog .contact-form input:focus,
.contact-modal-dialog .contact-form select:focus,
.contact-modal-dialog .contact-form textarea:focus {
  border-color: rgba(69, 240, 239, 0.7);
  box-shadow: 0 0 0 4px rgba(40, 210, 234, 0.18);
}

.contact-modal-dialog .form-note {
  color: rgba(235, 244, 255, 0.6);
}

.contact-modal-dialog .form-note-trace {
  color: rgba(235, 244, 255, 0.72);
}

/* ===================== Choix des univers (fin d'accueil) ===================== */
.choice {
  width: 100%;
  padding: 78px max(24px, calc((100vw - 1280px) / 2)) 96px;
  background: linear-gradient(180deg, #04101f, #061425 50%, #04101f);
  color: white;
}

.choice-head {
  max-width: 840px;
  margin: 0 auto 46px;
  text-align: center;
}

.choice-head .eyebrow {
  color: var(--cyan);
}

.choice-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.choice-head .cyan {
  color: var(--cyan);
}

.choice-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.choice-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.choice-card:hover {
  transform: translateY(-4px);
  border-color: rgba(40, 210, 234, 0.45);
  box-shadow: 0 42px 104px rgba(0, 0, 0, 0.5);
}

.choice-media,
.choice-mosaic {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.choice-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  animation: choiceZoom 22s ease-in-out infinite alternate;
}

@keyframes choiceZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.13); }
}

.choice-jooma:hover .choice-media img {
  animation-play-state: paused;
  transform: scale(1.14);
  transition: transform 600ms ease;
}

.choice-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}

.choice-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.choice-real:hover .choice-mosaic img {
  transform: scale(1.06);
}

.choice-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4, 12, 24, 0.2) 0%, rgba(4, 12, 24, 0.28) 42%, rgba(4, 12, 24, 0.93) 100%);
}

.choice-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 36px;
}

.choice-logo {
  height: 42px;
  width: auto;
  align-self: flex-start;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 22px rgba(40, 210, 234, 0.45));
}

.choice-kicker {
  margin: 0;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.choice-content h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.choice-content p {
  margin: 0;
  color: rgba(235, 244, 255, 0.8);
  font-size: 1rem;
  line-height: 1.5;
}

.choice-go {
  margin-top: 8px;
  color: var(--cyan);
  font-weight: 850;
}

/* ligne lumineuse reliant les deux univers */
.choice-bridge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 2px;
  z-index: 3;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 16px rgba(40, 210, 234, 0.85);
}

.choice-bridge::before,
.choice-bridge::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(40, 210, 234, 0.9);
}

.choice-bridge::before { left: -3px; }
.choice-bridge::after { right: -3px; }

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

  .choice-bridge {
    display: none;
  }

  .choice-card {
    min-height: 380px;
  }
}
