/* Fonts chargées via <link> dans le HTML — preconnect + Fontshare CDN */
/* Cabinet Grotesk (display headings) + Satoshi (body) */

:root {
  --bg: #f5f5f7;
  --panel: #fbfbfd;
  --panel-soft: #f0f7ff;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --line: #d2d2d7;
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  --radius: 34px;
  --radius-small: 24px;
  --content: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  /* scroll-behavior géré par Lenis — ne pas mettre smooth ici (conflit) */
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: "Satoshi", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(24px);
  background: rgba(251, 251, 253, 0.82);
  border-bottom: 1px solid rgba(210, 210, 215, 0.7);
}


.nav-inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 18px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(111, 57, 255, 0.18);
}

.brand-mark {
  font-size: 0.98rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.82rem;
  color: var(--muted);
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text);
}

.nav-trigger {
  position: relative;
}

.nav-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 18px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover,
.button:hover,
.button-secondary:hover {
  transform: translateY(-1px);
}

.nav-cta:hover,
.button:hover {
  background: var(--blue-hover);
  box-shadow: 0 12px 28px rgba(0, 113, 227, 0.24);
}

.page-shell {
  padding: 12px 0 48px;
}

.stack {
  max-width: calc(var(--content) + 36px);
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  gap: 18px;
}

.panel {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stage-link {
  --spot-x: 50%;
  --spot-y: 50%;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.stage-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.11);
}

.stage-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(255, 255, 255, 0.34), transparent 34%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.stage-link:hover::before {
  opacity: 1;
}

.hero-panel,
.feature-panel,
.offer-hero,
.cta-panel,
.info-panel {
  padding: 52px 26px;
  text-align: center;
}

.hero-panel {
  min-height: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding-top: 68px;
  padding-bottom: 0;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto 12% 8% 12%;
  height: 120px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.14), transparent 68%);
  filter: blur(22px);
}


.inline-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.nav-dropdown-shell {
  position: absolute;
  left: 50%;
  top: calc(100% - 8px);
  width: min(1120px, calc(100% - 28px));
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown-shell.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(6px);
}

.nav-dropdown {
  display: none;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(210, 210, 215, 0.9);
  border-radius: 28px;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.1);
  backdrop-filter: saturate(180%) blur(24px);
  padding: 28px;
}

.nav-dropdown.is-open {
  display: grid;
}

.dropdown-copy {
  display: grid;
  gap: 10px;
}

.dropdown-copy h3 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: -0.05em;
  line-height: 1;
}

.dropdown-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.dropdown-links a {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 18px;
  background: #f5f5f7;
  font-weight: 600;
  transition: background 180ms ease, transform 180ms ease;
}

.dropdown-links a:hover {
  background: #ebf3ff;
  transform: translateX(2px);
}

.panel-eyebrow {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-panel h1,
.offer-hero h1,
.page-hero h1,
.split-copy h2,
.feature-panel h2,
.pricing-head h2,
.cta-panel h2,
.section-head h2 {
  margin: 0;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.hero-panel h1,
.offer-hero h1,
.page-hero h1 {
  font-size: clamp(3.2rem, 9vw, 6.5rem);
}

.hero-panel p,
.offer-hero p,
.page-hero p,
.split-copy p,
.feature-panel p,
.plan-copy p,
.stat-card p,
.section-head p,
.mini-card p {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  line-height: 1.45;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button {
  background: var(--blue);
  color: #fff;
}

.button-secondary {
  background: rgba(0, 0, 0, 0);
  color: var(--blue);
  border: 1px solid rgba(0, 113, 227, 0.45);
}

.button-secondary:hover {
  border-color: rgba(0, 113, 227, 0.72);
  color: var(--blue-hover);
}

.hero-art {
  width: calc(100% + 52px);
  margin: 12px -26px 0;
}

.hero-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
}


.glow-blue {
  background:
    radial-gradient(circle at top, rgba(146, 211, 255, 0.88), transparent 34%),
    linear-gradient(180deg, #d9f1ff 0%, #f6fbff 54%, #edf7ff 100%);
}

.glow-silver {
  background:
    radial-gradient(circle at top right, rgba(162, 214, 255, 0.56), transparent 34%),
    linear-gradient(115deg, #deeffb 0%, #edf8ff 40%, #ffffff 100%);
}

.glow-white {
  background:
    radial-gradient(circle at top, rgba(229, 241, 252, 0.72), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
}

.glow-violet {
  background:
    radial-gradient(circle at top, rgba(195, 171, 255, 0.46), transparent 28%),
    linear-gradient(180deg, #f6f1ff 0%, #fbfbfd 58%, #f2f4ff 100%);
}

.grid-two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.split-panel {
  display: grid;
  gap: 22px;
  align-items: center;
  padding: 32px 26px;
  min-height: 640px;
}

.split-copy {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.split-copy h2 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.split-art {
  width: 100%;
  min-height: 280px;
  display: grid;
  place-items: center;
}


.section-head {
  padding: 56px 22px 4px;
  text-align: center;
  display: grid;
  gap: 10px;
}

.section-head h2 {
  font-size: clamp(2.3rem, 6vw, 4.5rem);
}

.product-grid {
  display: grid;
  gap: 18px;
}

.mini-card {
  min-height: 560px;
  padding: 34px 24px;
  text-align: center;
  display: grid;
  align-content: start;
  gap: 14px;
}

.mini-card .button {
  width: 100%;
  max-width: 220px;
  justify-self: center;
}

.mini-card h3,
.plan-card h3,
.stat-card h3,
.detail-card h3,
.feature-list h3 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  letter-spacing: -0.04em;
}

.mini-art {
  margin-top: auto;
  min-height: 240px;
  display: grid;
  place-items: center;
}

.logo-art {
  width: min(100%, 280px);
  border-radius: 40px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}


.black-panel {
  background: linear-gradient(180deg, #040404 0%, #111214 100%);
  color: #fff;
}

.black-panel p,
.black-panel .panel-eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.deep-dive {
  padding: 22px 26px 34px;
}

.detail-card {
  min-height: 360px;
  padding: 30px 24px;
  display: grid;
  gap: 14px;
  align-content: start;
  background: var(--panel);
  border-radius: var(--radius-small);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-art {
  margin-top: auto;
  min-height: 150px;
  border-radius: 26px;
  background: linear-gradient(135deg, #f1f1f4, #dfefff);
}

.card-art.handshake {
  background:
    radial-gradient(circle at 30% 70%, #ff944d 0 18%, transparent 19%),
    radial-gradient(circle at 70% 70%, #d9ebff 0 18%, transparent 19%),
    linear-gradient(135deg, #f5f5f7 0%, #d8e8ff 100%);
}

.card-art.dashboard {
  background:
    linear-gradient(90deg, rgba(0, 113, 227, 0.12) 0 38%, transparent 38% 100%),
    linear-gradient(180deg, rgba(0, 113, 227, 0.1) 0 18%, transparent 18% 100%),
    #f8fbff;
}

.card-art.icons {
  background:
    radial-gradient(circle at 24% 36%, rgba(0, 113, 227, 0.9) 0 10%, transparent 11%),
    radial-gradient(circle at 50% 36%, rgba(0, 113, 227, 0.9) 0 10%, transparent 11%),
    radial-gradient(circle at 76% 36%, rgba(0, 113, 227, 0.9) 0 10%, transparent 11%),
    radial-gradient(circle at 24% 66%, rgba(0, 113, 227, 0.9) 0 10%, transparent 11%),
    radial-gradient(circle at 50% 66%, rgba(0, 113, 227, 0.9) 0 10%, transparent 11%),
    radial-gradient(circle at 76% 66%, rgba(0, 113, 227, 0.9) 0 10%, transparent 11%),
    linear-gradient(135deg, #fff, #eef6ff);
}

.card-art.cable {
  background:
    linear-gradient(90deg, #f6f6f8 0 52%, #ececef 52% 100%);
  position: relative;
}

.card-art.cable::after {
  content: "";
  position: absolute;
  left: 44%;
  top: 12%;
  width: 12%;
  height: 76%;
  border-radius: 999px;
  background: linear-gradient(180deg, #e8e8ea 0%, #c6c6cb 100%);
}

.pricing-grid,
.plans-grid,
.stats-grid,
.info-grid {
  display: grid;
  gap: 18px;
}

.carousel-section,
.page-carousel-section {
  display: grid;
  gap: 18px;
  padding: 8px 0 6px;
}

.carousel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 0 8px;
}

.carousel-head h2 {
  margin: 6px 0 0;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.text-link {
  color: var(--blue);
  font-weight: 600;
  white-space: nowrap;
}

.carousel-shell {
  overflow: hidden;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding: 8px 8px 10px;
  scrollbar-width: none;
}

.carousel-track-wide {
  grid-auto-columns: minmax(300px, 390px);
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.story-card {
  position: relative;
  min-height: 560px;
  padding: 24px 20px 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(118, 189, 255, 0.32), transparent 28%),
    #ffffff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.11);
}

.black-card {
  background:
    radial-gradient(circle at top, rgba(57, 100, 255, 0.24), transparent 24%),
    linear-gradient(180deg, #0b0b0d 0%, #000 100%);
  color: #fff;
}

.black-card p,
.black-card .story-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.story-kicker {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.story-card h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.05em;
  line-height: 0.96;
}

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

.story-visual {
  margin-top: auto;
  min-height: 280px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.story-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-card-real {
  background: #f5fbff;
}

.story-card-real::before,
.story-card-real::after {
  display: none;
}

.story-site-real {
  background: #050608;
}

.story-site-real::before,
.story-site-real::after {
  display: none;
}

.story-publicite-real {
  background: #f7f0ff;
}

.story-publicite-real::before,
.story-publicite-real::after {
  display: none;
}

.story-photo-site-card {
  object-fit: cover;
  object-position: center 72%;
  transform: scale(1.06);
  transform-origin: center center;
}

.story-photo-publicite-card {
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.12);
  transform-origin: center center;
}

.story-phone-stack {
  background:
    linear-gradient(135deg, rgba(255, 162, 79, 0.88), rgba(255, 121, 32, 0.18)),
    #0b0b0d;
}

.story-phone-stack::before,
.story-phone-stack::after {
  content: "";
  position: absolute;
  bottom: -6%;
  width: 44%;
  aspect-ratio: 0.54;
  border-radius: 34px;
  border: 4px solid #111;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  display: none;
}

.story-phone-stack::before {
  left: 8%;
  background: linear-gradient(180deg, #ff9a54 0%, #e67221 100%);
}

.story-phone-stack::after {
  right: 10%;
  background: linear-gradient(180deg, #22263e 0%, #0f1220 100%);
}

.story-card-glow {
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.82), rgba(117, 181, 255, 0.9) 22%, rgba(0, 113, 227, 0.94) 52%, transparent 64%),
    linear-gradient(135deg, #edf6ff, #ffffff);
}

.story-card-glow::before,
.story-card-glow::after {
  content: "";
  position: absolute;
  width: 48%;
  aspect-ratio: 1.1;
  border-radius: 28px;
  top: 18%;
  background: linear-gradient(135deg, rgba(12, 95, 240, 0.95), rgba(120, 208, 255, 0.75));
  transform: rotate(-24deg);
}

.story-card-glow::before {
  left: 20%;
}

.story-card-glow::after {
  left: 42%;
  opacity: 0.2;
}

.story-laptop-glow {
  background:
    radial-gradient(circle at center, rgba(114, 200, 255, 0.18), transparent 46%),
    linear-gradient(180deg, #050608, #101113 64%, #000);
}

.story-laptop-glow::before {
  content: "";
  position: absolute;
  width: 64%;
  height: 42%;
  left: 18%;
  top: 18%;
  border-radius: 22px;
  background: linear-gradient(140deg, #0f1722 0%, #46b7ff 42%, #f4fbff 100%);
  transform: perspective(1000px) rotateX(10deg) rotateY(-18deg);
}

.story-laptop-glow::after {
  content: "";
  position: absolute;
  width: 56%;
  height: 10%;
  left: 22%;
  bottom: 18%;
  border-radius: 0 0 30px 30px;
  background: linear-gradient(180deg, #edf6ff, #90a9bc);
  transform: perspective(1000px) rotateX(66deg);
}

.story-watch-glow {
  background:
    radial-gradient(circle at center, rgba(163, 127, 255, 0.2), transparent 46%),
    linear-gradient(180deg, #f7f0ff 0%, #fdfdff 100%);
}

.story-watch-glow::before {
  content: "";
  position: absolute;
  inset: 14% 20%;
  border-radius: 60px;
  background: linear-gradient(145deg, #18191b 0%, #070809 100%);
}

.story-watch-glow::after {
  content: "";
  position: absolute;
  inset: 24% 28%;
  border-radius: 42px;
  background:
    conic-gradient(from 0deg, #76ffd4 0 24%, #6f8dff 24% 58%, #ff914f 58% 78%, #76ffd4 78% 100%);
}

.story-social-grid {
  background:
    linear-gradient(180deg, #0f1220 0%, #070809 100%);
}

.story-social-grid::before,
.story-social-grid::after {
  content: "";
  position: absolute;
  width: 36%;
  aspect-ratio: 1;
  border-radius: 26px;
  top: 22%;
}

.story-social-grid::before {
  left: 14%;
  background: linear-gradient(135deg, #ff6a95, #ff9e3d, #ffe066);
}

.story-social-grid::after {
  right: 14%;
  background: linear-gradient(135deg, #0f0f12, #2b2c36);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.story-menu-board {
  background: linear-gradient(180deg, #0f1220 0%, #070809 100%);
}

.story-menu-board::before,
.story-menu-board::after {
  content: "";
  position: absolute;
  border-radius: 24px;
}

.story-menu-board::before {
  inset: 12% 12% auto;
  height: 26%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 243, 248, 0.94));
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.24),
    inset 0 -38px 0 rgba(0, 113, 227, 0.08);
}

.story-menu-board::after {
  inset: auto 14% 10%;
  height: 38%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 33%, transparent 33% 36%, rgba(255, 255, 255, 0.08) 36% 69%, transparent 69% 72%, rgba(255, 255, 255, 0.08) 72% 100%),
    linear-gradient(180deg, #171a2a, #0d1020);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.story-order-flow {
  background: linear-gradient(180deg, #f7fbff 0%, #edf5ff 100%);
}

.story-order-flow::before,
.story-order-flow::after {
  content: "";
  position: absolute;
  border-radius: 24px;
}

.story-order-flow::before {
  inset: 12% 14% auto;
  height: 24%;
  background: #fff;
  box-shadow: 0 18px 40px rgba(37, 84, 168, 0.12);
}

.story-order-flow::after {
  inset: auto 16% 14%;
  height: 40%;
  background:
    radial-gradient(circle at 18% 28%, rgba(0, 113, 227, 0.92) 0 10%, transparent 11%),
    linear-gradient(90deg, rgba(0, 113, 227, 0.16) 22%, transparent 22% 28%, rgba(0, 113, 227, 0.18) 28% 56%, transparent 56% 62%, rgba(0, 113, 227, 0.1) 62% 100%),
    linear-gradient(180deg, #ffffff, #eef5ff);
  box-shadow: 0 18px 44px rgba(0, 113, 227, 0.12);
}

.story-bag-route {
  background:
    radial-gradient(circle at top right, rgba(94, 176, 255, 0.3), transparent 26%),
    linear-gradient(180deg, #fdfefe 0%, #eef7ff 100%);
}

.story-bag-route::before,
.story-bag-route::after {
  content: "";
  position: absolute;
}

.story-bag-route::before {
  left: 22%;
  bottom: 14%;
  width: 34%;
  aspect-ratio: 0.9;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f4f7fb);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.story-bag-route::after {
  right: 16%;
  top: 22%;
  width: 34%;
  height: 54%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 16%, rgba(0, 113, 227, 0.8) 0 6%, transparent 7%),
    linear-gradient(180deg, transparent 0 18%, rgba(0, 113, 227, 0.18) 18% 22%, transparent 22% 42%, rgba(0, 113, 227, 0.18) 42% 46%, transparent 46% 68%, rgba(0, 113, 227, 0.18) 68% 72%, transparent 72% 100%);
}

.story-reservation-table {
  background:
    radial-gradient(circle at center, rgba(100, 149, 255, 0.12), transparent 38%),
    linear-gradient(180deg, #101113 0%, #050608 100%);
}

.story-reservation-table::before,
.story-reservation-table::after {
  content: "";
  position: absolute;
}

.story-reservation-table::before {
  inset: 20% 18% auto;
  height: 30%;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #edf2f8);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.story-reservation-table::after {
  left: 22%;
  right: 22%;
  bottom: 14%;
  height: 24%;
  border-radius: 999px 999px 28px 28px;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.78) 0 8%, transparent 9%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.92) 0 8%, transparent 9%),
    radial-gradient(circle at 82% 50%, rgba(255, 255, 255, 0.78) 0 8%, transparent 9%),
    linear-gradient(180deg, rgba(109, 146, 255, 0.24), rgba(109, 146, 255, 0.08));
}

.story-review-pulse {
  background:
    radial-gradient(circle at center, rgba(87, 170, 255, 0.84) 0 10%, rgba(87, 170, 255, 0.54) 11% 24%, rgba(87, 170, 255, 0.18) 25% 42%, transparent 43%),
    linear-gradient(180deg, #f8fbff 0%, #edf5ff 100%);
}

.story-review-pulse::before,
.story-review-pulse::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.story-review-pulse::before {
  inset: 22% 20%;
  border: 1px solid rgba(0, 113, 227, 0.1);
}

.story-review-pulse::after {
  inset: 32% 30%;
  border: 1px solid rgba(0, 113, 227, 0.18);
}

.story-wheel-spin {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #0f1220, #070809);
}

.story-wheel-spin::before,
.story-wheel-spin::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.story-wheel-spin::before {
  inset: 18% 18%;
  background:
    conic-gradient(from 0deg, #6effd0 0 22%, #6f8dff 22% 50%, #ff8f4e 50% 74%, #f3df74 74% 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.story-wheel-spin::after {
  inset: 38% 38%;
  background: #111214;
}

.story-admin-console {
  background: linear-gradient(180deg, #f7f9fc, #edf4fb);
}

.story-admin-console::before,
.story-admin-console::after {
  content: "";
  position: absolute;
  border-radius: 24px;
}

.story-admin-console::before {
  inset: 12% 12% auto;
  height: 22%;
  background:
    linear-gradient(90deg, rgba(0, 113, 227, 0.16) 0 28%, transparent 28% 32%, rgba(0, 113, 227, 0.1) 32% 60%, transparent 60% 64%, rgba(0, 113, 227, 0.08) 64% 100%),
    #fff;
  box-shadow: 0 18px 40px rgba(40, 83, 170, 0.12);
}

.story-admin-console::after {
  inset: auto 12% 12%;
  height: 42%;
  background:
    linear-gradient(90deg, rgba(0, 113, 227, 0.08) 0 32%, transparent 32% 36%, rgba(0, 113, 227, 0.08) 36% 68%, transparent 68% 72%, rgba(0, 113, 227, 0.08) 72% 100%),
    linear-gradient(180deg, #ffffff, #f2f7fd);
  box-shadow: 0 18px 44px rgba(40, 83, 170, 0.12);
}

.story-pricing-bars {
  background: linear-gradient(180deg, #f5f8ff, #ffffff);
}

.story-pricing-bars::before,
.story-pricing-bars::after {
  content: "";
  position: absolute;
  bottom: 14%;
  width: 18%;
  border-radius: 22px 22px 8px 8px;
  background: linear-gradient(180deg, #0071e3, #54b2ff);
}

.story-pricing-bars::before {
  left: 24%;
  height: 42%;
  box-shadow: 120px -26px 0 0 rgba(0, 113, 227, 0.14), 240px -68px 0 0 rgba(0, 113, 227, 0.08);
}

.story-pricing-bars::after {
  left: 56%;
  height: 62%;
}

.story-plus {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  font-size: 1.3rem;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.black-card .story-plus {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-arrow {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #e7e7eb;
  color: #3d3d42;
  font-size: 1.4rem;
  cursor: pointer;
}

.carousel-arrow:hover {
  background: #d9d9de;
}

.reasons-section {
  display: grid;
  gap: 18px;
}

.reasons-grid {
  display: grid;
  gap: 18px;
}

.reason-card {
  min-height: 250px;
  padding: 24px 22px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 10px;
  align-content: start;
}

.reason-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reason-card h3 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: -0.045em;
  line-height: 1;
}

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

.page-subnav {
  position: sticky;
  top: 52px;
  z-index: 80;
  background: rgba(245, 245, 247, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(210, 210, 215, 0.7);
}

.page-subnav-inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 18px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.page-subnav-title {
  font-size: 0.92rem;
  font-weight: 700;
}

.page-subnav-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.page-subnav-track::-webkit-scrollbar {
  display: none;
}

.page-subnav-track a {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.page-subnav-track a:hover {
  color: var(--text);
}

.pricing-section {
  padding: 54px 24px;
}

.pricing-head {
  text-align: center;
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-head h2 {
  font-size: clamp(2.3rem, 6vw, 4.2rem);
}

.plan-card,
.stat-card {
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  padding: 28px 24px;
  display: grid;
  gap: 16px;
  align-content: start;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.05);
}

.plan-card.featured {
  border-color: rgba(0, 113, 227, 0.24);
  box-shadow: 0 20px 48px rgba(0, 113, 227, 0.12);
}

.price-tag,
.badge {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.08);
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 700;
}

.plan-price {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.plan-price small {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list ul,
.plan-card ul,
.stat-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.feature-list li::before,
.plan-card li::before,
.stat-card li::before {
  content: "â€¢";
  margin-right: 10px;
  color: var(--blue);
}

.page-hero {
  min-height: 640px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 18px;
  padding: 56px 24px 40px;
  text-align: center;
}

.page-visual {
  width: min(100%, 980px);
  min-height: 340px;
  display: grid;
  place-items: center;
}

.page-visual-photo {
  width: min(100%, 1120px);
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 24px 50px rgba(29, 78, 216, 0.12));
}

.split-panel-photo {
  width: 100%;
  max-width: 760px;
  display: block;
  object-fit: contain;
  margin-inline: auto;
}

.showcase-screen {
  width: min(100%, 950px);
  min-height: 410px;
  border-radius: 36px;
  background: linear-gradient(180deg, #f6f7fb 0%, #eef5ff 100%);
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 22px;
  display: grid;
  gap: 16px;
}

.compact-showcase {
  width: min(100%, 760px);
  min-height: 360px;
}

.apple-stage .showcase-screen {
  width: min(100%, 860px);
  min-height: 420px;
}

.screen-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.screen-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d2d2d7;
}

.screen-body {
  display: grid;
  gap: 14px;
}

.screen-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 14px;
}

.screen-card {
  min-height: 124px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 16px;
  color: var(--muted);
  font-weight: 600;
}

.screen-card strong {
  font-size: 1.2rem;
  color: var(--text);
}

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

.compact-screen-grid .screen-card {
  min-height: 104px;
}

.compact-screen-grid .screen-card.wide {
  grid-column: 1 / -1;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.price-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 960px;
}

.price-pill {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.08);
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
}

.quick-summary,
.button-grid,
.admin-grid {
  display: grid;
  gap: 18px;
}

.summary-card,
.button-card,
.admin-card {
  min-height: 220px;
  padding: 24px 22px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 10px;
  align-content: start;
}

.summary-card h3,
.button-card h3,
.admin-card h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.045em;
}

.summary-card p,
.button-card p,
.admin-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.feature-block {
  display: grid;
  gap: 18px;
}

.split-copy-left {
  justify-items: start;
  text-align: left;
}

.compact-feature-list {
  width: 100%;
}

.compact-feature-list ul {
  gap: 12px;
}

.admin-showcase {
  background: linear-gradient(180deg, #fbfbfd 0%, #f2f6fb 100%);
}

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

.admin-console-card {
  min-height: 100px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 14px 30px rgba(45, 82, 160, 0.08);
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 8px;
  color: var(--muted);
}

.admin-console-card strong {
  color: var(--text);
  font-size: 1.02rem;
}

.admin-console-wide {
  grid-column: 1 / -1;
}

.menu-pricing-grid {
  display: grid;
  gap: 18px;
}

.button-card {
  min-height: 180px;
}

.admin-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.admin-card li::before {
  content: "â€¢";
  margin-right: 10px;
  color: var(--blue);
}

.contact-pill {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(29, 29, 31, 0.08);
  color: var(--text);
  font-weight: 600;
}

.cta-panel {
  min-height: 420px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  background: linear-gradient(180deg, #111214 0%, #000 100%);
  color: #fff;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.reasons-section {
  gap: 24px;
  padding: 18px 0 6px;
}

.reasons-spotlight {
  display: grid;
  gap: 20px;
  padding: 28px 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(102, 170, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
}

.reasons-spotlight-copy {
  display: grid;
  gap: 10px;
}

.reasons-spotlight-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.reasons-spotlight-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 62ch;
}

.reasons-spotlight-visual {
  min-height: 280px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top, rgba(80, 147, 255, 0.2), transparent 32%),
    linear-gradient(180deg, #eef6ff 0%, #ffffff 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.reasons-spotlight-image {
  width: min(100%, 860px);
  height: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: none;
}

.reason-card {
  padding: 26px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  gap: 12px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.1);
}

.reason-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: var(--blue);
  background: linear-gradient(180deg, #f2f8ff 0%, #e8f1ff 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 113, 227, 0.08);
}

.reason-card h3 {
  font-size: clamp(2rem, 4vw, 2.35rem);
  line-height: 0.98;
}

.cta-panel {
  min-height: 460px;
  gap: 18px;
  padding: 68px 26px;
}

.cta-panel h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.cta-visual {
  display: grid;
  grid-template-columns: repeat(3, auto);
  align-items: end;
  justify-content: center;
  gap: 10px 12px;
  margin: 8px 0 4px;
}

.cta-chip {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.cta-chart {
  grid-column: 1 / -1;
  height: 76px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 10px;
}

.cta-chart span {
  width: 16px;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, #53a9ff 0%, #0071e3 100%);
  box-shadow: 0 10px 24px rgba(0, 113, 227, 0.3);
}

.cta-chart span:nth-child(1) { height: 32px; }
.cta-chart span:nth-child(2) { height: 52px; }
.cta-chart span:nth-child(3) { height: 72px; }

.cta-panel .button {
  background: linear-gradient(135deg, #0071e3 0%, #48a3ff 100%);
  box-shadow: 0 16px 34px rgba(0, 113, 227, 0.28);
}

.cta-panel .button,
.cta-panel .button-secondary {
  border-radius: 16px;
  padding: 14px 22px;
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.cta-panel .button:hover,
.cta-panel .button-secondary:hover {
  transform: scale(1.05);
}

.cta-panel .button-secondary {
  border-color: rgba(83, 169, 255, 0.55);
  color: #cce6ff;
  background: rgba(255, 255, 255, 0.02);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 580px;
  padding: 78px 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 113, 227, 0.28), transparent 32%),
    radial-gradient(circle at 14% 22%, rgba(58, 211, 159, 0.16), transparent 28%),
    linear-gradient(180deg, #111318 0%, #030405 100%);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
  opacity: 0.42;
  pointer-events: none;
}

.cta-panel::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  bottom: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.32), transparent 66%);
  filter: blur(4px);
  pointer-events: none;
  z-index: 0;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 920px;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.cta-panel > p:not(.panel-eyebrow) {
  max-width: 760px;
  line-height: 1.6;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.cta-services {
  width: min(100%, 720px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.cta-services a {
  min-height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.09);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 12px 26px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.cta-services a:hover {
  transform: translateY(-3px);
  background: rgba(0, 113, 227, 0.22);
  box-shadow:
    inset 0 0 0 1px rgba(83, 169, 255, 0.44),
    0 18px 38px rgba(0, 113, 227, 0.2);
}

.cta-contact-grid {
  width: min(100%, 860px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.cta-contact-card {
  min-height: 120px;
  padding: 18px;
  border-radius: 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #fff;
  text-align: left;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 18px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.cta-contact-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.13);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 24px 46px rgba(0, 0, 0, 0.24);
}

.cta-contact-card.primary {
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(0, 113, 227, 0.92), rgba(67, 167, 255, 0.72));
}

.cta-contact-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 0.74rem;
  font-weight: 800;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.cta-contact-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.cta-contact-card > span:not(.cta-contact-icon) {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.cta-contact-card[href*="instagram"] .cta-contact-icon {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 75%, #515bd4 100%);
}

.cta-contact-card[href*="tiktok"] .cta-contact-icon {
  background:
    linear-gradient(135deg, rgba(37, 244, 238, 0.9), rgba(254, 44, 85, 0.9)),
    #111;
}

.cta-contact-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.cta-contact-card small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.cta-orbit {
  position: absolute;
  right: 8%;
  bottom: -48px;
  width: 220px;
  height: 220px;
  opacity: 0.28;
  pointer-events: none;
}

.cta-orbit span {
  position: absolute;
  inset: calc(var(--i, 0) * 18px);
  border-radius: 50%;
  border: 1px solid rgba(83, 169, 255, 0.5);
}

.cta-orbit span:nth-child(1) { --i: 0; }
.cta-orbit span:nth-child(2) { --i: 1; }
.cta-orbit span:nth-child(3) { --i: 2; }

@media (max-width: 900px) {
  .cta-services,
  .cta-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cta-panel {
    min-height: auto;
    padding: 58px 18px;
  }

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

  .cta-contact-card {
    min-height: 92px;
    border-radius: 20px;
  }

  .cta-orbit {
    display: none;
  }
}

/* Menu digital detail page: keep the admin/execution blocks premium and readable. */
#pilotage.grid-two {
  grid-template-columns: 1fr;
}

#pilotage .split-panel {
  min-height: 620px;
  padding: clamp(28px, 5vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 113, 227, 0.13), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f3f9ff 100%);
  box-shadow: 0 28px 70px rgba(26, 72, 132, 0.12);
}

#pilotage .split-panel:nth-child(2) {
  background:
    radial-gradient(circle at 82% 16%, rgba(0, 113, 227, 0.13), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

#pilotage .split-copy {
  max-width: 520px;
}

#pilotage .split-copy h2 {
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-wrap: balance;
}

#pilotage .split-copy p {
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.48;
}

#pilotage .split-art {
  min-height: 430px;
  overflow: hidden;
}

#pilotage .split-panel-photo {
  width: calc(100% + 180px);
  max-width: none;
  margin-right: -72px;
  margin-left: -36px;
}

#pilotage .showcase-screen {
  width: min(100%, 680px);
  min-height: 430px;
  border-radius: 38px;
  transform: translateZ(0);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.06),
    0 34px 80px rgba(0, 75, 160, 0.14);
}

#pilotage .screen-card {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

#pilotage .screen-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 113, 227, 0.12);
}

@media (max-width: 900px) {
  #pilotage .split-panel {
    grid-template-columns: 1fr;
  }

  #pilotage .split-art {
    min-height: 340px;
  }

  #pilotage .split-panel-photo {
    width: calc(100% + 80px);
    margin-right: -24px;
    margin-left: -18px;
  }

  #pilotage .showcase-screen {
    min-height: 340px;
  }
}

.site-footer {
  padding: 28px 18px 52px;
}

.footer-inner {
  max-width: var(--content);
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.94rem;
  text-align: center;
}

/* Menu digital vitrine: final pass for copy, pricing, CTA and mobile balance. */
.page-shell,
.stack,
.panel,
.module-showcase,
.pricing-section,
.cta-panel {
  max-width: 100%;
  overflow-x: clip;
}

.page-hero {
  gap: 20px;
}

.price-pills {
  margin-top: 4px;
}

.page-visual {
  min-height: 0;
  margin-top: 6px;
}

.page-visual-photo {
  max-width: min(100%, 1060px);
}

.module-showcase {
  overflow: hidden;
}

.module-showcase-head {
  gap: 12px;
}

.module-showcase-subtitle {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.6;
}

.module-showcase-shell {
  padding-inline: 2px;
}

.module-showcase-track {
  padding-inline: 6px;
}

.module-product-card {
  min-height: 632px;
}

.module-product-copy {
  grid-template-rows: auto auto 1fr auto auto;
}

.module-product-copy h3 {
  text-wrap: balance;
}

.module-product-copy p {
  overflow-wrap: anywhere;
}

.module-product-actions {
  margin-top: auto;
  flex-wrap: wrap;
}

.module-product-actions .button {
  flex: 0 0 auto;
}

.module-product-actions .text-link {
  flex: 0 0 auto;
}

.pricing-section {
  width: min(100%, 1180px);
  margin-inline: auto;
  padding: 58px 24px;
}

.pricing-head {
  max-width: 760px;
  margin: 0 auto 32px;
}

.pricing-head p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.menu-pricing-grid {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.plan-card {
  min-width: 0;
  min-height: 100%;
  padding: 26px 22px;
  gap: 14px;
}

.plan-card h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.15rem);
  line-height: 1.02;
  text-wrap: balance;
}

.plan-card > p:not(.plan-price) {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.plan-price {
  display: grid;
  gap: 4px;
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.plan-price::after {
  content: attr(data-subprice);
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--muted);
}

.plan-card ul {
  gap: 8px;
  font-size: 0.96rem;
  line-height: 1.5;
}

.plan-card li {
  overflow-wrap: anywhere;
}

.cta-panel {
  width: min(100%, 1180px);
  min-height: 0;
  margin-inline: auto;
  padding: 72px 28px;
  gap: 18px;
  text-align: center;
}

.cta-panel .panel-eyebrow {
  color: rgba(180, 212, 255, 0.88);
}

.cta-panel h2 {
  max-width: 900px;
  margin: 0;
  text-wrap: balance;
}

.cta-panel > p:not(.panel-eyebrow) {
  margin: 0;
  max-width: 820px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
  text-wrap: balance;
}

.cta-panel .button-row {
  width: min(100%, 900px);
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.cta-panel .button,
.cta-panel .button-secondary {
  min-height: 52px;
  padding-inline: 22px;
  white-space: nowrap;
}

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

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 900px) {
  .grid-two,
  .product-grid,
  .pricing-grid,
  .plans-grid,
  .stats-grid,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .quick-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .split-panel {
    grid-template-columns: 0.95fr 1.05fr;
    padding: 44px 42px;
  }

  .split-copy {
    justify-items: start;
    text-align: left;
  }

  .screen-row {
    grid-template-columns: 1.2fr 0.8fr;
  }

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

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

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

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

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

  .nav-dropdown-shell {
    display: none;
  }

  .carousel-head {
    align-items: start;
    flex-direction: column;
  }

  .nav-inner {
    min-height: 56px;
  }

  .apple-stage {
    min-height: 680px;
  }

  .page-subnav {
    top: 56px;
  }

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

  .plan-card {
    padding: 24px 20px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding-top: 12px;
  }

  .announcement-bar {
    font-size: 0.74rem;
    padding-inline: 10px;
  }

  .price-pills {
    justify-content: start;
  }

  .price-pill {
    width: 100%;
    justify-content: center;
  }

  .carousel-track {
    grid-auto-columns: minmax(240px, 84vw);
  }

  .story-card {
    min-height: 480px;
  }

  .story-visual {
    min-height: 220px;
  }

  .carousel-track-wide {
    grid-auto-columns: minmax(248px, 82vw);
  }

  .page-subnav-inner {
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .hero-panel,
  .feature-panel,
  .offer-hero,
  .page-hero,
  .cta-panel,
  .pricing-section,
  .split-panel {
    border-radius: 26px;
  }

  .hero-panel,
  .feature-panel,
  .offer-hero,
  .page-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .apple-stage {
    padding: 42px 18px 0;
    min-height: 620px;
  }

  .compact-screen-grid,
  .admin-console-grid {
    grid-template-columns: 1fr;
  }

  .stage-copy h2 {
    font-size: clamp(2.7rem, 11vw, 4rem);
  }

  .stage-art {
    min-height: 300px;
  }

  .stage-photo {
    width: 100%;
  }

  .hero-panel {
    min-height: 660px;
  }

  .device-lineup {
    height: 320px;
  }

  .hero-photo {
    border-radius: 0;
  }

  .phone {
    width: 32%;
    border-width: 5px;
    border-radius: 28px;
  }

  .phone::before {
    inset: 10px;
    border-radius: 20px;
  }

  .button,
  .button-secondary,
  .nav-cta {
    width: 100%;
  }

  .button-row {
    width: 100%;
  }

  .button-row > * {
    flex: 1 1 100%;
  }

  .inline-links {
    width: 100%;
  }

  .inline-links > * {
    flex: 1 1 100%;
  }

  .screen-row {
    grid-template-columns: 1fr;
  }
}

.module-showcase {
  display: grid;
  gap: 18px;
}

.module-showcase-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 0 8px;
}

.module-showcase-head h2 {
  margin: 6px 0 0;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.module-showcase-subtitle {
  margin: 10px 0 0;
  max-width: 48rem;
  color: var(--muted);
  line-height: 1.55;
}

.module-showcase-shell {
  overflow: hidden;
}

.module-showcase-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 340px);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding: 8px 8px 10px;
  scrollbar-width: none;
}

.module-showcase-track::-webkit-scrollbar {
  display: none;
}

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

.section-subtitle {
  max-width: 760px;
  margin: 10px auto 0;
  color: var(--muted);
  line-height: 1.6;
}

.setup-section,
.audience-section,
.trust-note {
  width: min(100%, 1180px);
  margin: 0 auto;
  box-sizing: border-box;
}

.setup-section {
  display: grid;
  gap: 24px;
  padding: 10px 8px 6px;
}

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

.setup-card {
  padding: 24px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 10px;
}

.setup-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  letter-spacing: -0.03em;
}

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

.audience-section {
  display: grid;
  gap: 18px;
  padding: 8px 8px 10px;
}

.audience-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.audience-pills span {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
  border: 1px solid rgba(0, 113, 227, 0.08);
  color: #0f172a;
  font-size: 0.94rem;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.trust-note {
  padding: 10px 8px 8px;
}

.trust-note p {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: #334155;
  line-height: 1.7;
  font-size: clamp(1rem, 1.4vw, 1.08rem);
}

.faq-section {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 14px 8px 10px;
  box-sizing: border-box;
  display: grid;
  gap: 24px;
}

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

.faq-card {
  padding: 24px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 10px;
  align-content: start;
}

.faq-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

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

.module-product-card {
  min-height: 640px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: 360px 1fr;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.module-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.11);
}

.module-product-card-dark {
  background: linear-gradient(180deg, #0b0b0d 0%, #000 100%);
  color: #fff;
}

.module-product-visual {
  position: relative;
  overflow: hidden;
}

.module-product-visual-photo {
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #0e1119 0%, #040507 100%);
}

.module-product-visual-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.module-product-copy {
  padding: 22px 20px 24px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.module-product-kicker {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.module-product-card-dark .module-product-kicker,
.module-product-card-dark .module-product-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.module-product-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.module-product-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.module-product-price {
  font-size: 0.96rem;
  font-weight: 700;
}

.module-product-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: auto;
}

.art-menu-module {
  background:
    linear-gradient(180deg, #111214 0%, #050608 100%);
}

.art-menu-module::before,
.art-menu-module::after,
.art-order-module::before,
.art-order-module::after,
.art-booking-module::before,
.art-booking-module::after,
.art-loyalty-module::before,
.art-loyalty-module::after,
.art-wheel-module::before,
.art-wheel-module::after {
  content: "";
  position: absolute;
}

.art-menu-module::before {
  left: 12%;
  right: 12%;
  top: 12%;
  height: 22%;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #eff3f8);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}

.art-menu-module::after {
  left: 14%;
  right: 14%;
  bottom: 12%;
  height: 42%;
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 0 32%, transparent 32% 36%, rgba(255,255,255,0.08) 36% 68%, transparent 68% 72%, rgba(255,255,255,0.08) 72% 100%),
    linear-gradient(180deg, #1a1d2c, #0c0f1d);
}

@media (max-width: 900px) {
  .page-visual-photo {
    width: 100%;
  }
}

.art-order-module {
  background: linear-gradient(180deg, #edf6ff 0%, #ffffff 100%);
}

.art-order-module::before {
  left: 16%;
  right: 16%;
  top: 14%;
  height: 26%;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(40, 84, 168, 0.12);
}

.art-order-module::after {
  left: 18%;
  right: 18%;
  bottom: 14%;
  height: 42%;
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 18%, rgba(0,113,227,0.9) 0 6%, transparent 7%),
    linear-gradient(90deg, rgba(0,113,227,0.18) 22%, transparent 22% 28%, rgba(0,113,227,0.12) 28% 56%, transparent 56% 62%, rgba(0,113,227,0.1) 62% 100%),
    linear-gradient(180deg, #ffffff, #eef5ff);
}

.art-booking-module {
  background: linear-gradient(180deg, #090b14 0%, #000 100%);
}

.art-booking-module::before {
  left: 18%;
  right: 18%;
  top: 14%;
  height: 22%;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #eff3f8);
}

.art-booking-module::after {
  left: 18%;
  right: 18%;
  bottom: 14%;
  height: 32%;
  border-radius: 28px 28px 22px 22px;
  background:
    radial-gradient(circle at 20% 70%, rgba(255,255,255,0.75) 0 6%, transparent 7%),
    radial-gradient(circle at 50% 70%, rgba(255,255,255,0.95) 0 6%, transparent 7%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.75) 0 6%, transparent 7%),
    linear-gradient(180deg, #14192b, #0b1020);
}

.art-loyalty-module {
  background: linear-gradient(180deg, #eff7ff 0%, #ffffff 100%);
}

.art-loyalty-module::before {
  inset: 14% 23%;
  border-radius: 58px;
  background: linear-gradient(145deg, #18191b 0%, #070809 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.art-loyalty-module::after {
  inset: 24% 31%;
  border-radius: 42px;
  background: conic-gradient(from 0deg, #76ffd4 0 24%, #6f8dff 24% 58%, #ff914f 58% 78%, #76ffd4 78% 100%);
}

.art-wheel-module {
  background: linear-gradient(180deg, #0d1020 0%, #050608 100%);
}

.art-wheel-module::before {
  inset: 16% 16%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #6effd0 0 22%, #6f8dff 22% 50%, #ff8f4e 50% 74%, #f3df74 74% 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.art-wheel-module::after {
  inset: 38% 38%;
  border-radius: 50%;
  background: #111214;
}

.product-hero {
  min-height: 760px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 18px;
  padding: 64px 28px 44px;
  text-align: center;
}

.product-hero-dark {
  background: linear-gradient(180deg, #0b0b0d 0%, #000 100%);
  color: #fff;
}

.product-hero-dark p,
.product-hero-dark .panel-eyebrow,
.product-hero-dark .product-hero-price {
  color: rgba(255, 255, 255, 0.78);
}

.product-hero-price {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
}

.product-hero-art {
  width: min(100%, 1020px);
  min-height: 420px;
  border-radius: 34px;
  position: relative;
  overflow: hidden;
}

.art-large {
  min-height: 520px;
}

.section-head-left {
  text-align: left;
  justify-items: start;
  padding-left: 8px;
  padding-right: 8px;
}

.reasons-grid-four {
  grid-template-columns: 1fr;
}

.reason-card-dark {
  background: linear-gradient(180deg, #0b0b0d 0%, #000 100%);
  color: #fff;
}

.reason-card-dark p,
.reason-card-dark .reason-kicker {
  color: rgba(255, 255, 255, 0.76);
}

.detail-pricing-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .reasons-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .reasons-spotlight {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: center;
    padding: 34px 32px;
  }
}

@media (max-width: 980px) {
  .module-showcase-head {
    align-items: start;
    flex-direction: column;
  }

  .module-showcase-subtitle {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .module-showcase-track {
    grid-auto-columns: minmax(250px, 84vw);
  }

  .module-product-card {
    min-height: 580px;
    grid-template-rows: 300px 1fr;
  }

  .module-product-copy {
    padding: 18px 18px 20px;
  }

  .module-product-actions {
    align-items: stretch;
  }

  .module-product-actions .button {
    width: 100%;
  }

  .module-showcase-subtitle {
    font-size: 0.98rem;
  }

  .product-hero {
    min-height: 680px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .art-large {
    min-height: 360px;
  }
}

.art-nfc-module {
  background: linear-gradient(180deg, #0b0b0d 0%, #000 100%);
}

.art-nfc-module::before,
.art-nfc-module::after,
.art-nfc-stage::before,
.art-nfc-stage::after,
.art-nfc-side::before,
.art-nfc-open::before,
.art-nfc-focus::before,
.art-nfc-focus::after {
  content: "";
  position: absolute;
}

.art-nfc-module::before {
  left: 18%;
  right: 18%;
  top: 16%;
  height: 28%;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #eef3f8);
  box-shadow: 0 20px 50px rgba(0,0,0,0.24);
}

.art-nfc-module::after {
  left: 18%;
  right: 18%;
  bottom: 14%;
  height: 38%;
  border-radius: 24px;
  background:
    radial-gradient(circle at 22% 18%, rgba(0,113,227,0.9) 0 6%, transparent 7%),
    linear-gradient(90deg, rgba(0,113,227,0.16) 0 30%, transparent 30% 34%, rgba(0,113,227,0.12) 34% 64%, transparent 64% 68%, rgba(0,113,227,0.1) 68% 100%),
    linear-gradient(180deg, #f5f8ff, #e9f2ff);
}

.apple-detail-shell {
  padding-top: 0;
  background: #1e1e22;
}

.apple-detail-hero {
  min-height: 860px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 24px;
  padding: 72px 24px 0;
  background: linear-gradient(180deg, #050505 0%, #000 54%, #1f1f23 54%, #1f1f23 100%);
  color: #fff;
  text-align: center;
}

.apple-detail-copy {
  display: grid;
  gap: 16px;
  justify-items: center;
  max-width: 860px;
}

.apple-detail-copy p,
.apple-detail-copy .panel-eyebrow,
.apple-detail-copy .product-hero-price {
  color: rgba(255,255,255,0.8);
}

.apple-detail-copy h1 {
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 6.6rem);
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.apple-detail-copy > p {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.45;
}

.apple-detail-hero-art {
  width: min(100%, 1180px);
  min-height: 520px;
  position: relative;
}

.art-nfc-stage {
  background:
    radial-gradient(circle at center, rgba(255, 132, 59, 0.3), transparent 30%),
    linear-gradient(180deg, #090909 0%, #000 100%);
}

.art-nfc-stage::before {
  left: 26%;
  right: 26%;
  top: 14%;
  height: 42%;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(241,243,248,0.92));
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}

.art-nfc-stage::after {
  left: 18%;
  right: 18%;
  bottom: 10%;
  height: 46%;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255,255,255,0.95) 0 6%, transparent 7%),
    linear-gradient(90deg, rgba(255,255,255,0.06) 0 31%, transparent 31% 35%, rgba(255,255,255,0.05) 35% 66%, transparent 66% 70%, rgba(255,255,255,0.04) 70% 100%),
    linear-gradient(180deg, #1a1020, #090a12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

.apple-feature-film {
  padding: 54px 18px 16px;
  background: #232327;
  color: #fff;
}

.apple-feature-film-head {
  max-width: 1200px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.apple-feature-film-head h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.05em;
}

.apple-feature-film-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.apple-film-card {
  min-height: 380px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #111;
}

.apple-film-card p {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  margin: 0;
  color: rgba(255,255,255,0.82);
  text-align: center;
}

.apple-film-card-dark {
  background: linear-gradient(180deg, #020202, #0c0c0f);
}

.art-nfc-side::before {
  left: 26%;
  right: 26%;
  top: 10%;
  bottom: 12%;
  border-radius: 36px;
  background:
    linear-gradient(90deg, rgba(255,120,60,0.14), transparent 14% 86%, rgba(111,146,255,0.14)),
    linear-gradient(180deg, #111215, #050507);
}

.apple-film-card-blue {
  background: linear-gradient(180deg, #0f4a7e, #0b4d83);
}

.apple-chip-stage {
  width: 220px;
  height: 220px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.08));
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14);
}

.apple-chip-core {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.92);
}

.apple-film-card-video {
  background: linear-gradient(180deg, #18365e, #3e6fab 48%, #9ec4ff 100%);
}

.video-placeholder-stage {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: grid;
  place-items: center;
  padding-bottom: 0;
  position: relative;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 18px 42px rgba(0,0,0,0.18);
}

.video-play::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 22px;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent #1d1d1f;
}

.video-timeline {
  display: flex;
  gap: 8px;
}

.video-timeline span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.64);
}

.video-timeline span.is-active {
  width: 24px;
  border-radius: 999px;
  background: #ffe06d;
}

.apple-dark-story {
  padding: 84px 24px 34px;
  background: #000;
  color: #fff;
  display: grid;
  gap: 20px;
  justify-items: center;
  text-align: center;
}

.apple-dark-story p,
.apple-dark-story .panel-eyebrow {
  margin: 0;
  color: rgba(255,255,255,0.8);
}

.apple-dark-story h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.apple-dark-stage {
  width: min(100%, 1040px);
  min-height: 420px;
  position: relative;
  border-radius: 34px;
  overflow: hidden;
}

.art-nfc-open {
  background: linear-gradient(180deg, #050505, #101015 52%, #060607);
}

.art-nfc-open::before {
  left: 24%;
  right: 24%;
  top: 18%;
  bottom: 18%;
  border-radius: 40px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.06) 0 33%, transparent 33% 36%, rgba(255,255,255,0.04) 36% 68%, transparent 68% 71%, rgba(255,255,255,0.05) 71% 100%),
    linear-gradient(180deg, #17111d, #0b0c12);
  box-shadow: 0 30px 70px rgba(0,0,0,0.34);
}

.apple-feature-focus {
  padding: 78px 18px 18px;
  background: #16161a;
  color: #fff;
}

.apple-feature-focus-head {
  max-width: 1100px;
  margin: 0 auto 22px;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.apple-feature-focus-head h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: -0.05em;
}

.apple-focus-card {
  max-width: 1100px;
  margin: 0 auto;
  background: #060606;
  border-radius: 30px;
  padding: 26px;
  display: grid;
  gap: 18px;
}

.apple-focus-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.apple-focus-tabs span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.84);
  font-size: 0.88rem;
  font-weight: 600;
}

.apple-focus-visual {
  min-height: 360px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.art-nfc-focus {
  background: linear-gradient(180deg, #000, #11131a 46%, #090b11);
}

.art-nfc-focus::before {
  left: 50%;
  top: 18%;
  width: 220px;
  height: 220px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.92) 0 8%, rgba(0,113,227,0.88) 9% 24%, rgba(0,113,227,0.24) 25% 42%, transparent 43%);
}

.art-nfc-focus::after {
  left: 16%;
  right: 16%;
  bottom: 12%;
  height: 34%;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 0 30%, transparent 30% 34%, rgba(255,255,255,0.05) 34% 64%, transparent 64% 68%, rgba(255,255,255,0.07) 68% 100%),
    linear-gradient(180deg, #161a28, #0a0d18);
}

@media (min-width: 900px) {
  .apple-feature-film-grid {
    grid-template-columns: 1fr 1.1fr 1fr;
  }
}

@media (max-width: 640px) {
  .apple-detail-hero {
    min-height: 720px;
    padding: 54px 18px 0;
  }

  .apple-feature-film,
  .apple-dark-story,
  .apple-feature-focus {
    padding-left: 18px;
    padding-right: 18px;
  }

  .apple-film-card {
    min-height: 300px;
  }

  .apple-dark-stage,
  .apple-focus-visual,
  .apple-detail-hero-art {
    min-height: 280px;
  }
}

.art-menu-stage,
.art-order-stage,
.art-booking-stage,
.art-loyalty-stage,
.art-wheel-stage,
.art-menu-side,
.art-order-side,
.art-booking-side,
.art-loyalty-side,
.art-wheel-side,
.art-menu-open,
.art-order-open,
.art-booking-open,
.art-loyalty-open,
.art-wheel-open,
.art-menu-focus,
.art-order-focus,
.art-booking-focus,
.art-loyalty-focus,
.art-wheel-focus {
  position: relative;
  overflow: hidden;
}

.art-menu-stage {
  background: linear-gradient(180deg, #090909, #000 54%, #16161a);
}

.art-menu-stage::before {
  content: "";
  position: absolute;
  left: 24%;
  right: 24%;
  top: 14%;
  height: 30%;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff, #eff3f8);
  box-shadow: 0 28px 60px rgba(0,0,0,0.32);
}

.art-menu-stage::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 12%;
  height: 42%;
  border-radius: 32px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 0 31%, transparent 31% 35%, rgba(255,255,255,0.06) 35% 66%, transparent 66% 70%, rgba(255,255,255,0.04) 70% 100%),
    linear-gradient(180deg, #1c2030, #0d101d);
}

.art-menu-side {
  background: linear-gradient(180deg, #050505, #0c0c0f);
}

.art-menu-side::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 12%;
  height: 28%;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #eff3f8);
}

.art-menu-side::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 12%;
  height: 40%;
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 0 31%, transparent 31% 35%, rgba(255,255,255,0.06) 35% 66%, transparent 66% 70%, rgba(255,255,255,0.04) 70% 100%),
    linear-gradient(180deg, #1a1d2a, #0d101b);
}

.art-menu-open {
  background: linear-gradient(180deg, #050505, #11131a 46%, #08090c);
}

.art-menu-open::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 16%;
  height: 26%;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #eef3f8);
}

.art-menu-open::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 12%;
  height: 44%;
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 18%, rgba(0,113,227,0.85) 0 5%, transparent 6%),
    linear-gradient(90deg, rgba(255,255,255,0.06) 0 23%, transparent 23% 27%, rgba(255,255,255,0.05) 27% 50%, transparent 50% 54%, rgba(255,255,255,0.05) 54% 77%, transparent 77% 81%, rgba(255,255,255,0.04) 81% 100%),
    linear-gradient(180deg, #171b29, #0a0d18);
}

.art-menu-focus {
  background: linear-gradient(180deg, #000, #11131a 46%, #090b11);
}

.art-menu-focus::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: 14%;
  height: 22%;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(240,243,248,0.92));
}

.art-menu-focus::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 10%;
  height: 42%;
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 18%, rgba(0,113,227,0.82) 0 5%, transparent 6%),
    linear-gradient(90deg, rgba(255,255,255,0.08) 0 30%, transparent 30% 34%, rgba(255,255,255,0.05) 34% 65%, transparent 65% 69%, rgba(255,255,255,0.04) 69% 100%),
    linear-gradient(180deg, #182030, #0c1020);
}

.art-order-stage,
.art-order-side,
.art-order-open,
.art-order-focus {
  background: linear-gradient(180deg, #eef6ff 0%, #ffffff 100%);
}

.art-order-stage::before,
.art-order-side::before,
.art-order-open::before,
.art-order-focus::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: 14%;
  height: 24%;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(40,84,168,0.12);
}

.art-order-stage::after,
.art-order-side::after,
.art-order-open::after,
.art-order-focus::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 14%;
  height: 42%;
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 20%, rgba(0,113,227,0.9) 0 6%, transparent 7%),
    linear-gradient(90deg, rgba(0,113,227,0.18) 22%, transparent 22% 28%, rgba(0,113,227,0.12) 28% 56%, transparent 56% 62%, rgba(0,113,227,0.1) 62% 100%),
    linear-gradient(180deg, #ffffff, #eef5ff);
}

.art-booking-stage,
.art-booking-side,
.art-booking-open,
.art-booking-focus {
  background: linear-gradient(180deg, #090b14 0%, #000 100%);
}

.art-booking-stage::before,
.art-booking-side::before,
.art-booking-open::before,
.art-booking-focus::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 14%;
  height: 22%;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #eff3f8);
}

.art-booking-stage::after,
.art-booking-side::after,
.art-booking-open::after,
.art-booking-focus::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 14%;
  height: 32%;
  border-radius: 28px 28px 22px 22px;
  background:
    radial-gradient(circle at 20% 70%, rgba(255,255,255,0.75) 0 6%, transparent 7%),
    radial-gradient(circle at 50% 70%, rgba(255,255,255,0.95) 0 6%, transparent 7%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.75) 0 6%, transparent 7%),
    linear-gradient(180deg, #14192b, #0b1020);
}

.art-loyalty-stage,
.art-loyalty-side,
.art-loyalty-open,
.art-loyalty-focus {
  background: linear-gradient(180deg, #eff7ff 0%, #ffffff 100%);
}

.art-loyalty-stage::before,
.art-loyalty-side::before,
.art-loyalty-open::before,
.art-loyalty-focus::before {
  content: "";
  position: absolute;
  inset: 16% 26%;
  border-radius: 58px;
  background: linear-gradient(145deg, #18191b 0%, #070809 100%);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.art-loyalty-stage::after,
.art-loyalty-side::after,
.art-loyalty-open::after,
.art-loyalty-focus::after {
  content: "";
  position: absolute;
  inset: 28% 34%;
  border-radius: 42px;
  background: conic-gradient(from 0deg, #76ffd4 0 24%, #6f8dff 24% 58%, #ff914f 58% 78%, #76ffd4 78% 100%);
}

.art-wheel-stage,
.art-wheel-side,
.art-wheel-open,
.art-wheel-focus {
  background: linear-gradient(180deg, #0d1020 0%, #050608 100%);
}

.art-wheel-stage::before,
.art-wheel-side::before,
.art-wheel-open::before,
.art-wheel-focus::before {
  content: "";
  position: absolute;
  inset: 16% 16%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #6effd0 0 22%, #6f8dff 22% 50%, #ff8f4e 50% 74%, #f3df74 74% 100%);
  box-shadow: 0 24px 60px rgba(0,0,0,0.34);
}

.art-wheel-stage::after,
.art-wheel-side::after,
.art-wheel-open::after,
.art-wheel-focus::after {
  content: "";
  position: absolute;
  inset: 38% 38%;
  border-radius: 50%;
  background: #111214;
}


/* Pricing carousel */
.pricing-carousel-section {
  width: min(100%, 1180px);
  margin-inline: auto;
  padding: 58px 24px;
  overflow-x: clip;
}

.pricing-carousel-head {
  align-items: end;
  padding-inline: 6px;
  margin-bottom: 8px;
}

.pricing-carousel-shell {
  width: 100%;
  overflow: hidden;
}

.pricing-carousel-track {
  grid-auto-columns: minmax(286px, 344px);
  align-items: stretch;
  padding: 10px 6px 14px;
}

.pricing-carousel-card {
  min-height: 610px;
  padding: 26px 22px 22px;
  border-radius: 30px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(circle at top right, rgba(0, 113, 227, 0.08), transparent 34%),
    #ffffff;
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.08);
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  gap: 12px;
  scroll-snap-align: start;
}

.pricing-carousel-card.featured {
  border-color: rgba(0, 113, 227, 0.28);
  box-shadow: 0 24px 64px rgba(0, 113, 227, 0.14);
}

.pricing-carousel-card.dark {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(0, 113, 227, 0.24), transparent 36%),
    linear-gradient(180deg, #111827 0%, #05070b 100%);
  box-shadow: 0 24px 64px rgba(5, 7, 11, 0.24);
}

.pricing-carousel-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.3vw, 2.05rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.pricing-carousel-price {
  margin: 4px 0 0;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.07em;
  color: var(--ink);
}

.pricing-carousel-card.dark .pricing-carousel-price,
.pricing-carousel-card.dark h3 {
  color: #ffffff;
}

.pricing-carousel-subprice {
  margin: -4px 0 0;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
}

.pricing-carousel-card.dark .pricing-carousel-subprice,
.pricing-carousel-card.dark .price-tag {
  color: #8cc7ff;
  background: rgba(0, 113, 227, 0.18);
}

.pricing-carousel-desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.98rem;
}

.pricing-carousel-card.dark .pricing-carousel-desc,
.pricing-carousel-card.dark li {
  color: rgba(255, 255, 255, 0.74);
}

.pricing-carousel-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  align-content: start;
  color: #334155;
  font-size: 0.94rem;
  line-height: 1.35;
}

.pricing-carousel-card li {
  display: flex;
  gap: 9px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.pricing-carousel-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  margin-top: 0.55em;
  flex: 0 0 auto;
  background: var(--blue);
}

.pricing-carousel-card .button {
  width: 100%;
  justify-content: center;
  min-height: 46px;
  margin-top: 8px;
}

.pricing-carousel-controls {
  margin-top: 6px;
}

.pricing-note {
    max-width: 760px;
    margin: 28px auto 0;
    text-align: center;
}

.pricing-note p {
    margin: 0 auto 14px;
    color: var(--muted);
    line-height: 1.55;
}

.pricing-note-pills {
  justify-content: center;
}

.pricing-note-premium {
    max-width: 940px;
    margin: 28px auto 0;
    padding: 18px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
    box-sizing: border-box;
}

.pricing-note-premium p {
    max-width: 100%;
    margin: 0 auto 14px;
    color: #475569;
    font-size: clamp(0.98rem, 1.15vw, 1.05rem);
    line-height: 1.72;
}

.pricing-note-label {
    margin: 0 0 12px;
    color: #64748b;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.pricing-note-premium h3 {
    max-width: 760px;
    margin: 0 auto 18px;
    color: #0f172a;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.pricing-note-copy {
    max-width: 720px;
    margin: 0 auto;
}

.pricing-note-copy p:first-child {
    color: #0f172a;
}

.pricing-mini-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    max-width: 900px;
    margin: 34px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.pricing-mini-stat {
    padding: 4px 10px;
}

.pricing-mini-stat strong {
    display: block;
    color: #0f172a;
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.pricing-mini-stat span {
    display: block;
    margin-top: 8px;
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.45;
}

.pricing-note-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    margin-top: 28px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.04);
    color: #0f172a;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.pricing-note-link:hover {
    background: rgba(0, 113, 227, 0.08);
    transform: translateY(-1px);
}

.pricing-note-link span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: rgba(0, 113, 227, 0.12);
    color: #0066cc;
    font-size: 0.95rem;
    line-height: 1;
}

@media (max-width: 760px) {
  .setup-section,
  .audience-section,
  .trust-note,
  .faq-section {
    padding-left: 2px;
    padding-right: 2px;
  }

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

  .setup-card {
    padding: 20px 18px;
    border-radius: 22px;
  }

  .audience-pills {
    justify-content: flex-start;
    gap: 10px;
  }

  .audience-pills span {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .trust-note {
    padding-top: 2px;
  }

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

  .faq-card {
    padding: 20px 18px;
    border-radius: 22px;
  }

  .pricing-carousel-section {
    padding: 42px 14px;
    border-radius: 26px;
  }

  .pricing-carousel-head {
      padding-inline: 2px;
  }

  .pricing-carousel-track {
    grid-auto-columns: minmax(258px, 86vw);
    gap: 14px;
    padding-inline: 2px;
  }

  .pricing-carousel-card {
    min-height: 590px;
    padding: 22px 18px 18px;
    border-radius: 26px;
  }
}

@media (max-width: 430px) {
  .pricing-carousel-track {
    grid-auto-columns: minmax(246px, 86vw);
  }

  .pricing-carousel-card h3 {
    font-size: 1.48rem;
  }

  .pricing-carousel-price {
    font-size: 2.15rem;
  }
}

/* Desktop containment fix: keep the mobile layout untouched. */
@media (min-width: 1024px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .stack {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
  }

  .page-hero,
  .module-showcase,
  .grid-two,
  .reasons-section,
  .pricing-carousel-section,
  .cta-panel {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .page-hero,
  .module-showcase,
  .pricing-carousel-section,
  .cta-panel {
    overflow-x: hidden;
  }

  .module-showcase,
  .pricing-carousel-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .module-showcase-head,
  .pricing-carousel-head {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }

  .module-showcase-shell,
  .pricing-carousel-shell {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
    box-sizing: border-box;
  }

  .module-showcase-track,
  .pricing-carousel-track {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    overflow-x: auto;
    overflow-y: visible;
    scroll-padding-left: 0;
    box-sizing: border-box;
  }

  .module-showcase-track {
    grid-auto-columns: minmax(260px, 300px);
  }

  .pricing-carousel-track {
    grid-auto-columns: minmax(264px, 292px);
  }

  .module-product-card,
  .pricing-carousel-card {
    min-width: 0;
    box-sizing: border-box;
  }

  .grid-two {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .split-panel {
    width: 100%;
    max-width: 1240px;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    overflow: hidden;
    box-sizing: border-box;
  }

  .split-copy,
  .split-visual {
    min-width: 0;
  }

  .split-panel-photo,
  .page-visual-photo,
  .hero-photo,
  .module-product-visual img {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
  }

  #pilotage .split-panel-photo {
    width: min(100%, 760px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  #translation .split-panel-photo,
  #pilotage .split-panel-photo {
    display: block;
    object-fit: contain;
  }

  .pricing-note {
      max-width: 860px;
  }

  .pricing-note-premium {
      padding-top: 8px;
  }

  .pricing-note-premium h3 {
      max-width: 100%;
      margin-bottom: 16px;
  }

  .pricing-note-copy {
      max-width: 100%;
  }

  .pricing-mini-stats {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 28px;
  }

  .pricing-mini-stat {
      padding: 0;
  }

  .pricing-note-link {
      margin-top: 24px;
  }
}

@media (max-width: 520px) {
  .pricing-mini-stats {
      grid-template-columns: 1fr;
  }
}





/* === Elyria contact Stripe section start === */
.contact-page-shell {
  gap: 34px;
}

.contact-stripe-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 6vw, 80px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 255, 255, 0.42), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(184, 214, 255, 0.24), transparent 24%),
    linear-gradient(145deg, #edf4ff 0%, #eef4ff 38%, #f5f8ff 72%, #ffffff 100%);
  border: 1px solid rgba(184, 203, 239, 0.52);
  box-shadow: 0 28px 72px rgba(65, 89, 158, 0.1);
}

.contact-stripe-hero::before,
.contact-stripe-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.contact-stripe-hero::before {
  inset: auto -8% -18% 38%;
  height: 220px;
  background: linear-gradient(90deg, rgba(112, 155, 255, 0.1), rgba(255, 255, 255, 0));
  transform: skewY(-10deg);
  border-radius: 48px;
}

.contact-stripe-hero::after {
  top: 96px;
  right: 72px;
  width: 180px;
  height: 180px;
  opacity: 0.1;
  background-image: radial-gradient(circle, rgba(95, 134, 226, 0.7) 1.3px, transparent 1.4px);
  background-size: 18px 18px;
}

.contact-stripe-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
  color: #121826;
}

.contact-stripe-copy .panel-eyebrow {
  color: rgba(54, 81, 140, 0.72);
  letter-spacing: 0.28em;
}

.contact-stripe-copy h1 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.contact-stripe-copy p {
  margin: 16px auto 0;
  max-width: 640px;
  color: rgba(38, 51, 76, 0.78);
  font-size: 1.05rem;
  line-height: 1.65;
}

.contact-hero-meta {
  margin-top: 14px;
  font-size: 0.98rem;
  font-weight: 600;
  color: #3760c9;
}

.contact-hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 0 56px;
}

.contact-hero-actions .button,
.contact-hero-actions .button-secondary {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  font-weight: 700;
}

.contact-button-primary {
  box-shadow: 0 18px 38px rgba(0, 113, 227, 0.24) !important;
}

.contact-button-secondary,
.contact-button-outline {
  background: rgba(255, 255, 255, 0.94);
}

.contact-button-secondary:hover,
.contact-button-outline:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

.contact-card-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px 24px 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(199, 214, 245, 0.72);
  box-shadow: 0 18px 40px rgba(33, 44, 73, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(25, 35, 85, 0.12);
}

.contact-card-icon {
  width: 66px;
  height: 66px;
  margin: -58px auto 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #4b7eff;
  background: linear-gradient(180deg, #fafdff 0%, #edf5ff 100%);
  box-shadow: 0 12px 28px rgba(84, 131, 255, 0.18);
}

.contact-card-icon svg {
  width: 28px;
  height: 28px;
}

.contact-card h2 {
  margin: 0 0 10px;
  text-align: center;
  font-size: 1.24rem;
}

.contact-card p {
  margin: 0;
  text-align: center;
  color: #5b6475;
}

.contact-card-link {
  margin-top: auto;
  padding-top: 18px;
  text-align: center;
  color: #4a74ff;
  font-weight: 700;
  text-decoration: none;
}

.contact-methods-panel {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 248, 255, 0.96) 100%);
  box-shadow: 0 22px 54px rgba(27, 46, 94, 0.08);
}

.contact-methods-copy {
  margin: 0 0 22px;
  text-align: center;
}

.contact-methods-copy h2 {
  margin: 8px 0 0;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

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

.contact-direct-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 255, 0.98) 100%);
  border: 1px solid rgba(202, 216, 246, 0.72);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  text-decoration: none;
}

.contact-direct-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.1);
  border-color: rgba(95, 141, 244, 0.42);
}

.contact-direct-card-wide {
  grid-column: span 4;
}

.contact-direct-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fafdff 0%, #edf5ff 100%);
  color: #4b7eff;
  font-size: 1.4rem;
  flex: 0 0 auto;
}

.contact-direct-card h2 {
  margin: 4px 0 0;
  font-size: 1.08rem;
  color: #111827;
}

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

.contact-support-card {
  text-align: center;
  padding: 30px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 255, 0.98) 100%);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.06);
}

.contact-support-card h2 {
  margin: 6px 0 10px;
  font-size: 1.18rem;
}

.contact-support-card p {
  margin: 0;
}

.contact-support-action {
  margin-top: 18px;
}

@media (max-width: 980px) {
  .contact-hero-actions {
    margin-bottom: 44px;
  }

  .contact-card-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .contact-direct-card-wide {
    grid-column: span 2;
  }

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

  .contact-stripe-hero::after {
    right: 28px;
    top: 76px;
  }
}

@media (max-width: 640px) {
  .contact-stripe-hero {
    padding: 34px 18px 28px;
    border-radius: 28px;
  }

  .contact-stripe-copy {
    margin-bottom: 28px;
  }

  .contact-stripe-copy p {
    font-size: 0.98rem;
  }

  .contact-card {
    padding: 22px 18px 20px;
    border-radius: 22px;
  }

  .contact-card-icon {
    width: 58px;
    height: 58px;
    margin-top: -48px;
  }

  .contact-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-hero-actions .button,
  .contact-hero-actions .button-secondary {
    width: 100%;
    justify-content: center;
  }

  .contact-methods-panel {
    padding: 22px 16px;
  }

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

  .contact-direct-card-wide {
    grid-column: span 1;
  }

  .contact-direct-card {
    padding: 18px 16px;
  }
}
/* === Elyria contact Stripe section end === */



/* ═══════════════════════════════════════════════════════════════
   PREMIUM V2 — /offres index.html (2025-05)
   Objectif : Apple / Stripe / Uber Eats Business quality
   ═══════════════════════════════════════════════════════════════ */

/* ── Fondation ───────────────────────────────────────────────── */
body {
  background: #f5f5f7;            /* fond page aligné avec product-style */
}

.page-shell {
  padding-top: 0;
}

/* Stack — gap plus généreux */
.stack {
  gap: 20px;
  padding: 20px 18px 28px;
  max-width: 1300px;
}

/* ── Hero — grande entrée premium ────────────────────────────── */
.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  padding: 80px 36px 0;
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
  gap: 0;                          /* géré individuellement ci-dessous */
  background:
    radial-gradient(ellipse 140% 55% at 50% -8%, rgba(0, 113, 227, 0.15) 0%, transparent 58%),
    radial-gradient(ellipse 60% 40% at 85% 90%, rgba(0, 180, 255, 0.07) 0%, transparent 50%),
    linear-gradient(180deg, #f5faff 0%, #fafbfd 55%, #f2f2f7 100%);
}

/* Badge social proof */
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 113, 227, 0.18);
  box-shadow: 0 8px 24px rgba(0, 113, 227, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.hero-trust-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25); }
  50%       { box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12); }
}

/* Eyebrow hero */
.hero-panel .panel-eyebrow {
  margin-bottom: 18px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

/* H1 hero — massif */
.hero-panel h1 {
  font-size: clamp(3.8rem, 10.5vw, 9.5rem);
  letter-spacing: -0.065em;
  line-height: 0.88;
  margin-bottom: 24px;
  max-width: 16ch;
  text-wrap: balance;
}

/* Sous-titre hero */
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--muted);
  line-height: 1.55;
  max-width: 54ch;
  margin-bottom: 32px;
}

/* Button row hero */
.hero-panel .button-row {
  margin-bottom: 20px;
}

/* Benefit pills */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.07);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* Bouton hero principal */
.hero-cta-primary {
  background: linear-gradient(135deg, #0071e3 0%, #1a8bff 100%);
  box-shadow: 0 18px 40px rgba(0, 113, 227, 0.28);
}

.hero-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(0, 113, 227, 0.36);
}

/* Hero art — image bleed */
.hero-art {
  width: calc(100% + 72px);
  margin: 0 -36px;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  align-self: end;
}

.hero-photo {
  display: block;
  width: 100%;
  height: auto;
  min-height: 360px;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 28px 28px 0 0;
}

/* ── Boutons — plus de présence ──────────────────────────────── */
.button {
  min-height: 52px;
  padding: 0 30px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--blue-hover);
  box-shadow: 0 16px 34px rgba(0, 113, 227, 0.26);
}

.button-secondary {
  min-height: 52px;
  padding: 0 30px;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.button-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 113, 227, 0.65);
  box-shadow: 0 10px 24px rgba(0, 113, 227, 0.1);
}

/* ── Apple stages — plus dramatiques ─────────────────────────── */
.apple-stage {
  min-height: 840px;
  padding: 72px 36px 0;
  gap: 26px;
}

/* H2 des stages — plus grand, plus impactant */
.stage-copy h2 {
  font-size: clamp(3rem, 7.5vw, 7rem);
  letter-spacing: -0.07em;
  line-height: 0.90;
}

/* Stage copy — meilleure hiérarchie */
.stage-copy {
  display: grid;
  gap: 22px;
  max-width: 740px;
}

.stage-copy p:not(.panel-eyebrow) {
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.5;
}

/* Stage art — image bleed sur les côtés */
.stage-art {
  width: calc(100% + 72px);
  margin: 12px -36px 0;
  min-height: 320px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* Stage photos — plus grandes, drop-shadow dramatique */
.stage-photo {
  width: min(100%, 1020px);
  filter: drop-shadow(0 36px 64px rgba(0, 0, 0, 0.15));
  transition: filter 300ms ease;
}

.stage-link:hover .stage-photo {
  filter: drop-shadow(0 44px 80px rgba(0, 0, 0, 0.2));
}

/* Glow backgrounds — plus riches et profonds */
.glow-blue {
  background:
    radial-gradient(ellipse 100% 55% at 50% 0%, rgba(72, 168, 255, 0.72) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 85% 95%, rgba(0, 113, 227, 0.1) 0%, transparent 40%),
    linear-gradient(180deg, #c8e8ff 0%, #ddf1ff 30%, #eef8ff 65%, #f5fbff 100%);
}

.glow-silver {
  background:
    radial-gradient(ellipse 90% 50% at 65% 0%, rgba(140, 200, 255, 0.68) 0%, transparent 48%),
    linear-gradient(135deg, #cce8f8 0%, #e0f2fc 40%, #f0f9ff 75%, #fafcff 100%);
}

.glow-white {
  background:
    radial-gradient(ellipse 100% 50% at 50% 0%, rgba(180, 220, 255, 0.58) 0%, transparent 48%),
    linear-gradient(180deg, #e8f4ff 0%, #f4faff 50%, #fafcff 100%);
}

.glow-violet {
  background:
    radial-gradient(ellipse 100% 50% at 50% 0%, rgba(178, 140, 255, 0.44) 0%, transparent 46%),
    linear-gradient(180deg, #ede6ff 0%, #f5f1ff 48%, #f8f6ff 75%, #f3f5ff 100%);
}

/* Stage link hover — plus prononcé */
.stage-link {
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 320ms cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.stage-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.13);
}

/* ── Carousel — cards plus visuelles ─────────────────────────── */
.carousel-section,
.reasons-section {
  gap: 26px;
  padding: 10px 0 8px;
}

.carousel-head h2 {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  letter-spacing: -0.055em;
}

.story-card {
  min-height: 600px;
  border-radius: 32px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  gap: 20px;
}

/* ── Reasons — cards premium ─────────────────────────────────── */
.reasons-spotlight {
  border-radius: 32px;
  padding: 38px 36px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.06);
}

.reasons-spotlight-copy h3 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.reasons-spotlight-visual {
  min-height: 340px;
  border-radius: 28px;
}

.reasons-grid {
  gap: 16px;
}

.reason-card {
  min-height: 270px;
  padding: 30px 26px;
  border-radius: 26px;
  border: 1px solid rgba(0, 113, 227, 0.06);
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reason-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.1);
}

.reason-icon {
  width: 58px;
  height: 58px;
  font-size: 1.5rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #eaf3ff 0%, #ddeeff 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 113, 227, 0.1),
              0 8px 18px rgba(0, 113, 227, 0.1);
}

.reason-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

/* 4 colonnes sur desktop */
@media (min-width: 1024px) {
  .reasons-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ── CTA panel — plus dramatique ─────────────────────────────── */
.cta-panel {
  min-height: 640px;
  border-radius: var(--radius);
}

/* ── Reveal — CSS fallback amélioré ──────────────────────────── */
.reveal {
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  padding: 36px 18px 68px;
}

/* ── Responsive mobile ──────────────────────────────────────── */
@media (max-width: 980px) {
  .apple-stage {
    min-height: 700px;
    padding: 58px 28px 0;
  }

  .stage-art {
    width: calc(100% + 56px);
    margin-inline: -28px;
  }
}

@media (max-width: 640px) {
  .stack {
    gap: 14px;
    padding: 14px 12px 24px;
  }

  .hero-panel {
    min-height: auto;
    padding: 50px 22px 0;
  }

  .hero-panel h1 {
    font-size: clamp(3rem, 13vw, 5rem);
    line-height: 0.92;
    margin-bottom: 20px;
  }

  .hero-art {
    width: calc(100% + 44px);
    margin-inline: -22px;
  }

  .hero-photo {
    min-height: 260px;
    border-radius: 20px 20px 0 0;
  }

  .hero-trust-badge {
    font-size: 0.75rem;
    padding: 0 12px;
  }

  .hero-pills span {
    font-size: 0.76rem;
    padding: 0 12px;
  }

  .apple-stage {
    min-height: 620px;
    padding: 46px 20px 0;
  }

  .stage-art {
    width: calc(100% + 40px);
    margin-inline: -20px;
  }

  .stage-copy h2 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .button,
  .button-secondary {
    min-height: 50px;
    padding: 0 24px;
  }

  .reasons-spotlight {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .carousel-section,
  .reasons-section {
    gap: 18px;
  }

  .story-card {
    min-height: 520px;
  }
}

@media (max-width: 400px) {
  .hero-panel h1 {
    font-size: 2.9rem;
  }

  .hero-pills {
    gap: 6px;
  }

  .hero-pills span {
    font-size: 0.72rem;
    padding: 0 10px;
  }
}
/* ═══════════════════════════════════════════════════════════════
   V3 DESIGN SYSTEM — Refonte premium A-to-Z (2025-05)
   Direction : Apple / Stripe / Shopify — blanc/bleu/noir
   ═══════════════════════════════════════════════════════════════ */

/* ── Fondation ───────────────────────────────────────────────── */
.v3-body {
  background: #f5f5f7;
}

/* Shell principal — wrapper de toutes les sections */
.v3-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 16px 24px;   /* 18px top = aligné avec .product-page */
  max-width: 1380px;
  margin: 0 auto;
}

/* ── HERO ────────────────────────────────────────────────────── */
.v3-hero {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 80% 60% at 20% -10%, rgba(0,113,227,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(0,180,255,0.07) 0%, transparent 50%),
    linear-gradient(160deg, #f0f8ff 0%, #fafbfd 50%, #f2f2f7 100%);
  padding: 72px 80px 0;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Orbes décoratifs arrière-plan */
.v3-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.v3-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.v3-orb-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -100px;
  background: rgba(0, 113, 227, 0.10);
}

.v3-orb-2 {
  width: 400px;
  height: 400px;
  top: 20%;
  right: -80px;
  background: rgba(0, 180, 255, 0.08);
}

.v3-orb-3 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: 30%;
  background: rgba(109, 93, 252, 0.06);
}

/* Inner — 2 colonnes desktop */
.v3-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  flex: 1;
}

/* Texte gauche */
.v3-hero-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 80px;
}

/* Badge live */
.v3-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 113, 227, 0.18);
  box-shadow: 0 6px 20px rgba(0, 113, 227, 0.10);
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: fit-content;
}

.v3-badge-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
  animation: v3-pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes v3-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.10); }
}

/* H1 hero — massif, editorial */
.v3-h1 {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: clamp(4rem, 7.5vw, 8rem);
  letter-spacing: -0.07em;
  line-height: 0.88;
  margin: 0 0 28px;
  font-weight: 900;
}

.v3-h1-line {
  display: block;
}

.v3-h1-accent {
  background: linear-gradient(135deg, #0071e3 0%, #38b2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sous-titre */
.v3-hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  color: #475569;
  line-height: 1.58;
  margin: 0 0 32px;
  max-width: 50ch;
}

.v3-hero-sub strong {
  color: #0f172a;
  font-weight: 800;
}

/* Actions */
.v3-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* Pills bénéfices */
.v3-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.v3-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.07);
  color: #0071e3;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid rgba(0, 113, 227, 0.12);
}

/* Visuel droit */
.v3-hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: end;
  padding-bottom: 0;
}

.v3-hero-img-wrap {
  position: relative;
  width: 100%;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  box-shadow:
    0 4px 8px rgba(0,0,0,0.03),
    0 24px 60px rgba(0,0,0,0.12),
    0 60px 120px rgba(0,113,227,0.08);
}

.v3-hero-img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 420px;
  max-height: 640px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 24px 24px 0 0;
}

.v3-hero-img-shine {
  position: absolute;
  inset: 0;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Floating stat cards */
.v3-float {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow:
    0 4px 8px rgba(0,0,0,0.04),
    0 16px 38px rgba(0,0,0,0.12);
  pointer-events: none;
}

.v3-float-1 { bottom: 32%; left: -10%; }
.v3-float-2 { bottom: 18%; right: 2%; }
.v3-float-3 { top: 14%;   right: 2%; }

.v3-float-num {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #0071e3;
  line-height: 1;
}

.v3-float-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
}

/* ── TICKER ──────────────────────────────────────────────────── */
.v3-ticker-wrap {
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  overflow: hidden;
  position: relative;
}

.v3-ticker-wrap::before,
.v3-ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.v3-ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.v3-ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.v3-ticker {
  padding: 18px 0;
  overflow: hidden;
}

.v3-ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: v3-ticker 28s linear infinite;
}

@keyframes v3-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.v3-ti {
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  white-space: nowrap;
  padding: 0 24px;
}

.v3-ti b {
  color: #0071e3;
  font-weight: 900;
}

.v3-td {
  color: #0071e3;
  font-size: 0.7rem;
  opacity: 0.6;
  flex-shrink: 0;
}

/* ── FEATURE SECTIONS ────────────────────────────────────────── */
.v3-feat {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.v3-feat:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.10);
}

/* Couleurs de fond par section */
.v3-feat-blue {
  background:
    radial-gradient(ellipse 100% 60% at 50% -10%, rgba(72,168,255,0.65) 0%, transparent 55%),
    linear-gradient(180deg, #cce8ff 0%, #ddf1ff 35%, #eef8ff 65%, #f5fbff 100%);
}

.v3-feat-light {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(200,230,255,0.5) 0%, transparent 50%),
    linear-gradient(180deg, #f0f9ff 0%, #f8fbff 50%, #fafbff 100%);
}

.v3-feat-silver {
  background:
    radial-gradient(ellipse 90% 55% at 65% -5%, rgba(140,200,255,0.55) 0%, transparent 50%),
    linear-gradient(135deg, #cce8f8 0%, #e0f2fc 40%, #f0f9ff 75%, #fafcff 100%);
}

.v3-feat-violet {
  background:
    radial-gradient(ellipse 100% 55% at 50% -5%, rgba(178,140,255,0.42) 0%, transparent 50%),
    linear-gradient(180deg, #ede6ff 0%, #f5f1ff 48%, #f8f6ff 75%, #f3f5ff 100%);
}

/* Inner — 2 colonnes desktop */
.v3-feat-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 80px 0;
  max-width: 1280px;
  margin: 0 auto;
}

/* Flip : image à gauche sur desktop */
.v3-feat-flip .v3-feat-media {
  order: -1;
}

/* Texte côté */
.v3-feat-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 80px;
}

/* Numéro section */
.v3-feat-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  color: #0071e3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Eyebrow */
.v3-eyebrow {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0071e3;
  margin-bottom: 12px;
}

/* Titre section */
.v3-feat-title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  letter-spacing: -0.068em;
  line-height: 0.90;
  margin: 0 0 20px;
  font-weight: 900;
  text-align: left;
  color: #0f172a;
}

/* Description */
.v3-feat-desc {
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  color: #475569;
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 48ch;
}

/* Liste features */
.v3-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v3-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.96rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}

.v3-list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 11px no-repeat,
    linear-gradient(135deg, #0071e3, #38b2ff);
}

/* Actions boutons */
.v3-feat-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Côté média */
.v3-feat-media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: end;
}

/* Cadre image premium */
.v3-img-frame {
  position: relative;
  width: 100%;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  box-shadow:
    0 4px 8px rgba(0,0,0,0.04),
    0 24px 64px rgba(0,0,0,0.14),
    0 48px 96px rgba(0,0,0,0.06);
}

.v3-img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px 24px 0 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
  pointer-events: none;
}

.v3-feat-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px 24px 0 0;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.v3-feat:hover .v3-feat-img {
  transform: scale(1.02);
}

/* ── CAROUSEL WRAPPER ────────────────────────────────────────── */
.v3-cards-wrap {
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(226,232,240,0.7);
  padding: 56px 40px 40px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.02), 0 16px 40px rgba(0,0,0,0.04);
}

/* Section header — titre + lien */
.v3-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.v3-section-h2 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  letter-spacing: -0.06em;
  line-height: 0.92;
  margin: 0;
  font-weight: 900;
  color: #0f172a;
}

.v3-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 800;
  color: #0071e3;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -0.01em;
  transition: gap 200ms ease;
}

.v3-link-arrow:hover {
  gap: 10px;
}

/* ── POURQUOI ────────────────────────────────────────────────── */
.v3-why {
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(226,232,240,0.7);
  padding: 56px 56px 56px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.02), 0 16px 40px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Spotlight — large mise en avant */
.v3-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(102,170,255,0.15), transparent 35%),
    linear-gradient(180deg, #fff 0%, #f6f9ff 100%);
  border-radius: 24px;
  padding: 48px 48px;
  border: 1px solid rgba(226,232,240,0.6);
  box-shadow: 0 12px 40px rgba(0,0,0,0.04);
}

.v3-spotlight-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.v3-spotlight-text h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.055em;
  line-height: 0.96;
  margin: 0;
  font-weight: 900;
  color: #0f172a;
}

.v3-spotlight-text p {
  color: #475569;
  line-height: 1.55;
  margin: 0;
  font-size: 1rem;
}

.v3-spotlight-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
  min-height: 280px;
  background: linear-gradient(180deg, #eef6ff, #fff);
  display: grid;
  place-items: center;
}

.v3-spotlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Grid raisons */
.v3-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.v3-why-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  border-radius: 22px;
  border: 1px solid rgba(226,232,240,0.7);
  background: linear-gradient(180deg, #fff 0%, #f9fbff 100%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.v3-why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.v3-why-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #eaf3ff 0%, #ddeeff 100%);
  border: 1px solid rgba(0,113,227,0.10);
  box-shadow: 0 6px 16px rgba(0,113,227,0.10);
}

.v3-why-card h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 0;
  font-weight: 900;
  color: #0f172a;
}

.v3-why-card p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

/* ── CTA FINAL ───────────────────────────────────────────────── */
.v3-cta {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(160deg, #0a0f1e 0%, #0d1829 40%, #091020 100%);
  color: #fff;
  padding: 80px 80px 72px;
  text-align: center;
  box-shadow:
    0 4px 8px rgba(0,0,0,0.08),
    0 24px 64px rgba(0,0,0,0.18);
}

/* Orbes décoratifs CTA */
.v3-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.v3-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.v3-cta-orb-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 113, 227, 0.16);
}

.v3-cta-orb-2 {
  width: 350px;
  height: 350px;
  bottom: -100px;
  left: -60px;
  background: rgba(109, 93, 252, 0.12);
}

.v3-cta-orb-3 {
  width: 260px;
  height: 260px;
  top: 20%;
  right: 5%;
  background: rgba(0, 180, 255, 0.10);
}

.v3-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.v3-cta-eyebrow {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.v3-cta-title {
  font-size: clamp(2.8rem, 6vw, 6rem);
  letter-spacing: -0.068em;
  line-height: 0.90;
  margin: 0 0 22px;
  font-weight: 900;
  color: #fff;
}

.v3-cta-sub {
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  color: rgba(255,255,255,0.68);
  line-height: 1.58;
  margin: 0 0 32px;
  max-width: 58ch;
}

/* Services pills CTA */
.v3-cta-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}

.v3-cta-services a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 200ms ease, border-color 200ms ease;
}

.v3-cta-services a:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.28);
  color: #fff;
}

/* Contacts grid */
.v3-cta-contacts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 900px;
  margin-bottom: 36px;
}

.v3-contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.v3-contact-card:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.v3-contact-primary {
  background: rgba(0,113,227,0.22);
  border-color: rgba(0,113,227,0.4);
}

.v3-contact-primary:hover {
  background: rgba(0,113,227,0.32);
}

.v3-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.v3-contact-icon svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.v3-icon-insta {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.v3-icon-tiktok {
  background: #010101;
}

.v3-contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.v3-contact-info strong {
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.v3-contact-info small {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.56);
  font-weight: 500;
}

/* CTA boutons */
.v3-cta-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.v3-footer {
  padding: 32px 16px 56px;
}

.v3-footer-inner {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.v3-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.v3-footer-logo {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: linear-gradient(135deg, #0b73f6 0%, #6d5dfc 100%);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  box-shadow: 0 8px 20px rgba(37,99,235,0.24);
  flex-shrink: 0;
}

.v3-footer-name {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #0f172a;
}

.v3-footer-copy {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
  margin: 0;
}

.v3-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 20px;
}

.v3-footer-links a {
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  text-decoration: none;
  transition: color 0.18s ease;
}

.v3-footer-links a:hover {
  color: #0071e3;
}

/* ── NOUVEAU SYSTÈME BOUTONS ─────────────────────────────────── */
/* (NOUVEAU SYSTÈME DE BOUTONS — btn-primary / btn-ghost / btn-white
   ═══════════════════════════════════════════════════════════════ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0071e3 0%, #1a8bff 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.015em;
  text-decoration: none;
  border: none;
  box-shadow: 0 16px 38px rgba(0, 113, 227, 0.30);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 220ms cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(0, 113, 227, 0.40);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.015em;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 220ms cubic-bezier(0.16, 1, 0.3, 1),
              background 220ms ease;
  white-space: nowrap;
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.10);
}

/* Boutons sur fond sombre (CTA panel) */
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.015em;
  text-decoration: none;
  border: none;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 220ms cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.20);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.015em;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.42);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 220ms ease,
              background 220ms ease;
  white-space: nowrap;
}

.btn-outline-white:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
}

/* Taille mobile */
@media (max-width: 640px) {
  .btn-primary,
  .btn-ghost,
  .btn-white,
  .btn-outline-white {
    min-height: 48px;
    padding: 0 22px;
    font-size: 14px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   BARRE STATS — stats-bar
   ═══════════════════════════════════════════════════════════════ */

.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 20px 16px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.055);
}

.stats-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 28px;
  flex: 1;
  min-width: 110px;
}

.stats-bar-item strong {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #0071e3;
  line-height: 1;
}

.stats-bar-item span {
  font-size: 0.79rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.01em;
  text-align: center;
}

.stats-bar-sep {
  width: 1px;
  height: 36px;
  background: rgba(226, 232, 240, 0.95);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .stats-bar {
    gap: 4px;
    padding: 16px 12px;
    border-radius: 20px;
  }

  .stats-bar-item {
    padding: 8px 14px;
  }

  .stats-bar-sep {
    height: 28px;
  }
}

@media (max-width: 440px) {
  .stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .stats-bar-sep { display: none; }

  .stats-bar-item {
    padding: 12px 8px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   HERO — nouveaux éléments premium
   ═══════════════════════════════════════════════════════════════ */

/* Orbe décoratif derrière le hero */
.hero-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 600px;
  background: radial-gradient(ellipse 55% 50% at 50% 0%,
    rgba(0, 113, 227, 0.16) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Badge live "50+ restaurants" */
.hero-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 113, 227, 0.18);
  box-shadow: 0 8px 22px rgba(0, 113, 227, 0.10);
  font-size: 0.79rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-badge-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
  animation: pulse-green 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* H1 hero — classe dédiée */
.hero-h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(3.8rem, 10.5vw, 9.5rem);
  letter-spacing: -0.065em;
  line-height: 0.88;
  margin-bottom: 22px;
  max-width: 16ch;
  text-wrap: balance;
}

/* Conteneur boutons hero */
.hero-actions {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

/* Pills — gap pour les icônes SVG */
.hero-pills span {
  gap: 6px;
}

/* Image hero — section bleed */
.hero-media {
  position: relative;
  width: calc(100% + 72px);
  margin: 24px -36px 0;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border-radius: 24px 24px 0 0;
}

.hero-img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 340px;
  max-height: 560px;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 24px 24px 0 0;
}

/* Floating stat cards */
.hero-stat-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 13px 17px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.88);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.hero-stat-num {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #0071e3;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.74rem;
  font-weight: 600;
  color: #64748b;
}

.hero-stat-1 {
  bottom: 22%;
  left: 4%;
}

.hero-stat-2 {
  bottom: 12%;
  right: 4%;
}

@media (max-width: 640px) {
  .hero-media {
    width: calc(100% + 44px);
    margin-inline: -22px;
  }

  .hero-img {
    min-height: 260px;
    max-height: 420px;
    border-radius: 20px 20px 0 0;
  }

  .hero-stat-1 { left: 2%; bottom: 20%; }
  .hero-stat-2 { right: 2%; bottom: 8%; }
}

@media (max-width: 400px) {
  .hero-stat-card { padding: 10px 13px; }
  .hero-stat-num { font-size: 1.1rem; }
  .hero-stat-label { font-size: 0.68rem; }
}


/* ═══════════════════════════════════════════════════════════════
   STAGE LIST — liste à puces premium dans les stages
   ═══════════════════════════════════════════════════════════════ */

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

.stage-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.94rem, 1.4vw, 1.06rem);
  font-weight: 600;
  color: #334155;
  line-height: 1.4;
}

.stage-list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 11px no-repeat,
    linear-gradient(135deg, #0071e3, #1a8bff);
}


/* ═══════════════════════════════════════════════════════════════
   CTA PANEL — nouveaux éléments
   ═══════════════════════════════════════════════════════════════ */

/* Orbe décoratif */
.cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 500px;
  background: radial-gradient(ellipse 55% 50% at 50% 0%,
    rgba(255, 255, 255, 0.07) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

/* Éléments texte CTA */
.cta-eyebrow {
  position: relative;
  z-index: 1;
  opacity: 0.7;
  margin-bottom: 10px;
}

.cta-title {
  position: relative;
  z-index: 1;
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  letter-spacing: -0.065em;
  line-height: 0.92;
  margin-bottom: 16px;
}

.cta-sub {
  position: relative;
  z-index: 1;
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  line-height: 1.55;
  margin-bottom: 24px;
  opacity: 0.82;
}

/* Boutons CTA */
.cta-buttons {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}

/* Orbite décorative */
.cta-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
  z-index: 0;
}

.cta-orbit span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-orbit span:nth-child(1) {
  width: 520px;
  height: 520px;
  top: -180px;
  right: -160px;
}

.cta-orbit span:nth-child(2) {
  width: 300px;
  height: 300px;
  bottom: -90px;
  left: -90px;
}

.cta-orbit span:nth-child(3) {
  width: 160px;
  height: 160px;
  bottom: 18%;
  right: 8%;
}

@media (max-width: 640px) {
  .cta-title {
    font-size: clamp(2.4rem, 11vw, 4rem);
  }

  .cta-buttons {
    width: 100%;
  }

  .cta-buttons .btn-white,
  .cta-buttons .btn-outline-white {
    flex: 1;
    min-width: 0;
    justify-content: center;
  }
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER — structure mise à jour
   ═══════════════════════════════════════════════════════════════ */

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
  text-decoration: none;
}

.footer-logo {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: linear-gradient(135deg, #0b73f6 0%, #6d5dfc 100%);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.24);
}

.footer-copy {
  font-size: 0.87rem;
  color: #64748b;
  font-weight: 500;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 20px;
}

.footer-links a {
  font-size: 0.83rem;
  font-weight: 700;
  color: #334155;
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-links a:hover {
  color: #0071e3;
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM CINEMATIC LAYER — Atmosphere, Motion, Depth
   ═══════════════════════════════════════════════════════════════ */

/* ── Scroll progress bar ─────────────────────────────────────── */
.v3-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(to right, #0071e3, #38b2ff, #6d5dfc);
  z-index: 9999;
  transition: width 80ms linear;
  box-shadow: 0 0 10px rgba(0, 113, 227, 0.55);
  pointer-events: none;
}

/* ── Scrollbar premium ───────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0,113,227,0.25); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,113,227,0.48); }

/* ── Hero — noise texture grain (style Apple) ────────────────── */
.v3-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  opacity: 0.032;
  pointer-events: none;
  z-index: 3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
}

/* ── Hero inner border highlight ─────────────────────────────── */
.v3-hero {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 4px 8px rgba(0,0,0,0.02);
}

/* ── Float cards — lévitation CSS ───────────────────────────── */
@keyframes v3-levitate {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.v3-float-1 { animation: v3-levitate 5.4s ease-in-out infinite; }
.v3-float-2 { animation: v3-levitate 6.9s ease-in-out infinite 1.5s; }
.v3-float-3 { animation: v3-levitate 6.0s ease-in-out infinite 0.9s; }

/* Float cards — glassmorphism premium ──────────────────────── */
.v3-float {
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.04),
    0 14px 36px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,1);
}

/* ── Badge — shimmer animé ───────────────────────────────────── */
.v3-badge {
  position: relative;
  overflow: hidden;
}

@keyframes v3-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

.v3-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(105deg, transparent 30%, rgba(0,113,227,0.08) 50%, transparent 70%);
  background-size: 200%;
  animation: v3-shimmer 3.5s ease infinite 2s;
  pointer-events: none;
}

/* ── Button — halo lumineux au hover ─────────────────────────── */
.btn-primary {
  position: relative;
  isolation: isolate;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0071e3, #38b2ff);
  opacity: 0;
  filter: blur(18px);
  z-index: -1;
  transition: opacity 350ms ease;
  pointer-events: none;
}

.btn-primary:hover::before {
  opacity: 0.52;
}

/* ── Feature sections — inner border subtil ──────────────────── */
.v3-feat {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.65),
    0 2px 4px rgba(0,0,0,0.02);
}

.v3-feat:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.65),
    0 40px 100px rgba(0,0,0,0.10);
}

/* ── Image frame — light inlay ───────────────────────────────── */
.v3-img-frame {
  transform-style: preserve-3d;
  box-shadow:
    0 4px 8px rgba(0,0,0,0.04),
    0 24px 64px rgba(0,0,0,0.14),
    0 60px 100px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

.v3-img-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, transparent 28%);
  z-index: 2;
  pointer-events: none;
}

.v3-feat:hover .v3-img-frame::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.16) 0%, transparent 28%);
}

/* Hero img wrap — colored depth shadow */
.v3-hero-img-wrap {
  box-shadow:
    0 4px 8px rgba(0,0,0,0.04),
    0 28px 64px rgba(0,0,0,0.14),
    0 64px 128px rgba(0,113,227,0.10),
    inset 0 1px 0 rgba(255,255,255,0.5);
}

/* ── CTA — accent line top + gradient title ──────────────────── */
.v3-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.28), transparent);
  z-index: 10;
  pointer-events: none;
}

.v3-cta-title {
  background: linear-gradient(180deg, #ffffff 55%, rgba(255,255,255,0.68) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CTA contact card — glow on primary */
.v3-contact-primary {
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.v3-contact-primary:hover {
  box-shadow: 0 0 28px rgba(0,113,227,0.28);
}

/* ── Why cards — micro animation icon ───────────────────────── */
.v3-why-icon {
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.v3-why-card:hover .v3-why-icon {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,113,227,0.20);
  background: linear-gradient(180deg, #ddeeff 0%, #c4e2ff 100%);
}

/* Why card — border animated */
.v3-why-card {
  position: relative;
  overflow: hidden;
}

.v3-why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  border: 1px solid rgba(0,113,227,0);
  transition: border-color 240ms ease;
  pointer-events: none;
}

.v3-why-card:hover::after {
  border-color: rgba(0,113,227,0.14);
}

/* ── Feat num — ligne décorative ─────────────────────────────── */
.v3-feat-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.v3-feat-num::after {
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  background: #0071e3;
  opacity: 0.45;
}

/* ── Ticker — pause au hover ─────────────────────────────────── */
.v3-ticker:hover .v3-ticker-track {
  animation-play-state: paused;
}

/* ── Spotlight — inner highlight ─────────────────────────────── */
.v3-spotlight {
  position: relative;
  overflow: hidden;
}

.v3-spotlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.9), transparent);
  z-index: 2;
  pointer-events: none;
}

/* ── Section cards — inner top border ───────────────────────── */
.v3-cards-wrap {
  box-shadow:
    0 4px 8px rgba(0,0,0,0.02),
    0 16px 40px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.v3-why {
  box-shadow:
    0 4px 8px rgba(0,0,0,0.02),
    0 16px 40px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

/* ── Story cards — améliorations premium ────────────────────── */
.story-card {
  box-shadow:
    0 2px 4px rgba(0,0,0,0.04),
    0 20px 52px rgba(0,0,0,0.09);
  transition: transform 240ms cubic-bezier(0.16,1,0.3,1),
              box-shadow 240ms cubic-bezier(0.16,1,0.3,1);
}

.story-card:hover {
  box-shadow:
    0 2px 4px rgba(0,0,0,0.04),
    0 30px 72px rgba(0,0,0,0.14);
}

/* ── Link arrow — micro hover ────────────────────────────────── */
.v3-link-arrow {
  transition: gap 220ms ease, color 180ms ease;
}

/* ═══════════════════════════════════════════════════════════════
   V3 RESPONSIVE — Tablette et Mobile
   ═══════════════════════════════════════════════════════════════ */

/* ── Tablette 1024px ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .v3-hero {
    padding: 60px 48px 0;
    min-height: 80vh;
  }

  .v3-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .v3-hero-text {
    padding-bottom: 0;
    text-align: center;
    align-items: center;
  }

  .v3-hero-visual {
    align-self: auto;
  }

  .v3-float-1 { left: 0; bottom: 25%; }
  .v3-float-2 { right: 0; bottom: 10%; }
  .v3-float-3 { top: 8%;  right: 0; }

  .v3-feat-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 48px 0;
  }

  .v3-feat-flip .v3-feat-media {
    order: 0;
  }

  .v3-feat-text {
    padding-bottom: 0;
    align-items: center;
    text-align: center;
  }

  .v3-feat-title { text-align: center; }
  .v3-feat-desc  { text-align: center; }
  .v3-feat-actions { justify-content: center; }
  .v3-feat-num   { text-align: center; }

  .v3-list {
    max-width: 44ch;
    margin-left: auto;
    margin-right: auto;
  }

  .v3-feat-media {
    align-self: auto;
    padding: 0;
  }

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

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

  .v3-spotlight {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .v3-spotlight-text {
    align-items: center;
  }
}

/* ── Mobile 760px ────────────────────────────────────────────── */
@media (max-width: 760px) {
  .v3-shell {
    gap: 12px;
    padding: 12px 10px 20px;
  }

  .v3-hero {
    padding: 48px 24px 0;
    min-height: auto;
    border-radius: 22px;
  }

  .v3-h1 {
    font-size: clamp(3.2rem, 12vw, 5.5rem);
  }

  .v3-hero-sub {
    font-size: 1rem;
    text-align: center;
  }

  .v3-hero-actions {
    justify-content: center;
  }

  .v3-pills {
    justify-content: center;
  }

  .v3-float-3 {
    display: none;
  }

  .v3-float-1 {
    left: -6px;
    bottom: 28%;
  }

  .v3-float-2 {
    right: -6px;
    bottom: 12%;
  }

  .v3-feat {
    border-radius: 20px;
  }

  .v3-feat-inner {
    padding: 44px 24px 0;
    gap: 32px;
  }

  .v3-feat-title {
    font-size: clamp(2.4rem, 10vw, 3.6rem);
  }

  .v3-cards-wrap {
    padding: 36px 20px 24px;
    border-radius: 22px;
  }

  .v3-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .v3-section-h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .v3-why {
    padding: 36px 24px 36px;
    border-radius: 22px;
    gap: 28px;
  }

  .v3-spotlight {
    padding: 32px 24px;
    border-radius: 18px;
  }

  .v3-spotlight-text h3 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .v3-why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .v3-why-card {
    padding: 22px 18px;
    border-radius: 18px;
    gap: 12px;
  }

  .v3-why-card h3 {
    font-size: 1.3rem;
  }

  .v3-cta {
    padding: 56px 24px 48px;
    border-radius: 22px;
  }

  .v3-cta-title {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .v3-cta-contacts {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .v3-contact-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 14px 10px;
  }

  .v3-contact-info {
    align-items: center;
  }

  .v3-cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .v3-cta-btns .btn-white,
  .v3-cta-btns .btn-outline-white {
    width: 100%;
    justify-content: center;
  }
}

/* ── Mobile étroit 480px ─────────────────────────────────────── */
@media (max-width: 480px) {
  .v3-h1 {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  .v3-hero {
    padding: 40px 18px 0;
  }

  .v3-feat-inner {
    padding: 36px 18px 0;
  }

  .v3-why-grid {
    grid-template-columns: 1fr;
  }

  .v3-cta-contacts {
    grid-template-columns: 1fr;
  }

  .v3-contact-card {
    flex-direction: row;
    align-items: center;
    text-align: left;
    justify-content: flex-start;
    padding: 14px 16px;
  }

  .v3-contact-info {
    align-items: flex-start;
  }

  .v3-ticker-track {
    animation-duration: 18s;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ELYRIA DIGITAL — CRAFT LOCAL PREMIUM v8
   Bloc unique · Cascade naturelle · Zéro !important
   Direction : Chaud, Précis, Crédible (Notion / Loom / Stripe)
   ═══════════════════════════════════════════════════════════════ */

/* ── TOKENS SUPPLÉMENTAIRES ──────────────────────────────────── */
:root {
  --clr-bg:       #FAFAFA;
  --clr-bg-alt:   #F4F4F6;
  --clr-bg-blue:  #EBF4FF;
  --clr-bg-dark:  #060D1B;
  --clr-accent:   #0066CC;
  --clr-text:     #0A0A0A;
  --clr-muted:    #64748B;
  --clr-line:     #E5E7EB;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.04), 0 4px 14px rgba(0,0,0,0.06);
  --shadow-md:    0 2px 6px rgba(0,0,0,0.05), 0 12px 32px rgba(0,0,0,0.08);
  --shadow-lift:  0 4px 12px rgba(0,0,0,0.07), 0 24px 56px rgba(0,0,0,0.12);
  --radius-img:   16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 102, 204, 0.35) transparent;
}

::-webkit-scrollbar         { width: 3px; }
::-webkit-scrollbar-track   { background: transparent; }
::-webkit-scrollbar-thumb   { background: #0066CC; border-radius: 99px; }

/* ── CURSOR GLOW ─────────────────────────────────────────────── */
.v3-cursor-glow {
  position: fixed;
  top: -240px;
  left: -240px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(0, 102, 204, 0.055) 0%,
    rgba(0, 102, 204, 0.025) 40%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 9998;
  will-change: transform;
  mix-blend-mode: screen;
  transition: opacity 0.5s;
}

/* ── PROGRESS BAR ────────────────────────────────────────────── */
.v3-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #0066CC 0%, #38b2ff 60%, #7c3aed 100%);
  z-index: 9999;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ── HERO ────────────────────────────────────────────────────── */
/* Supprime min-height: 92vh → remplace par padding fixe         */
.v3-hero {
  min-height: 0;
  padding: 96px 80px 80px;
  background:
    radial-gradient(ellipse 90% 60% at 55% -5%, rgba(0,102,204,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(0,180,255,0.05) 0%, transparent 50%),
    linear-gradient(160deg, #f0f8ff 0%, #fafbfd 55%, #f4f4f6 100%);
}

.v3-hero-inner { align-items: center; }

/* Glow ambiant sous l'image hero */
.v3-hero-visual { position: relative; }

.v3-hero-visual::before {
  content: "";
  position: absolute;
  bottom: -8%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 42%;
  background: radial-gradient(ellipse,
    rgba(0, 102, 204, 0.12) 0%,
    rgba(0, 102, 204, 0.05) 45%,
    transparent 70%
  );
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}

.v3-hero-img-wrap {
  position: relative;
  z-index: 1;
  box-shadow: none;
  filter:
    drop-shadow(0 4px 14px rgba(0,0,0,0.08))
    drop-shadow(0 20px 50px rgba(0, 40, 160, 0.11));
}

/* Supprime min-height: 420px sur mobile — cause le white space */
.v3-hero-img {
  height: auto;
  min-height: 0;
  max-height: 640px;
  object-position: center 28%;
}

.v3-hero-img-shine {
  background: linear-gradient(135deg,
    rgba(255,255,255,0.06) 0%,
    transparent 50%
  );
}

/* ── TYPOGRAPHIE — DÉFINITION UNIQUE ─────────────────────────── */
/* Positionnement après l'original → cascade naturelle, gagne    */

.v3-h1 {
  font-size: clamp(3.4rem, 7.8vw, 8.2rem);
  letter-spacing: -0.065em;
  line-height: 0.88;
  font-weight: 900;
}

.v3-hero-sub {
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.70;
  max-width: 50ch;
  color: var(--clr-muted);
}

.v3-feat-title {
  font-size: clamp(2.2rem, 4.8vw, 4.8rem);
  letter-spacing: -0.050em;
  line-height: 0.90;
  font-weight: 900;
  color: #0A0A0A;
}

.v3-cta-title {
  font-size: clamp(2.4rem, 5.2vw, 5.4rem);
  letter-spacing: -0.050em;
  line-height: 0.90;
  font-weight: 900;
}

.v3-section-h2 {
  font-size: clamp(1.9rem, 4.2vw, 3.8rem);
  letter-spacing: -0.042em;
  line-height: 0.92;
}

/* Eyebrow labels — style élégant et sobre */
.v3-eyebrow {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--clr-accent);
}

/* ── SECTIONS FEATURES — 3 fonds seulement ───────────────────── */
.v3-feat {
  padding-top:    100px;
  padding-bottom: 100px;
  overflow: visible;
}

/* Section 01 — blanc chaud (neutre, focus sur contenu) */
.v3-feat-blue {
  background: var(--clr-bg);
}

/* Section 02 — gris léger (respiration) */
.v3-feat-light {
  background: var(--clr-bg-alt);
}

/* Section 03 — bleu très pâle (signature Elyria, section unique) */
.v3-feat-silver {
  background: var(--clr-bg-blue);
}

/* Section 04 — gris léger (alternance) */
.v3-feat-violet {
  background: var(--clr-bg-alt);
}

/* Section 05 — blanc chaud (défaut, pas de surcharge) */

/* ── FEAT MEDIA — Glow ambiant discret ───────────────────────── */
.v3-feat-media {
  position: relative;
  overflow: visible;
  align-self: end;
}

.v3-feat-media::before {
  content: "";
  position: absolute;
  inset: -14% -10%;
  background: radial-gradient(ellipse at 50% 72%,
    var(--feat-ambient, rgba(0, 102, 204, 0.08)) 0%,
    transparent 65%
  );
  filter: blur(38px);
  pointer-events: none;
  z-index: 0;
}

.v3-feat-blue   .v3-feat-media { --feat-ambient: rgba(0, 102, 204, 0.10); }
.v3-feat-light  .v3-feat-media { --feat-ambient: rgba(0, 102, 204, 0.07); }
.v3-feat-silver .v3-feat-media { --feat-ambient: rgba(0, 102, 204, 0.07); }
.v3-feat-violet .v3-feat-media { --feat-ambient: rgba(80,  60, 200, 0.09); }

/* ── IMG FRAME — propre, sans border cheap ───────────────────── */
.v3-img-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-img);
  overflow: hidden;
  box-shadow: none;
  filter:
    drop-shadow(0 2px 6px rgba(0,0,0,0.05))
    drop-shadow(0 12px 30px rgba(0,0,0,0.09));
}

/* Supprime l'inner border cheapo */
.v3-img-frame::before {
  display: none;
}

/* Screen glint minimaliste */
.v3-img-frame::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 36%;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.08) 0%,
    transparent 100%
  );
  border-radius: var(--radius-img) var(--radius-img) 0 0;
  pointer-events: none;
  z-index: 4;
}

/* ── FEAT IMG — hauteur uniforme et cadrage ───────────────────── */
.v3-feat-img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
}

/* Cadrage fin par section */
.v3-feat-blue   .v3-feat-img { object-position: center center; }
.v3-feat-light  .v3-feat-img { object-position: center center; }
.v3-feat-silver .v3-feat-img { object-position: center 25%; }
.v3-feat-violet .v3-feat-img { object-position: center 15%; }

/* Spotlight */
.v3-hero-img      { object-position: center 28%; }
.v3-spotlight-img { object-position: center 22%; }

/* ── FEAT BADGE — métrique flottante sur image ───────────────── */
.v3-feat-badge {
  position: absolute;
  bottom: 24px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(226, 232, 240, 0.55);
  border-radius: 14px;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.05),
    0 8px 26px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10;
  pointer-events: none;
}

.v3-feat-flip .v3-feat-badge {
  right: auto;
  left: 0;
}

.v3-feat-badge-num {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--clr-accent);
  letter-spacing: -0.05em;
  line-height: 1;
}

.v3-feat-badge-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--clr-muted);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* ── SPOTLIGHT ───────────────────────────────────────────────── */
.v3-spotlight-visual {
  position: relative;
  min-height: 360px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--clr-bg-alt);
}

.v3-spotlight-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 55% 48%,
    rgba(0, 102, 204, 0.05) 0%,
    transparent 58%
  );
  pointer-events: none;
  z-index: 2;
}

.v3-spotlight-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── SECTION WHY ─────────────────────────────────────────────── */
.v3-why { background: var(--clr-bg-alt); }

/* Why cards — hover clean */
.v3-why-card {
  border-radius: 16px;
  border: 1px solid var(--clr-line);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s,
    background 0.25s;
}

.v3-why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  background: #fff;
}

/* ── STORY CARDS ─────────────────────────────────────────────── */
.story-card {
  min-height: 600px;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

/* ── FEAT INNER ──────────────────────────────────────────────── */
.v3-feat-inner { padding-bottom: 0; }
.v3-feat-text  { padding-bottom: 0; }

/* ── CTA FINAL ───────────────────────────────────────────────── */
.v3-cta {
  background:
    radial-gradient(ellipse 80% 55% at 50% 25%, rgba(0, 68, 200, 0.20) 0%, transparent 52%),
    linear-gradient(160deg, #020914 0%, #040d20 42%, #060b18 100%);
  position: relative;
  overflow: hidden;
}

/* Ligne lumineuse au sommet */
.v3-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(56, 178, 255, 0.55) 50%,
    transparent 100%
  );
  pointer-events: none;
}

/* Assure que les enfants sont au-dessus des pseudo-éléments */
.v3-cta > * {
  position: relative;
  z-index: 1;
}

.v3-cta-sub {
  color: rgba(186, 210, 255, 0.72);
  max-width: 50ch;
  line-height: 1.70;
}

/* Contact cards — verre dans le sombre */
.v3-contact-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    background 0.25s ease,
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s;
}

.v3-contact-card:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(56, 178, 255, 0.22);
  transform: translateY(-3px);
}

/* ── FEAT SECTIONS — overflow pour les badges ────────────────── */
.v3-feat-inner {
  overflow: visible;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .v3-hero {
    padding: 72px 48px 64px;
  }
  .v3-hero-inner {
    align-items: flex-start;
    gap: 40px;
  }
  .v3-h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
  }
  .v3-feat-title {
    font-size: clamp(2rem, 5.2vw, 3.8rem);
  }
  .v3-section-h2 {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
  }
  .v3-feat {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .v3-feat-img {
    height: 340px;
  }
  .v3-spotlight-visual {
    min-height: 300px;
  }
  .v3-feat-media::before {
    filter: blur(24px);
    inset: -8% -6%;
  }
}

@media (max-width: 760px) {
  .v3-hero {
    padding: 56px 20px 48px;
    min-height: 0;
  }
  .v3-hero-inner {
    gap: 28px;
  }
  .v3-hero-img {
    height: 260px;
    max-height: 260px;
    min-height: 0;
    object-position: center 28%;
    border-radius: 16px;
  }
  .v3-hero-img-wrap {
    border-radius: 16px;
    overflow: hidden;
  }
  .v3-hero-img-shine {
    border-radius: 16px;
  }
  .v3-hero-visual::before {
    display: none;
  }
  .v3-h1 {
    font-size: clamp(2.4rem, 10vw, 3.6rem);
    line-height: 0.92;
    letter-spacing: -0.052em;
  }
  .v3-feat-title {
    font-size: clamp(2rem, 8.5vw, 3rem);
    letter-spacing: -0.042em;
    line-height: 0.92;
  }
  .v3-cta-title {
    font-size: clamp(2rem, 9vw, 3.2rem);
    letter-spacing: -0.042em;
    line-height: 0.92;
  }
  .v3-section-h2 {
    font-size: clamp(1.8rem, 7.5vw, 2.6rem);
  }
  .v3-feat {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .v3-feat-img {
    height: 260px;
  }
  .v3-feat-media::before,
  .v3-feat-media::after {
    display: none;
  }
  .v3-feat-badge {
    display: none;
  }
  .story-card {
    min-height: 520px;
    border-radius: 18px;
  }
  .v3-spotlight-visual {
    min-height: 240px;
  }
}

@media (max-width: 480px) {
  .v3-hero {
    padding: 48px 16px 40px;
  }
  .v3-hero-img {
    height: 220px;
    max-height: 220px;
  }
  .v3-h1 {
    font-size: clamp(2rem, 11.5vw, 3rem);
  }
  .v3-feat {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .v3-feat-img {
    height: 220px;
  }
  .v3-story-card,
  .story-card {
    min-height: 460px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PATCH COULEURS — Sections distinctives et premium
   Chaque section a sa personnalité visuelle claire
   ═══════════════════════════════════════════════════════════════ */

/* ── Section 01 — Menu Digital : Bleu signature Elyria ───────── */
.v3-feat-blue {
  background:
    radial-gradient(ellipse 110% 60% at 50% -12%, rgba(0, 102, 204, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 85% 85%,  rgba(56, 178, 255, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #d8eeff 0%, #e8f4ff 30%, #f0f8ff 65%, #f7fbff 100%);
}

/* ── Section 02 — Cartes NFC : Blanc très lumineux ───────────── */
.v3-feat-light {
  background:
    radial-gradient(ellipse 90% 55% at 25% -8%, rgba(56, 178, 255, 0.14) 0%, transparent 52%),
    linear-gradient(180deg, #e2f2ff 0%, #eff7ff 35%, #f5fbff 68%, #fafcff 100%);
}

/* ── Section 03 — Sites Web : Bleu-gris acier premium ────────── */
.v3-feat-silver {
  background:
    radial-gradient(ellipse 100% 60% at 70% -10%, rgba(0, 90, 200, 0.16) 0%, transparent 52%),
    linear-gradient(145deg, #c8ddf5 0%, #daeaf9 32%, #eaf4fc 65%, #f4faff 100%);
}

/* ── Section 04 — Publicité : Violet deep premium ────────────── */
.v3-feat-violet {
  background:
    radial-gradient(ellipse 110% 62% at 50% -10%, rgba(100, 70, 240, 0.24) 0%, transparent 52%),
    linear-gradient(180deg, #cec0f8 0%, #e0d8ff 35%, #ede8ff 65%, #f5f2ff 100%);
}

/* ── Section 05 — Identité : Blanc chaud neutre ──────────────── */
/* Hérite du fond naturel #FAFAFA, pas de surcharge nécessaire */

/* ── Section WHY — Fond discret pour contraster ──────────────── */
.v3-why {
  background:
    radial-gradient(ellipse 80% 50% at 50% -5%, rgba(0, 102, 204, 0.07) 0%, transparent 55%),
    #F0F5FA;
}

/* ── HERO — Fond bleu très légèrement teinté ─────────────────── */
.v3-hero {
  background:
    radial-gradient(ellipse 100% 65% at 58% -8%, rgba(0, 102, 204, 0.13) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 92% 80%,  rgba(0, 180, 255, 0.06) 0%, transparent 50%),
    linear-gradient(165deg, #e8f3ff 0%, #f2f8ff 45%, #f5f5f7 100%);
}

/* ── FEAT MEDIA — Glow ambiant renforcé par section ─────────── */
.v3-feat-blue   .v3-feat-media { --feat-ambient: rgba(0,  102, 204, 0.16); }
.v3-feat-light  .v3-feat-media { --feat-ambient: rgba(0,  140, 255, 0.13); }
.v3-feat-silver .v3-feat-media { --feat-ambient: rgba(0,   90, 200, 0.13); }
.v3-feat-violet .v3-feat-media { --feat-ambient: rgba(90,  50, 230, 0.18); }

/* ── WHY CARD — couleur au hover selon thème bleu ────────────── */
.v3-why-card:hover {
  background: linear-gradient(145deg, #f0f7ff 0%, #e5f1ff 100%);
  border-color: rgba(0, 102, 204, 0.18);
}

/* ── STORY CARDS — fond noir pour les black-card ────────────── */
/* (classes existantes dans l'original, on ne touche pas) */

/* ── TICKER — fond cohérent avec section hero ───────────────── */
.v3-ticker-wrap {
  background: rgba(0, 102, 204, 0.06);
  border-top:    1px solid rgba(0, 102, 204, 0.10);
  border-bottom: 1px solid rgba(0, 102, 204, 0.10);
}

/* ═══════════════════════════════════════════════════════════════════
   WOW PREMIUM PASS v9 — Direction artistique 9.5/10
   1. Watermarks numérotés géants
   2. Drop-shadows colorés par section
   3. Border-radius asymétriques par section
   4. Section 03 centerpiece
   5. Hero badge pulse
   6. Why icon containers premium
   7. Feat badge gradient
   8. Typographie scale-up final
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. WATERMARK COUNTER ───────────────────────────────────────── */
.v3-shell { counter-reset: feat-counter; }

.v3-feat {
  counter-increment: feat-counter;
  position: relative;
  overflow: hidden;
}

.v3-feat::before {
  content            : "0" counter(feat-counter);
  position           : absolute;
  top                : -0.08em;
  left               : -0.04em;
  font-size          : clamp(10rem, 24vw, 20rem);
  font-weight        : 900;
  letter-spacing     : -0.14em;
  line-height        : 0.75;
  color              : transparent;
  -webkit-text-stroke: 2px rgba(0, 70, 180, 0.07);
  pointer-events     : none;
  user-select        : none;
  z-index            : 0;
  opacity            : 0;
  transition         : opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.20s;
}

/* Sections flippées : numéro à droite */
.v3-feat-flip::before {
  left  : auto;
  right : -0.04em;
}

/* Teinte violette pour la section violet */
.v3-feat-violet::before {
  -webkit-text-stroke-color: rgba(80, 40, 220, 0.09);
}

/* Déclenché par la classe JS is-in-view */
.v3-feat.is-in-view::before { opacity: 1; }

/* Contenu au-dessus du watermark */
.v3-feat-inner { position: relative; z-index: 1; }

/* Mobile : on masque les watermarks (trop lourds sur petit écran) */
@media (max-width: 760px) {
  .v3-feat::before { display: none; }
}

/* ── 2. DROP-SHADOWS COLORÉS ────────────────────────────────────── */
.v3-feat-blue .v3-img-frame {
  filter:
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.06))
    drop-shadow(0 12px 32px rgba(0, 102, 204, 0.20))
    drop-shadow(0 32px 64px rgba(0, 102, 204, 0.10));
}

.v3-feat-light .v3-img-frame {
  filter:
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05))
    drop-shadow(0 12px 32px rgba(0, 140, 255, 0.18))
    drop-shadow(0 32px 64px rgba(0, 140, 255, 0.09));
}

.v3-feat-silver .v3-img-frame {
  filter:
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.07))
    drop-shadow(0 16px 40px rgba(0, 90, 200, 0.22))
    drop-shadow(0 36px 72px rgba(0, 90, 200, 0.11));
}

.v3-feat-violet .v3-img-frame {
  filter:
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.06))
    drop-shadow(0 12px 32px rgba(90, 50, 220, 0.22))
    drop-shadow(0 32px 64px rgba(90, 50, 220, 0.10));
}

/* ── 3. BORDER-RADIUS ASYMÉTRIQUES ─────────────────────────────── */
/* Chaque section a une signature visuelle unique */
.v3-feat-blue   .v3-feat-img { border-radius: 20px 20px 6px 20px; }
.v3-feat-light  .v3-feat-img { border-radius: 6px 20px 20px 20px; }
.v3-feat-silver .v3-feat-img { border-radius: 24px; transform: translateY(-16px); }
.v3-feat-violet .v3-feat-img { border-radius: 20px 6px 20px 20px; }

/* Assure que le img-frame laisse passer l'ombre colorée */
.v3-img-frame { overflow: visible; }

/* ── 4. SECTION 03 CENTERPIECE ──────────────────────────────────── */
/* Section silver = la plus forte → padding généreux, titre agrandi */
.v3-feat-silver {
  padding-top    : 130px;
  padding-bottom : 130px;
}

.v3-feat-silver .v3-feat-title {
  font-size: clamp(2.6rem, 5.6vw, 6.0rem);
}

/* ── 5. HERO BADGE PULSE ────────────────────────────────────────── */
/* Dot pulsant dans le badge hero */
.v3-badge {
  display        : inline-flex;
  align-items    : center;
  gap            : 8px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border         : 1px solid rgba(0, 102, 204, 0.18);
}

.v3-badge-dot {
  display       : inline-block;
  width         : 8px;
  height        : 8px;
  border-radius : 50%;
  background    : #0066CC;
  animation     : badge-pulse 2.8s ease-in-out infinite;
  flex-shrink   : 0;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.0); }
  50%       { box-shadow: 0 0 0 7px rgba(0, 102, 204, 0.0),
                           0 0 0 3px rgba(0, 102, 204, 0.18); }
}

/* ── 6. WHY ICON CONTAINERS PREMIUM ────────────────────────────── */
.v3-why-icon {
  width           : 52px;
  height          : 52px;
  min-width       : 52px;
  border-radius   : 16px;
  background      : linear-gradient(145deg,
                      rgba(0, 102, 204, 0.11) 0%,
                      rgba(56, 178, 255, 0.05) 100%);
  border          : 1px solid rgba(0, 102, 204, 0.12);
  display         : flex;
  align-items     : center;
  justify-content : center;
  box-shadow      : 0 2px 8px rgba(0, 102, 204, 0.08),
                    inset 0 1px 0 rgba(255, 255, 255, 0.60);
  transition      : transform 0.28s ease, box-shadow 0.28s ease;
}

.v3-why-card:hover .v3-why-icon {
  transform  : translateY(-2px) scale(1.04);
  box-shadow : 0 6px 20px rgba(0, 102, 204, 0.16),
               inset 0 1px 0 rgba(255, 255, 255, 0.60);
}

/* ── 7. FEAT BADGE GRADIENT NUMBER ─────────────────────────────── */
.v3-feat-badge-num {
  background             : linear-gradient(135deg, #0055bb 0%, #38b2ff 100%);
  -webkit-background-clip: text;
  background-clip        : text;
  -webkit-text-fill-color: transparent;
}

/* ── 8. TYPOGRAPHIE SCALE-UP FINAL ─────────────────────────────── */
.v3-h1 {
  font-size    : clamp(3.8rem, 8.6vw, 9.2rem);
  line-height  : 0.86;
  letter-spacing: -0.068em;
}

.v3-feat-title {
  font-size    : clamp(2.4rem, 5.2vw, 5.4rem);
  letter-spacing: -0.04em;
}

.v3-cta-title {
  font-size    : clamp(2.8rem, 6.2vw, 6.6rem);
  letter-spacing: -0.05em;
}

/* ── 9. HERO IMAGE — ombre portée plus forte ────────────────────── */
.v3-hero-img {
  filter      : drop-shadow(0 8px 24px rgba(0, 0, 0, 0.14))
                drop-shadow(0 32px 72px rgba(0, 102, 204, 0.18));
  transition  : filter 0.5s ease;
}

/* ── 10. STORY CARDS — traitement raffiné ───────────────────────── */
/* Card standard : hover lift + bordure légère */
.v3-story-card {
  border          : 1px solid rgba(0, 0, 0, 0.06);
  transition      : transform 0.30s cubic-bezier(0.22, 1, 0.36, 1),
                    box-shadow 0.30s cubic-bezier(0.22, 1, 0.36, 1);
}

.v3-story-card:hover {
  transform   : translateY(-5px);
  box-shadow  : 0 12px 40px rgba(0, 0, 0, 0.11),
                0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Card noire (black-card) : fond vraiment dark + texte blanc assuré */
.v3-story-card.black-card {
  background  : linear-gradient(145deg, #0a0a14 0%, #111827 100%);
  border-color: rgba(255, 255, 255, 0.08);
  color       : #fff;
}

.v3-story-card.black-card:hover {
  box-shadow  : 0 12px 40px rgba(0, 0, 0, 0.35),
                0 0 0 1px rgba(255, 255, 255, 0.10);
}

/* ═══════════════════════════════════════════════════════════════════
   FINITION 10/10 — v10
   Typographie · Spacing · Images · Cards · CTA · Icons · Mobile
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. IMAGES — plus grandes, plus fortes ──────────────────────── */
/* Desktop : +100px de hauteur pour images dominantes */
.v3-feat-img {
  height      : clamp(420px, 50vh, 560px);
  object-fit  : cover;
  display     : block;
  width       : 100%;
}

/* Hover scale un poil plus généreux */
.v3-feat:hover .v3-feat-img {
  transform   : scale(1.035);
}

/* Section 03 silver : image centrée avec + de room */
.v3-feat-silver .v3-feat-img {
  height      : clamp(460px, 52vh, 600px);
}

/* Hero image — plus imposante */
.v3-hero-img {
  max-height  : 580px;
  width       : 100%;
  object-fit  : cover;
}

/* Spotlight — image dominante */
.v3-spotlight-img {
  height      : 440px;
  object-fit  : cover;
  border-radius: 20px;
}

/* ── 2. SECTIONS FEAT — respiration accrue ──────────────────────── */
/* Plus d'espace vertical → effet magazine premium */
.v3-feat {
  padding-top    : clamp(80px, 11vw, 128px);
  padding-bottom : clamp(80px, 11vw, 128px);
}

/* Silver toujours la plus aérée */
.v3-feat-silver {
  padding-top    : clamp(110px, 13vw, 148px);
  padding-bottom : clamp(110px, 13vw, 148px);
}

/* Grid interne — gap entre texte et image */
.v3-feat-inner {
  gap : clamp(48px, 7vw, 96px);
  align-items: center;
}

/* ── 3. TYPOGRAPHIE — affinements finaux ────────────────────────── */
/* Eyebrow — plus d'autorité */
.v3-eyebrow {
  font-size       : 0.76rem;
  letter-spacing  : 0.14em;
  font-weight     : 700;
  text-transform  : uppercase;
  color           : #0066CC;
  margin-bottom   : 14px;
}

/* Feat-num éditorial — discret mais présent */
.v3-feat-num {
  display         : inline-block;
  font-size       : 0.70rem;
  font-weight     : 800;
  letter-spacing  : 0.18em;
  color           : rgba(0, 102, 204, 0.45);
  border-left     : 2px solid rgba(0, 102, 204, 0.30);
  padding-left    : 10px;
  margin-bottom   : 18px;
  text-transform  : uppercase;
}

/* Description — plus confortable à lire */
.v3-feat-desc {
  font-size       : clamp(1.05rem, 1.7vw, 1.18rem);
  line-height     : 1.68;
  color           : #4a5568;
  margin-bottom   : 28px;
  max-width       : 50ch;
}

/* Liste — items mieux respirés */
.v3-list {
  gap             : 13px;
  margin-bottom   : 36px;
}

.v3-list li {
  font-size       : 0.97rem;
  font-weight     : 500;
  color           : #1e293b;
  line-height     : 1.45;
  gap             : 12px;
}

/* Actions buttons — gap plus généreux */
.v3-feat-actions {
  gap             : 14px;
}

/* Section H2 — heading plus serré et plus fort */
.v3-section-h2 {
  letter-spacing  : -0.048em;
  line-height     : 1.01;
}

/* ── 4. FEAT BADGE — plus présent ──────────────────────────────── */
.v3-feat-badge {
  border          : 1px solid rgba(255, 255, 255, 0.60);
  box-shadow      : 0 8px 24px rgba(0, 0, 0, 0.12),
                    0 2px 8px rgba(0, 0, 0, 0.08),
                    inset 0 1px 0 rgba(255, 255, 255, 0.50);
  padding         : 14px 20px;
  border-radius   : 18px;
  backdrop-filter : blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background      : rgba(255, 255, 255, 0.72);
}

.v3-feat-badge-num {
  font-size       : clamp(1.6rem, 3vw, 2.2rem);
  font-weight     : 900;
  line-height     : 1;
  letter-spacing  : -0.03em;
}

.v3-feat-badge-label {
  font-size       : 0.75rem;
  font-weight     : 600;
  letter-spacing  : 0.04em;
  color           : #475569;
  margin-top      : 2px;
}

/* ── 5. WHY SECTION — cards premium ────────────────────────────── */
.v3-why-card {
  padding         : 36px 32px;
  border-radius   : 24px;
  background      : #fff;
  border          : 1px solid rgba(0, 0, 0, 0.06);
  box-shadow      : 0 1px 3px rgba(0, 0, 0, 0.04),
                    0 8px 24px rgba(0, 0, 0, 0.05);
  display         : flex;
  flex-direction  : column;
  gap             : 0;
  transition      : transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
                    box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1),
                    border-color 0.28s ease;
}

.v3-why-card:hover {
  transform       : translateY(-6px);
  box-shadow      : 0 2px 4px rgba(0, 0, 0, 0.04),
                    0 16px 48px rgba(0, 102, 204, 0.12),
                    0 4px 12px rgba(0, 0, 0, 0.06);
  border-color    : rgba(0, 102, 204, 0.14);
}

.v3-why-icon {
  margin-bottom   : 22px;
  color           : #0066CC;
}

.v3-why-card h3 {
  font-size       : 1.10rem;
  font-weight     : 800;
  color           : #0f172a;
  letter-spacing  : -0.025em;
  margin          : 0 0 10px;
}

.v3-why-card p {
  font-size       : 0.93rem;
  color           : #64748b;
  line-height     : 1.60;
  margin          : 0;
}

/* ── 6. SPOTLIGHT — section pourquoi bien cadrée ───────────────── */
.v3-spotlight {
  border-radius   : 28px;
  overflow        : hidden;
  margin-bottom   : 48px;
}

.v3-spotlight-text h3 {
  font-size       : clamp(1.6rem, 3.2vw, 2.4rem);
  letter-spacing  : -0.04em;
  line-height     : 1.1;
  margin-bottom   : 16px;
}

.v3-spotlight-text p {
  font-size       : clamp(1rem, 1.6vw, 1.12rem);
  line-height     : 1.62;
  color           : #475569;
  margin-bottom   : 28px;
  max-width       : 46ch;
}

/* ── 7. CTA SECTION — plus impactant ───────────────────────────── */
.v3-cta-eyebrow {
  font-size       : 0.76rem;
  font-weight     : 700;
  letter-spacing  : 0.16em;
  text-transform  : uppercase;
  color           : rgba(255, 255, 255, 0.60);
  margin-bottom   : 20px;
}

.v3-cta-sub {
  font-size       : clamp(1.05rem, 1.8vw, 1.22rem);
  line-height     : 1.58;
  color           : rgba(255, 255, 255, 0.72);
  margin-bottom   : 44px;
}

/* Service links dans le CTA */
.v3-cta-services {
  display         : flex;
  flex-wrap       : wrap;
  gap             : 10px;
  justify-content : center;
  margin-bottom   : 48px;
}

.v3-cta-services a {
  display         : inline-flex;
  align-items     : center;
  padding         : 8px 18px;
  border-radius   : 100px;
  font-size       : 0.82rem;
  font-weight     : 600;
  letter-spacing  : 0.02em;
  color           : rgba(255, 255, 255, 0.85);
  background      : rgba(255, 255, 255, 0.10);
  border          : 1px solid rgba(255, 255, 255, 0.18);
  text-decoration : none;
  transition      : background 0.22s ease, color 0.22s ease;
}

.v3-cta-services a:hover {
  background      : rgba(255, 255, 255, 0.18);
  color           : #fff;
}

/* Boutons CTA bottom — plus de séparation */
.v3-cta-btns {
  gap             : 14px;
  margin-top      : 0;
}

/* Contact cards — plus élégantes */
.v3-contact-card {
  border-radius   : 20px;
  padding         : 18px 22px;
  gap             : 14px;
  border          : 1px solid rgba(255, 255, 255, 0.12);
  background      : rgba(255, 255, 255, 0.08);
  transition      : background 0.24s ease, transform 0.24s ease,
                    border-color 0.24s ease;
}

.v3-contact-card:hover {
  background      : rgba(255, 255, 255, 0.14);
  transform       : translateY(-3px);
  border-color    : rgba(255, 255, 255, 0.22);
}

.v3-contact-card strong {
  font-size       : 0.92rem;
  font-weight     : 700;
}

.v3-contact-card small {
  font-size       : 0.78rem;
  opacity         : 0.65;
}

/* ── 8. BUTTONS — légèrement plus généreux ──────────────────────── */
.btn-primary {
  padding         : 14px 28px;
  font-size       : 0.92rem;
  letter-spacing  : 0.01em;
  border-radius   : 12px;
}

.btn-ghost {
  padding         : 14px 24px;
  font-size       : 0.92rem;
  border-radius   : 12px;
}

/* ── 9. STORY CARDS — finition ──────────────────────────────────── */
.story-card {
  border-radius   : 24px;
  padding         : 32px;
  min-height      : 380px;
}

.story-card h3 {
  font-size       : 1.18rem;
  letter-spacing  : -0.03em;
  font-weight     : 800;
}

.story-card p {
  font-size       : 0.90rem;
  line-height     : 1.55;
  opacity         : 0.72;
}

.story-kicker {
  font-size       : 0.72rem;
  letter-spacing  : 0.12em;
  font-weight     : 700;
  text-transform  : uppercase;
  margin-bottom   : 10px;
}

/* ── 10. HERO PILLS — plus nettes ───────────────────────────────── */
.v3-pills {
  display         : flex;
  flex-wrap       : wrap;
  gap             : 8px;
  margin-top      : 24px;
}

.v3-pills span {
  font-size       : 0.80rem;
  font-weight     : 600;
  color           : #475569;
  background      : rgba(0, 102, 204, 0.05);
  border          : 1px solid rgba(0, 102, 204, 0.12);
  padding         : 6px 14px;
  border-radius   : 100px;
  letter-spacing  : 0.01em;
}

/* ── 11. MOBILE — corrections finales (≤ 768px) ─────────────────── */
@media (max-width: 768px) {
  .v3-feat-img {
    height        : clamp(240px, 55vw, 340px);
  }

  .v3-feat-silver .v3-feat-img {
    height        : clamp(240px, 55vw, 340px);
  }

  /* Section silver : reset transform sur mobile */
  .v3-feat-silver .v3-feat-img {
    transform     : none;
  }

  .v3-feat {
    padding-top   : 64px;
    padding-bottom: 64px;
  }

  .v3-feat-silver {
    padding-top   : 72px;
    padding-bottom: 72px;
  }

  .v3-spotlight-img {
    height        : 240px;
  }

  .v3-why-card {
    padding       : 28px 24px;
  }

  .v3-feat-desc {
    font-size     : 1rem;
    max-width     : none;
  }

  .v3-cta-services {
    gap           : 8px;
  }

  .v3-contact-card {
    border-radius : 16px;
    padding       : 16px 18px;
  }

  .btn-primary,
  .btn-ghost {
    padding       : 13px 22px;
    font-size     : 0.88rem;
  }
}

@media (max-width: 480px) {
  .v3-feat-img {
    height        : clamp(200px, 58vw, 280px);
  }

  .v3-feat-silver .v3-feat-img {
    height        : clamp(200px, 58vw, 280px);
  }

  .v3-feat {
    padding-top   : 52px;
    padding-bottom: 52px;
  }

  .v3-pills span {
    font-size     : 0.74rem;
    padding       : 5px 11px;
  }

  .v3-feat-badge {
    padding       : 10px 14px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   INTÉGRATION IMAGES v11 — Chirurgicale
   Problèmes résolus :
   A. Superposition (translateY silver supprimé)
   B. Effet "cadre rectangle" (box-shadow frame supprimé, remplacé)
   C. Images "posées" → technique gradient fade-to-bg + ambient glow
   D. Ombres colorées sur l'image (box-shadow, pas filter, plus propre)
   ═══════════════════════════════════════════════════════════════════ */

/* ── A. RESET CADRE — le rectangle visible disparaît ────────────── */
/* La box-shadow rectangulaire du frame ÉTAIT la cause #1.           */
/* On la supprime. Les ombres passent sur l'image (suit le radius).  */
.v3-img-frame {
  border-radius : 0;
  overflow      : visible;
  box-shadow    : none;
  filter        : none;
  background    : transparent;
  position      : relative;
  z-index       : 1;
}

/* Suppression du inner-glow rectangulaire (origine ligne 7135) */
.v3-img-frame::after {
  display       : none;
}

/* ── B. FIX SUPERPOSITION SILVER ─────────────────────────────────── */
/* translateY(-16px) clipait le haut, créait du vide en bas.         */
.v3-feat-silver .v3-feat-img {
  transform     : none;
}

/* Section overflow strict — rien ne dépasse de la section */
.v3-feat {
  overflow      : hidden;
}

/* Inner content peut déborder (drop-shadows, badges) */
.v3-feat-inner {
  overflow      : visible;
}

/* ── C. OMBRES COLORÉES SUR L'IMAGE ─────────────────────────────── */
/* box-shadow sur img avec border-radius = ombre qui suit les coins.  */
/* Fini l'effet "rectangule qui flotte" du drop-shadow sur le frame.  */
.v3-feat-blue   .v3-feat-img {
  box-shadow    :
    0 4px 14px rgba(0, 102, 204, 0.13),
    0 16px 40px rgba(0, 102, 204, 0.09),
    0 36px 64px rgba(0, 102, 204, 0.05);
}
.v3-feat-light  .v3-feat-img {
  box-shadow    :
    0 4px 14px rgba(0, 140, 255, 0.11),
    0 16px 40px rgba(0, 140, 255, 0.07),
    0 36px 64px rgba(0, 140, 255, 0.04);
}
.v3-feat-silver .v3-feat-img {
  box-shadow    :
    0 4px 14px rgba(0, 90, 200, 0.13),
    0 20px 44px rgba(0, 90, 200, 0.09),
    0 40px 68px rgba(0, 90, 200, 0.05);
}
.v3-feat-violet .v3-feat-img {
  box-shadow    :
    0 4px 14px rgba(90, 50, 220, 0.13),
    0 16px 40px rgba(90, 50, 220, 0.09),
    0 36px 64px rgba(90, 50, 220, 0.05);
}

/* ── D. BORDER-RADIUS HARMONISÉS ────────────────────────────────── */
/* Coins très asymétriques donnaient un effet "carte découpée".       */
/* On harmonise : plus doux, plus naturel, chaque section unique.     */
.v3-feat-blue   .v3-feat-img { border-radius: 20px 20px 10px 20px; }
.v3-feat-light  .v3-feat-img { border-radius: 10px 20px 20px 20px; }
.v3-feat-silver .v3-feat-img { border-radius: 20px; }
.v3-feat-violet .v3-feat-img { border-radius: 20px 10px 20px 20px; }

/* ── E. GRADIENT FADE-TO-BG — l'image fond dans la section ─────── */
/* Technique Stripe/Framer : gradient du bas (couleur section)        */
/* → transparent vers le haut. L'image "se dissout" naturellement.   */
/* Basé sur les couleurs bottom de chaque linear-gradient de section. */

/* Section 01 blue — bottom: #f7fbff */
.v3-feat-blue .v3-img-frame::after {
  display       : block;
  content       : "";
  position      : absolute;
  bottom        : 0;
  left          : 0;
  right         : 0;
  height        : 55%;
  background    : linear-gradient(
    to top,
    rgba(216, 238, 255, 0.97)  0%,
    rgba(230, 244, 255, 0.70) 22%,
    rgba(240, 248, 255, 0.35) 48%,
    rgba(247, 251, 255, 0.08) 72%,
    transparent               92%
  );
  pointer-events: none;
  z-index       : 2;
}

/* Section 02 light — bottom: #fafcff */
.v3-feat-light .v3-img-frame::after {
  display       : block;
  content       : "";
  position      : absolute;
  bottom        : 0;
  left          : 0;
  right         : 0;
  height        : 52%;
  background    : linear-gradient(
    to top,
    rgba(226, 242, 255, 0.96)  0%,
    rgba(238, 248, 255, 0.68) 22%,
    rgba(245, 251, 255, 0.30) 50%,
    rgba(250, 252, 255, 0.06) 74%,
    transparent               92%
  );
  pointer-events: none;
  z-index       : 2;
}

/* Section 03 silver — bottom: #f4faff */
.v3-feat-silver .v3-img-frame::after {
  display       : block;
  content       : "";
  position      : absolute;
  bottom        : 0;
  left          : 0;
  right         : 0;
  height        : 55%;
  background    : linear-gradient(
    to top,
    rgba(200, 221, 245, 0.97)  0%,
    rgba(218, 234, 249, 0.70) 22%,
    rgba(234, 244, 252, 0.34) 48%,
    rgba(244, 250, 255, 0.08) 72%,
    transparent               92%
  );
  pointer-events: none;
  z-index       : 2;
}

/* Section 04 violet — bottom: #f5f2ff */
.v3-feat-violet .v3-img-frame::after {
  display       : block;
  content       : "";
  position      : absolute;
  bottom        : 0;
  left          : 0;
  right         : 0;
  height        : 52%;
  background    : linear-gradient(
    to top,
    rgba(206, 192, 248, 0.96)  0%,
    rgba(224, 216, 255, 0.68) 22%,
    rgba(237, 232, 255, 0.30) 50%,
    rgba(245, 242, 255, 0.06) 74%,
    transparent               92%
  );
  pointer-events: none;
  z-index       : 2;
}

/* ── F. AMBIENT GLOW — halo de lumière derrière le mockup ───────── */
/* Technique Apple : lumière colorée qui semble rayonner de l'écran.  */
/* Crée la sensation que l'image appartient à la section.             */
.v3-feat-media {
  position      : relative;
  align-self    : center;
  align-items   : center;
}

.v3-feat-blue .v3-feat-media::before,
.v3-feat-light .v3-feat-media::before,
.v3-feat-silver .v3-feat-media::before,
.v3-feat-violet .v3-feat-media::before {
  content       : "";
  position      : absolute;
  inset         : -8%;
  pointer-events: none;
  z-index       : 0;
}

.v3-feat-blue .v3-feat-media::before {
  background: radial-gradient(ellipse 80% 65% at 50% 58%,
    rgba(0, 102, 204, 0.14) 0%,
    rgba(56, 130, 246, 0.06) 48%,
    transparent 78%
  );
}
.v3-feat-light .v3-feat-media::before {
  background: radial-gradient(ellipse 80% 65% at 50% 58%,
    rgba(0, 140, 255, 0.12) 0%,
    rgba(56, 178, 255, 0.05) 48%,
    transparent 78%
  );
}
.v3-feat-silver .v3-feat-media::before {
  background: radial-gradient(ellipse 80% 65% at 50% 58%,
    rgba(0, 90, 200, 0.14) 0%,
    rgba(0, 120, 220, 0.06) 48%,
    transparent 78%
  );
}
.v3-feat-violet .v3-feat-media::before {
  background: radial-gradient(ellipse 80% 65% at 50% 58%,
    rgba(100, 60, 240, 0.14) 0%,
    rgba(120, 80, 240, 0.06) 48%,
    transparent 78%
  );
}

/* ── G. BADGE — position relative à .v3-feat-media ─────────────── */
/* Après l'ajout de position: relative sur .v3-feat-media, le badge  */
/* se positionne correctement dans la zone media (et non plus inner). */
.v3-feat-badge {
  position      : absolute;
  bottom        : 20px;
  right         : 0;
  z-index       : 10;
}

.v3-feat-flip .v3-feat-badge {
  right         : auto;
  left          : 0;
}

/* ── H. MOBILE — fades adaptés, aucun débordement ───────────────── */
@media (max-width: 768px) {
  /* Fades réduits — moins de hauteur d'image sur mobile */
  .v3-feat-blue   .v3-img-frame::after,
  .v3-feat-light  .v3-img-frame::after,
  .v3-feat-silver .v3-img-frame::after,
  .v3-feat-violet .v3-img-frame::after {
    height        : 38%;
  }

  /* Glows réduits sur mobile (perf + lisibilité) */
  .v3-feat-blue   .v3-feat-media::before,
  .v3-feat-light  .v3-feat-media::before,
  .v3-feat-silver .v3-feat-media::before,
  .v3-feat-violet .v3-feat-media::before {
    opacity       : 0.5;
  }

  /* Radius uniforme mobile */
  .v3-feat-blue   .v3-feat-img,
  .v3-feat-light  .v3-feat-img,
  .v3-feat-silver .v3-feat-img,
  .v3-feat-violet .v3-feat-img {
    border-radius : 14px;
  }

  /* Ombres réduites sur mobile */
  .v3-feat-blue   .v3-feat-img,
  .v3-feat-light  .v3-feat-img,
  .v3-feat-silver .v3-feat-img,
  .v3-feat-violet .v3-feat-img {
    box-shadow    : 0 4px 16px rgba(0, 0, 0, 0.10);
  }
}

@media (max-width: 480px) {
  .v3-feat-blue   .v3-feat-img,
  .v3-feat-light  .v3-feat-img,
  .v3-feat-silver .v3-feat-img,
  .v3-feat-violet .v3-feat-img {
    border-radius : 10px;
    box-shadow    : 0 3px 12px rgba(0, 0, 0, 0.09);
  }

  .v3-feat-blue   .v3-img-frame::after,
  .v3-feat-light  .v3-img-frame::after,
  .v3-feat-silver .v3-img-frame::after,
  .v3-feat-violet .v3-img-frame::after {
    height        : 28%;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   PASSE PREMIUM FINALE v12 — Debug précis + intégration images
   Objectif : zéro voile · zéro rectangle · zéro overflow · naturel
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. KILL VOILE BLANC — suppression totale des gradients v11 ──── */
/* Le gradient ::after à 0.97 d'opacité sur images JPEG foncées      */
/* créait un voile coloré brutal (light blue sur image sombre = bug). */
/* Techniquement : même selector → v12 (positionné après) gagne.     */
.v3-feat-blue   .v3-img-frame::after,
.v3-feat-light  .v3-img-frame::after,
.v3-feat-silver .v3-img-frame::after,
.v3-feat-violet .v3-img-frame::after {
  display       : none;
}

/* ── 2. RESET IMG-FRAME — état final propre ─────────────────────── */
/* Un seul système, pas de conflits. Frame = conteneur transparent.  */
.v3-img-frame {
  border-radius : 0;
  overflow      : visible;
  box-shadow    : none;
  filter        : none;
  background    : transparent;
  position      : relative;
  z-index       : 1;
}

/* ── 3. CSS MASK-IMAGE — fade naturel sans overlay visible ────────── */
/* Technique propre : l'image elle-même devient transparente en bas.  */
/* La section background remonte à travers l'image — zéro couche.     */
/* Compatible Chrome/Safari/Firefox. Suit aussi le box-shadow.        */
.v3-feat-blue   .v3-feat-img,
.v3-feat-light  .v3-feat-img,
.v3-feat-silver .v3-feat-img,
.v3-feat-violet .v3-feat-img {
  -webkit-mask-image : linear-gradient(
    to top,
    transparent           0%,
    rgba(0, 0, 0, 0.55)  10%,
    rgba(0, 0, 0, 0.90)  20%,
    black                 32%
  );
  mask-image : linear-gradient(
    to top,
    transparent           0%,
    rgba(0, 0, 0, 0.55)  10%,
    rgba(0, 0, 0, 0.90)  20%,
    black                 32%
  );
}

/* ── 4. OMBRES COLORÉES — très douces, sur l'image (suit le radius) */
/* box-shadow sur img avec border-radius → ombre suit les coins.      */
/* Reset complet des ombres conflictuelles des passes précédentes.    */
.v3-feat-blue   .v3-feat-img {
  box-shadow :
    0 2px 12px rgba(0,   102, 204, 0.09),
    0 12px 36px rgba(0,   102, 204, 0.06);
}
.v3-feat-light  .v3-feat-img {
  box-shadow :
    0 2px 12px rgba(0,   140, 255, 0.08),
    0 12px 36px rgba(0,   140, 255, 0.05);
}
.v3-feat-silver .v3-feat-img {
  box-shadow :
    0 2px 12px rgba(0,    90, 200, 0.09),
    0 14px 40px rgba(0,    90, 200, 0.06);
}
.v3-feat-violet .v3-feat-img {
  box-shadow :
    0 2px 12px rgba(90,   50, 220, 0.09),
    0 12px 36px rgba(90,   50, 220, 0.06);
}

/* ── 5. TAILLES IMAGES — réduites pour respiration naturelle ──────── */
/* 560px était trop grand → images qui "mangent" la section.          */
/* 480px desktop = ratio noble, section respire des deux côtés.       */
.v3-feat-img {
  height      : clamp(360px, 42vh, 480px);
  object-fit  : cover;
  display     : block;
  width       : 100%;
}

/* Section 03 silver (centerpiece) : légèrement plus grande */
.v3-feat-silver .v3-feat-img {
  height      : clamp(380px, 44vh, 500px);
}

/* ── 6. BORDER-RADIUS — épuré, cohérent ─────────────────────────── */
/* Masque + radius = coins nets + bas fondu. Naturel. */
.v3-feat-blue   .v3-feat-img { border-radius: 20px; }
.v3-feat-light  .v3-feat-img { border-radius: 20px; }
.v3-feat-silver .v3-feat-img { border-radius: 20px; transform: none; }
.v3-feat-violet .v3-feat-img { border-radius: 20px; }

/* ── 7. HERO IMAGE — clean, sans filter competing ────────────────── */
/* filter: drop-shadow sur JPEG trace le rectangle complet = boîte.  */
/* On passe à box-shadow direct sur l'image hero.                     */
.v3-hero-img {
  filter        : none;
  box-shadow    :
    0 6px 24px rgba(0, 0, 0, 0.11),
    0 20px 56px rgba(0, 102, 204, 0.09);
  border-radius : 20px;
  object-fit    : cover;
  object-position: center 20%;
  max-height    : 520px;
  width         : 100%;
}

/* ── 8. HERO SHINE — suppression overlay rectangle ──────────────── */
/* v3-hero-img-shine créait un reflet rectangulaire visible.         */
.v3-hero-img-shine {
  display       : none;
}

/* ── 9. SECTION FEAT — overflow propre ──────────────────────────── */
.v3-feat {
  overflow        : hidden;   /* Section clippe tout */
  padding-top     : clamp(72px, 9vw, 108px);
  padding-bottom  : clamp(72px, 9vw, 108px);
}
.v3-feat-silver {
  padding-top     : clamp(96px, 11vw, 128px);
  padding-bottom  : clamp(96px, 11vw, 128px);
}

/* Inner peut déborder (drop-shadows, badges) */
.v3-feat-inner {
  overflow      : visible;
}

/* ── 10. BADGE — positionnement propre dans la zone media ────────── */
/* right: -8px causait un clip par overflow:hidden de la section.     */
/* On garde dans les bornes de .v3-feat-media (right: 4px).           */
.v3-feat-badge {
  position    : absolute;
  bottom      : 20px;
  right       : 4px;
  z-index     : 10;
}

.v3-feat-flip .v3-feat-badge {
  right       : auto;
  left        : 4px;
}

/* ── 11. MEDIA — alignment propre ────────────────────────────────── */
.v3-feat-media {
  position    : relative;
  align-self  : center;
  align-items : center;
  overflow    : visible; /* badges et ombres visibles */
}

/* Glows ambient — opacité réduite pour être subliminal */
.v3-feat-blue   .v3-feat-media::before,
.v3-feat-light  .v3-feat-media::before,
.v3-feat-silver .v3-feat-media::before,
.v3-feat-violet .v3-feat-media::before {
  opacity: 0.70; /* Réduit de 1.0 → 0.70 pour plus de subtilité */
}

/* ── 12. SPOTLIGHT — image propre ────────────────────────────────── */
.v3-spotlight-img {
  border-radius   : 16px;
  height          : 400px;
  object-fit      : cover;
  object-position : center 20%;
  box-shadow      :
    0 4px 16px rgba(0, 0, 0, 0.08),
    0 16px 40px rgba(0, 0, 0, 0.05);
}

/* ── 13. HOVER SCALE — légèrement réduit (moins agressif) ───────── */
.v3-feat:hover .v3-feat-img {
  transform     : scale(1.022);
}

/* ── 14. MOBILE v12 — corrections finales ────────────────────────── */
@media (max-width: 768px) {

  .v3-feat-img {
    height      : clamp(220px, 52vw, 320px);
  }
  .v3-feat-silver .v3-feat-img {
    height      : clamp(220px, 52vw, 320px);
  }

  /* Masque plus court sur mobile — images plus petites */
  .v3-feat-blue   .v3-feat-img,
  .v3-feat-light  .v3-feat-img,
  .v3-feat-silver .v3-feat-img,
  .v3-feat-violet .v3-feat-img {
    -webkit-mask-image : linear-gradient(
      to top,
      transparent          0%,
      rgba(0, 0, 0, 0.65)  8%,
      black               20%
    );
    mask-image : linear-gradient(
      to top,
      transparent          0%,
      rgba(0, 0, 0, 0.65)  8%,
      black               20%
    );
  }

  .v3-feat {
    padding-top   : 60px;
    padding-bottom: 60px;
    overflow      : hidden;
  }

  .v3-feat-silver {
    padding-top   : 72px;
    padding-bottom: 72px;
  }

  .v3-spotlight-img {
    height      : 220px;
  }

  /* Badge reste à l'intérieur de la section sur mobile */
  .v3-feat-badge,
  .v3-feat-flip .v3-feat-badge {
    right       : 0;
    left        : auto;
    bottom      : 14px;
  }
  .v3-feat-flip .v3-feat-badge {
    left        : 0;
    right       : auto;
  }
}

@media (max-width: 480px) {
  .v3-feat-img {
    height      : clamp(180px, 56vw, 256px);
  }
  .v3-feat-silver .v3-feat-img {
    height      : clamp(180px, 56vw, 256px);
  }

  .v3-feat-blue   .v3-feat-img,
  .v3-feat-light  .v3-feat-img,
  .v3-feat-silver .v3-feat-img,
  .v3-feat-violet .v3-feat-img {
    -webkit-mask-image : linear-gradient(
      to top,
      transparent          0%,
      rgba(0, 0, 0, 0.70)  6%,
      black               16%
    );
    mask-image : linear-gradient(
      to top,
      transparent          0%,
      rgba(0, 0, 0, 0.70)  6%,
      black               16%
    );
    border-radius: 12px;
    box-shadow   : 0 3px 12px rgba(0, 0, 0, 0.08);
  }

  .v3-feat {
    padding-top   : 48px;
    padding-bottom: 48px;
  }

  .v3-feat-silver {
    padding-top   : 56px;
    padding-bottom: 56px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   ASSET CLASSES v14 — 3 traitements selon type d'image
   .v3-img-png       → PNG transparent (final 3, FINAL 6)
   .v3-img-white-bg  → Fond blanc (Final 7, final5) → multiply trick
   .v3-img-cover-dark → Photo avec fond (final4) → cover + mask
   ═══════════════════════════════════════════════════════════════════ */

/* ── CLASSE 1 : PNG TRANSPARENT ─────────────────────────────────── */
/* Sections 01 (menu) + 04 (publicité)                               */
/* drop-shadow suit le contour du PNG → image flotte naturellement   */
.v3-feat-img.v3-img-png {
  object-fit          : contain;
  object-position     : center bottom;
  border-radius       : 0;
  background          : transparent;
  -webkit-mask-image  : none;
  mask-image          : none;
  box-shadow          : none;
  filter              :
    drop-shadow(0 10px 28px rgba(0, 0, 0, 0.14))
    drop-shadow(0 28px 56px rgba(0, 0, 0, 0.08));
}

/* Couleurs d'ombre par section pour les PNG */
.v3-feat-blue  .v3-feat-img.v3-img-png {
  filter:
    drop-shadow(0 10px 28px rgba(0, 102, 204, 0.18))
    drop-shadow(0 28px 60px rgba(0, 102, 204, 0.09))
    drop-shadow(0 0 0 transparent); /* force GPU */
}

.v3-feat-violet .v3-feat-img.v3-img-png {
  filter:
    drop-shadow(0 10px 28px rgba(80, 40, 220, 0.17))
    drop-shadow(0 28px 60px rgba(80, 40, 220, 0.09));
}

/* Frame → fond section pour que contain soit invisible */
.v3-feat-blue  .v3-img-frame:has(.v3-img-png)  { background: transparent; }
.v3-feat-violet .v3-img-frame:has(.v3-img-png) { background: transparent; }

/* ── CLASSE 2 : FOND BLANC — mix-blend-mode multiply ────────────── */
/* Sections 03 (sites) + 05 (identité)                               */
/* multiply : blanc × couleur section = couleur section              */
/* → le fond blanc disparaît, le contenu reste visible               */
.v3-feat-img.v3-img-white-bg {
  object-fit          : contain;
  object-position     : center bottom;
  border-radius       : 0;
  -webkit-mask-image  : none;
  mask-image          : none;
  box-shadow          : none;
  mix-blend-mode      : multiply;
  background          : transparent;
  filter              : none;
}

/* Le frame a le fond section → multiply fonctionne correctement */
.v3-feat-silver .v3-img-frame:has(.v3-img-white-bg) {
  background: #eaf4fc; /* fond section silver */
}
.v3-feat-blue .v3-img-frame:has(.v3-img-white-bg) {
  background: #f0f8ff; /* fond section blue (section 05) */
}

/* ── CLASSE 3 : PHOTO AVEC FOND (final4 NFC) ────────────────────── */
/* Section 02 : photo main + badge NFC → fond réel, keep cover       */
.v3-feat-img.v3-img-cover-dark {
  object-fit          : cover;
  object-position     : center 30%;
  border-radius       : 20px;
  mix-blend-mode      : normal;
  -webkit-mask-image  : linear-gradient(
    to top,
    rgba(0, 0, 0, 0)    0%,
    rgba(0, 0, 0, 0.50) 10%,
    black               25%
  );
  mask-image          : linear-gradient(
    to top,
    rgba(0, 0, 0, 0)    0%,
    rgba(0, 0, 0, 0.50) 10%,
    black               25%
  );
  box-shadow:
    0 4px 16px rgba(0, 140, 255, 0.11),
    0 16px 40px rgba(0, 140, 255, 0.07);
}

/* ── AJUSTEMENT OBJECT-POSITION PAR IMAGE ────────────────────────── */
/* Fine-tuning de cadrage pour chaque asset spécifique               */

/* final 3 (iPhone menu incliné) — légèrement vers le bas            */
.v3-feat-blue .v3-feat-img.v3-img-png {
  object-position: center 90%;
}

/* FINAL 6 (iPhone Google Maps) — centré, légèrement haut            */
.v3-feat-violet .v3-feat-img.v3-img-png {
  object-position: center 80%;
}

/* final5 (MacBook site) — centré                                     */
.v3-feat-silver .v3-feat-img.v3-img-white-bg {
  object-position: center 60%;
}

/* Final 7 (pack identité) — légèrement centré haut                  */
.v3-feat-blue .v3-feat-img.v3-img-white-bg {
  object-position: center 40%;
}

/* ── MOBILE — reset multiply et drop-shadow (perf) ────────────────── */
@media (max-width: 768px) {
  .v3-feat-img.v3-img-png,
  .v3-feat-img.v3-img-white-bg {
    object-fit      : cover;
    object-position : center 30%;
    border-radius   : 16px 16px 0 0;
  }

  .v3-feat-img.v3-img-png {
    filter          :
      drop-shadow(0 6px 16px rgba(0, 0, 0, 0.12));
  }

  .v3-feat-img.v3-img-white-bg {
    mix-blend-mode  : multiply;
  }

  .v3-feat-img.v3-img-cover-dark {
    object-position : center 20%;
    border-radius   : 16px 16px 0 0;
  }
}

@media (max-width: 480px) {
  .v3-feat-img.v3-img-png,
  .v3-feat-img.v3-img-white-bg,
  .v3-feat-img.v3-img-cover-dark {
    border-radius   : 12px 12px 0 0;
    filter          : none;
    box-shadow      : 0 4px 16px rgba(0, 0, 0, 0.09);
    -webkit-mask-image: none;
    mask-image      : none;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   FINITION ASSETS v13 — PNG-Ready + Layout Fix + Polish final
   ═══════════════════════════════════════════════════════════════════

   DOUBLE-PADDING BUG :
   .v3-feat-inner (original) = padding-top: 80px
   .v3-feat (v12) = padding-top: 72-108px
   Total = 152-188px de vide en haut → trop. Fix ci-dessous.

   PNG-READY ARCHITECTURE :
   Pour remplacer un asset JPEG par un PNG transparent :
   1. Remplacer le fichier image (même nom)
   2. Ajouter class "v3-img-png" sur l'élément <img>
   3. CSS bascule automatiquement sur le rendu PNG premium
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. FIX DOUBLE-PADDING — correction critique ─────────────────── */
/* Le inner avait padding-top: 80px ET la section padding-top: 72-108px */
/* = jusqu'à 188px de vide. On reset le inner, section gère le spacing. */
.v3-feat-inner {
  padding-top     : 0;
  padding-bottom  : 48px;  /* cushion en bas pour respiration équilibrée */
}

/* ── 2. SECTION PADDING — valeurs finales calibrées ─────────────── */
/* Unique source de vérité pour l'espacement vertical des sections.  */
.v3-feat {
  padding-top     : clamp(64px, 8vw, 96px);
  padding-bottom  : clamp(64px, 8vw, 96px);
}

.v3-feat-silver {
  padding-top     : clamp(80px, 10vw, 112px);
  padding-bottom  : clamp(80px, 10vw, 112px);
}

/* ── 3. IMG-FRAME — arrière-plan par section ────────────────────── */
/* Clé de l'intégration PNG :                                         */
/* Le fond du frame = couleur de la section → PNG + JPEG s'intègrent. */
/* JPEG : la couleur comble l'espace autour (pas de rectangle blanc).  */
/* PNG transparent : la couleur de section montre à travers.           */

.v3-img-frame {
  border-radius   : 0;
  overflow        : visible;
  box-shadow      : none;
  filter          : none;
  background      : transparent;
  position        : relative;
  z-index         : 1;
}

/* Fond frame = couleur bottom du gradient de section */
.v3-feat-blue   .v3-img-frame { background: #f0f8ff; }
.v3-feat-light  .v3-img-frame { background: #f5fbff; }
.v3-feat-silver .v3-img-frame { background: #eaf4fc; }
.v3-feat-violet .v3-img-frame { background: #ede8ff; }

/* ── 4. FEAT-IMG — object-fit CONTAIN pour PNG naturel ──────────── */
/* contain = l'image entière visible, sans crop.                       */
/* JPEG : fond frame comble les bandes latérales (invisible).          */
/* PNG : zones transparentes = fond section visible = image flottante. */
.v3-feat-img {
  object-fit      : contain;
  object-position : center bottom;  /* mockup assis au bas du frame */
  height          : clamp(340px, 42vh, 460px);
  width           : 100%;
  display         : block;
  border-radius   : 20px 20px 0 0; /* radius en haut seulement */
  box-shadow      : none;
  -webkit-mask-image: none;
  mask-image      : none;
}

/* Sections avec JPEG dark → on garde le masque fade pour lisibilité */
.v3-feat-blue   .v3-feat-img,
.v3-feat-light  .v3-feat-img,
.v3-feat-silver .v3-feat-img,
.v3-feat-violet .v3-feat-img {
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0)    0%,
    rgba(0, 0, 0, 0.45) 8%,
    black               22%
  );
  mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0)    0%,
    rgba(0, 0, 0, 0.45) 8%,
    black               22%
  );
}

/* Silver centerpiece — légèrement plus grande */
.v3-feat-silver .v3-feat-img {
  height          : clamp(360px, 44vh, 480px);
}

/* ── 5. PNG-READY CLASS — basculer d'un JPEG à un PNG en 2 secondes */
/*                                                                     */
/* Usage : ajouter class="v3-feat-img v3-img-png" sur l'<img>         */
/* Résultat : rendu Apple product shot automatique                      */
.v3-feat-img.v3-img-png {
  object-fit      : contain;
  object-position : center center;
  border-radius   : 0;             /* PNG forme son propre contour */
  background      : transparent;

  /* Suppression mask — PNG a sa propre transparence */
  -webkit-mask-image: none;
  mask-image      : none;

  /* Suppression box-shadow rectangulaire */
  box-shadow      : none;

  /* Drop-shadow suit le contour du PNG, pas son rectangle */
  filter          :
    drop-shadow(0 12px 32px rgba(0, 0, 0, 0.13))
    drop-shadow(0 32px 64px rgba(0, 0, 0, 0.07));
}

/* Drop-shadows colorées par section pour PNG */
.v3-feat-blue   .v3-feat-img.v3-img-png {
  filter:
    drop-shadow(0 8px 24px rgba(0, 102, 204, 0.18))
    drop-shadow(0 24px 56px rgba(0, 102, 204, 0.09));
}
.v3-feat-light  .v3-feat-img.v3-img-png {
  filter:
    drop-shadow(0 8px 24px rgba(0, 140, 255, 0.15))
    drop-shadow(0 24px 56px rgba(0, 140, 255, 0.08));
}
.v3-feat-silver .v3-feat-img.v3-img-png {
  filter:
    drop-shadow(0 8px 24px rgba(0, 90, 200, 0.18))
    drop-shadow(0 28px 60px rgba(0, 90, 200, 0.09));
}
.v3-feat-violet .v3-feat-img.v3-img-png {
  filter:
    drop-shadow(0 8px 24px rgba(90, 50, 220, 0.18))
    drop-shadow(0 24px 56px rgba(90, 50, 220, 0.09));
}

/* PNG sur section silver — légèrement surélevé pour effet floating */
.v3-feat-silver .v3-feat-img.v3-img-png {
  transform       : translateY(-12px);
}

/* ── 6. BADGE — ancre sur .v3-feat-media, propre ───────────────── */
.v3-feat-media {
  position        : relative;
  align-self      : end;      /* retour à end : image + badge alignés en bas */
  align-items     : flex-end;
  overflow        : visible;
}

.v3-feat-badge {
  position        : absolute;
  bottom          : 0;        /* au niveau du bas de l'image */
  right           : 8px;
  z-index         : 10;
  transform       : translateY(50%); /* chevauche légèrement le bas */
}

.v3-feat-flip .v3-feat-badge {
  right           : auto;
  left            : 8px;
}

/* ── 7. HERO IMAGE — grande, propre, bien intégrée ──────────────── */
.v3-hero-img {
  display         : block;
  width           : 100%;
  height          : auto;
  min-height      : clamp(360px, 52vh, 580px);
  max-height      : none;           /* supprime l'ancien plafond 500px */
  object-fit      : cover;
  object-position : center 20%;
  border-radius   : 20px;
  filter          : none;
  -webkit-mask-image: none;
  mask-image      : none;
  box-shadow      :
    0 6px 24px rgba(0, 0, 0, 0.12),
    0 24px 64px rgba(0, 102, 204, 0.10),
    0 48px 96px rgba(0, 40, 160, 0.07);
}

/* Hero img-wrap — overflow hidden pour radius */
.v3-hero-img-wrap {
  border-radius   : 20px;
  overflow        : hidden;
  width           : 100%;
  height          : auto;
  min-height      : clamp(360px, 52vh, 580px);
}

/* ── 8. SPOTLIGHT IMAGE — finale ────────────────────────────────── */
.v3-spotlight-img {
  border-radius   : 20px;
  height          : clamp(300px, 36vh, 420px);
  object-fit      : cover;
  object-position : center 20%;
  width           : 100%;
  box-shadow      :
    0 4px 16px rgba(0, 0, 0, 0.08),
    0 16px 40px rgba(0, 0, 0, 0.05);
  -webkit-mask-image: none;
  mask-image      : none;
}

/* ── 9. FEAT SECTION — overflow propre, clean ───────────────────── */
.v3-feat {
  overflow        : hidden;
  position        : relative;
}

.v3-feat-inner {
  position        : relative;
  z-index         : 1;
  overflow        : visible;
}

/* ── 10. HOVER — scale plus discret ─────────────────────────────── */
.v3-feat:hover .v3-feat-img {
  transform       : scale(1.018);
}

/* Override hover pour PNG (transform = floating) */
.v3-feat-silver .v3-feat-img.v3-img-png:hover {
  transform       : translateY(-12px) scale(1.012);
}

/* ── 11. RESPONSIVE v13 ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .v3-feat-inner {
    padding-top   : 0;
    padding-bottom: 40px;
    gap           : clamp(32px, 5vw, 64px);
  }
  .v3-feat {
    padding-top   : clamp(56px, 7vw, 80px);
    padding-bottom: clamp(56px, 7vw, 80px);
  }
  .v3-feat-silver {
    padding-top   : clamp(64px, 8vw, 96px);
    padding-bottom: clamp(64px, 8vw, 96px);
  }
}

@media (max-width: 768px) {
  /* Stack vertical */
  .v3-feat-inner {
    grid-template-columns: 1fr;
    padding-top   : 0;
    padding-bottom: 0;
    gap           : 32px;
    padding-left  : clamp(20px, 5vw, 40px);
    padding-right : clamp(20px, 5vw, 40px);
  }

  .v3-feat {
    padding-top   : 56px;
    padding-bottom: 0;   /* image colle au bas de la section = beau */
  }

  .v3-feat-silver {
    padding-top   : 64px;
    padding-bottom: 0;
  }

  .v3-feat-img {
    height        : clamp(220px, 56vw, 320px);
    border-radius : 16px 16px 0 0;
    object-fit    : cover; /* sur mobile, cover est plus propre que contain */
    object-position: center 20%;
  }

  .v3-feat-silver .v3-feat-img {
    height        : clamp(220px, 56vw, 320px);
  }

  /* Badge sur mobile — coincé en bas à droite de l'image */
  .v3-feat-badge {
    right         : 12px;
    transform     : translateY(40%);
  }

  .v3-feat-flip .v3-feat-badge {
    right         : auto;
    left          : 12px;
  }

  /* Media mobile — pleine largeur */
  .v3-feat-media {
    width         : 100%;
    padding       : 0;
  }

  /* PNG sur mobile — switch sur cover aussi */
  .v3-feat-img.v3-img-png {
    object-fit    : cover;
    border-radius : 16px 16px 0 0;
    filter        : none;
    box-shadow    : 0 4px 20px rgba(0, 0, 0, 0.10);
  }

  .v3-feat-silver .v3-feat-img.v3-img-png {
    transform     : none;
  }
}

@media (max-width: 480px) {
  .v3-feat {
    padding-top   : 44px;
  }
  .v3-feat-silver {
    padding-top   : 52px;
  }
  .v3-feat-img {
    height        : clamp(180px, 60vw, 260px);
    border-radius : 12px 12px 0 0;
  }
  .v3-feat-silver .v3-feat-img {
    height        : clamp(180px, 60vw, 260px);
  }
  .v3-feat-badge {
    right         : 8px;
    transform     : translateY(35%);
    padding       : 8px 12px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   PNG DIRECT FIX v15 — Classe explicite v3-frame-png sur le HTML
   ═══════════════════════════════════════════════════════════════════
   Pas de :has() (risque compatibilité). La classe v3-frame-png est
   posée directement sur le div.v3-img-frame dans le HTML.
   Même logique pour v3-media-png sur le div.v3-feat-media.
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. FRAME PNG — reset total, sans aucune ambiguïté ───────────── */
.v3-frame-png {
  overflow       : visible    !important;
  box-shadow     : none       !important;
  border-radius  : 0          !important;
  background     : transparent !important;
  filter         : none       !important;
  padding        : 0          !important;
  border         : none       !important;
  outline        : none       !important;
}

.v3-frame-png::before,
.v3-frame-png::after {
  display        : none       !important;
}

/* ── 2. MEDIA PNG — overflow visible ──────────────────────────────── */
.v3-media-png {
  overflow       : visible    !important;
}

/* ── 3. IMAGE PNG — traitement complet ────────────────────────────── */
/*
   height: auto → pas de boîte rectangulaire fixe.
   La hauteur suit le PNG réel, pas un clamp arbitraire.
   drop-shadow suit le CONTOUR du PNG transparent (≠ box-shadow rect).
*/
.v3-feat-img.v3-img-png {
  height            : auto    !important;
  max-height        : clamp(360px, 50vh, 520px) !important;
  width             : 100%    !important;
  object-fit        : contain !important;
  object-position   : center bottom !important;
  border-radius     : 0       !important;
  background        : transparent !important;
  -webkit-mask-image: none    !important;
  mask-image        : none    !important;
  box-shadow        : none    !important;
  mix-blend-mode    : normal  !important;
  display           : block   !important;
  filter            :
    drop-shadow(0 14px 36px rgba(0, 0, 0, 0.13))
    drop-shadow(0 36px 72px rgba(0, 0, 0, 0.06)) !important;
}

/* ── 4. DROP-SHADOWS COLORÉES PAR SECTION ─────────────────────────── */
.v3-feat-blue .v3-feat-img.v3-img-png {
  filter:
    drop-shadow(0 12px 30px rgba(0, 102, 204, 0.22))
    drop-shadow(0 30px 64px rgba(0, 102, 204, 0.11)) !important;
  object-position : center 88% !important;
}

.v3-feat-violet .v3-feat-img.v3-img-png {
  filter:
    drop-shadow(0 12px 30px rgba(80, 40, 220, 0.20))
    drop-shadow(0 30px 64px rgba(80, 40, 220, 0.10)) !important;
  object-position : center 82% !important;
}

.v3-feat-silver .v3-feat-img.v3-img-png {
  filter:
    drop-shadow(0 12px 30px rgba(0, 90, 200, 0.20))
    drop-shadow(0 30px 64px rgba(0, 90, 200, 0.10)) !important;
  transform       : translateY(-14px) !important;
}

/* ── 5. HOVER PNG — translateY discret, pas de scale ─────────────── */
.v3-feat:hover .v3-feat-img.v3-img-png {
  transform       : translateY(-8px)  !important;
}
.v3-feat-silver:hover .v3-feat-img.v3-img-png {
  transform       : translateY(-22px) !important;
}

/* ── 6. MOBILE ────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .v3-frame-png {
    overflow     : visible    !important;
    background   : transparent !important;
    box-shadow   : none       !important;
  }
  .v3-feat-img.v3-img-png {
    height       : auto       !important;
    max-height   : clamp(260px, 60vw, 360px) !important;
    object-fit   : contain    !important;
    object-position: center center !important;
    border-radius: 0          !important;
    -webkit-mask-image: none  !important;
    mask-image   : none       !important;
    filter       :
      drop-shadow(0 8px 20px rgba(0, 0, 0, 0.13)) !important;
  }
  .v3-feat-silver .v3-feat-img.v3-img-png {
    transform    : none       !important;
  }
}

@media (max-width: 480px) {
  .v3-feat-img.v3-img-png {
    max-height   : clamp(200px, 64vw, 300px) !important;
    filter       : drop-shadow(0 5px 14px rgba(0, 0, 0, 0.11)) !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   HERO FIX v16 — Badges visibles + image carte arrondie
   ═══════════════════════════════════════════════════════════════════ */

/* 1. Badges flottants — z-index au-dessus de l'image (cause : img-wrap
      a z-index:1, les floats n'avaient pas de z-index → derrière)   */
.v3-float {
  z-index         : 20 !important;
}

/* 2. Img-wrap — z-index 0, laisse les badges passer devant          */
.v3-hero-img-wrap {
  z-index         : 0 !important;
  width           : 100% !important;
  height          : auto !important;
  border-radius   : 20px !important;   /* arrondi sur TOUS les côtés */
  overflow        : hidden !important;
  box-shadow      :
    0 8px 32px rgba(0, 0, 0, 0.13),
    0 32px 80px rgba(0, 102, 204, 0.11) !important;
}

/* 3. Image — remplit le wrap, arrondie partout, bien cadrée         */
.v3-hero-img {
  width           : 100% !important;
  height          : clamp(420px, 58vh, 640px) !important;
  max-height      : none !important;
  min-height      : 0 !important;
  object-fit      : cover !important;
  object-position : center 18% !important;
  border-radius   : 0 !important;
  display         : block !important;
}

/* 4. Visual — overflow visible pour que les badges ne soient pas
      coupés par la section                                          */
.v3-hero-visual {
  overflow        : visible !important;
  align-self      : center !important;
  padding-bottom  : 24px !important;
}

/* 5. Section — overflow visible pour badges qui dépassent           */
.v3-hero {
  overflow        : visible !important;
}
.v3-hero-bg {
  overflow        : hidden; /* garde les orbes dans les limites */
}

/* 6. Grid — colonne image légèrement plus large                     */
.v3-hero-inner {
  grid-template-columns : 1fr 1.35fr !important;
  gap                   : 48px !important;
  align-items           : center !important;
}

/* 7. Texte — centré verticalement                                   */
.v3-hero-text {
  align-self      : center !important;
  padding-bottom  : 0 !important;
}

/* 8. Badges — positions propres, bien visibles                      */
.v3-float-1 { bottom: 22%; left: -40px !important; }
.v3-float-2 { bottom:  8%; right: 16px !important; }
.v3-float-3 { top:    10%; right: 16px !important; }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .v3-hero-inner {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }
  .v3-hero-visual {
    align-self: auto !important;
    padding-bottom: 40px !important;
  }
  .v3-hero-img {
    height: clamp(280px, 48vw, 480px) !important;
  }
  .v3-float-1 { left:  8px !important; bottom: 18% !important; }
  .v3-float-2 { right: 8px !important; bottom:  6% !important; }
  .v3-float-3 { right: 8px !important; top:     6% !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   ULTRA PREMIUM v17
   Direction artistique finale — luxe subtil, precision, profondeur
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. GRAIN — texture pellicule cinema, quasi-invisible ─────────── */
/* Rend le site organique, evite le look "ecran". Frequence 0.72      */
/* = grain fin. opacity 0.024 = present mais imperceptible.           */
body::before {
  content          : '';
  position         : fixed;
  inset            : 0;
  width            : 100%;
  height           : 100%;
  background-image : url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size  : 180px 180px;
  opacity          : 0.024;
  pointer-events   : none;
  z-index          : 9999;
  mix-blend-mode   : overlay;
}

/* ── 2. HERO VISUAL — floating subtil sur le conteneur entier ─────── */
/* Applique sur .v3-hero-visual (pas le wrap) → pas de conflit GSAP   */
@keyframes v3-breathe {
  0%, 100% { transform: translateY(0px);  }
  50%       { transform: translateY(-9px); }
}

.v3-hero-visual {
  animation        : v3-breathe 6.5s ease-in-out infinite !important;
  will-change      : transform;
}

/* Pause si reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .v3-hero-visual  { animation: none !important; }
  body::before     { display: none; }
}

/* ── 3. HERO — perspective 3D pour le tilt souris (GSAP) ─────────── */
.v3-hero-visual {
  perspective      : 1100px;
}

.v3-hero-img-wrap {
  transform-style  : preserve-3d;
  backface-visibility: hidden;
  will-change      : transform;
}

/* ── 4. HERO GLOW — halo ambiant plus fort, plus chaud ───────────── */
.v3-hero-visual::before {
  content          : '' !important;
  position         : absolute !important;
  bottom           : -10% !important;
  left             : 50% !important;
  transform        : translateX(-50%) !important;
  width            : 115% !important;
  height           : 58% !important;
  background       : radial-gradient(ellipse,
    rgba(0, 113, 227, 0.22) 0%,
    rgba(56, 178, 255, 0.10) 38%,
    transparent 68%
  ) !important;
  filter           : blur(88px) !important;
  pointer-events   : none !important;
  z-index          : -1 !important;
}

/* ── 5. SECTIONS — profondeur atmospherique subtile ──────────────── */
/* Bloom central blanc = lumiere diffuse qui donne de l'air           */
.v3-feat-blue   .v3-feat-inner::before,
.v3-feat-violet .v3-feat-inner::before,
.v3-feat-silver .v3-feat-inner::before,
.v3-feat-light  .v3-feat-inner::before {
  content          : '';
  position         : absolute;
  top              : 50%;
  left             : 50%;
  transform        : translate(-50%, -50%);
  width            : 65%;
  height           : 55%;
  background       : radial-gradient(ellipse,
    rgba(255, 255, 255, 0.055) 0%,
    transparent 68%
  );
  pointer-events   : none;
  z-index          : 0;
}

/* ── 6. WHY CARDS — hover Apple product card ─────────────────────── */
.v3-why-card {
  transition       :
    transform  0.44s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.44s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.44s ease !important;
}

.v3-why-card:hover {
  transform        : translateY(-8px) scale(1.016) !important;
  box-shadow       :
    0 2px 4px   rgba(0, 0,   0,   0.04),
    0 16px 40px rgba(0, 0,   0,   0.10),
    0 36px 72px rgba(0, 102, 204, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
  border-color     : rgba(0, 113, 227, 0.16) !important;
}

/* ── 7. PRICING CARDS — elevation premium ────────────────────────── */
.v3-price-card {
  transition       :
    transform  0.44s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.44s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.v3-price-card:hover {
  transform        : translateY(-10px) !important;
  box-shadow       :
    0 4px 8px   rgba(0, 0,   0,   0.06),
    0 20px 52px rgba(0, 0,   0,   0.12),
    0 48px 96px rgba(0, 102, 204, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;
}

/* ── 8. SPOTLIGHT CARD — finesse glass ───────────────────────────── */
.v3-spotlight-inner {
  transition       : box-shadow 0.44s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.v3-spotlight-inner:hover {
  box-shadow       :
    0 4px 8px   rgba(0, 0,   0,   0.05),
    0 20px 56px rgba(0, 0,   0,   0.09),
    0 0   0 1px rgba(0, 113, 227, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

/* ── 9. FEAT MEDIA — alignement editorial asymetrique ────────────── */
/* Sections standard (image droite) = ancree en bas */
.v3-feat:not(.v3-feat-flip) .v3-feat-media {
  align-self       : flex-end;
}

/* Sections flip (image gauche) = ancree en bas aussi */
.v3-feat-flip .v3-feat-media {
  align-self       : flex-end;
}

/* Centerpiece silver = centree */
.v3-feat-silver .v3-feat-media {
  align-self       : center;
}

/* ── 10. CTA SECTION — glow signature ────────────────────────────── */
.v3-cta {
  position         : relative;
}

.v3-cta::before {
  content          : '';
  position         : absolute;
  top              : -30%;
  left             : 50%;
  transform        : translateX(-50%);
  width            : 80%;
  height           : 100%;
  background       : radial-gradient(ellipse,
    rgba(0, 113, 227, 0.12) 0%,
    transparent 65%
  );
  filter           : blur(96px);
  pointer-events   : none;
  z-index          : 0;
}

/* ── 11. BOUTONS — reflet glass subtil sur hover ─────────────────── */
.btn-primary {
  position         : relative;
  overflow         : hidden;
}

.btn-primary::before {
  content          : '';
  position         : absolute;
  top              : 0;
  left             : -100%;
  width            : 60%;
  height           : 100%;
  background       : linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 80%
  );
  transition       : left 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events   : none;
}

.btn-primary:hover::before {
  left             : 150%;
}

/* ═══════════════════════════════════════════════════════════════════
   TYPOGRAPHIE EDITORIALE v18
   Cabinet Grotesk (display) + Satoshi (body)
   Direction : editorial agency — titres massifs, corps leger, lisible
   ═══════════════════════════════════════════════════════════════════ */

/* ── VARIABLES TYPO ──────────────────────────────────────────────── */
:root {
  --font-display : "Cabinet Grotesk", "Inter", system-ui, sans-serif;
  --font-body    : "Satoshi",         "Inter", system-ui, sans-serif;
}

/* ── BODY — Satoshi, propre, lisible ─────────────────────────────── */
body {
  font-family      : var(--font-body) !important;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── HERO H1 — Cabinet Grotesk 900, ultra-editorial ─────────────── */
/* Condensed tight = signature des meilleurs sites agence             */
.v3-h1 {
  font-family      : var(--font-display) !important;
  font-weight      : 900 !important;
  letter-spacing   : -0.055em !important;
  line-height      : 0.90 !important;
}

/* ── TITRES SECTIONS FEAT — Cabinet Grotesk 800 ──────────────────── */
.v3-feat-title {
  font-family      : var(--font-display) !important;
  font-weight      : 800 !important;
  letter-spacing   : -0.04em !important;
  line-height      : 1.00 !important;
}

/* ── H2 GENERAUX — Cabinet Grotesk ──────────────────────────────── */
.v3-section-h2,
.v3-why-h2,
.v3-cta-title,
h2 {
  font-family      : var(--font-display) !important;
  font-weight      : 800 !important;
  letter-spacing   : -0.038em !important;
}

/* ── SPOTLIGHT H2 ────────────────────────────────────────────────── */
.v3-spotlight-title {
  font-family      : var(--font-display) !important;
  font-weight      : 800 !important;
  letter-spacing   : -0.04em !important;
}

/* ── PRIX — Cabinet Grotesk pour le chiffre ─────────────────────── */
.v3-price-num,
.v3-price-amount,
.v3-price-value {
  font-family      : var(--font-display) !important;
  font-weight      : 900 !important;
  letter-spacing   : -0.05em !important;
}

/* ── FLOATS HERO — Satoshi bold pour les chiffres ───────────────── */
.v3-float-num {
  font-family      : var(--font-display) !important;
  font-weight      : 900 !important;
  letter-spacing   : -0.04em !important;
}

/* ── BADGES — Cabinet Grotesk pour les gros chiffres ────────────── */
.v3-feat-badge-num {
  font-family      : var(--font-display) !important;
  font-weight      : 900 !important;
  letter-spacing   : -0.03em !important;
}

/* ── NAVIGATION — Satoshi medium, propre ─────────────────────────── */
.v3-nav a,
.elyria-nav-link,
.elyria-brand-name {
  font-family      : var(--font-body) !important;
  font-weight      : 600 !important;
}

/* ── BOUTONS — Satoshi semibold ──────────────────────────────────── */
.btn-primary,
.btn-ghost,
.btn-white,
.btn-outline-white {
  font-family      : var(--font-body) !important;
  font-weight      : 700 !important;
  letter-spacing   : -0.01em !important;
}

/* ── EYEBROWS — Satoshi, uppercase, tracke ───────────────────────── */
.v3-eyebrow,
.v3-feat-eyebrow,
.v3-eyebrow-label {
  font-family      : var(--font-body) !important;
  font-weight      : 700 !important;
  letter-spacing   : 0.08em !important;
}

/* ── PILLS / TAGS — Satoshi ──────────────────────────────────────── */
.v3-pills span,
.v3-feat-badge-label,
.v3-float-label {
  font-family      : var(--font-body) !important;
  font-weight      : 600 !important;
}

/* ── WATERMARKS SECTION — Cabinet Grotesk, ultra-bold ───────────── */
.v3-feat::before {
  font-family      : var(--font-display) !important;
  font-weight      : 900 !important;
}

/* ── TICKER — Satoshi bold ───────────────────────────────────────── */
.v3-ticker {
  font-family      : var(--font-body) !important;
}

/* ── CARDS WHY — Satoshi pour le texte, Cabinet pour le titre ────── */
.v3-why-card-title {
  font-family      : var(--font-display) !important;
  font-weight      : 800 !important;
  letter-spacing   : -0.03em !important;
}

/* ── RESPONSIVE — letter-spacing adapte mobile ───────────────────── */
@media (max-width: 768px) {
  .v3-h1 {
    letter-spacing : -0.04em !important;
  }
  .v3-feat-title {
    letter-spacing : -0.03em !important;
  }
}


/* ════════════════════════════════════════════════════════════════════
   FINALE CINÉMATOGRAPHIQUE — v4  PREMIUM
   Section : .v3-fn   Éléments : .v3-fn-*
   ════════════════════════════════════════════════════════════════════ */

/* ── Section racine ──────────────────────────────────────────────── */
.v3-fn {
  position   : relative;
  background : #04060f;
  overflow   : hidden;
  color      : rgba(255,255,255,0.90);
  font-family: var(--font-body, "Satoshi", sans-serif);
}

/* ── Couches de fond ────────────────────────────────────────────── */
.v3-fn-bg {
  position      : absolute;
  inset         : 0;
  pointer-events: none;
  overflow      : hidden;
}

.v3-fn-grain {
  position: absolute;
  inset   : 0;
  opacity : 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.v3-fn-topline {
  position  : absolute;
  top       : 0;
  left      : 0;
  right     : 0;
  height    : 1px;
  background: linear-gradient(90deg,transparent 0%,rgba(99,102,241,.55) 30%,rgba(139,92,246,.80) 50%,rgba(99,102,241,.55) 70%,transparent 100%);
}

.v3-fn-mesh {
  position: absolute;
  inset   : 0;
  opacity : 0.022;
  background-image: linear-gradient(rgba(255,255,255,1) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(255,255,255,1) 1px,transparent 1px);
  background-size: 72px 72px;
}

.v3-fn-glow {
  position      : absolute;
  border-radius : 50%;
  filter        : blur(90px);
  pointer-events: none;
}
.v3-fn-g1 {
  width     : 800px;
  height    : 800px;
  top       : -220px;
  left      : -150px;
  background: radial-gradient(circle,rgba(124,58,237,.16) 0%,transparent 70%);
  animation : fn-drift-1 26s ease-in-out infinite;
}
.v3-fn-g2 {
  width     : 650px;
  height    : 650px;
  bottom    : 80px;
  right     : -120px;
  background: radial-gradient(circle,rgba(37,99,235,.18) 0%,transparent 70%);
  animation : fn-drift-2 20s ease-in-out infinite;
}
.v3-fn-g3 {
  width     : 550px;
  height    : 550px;
  top       : 42%;
  left      : 42%;
  transform : translate(-50%,-50%);
  background: radial-gradient(circle,rgba(99,102,241,.09) 0%,transparent 70%);
  animation : fn-drift-3 17s ease-in-out infinite;
}

.v3-fn-spotlight {
  position  : absolute;
  top       : -80px;
  left      : 50%;
  transform : translateX(-50%);
  width     : 1000px;
  height    : 700px;
  background: radial-gradient(ellipse at 50% 0%,rgba(99,102,241,.10) 0%,transparent 65%);
  animation : fn-spot-breathe 11s ease-in-out infinite;
}

.v3-fn-beam { position: absolute; pointer-events: none; }
.v3-fn-beam--1 {
  top       : 0;
  left      : 12%;
  width     : 1px;
  height    : 55%;
  background: linear-gradient(180deg,rgba(139,92,246,.50) 0%,transparent 100%);
  opacity   : 0.06;
  animation : fn-beam-fade 7s ease-in-out infinite;
}
.v3-fn-beam--2 {
  top       : 0;
  right     : 18%;
  width     : 1px;
  height    : 45%;
  background: linear-gradient(180deg,rgba(59,130,246,.50) 0%,transparent 100%);
  opacity   : 0.06;
  animation : fn-beam-fade 9s ease-in-out infinite 2.5s;
}

.v3-fn-vignette {
  position  : absolute;
  inset     : 0;
  background: radial-gradient(ellipse at 50% 50%,transparent 45%,rgba(4,6,15,.55) 100%);
}

/* ── Keyframes ──────────────────────────────────────────────────── */
@keyframes fn-drift-1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(55px,-45px) scale(1.08); }
  66%     { transform: translate(-30px,28px) scale(.93); }
}
@keyframes fn-drift-2 {
  0%,100% { transform: translate(0,0) scale(1); }
  40%     { transform: translate(-45px,32px) scale(1.06); }
  75%     { transform: translate(22px,-22px) scale(.96); }
}
@keyframes fn-drift-3 {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50%     { transform: translate(-50%,-50%) scale(1.14); }
}
@keyframes fn-spot-breathe {
  0%,100% { opacity: 1;    transform: translateX(-50%) scale(1); }
  50%     { opacity: 0.60; transform: translateX(-50%) scale(1.14); }
}
@keyframes fn-beam-fade {
  0%,100% { opacity: 0.06; }
  50%     { opacity: 0.15; }
}
@keyframes fn-pulse-ring {
  0%   { transform: scale(1);   opacity: .40; }
  100% { transform: scale(1.9); opacity: 0;   }
}
@keyframes fn-shine-move {
  0%   { left: -100%; }
  100% { left:  200%; }
}
@keyframes fn-btn-glow-breathe {
  0%,100% { box-shadow: 0 0 32px rgba(16,185,129,.40),0 4px 20px rgba(0,0,0,.28); }
  50%     { box-shadow: 0 0 52px rgba(16,185,129,.62),0 4px 24px rgba(0,0,0,.28); }
}
@keyframes fn-dot-pulse {
  0%,100% { opacity: 1;    transform: scale(1); }
  50%     { opacity: 0.45; transform: scale(.72); }
}
@keyframes fn-cta-glow-breathe {
  0%,100% { opacity: 1;    transform: translateX(-50%) scale(1); }
  50%     { opacity: 0.55; transform: translateX(-50%) scale(1.18); }
}

/* ══════════════════════════════════════════════════════════════════
   HERO BAND
   ══════════════════════════════════════════════════════════════════ */
.v3-fn-hero {
  position             : relative;
  display              : grid;
  grid-template-columns: 1fr 1fr;
  gap                  : clamp(48px,6vw,100px);
  max-width            : 1300px;
  margin               : 0 auto;
  padding              : clamp(100px,12vw,164px) clamp(24px,5vw,80px) clamp(64px,8vw,100px);
  align-items          : center;
}

.v3-fn-hero-l {
  display       : flex;
  flex-direction: column;
  gap           : 36px;
}

.v3-fn-tag {
  display       : inline-flex;
  align-items   : center;
  gap           : 8px;
  padding       : 9px 18px;
  background    : rgba(99,102,241,.10);
  border        : 1px solid rgba(99,102,241,.24);
  border-radius : 100px;
  font-size     : 11px;
  font-weight   : 600;
  letter-spacing: 0.12em;
  color         : rgba(165,180,252,.88);
  width         : fit-content;
  text-transform: uppercase;
}
.v3-fn-dot {
  display      : inline-block;
  width        : 6px;
  height       : 6px;
  border-radius: 50%;
  background   : #6366F1;
  box-shadow   : 0 0 8px rgba(99,102,241,.80);
  animation    : fn-dot-pulse 2.5s ease-in-out infinite;
  flex-shrink  : 0;
}

.v3-fn-h2 {
  display       : flex;
  flex-direction: column;
  gap           : 0;
  font-family   : var(--font-display,"Cabinet Grotesk",sans-serif);
  font-weight   : 900;
  font-size     : clamp(60px,7.8vw,116px);
  line-height   : 0.88;
  letter-spacing: -0.045em;
  margin        : 0;
  overflow      : hidden;
}
.v3-fn-l1 {
  display: block;
  color  : rgba(255,255,255,.95);
}
.v3-fn-l2 {
  display                : block;
  font-style             : italic;
  background             : linear-gradient(128deg,#60A5FA 0%,#818CF8 38%,#A78BFA 68%,#C084FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip        : text;
  filter                 : drop-shadow(0 0 44px rgba(139,92,246,.32));
}

.v3-fn-sub {
  font-size  : clamp(16px,1.8vw,20px);
  line-height: 1.66;
  color      : rgba(255,255,255,.50);
  margin     : 0;
  max-width  : 42ch;
}
.v3-fn-sub-hl { color: rgba(255,255,255,.90); font-weight: 600; }

.v3-fn-benefits {
  display       : flex;
  flex-direction: column;
  gap           : 16px;
}
.v3-fn-benefit {
  display    : flex;
  align-items: center;
  gap        : 12px;
}
.v3-fn-benefit-ico {
  display        : flex;
  align-items    : center;
  justify-content: center;
  width          : 28px;
  height         : 28px;
  border-radius  : 8px;
  background     : rgba(99,102,241,.15);
  color          : #818CF8;
  flex-shrink    : 0;
}
.v3-fn-benefit-txt            { display: flex; flex-direction: column; gap: 2px; }
.v3-fn-benefit-txt strong     { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.88); }
.v3-fn-benefit-txt span       { font-size: 13px; color: rgba(255,255,255,.38); }

.v3-fn-hero-r {
  display        : flex;
  align-items    : center;
  justify-content: flex-end;
}

/* CTA Card */
.v3-fn-cta-card {
  position              : relative;
  width                 : 100%;
  max-width             : 470px;
  padding               : clamp(36px,4.5vw,56px) clamp(28px,3.5vw,44px);
  border-radius         : 28px;
  background            : rgba(255,255,255,.025);
  backdrop-filter       : blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border                : 1px solid rgba(255,255,255,.08);
  overflow              : hidden;
}
.v3-fn-cta-border {
  position      : absolute;
  inset         : 0;
  border-radius : 28px;
  padding       : 1px;
  background    : linear-gradient(140deg,rgba(99,102,241,.45) 0%,rgba(139,92,246,.18) 50%,rgba(37,99,235,.35) 100%);
  -webkit-mask  : linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.v3-fn-cta-bg {
  position     : absolute;
  inset        : 0;
  border-radius: 28px;
  background   : radial-gradient(ellipse at 80% 15%,rgba(99,102,241,.07) 0%,transparent 55%),
                 radial-gradient(ellipse at 15% 85%,rgba(16,185,129,.04) 0%,transparent 55%);
  pointer-events: none;
}
.v3-fn-cta-glow {
  position      : absolute;
  bottom        : 90px;
  left          : 50%;
  transform     : translateX(-50%);
  width         : 300px;
  height        : 130px;
  background    : radial-gradient(ellipse,rgba(16,185,129,.18) 0%,transparent 70%);
  filter        : blur(22px);
  pointer-events: none;
  animation     : fn-cta-glow-breathe 4.5s ease-in-out infinite;
}

.v3-fn-cta-eyebrow {
  font-size     : 11px;
  font-weight   : 700;
  letter-spacing: 0.14em;
  color         : rgba(99,102,241,.75);
  text-transform: uppercase;
  margin        : 0 0 14px;
}
.v3-fn-cta-headline {
  font-family   : var(--font-display,"Cabinet Grotesk",sans-serif);
  font-size     : clamp(22px,2.4vw,30px);
  font-weight   : 800;
  color         : #FFFFFF;
  margin        : 0 0 10px;
  line-height   : 1.14;
  letter-spacing: -0.02em;
}
.v3-fn-cta-body {
  font-size  : 14px;
  line-height: 1.65;
  color      : rgba(255,255,255,.42);
  margin     : 0 0 32px;
}

.v3-fn-actions { display: flex; flex-direction: column; gap: 12px; }

/* Main WhatsApp button */
.v3-fn-btn-main {
  position       : relative;
  display        : flex;
  align-items    : center;
  justify-content: center;
  gap            : 10px;
  padding        : 18px 28px;
  border-radius  : 14px;
  background     : linear-gradient(135deg,#059669 0%,#10B981 55%,#34D399 100%);
  color          : #fff;
  font-size      : 15px;
  font-weight    : 700;
  text-decoration: none;
  letter-spacing : -0.01em;
  overflow       : hidden;
  transition     : transform 0.20s ease,filter 0.20s ease;
  box-shadow     : 0 0 32px rgba(16,185,129,.40),0 4px 20px rgba(0,0,0,.28);
  animation      : fn-btn-glow-breathe 3.5s ease-in-out infinite;
  will-change    : transform;
}
.v3-fn-btn-main:hover { transform: translateY(-2px) scale(1.015); filter: brightness(1.08); }
.v3-fn-btn-ico        { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v3-fn-btn-txt        { flex: 1; text-align: center; }
.v3-fn-btn-arr {
  font-size : 18px;
  opacity   : 0.70;
  transition: transform 0.20s ease;
}
.v3-fn-btn-main:hover .v3-fn-btn-arr { transform: translateX(4px); }

.v3-fn-btn-shine {
  position      : absolute;
  top           : 0;
  left          : -100%;
  width         : 60%;
  height        : 100%;
  background    : linear-gradient(90deg,transparent 0%,rgba(255,255,255,.18) 50%,transparent 100%);
  transform     : skewX(-20deg);
  pointer-events: none;
}
.v3-fn-btn-main:hover .v3-fn-btn-shine { animation: fn-shine-move 0.55s ease forwards; }

.v3-fn-btn-pulse {
  position      : absolute;
  inset         : 0;
  border-radius : 14px;
  border        : 2px solid rgba(52,211,153,.50);
  animation     : fn-pulse-ring 2.6s ease-out infinite;
  pointer-events: none;
}

.v3-fn-btn-ghost {
  display        : flex;
  align-items    : center;
  justify-content: center;
  gap            : 8px;
  padding        : 14px 24px;
  border-radius  : 12px;
  border         : 1px solid rgba(255,255,255,.11);
  background     : rgba(255,255,255,.035);
  color          : rgba(255,255,255,.65);
  font-size      : 14px;
  font-weight    : 500;
  text-decoration: none;
  transition     : border-color 0.20s ease,color 0.20s ease,background 0.20s ease;
}
.v3-fn-btn-ghost:hover {
  border-color: rgba(255,255,255,.24);
  color       : rgba(255,255,255,.90);
  background  : rgba(255,255,255,.07);
}

.v3-fn-cta-trust { display: flex; gap: 16px; margin-top: 20px; flex-wrap: wrap; }
.v3-fn-cta-trust span {
  display    : flex;
  align-items: center;
  gap        : 5px;
  font-size  : 12px;
  color      : rgba(255,255,255,.34);
}
.v3-fn-cta-trust span svg { color: rgba(99,102,241,.65); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════════
   CONTACT CARDS
   ══════════════════════════════════════════════════════════════════ */
.v3-fn-contact-section { position: relative; padding: 0 clamp(24px,5vw,80px) clamp(56px,6vw,80px); }
.v3-fn-contact-inner   { max-width: 1300px; margin: 0 auto; }
.v3-fn-section-label {
  font-size     : 11px;
  font-weight   : 700;
  letter-spacing: 0.14em;
  color         : rgba(255,255,255,.22);
  text-transform: uppercase;
  margin        : 0 0 20px;
}

.v3-fn-bigcards {
  display              : grid;
  grid-template-columns: repeat(4,1fr);
  gap                  : 16px;
}

.v3-fn-bigcard {
  position              : relative;
  display               : flex;
  flex-direction        : column;
  align-items           : flex-start;
  gap                   : 10px;
  padding               : 30px 24px 26px;
  border-radius         : 20px;
  background            : rgba(255,255,255,.028);
  border                : 1px solid rgba(255,255,255,.07);
  text-decoration       : none;
  color                 : rgba(255,255,255,.90);
  overflow              : hidden;
  transition            : transform 0.26s ease,border-color 0.26s ease,background 0.26s ease;
  backdrop-filter       : blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform-style       : preserve-3d;
}
.v3-fn-bigcard:hover {
  transform   : translateY(-5px);
  border-color: rgba(255,255,255,.14);
  background  : rgba(255,255,255,.052);
}

.v3-fn-bc-glow {
  position      : absolute;
  top           : 50%;
  left          : 50%;
  transform     : translate(-50%,-50%);
  width         : 220px;
  height        : 220px;
  border-radius : 50%;
  filter        : blur(44px);
  opacity       : 0;
  transition    : opacity 0.35s ease;
  pointer-events: none;
}
.v3-fn-bigcard:hover .v3-fn-bc-glow { opacity: 1; }

.v3-fn-bc--phone  .v3-fn-bc-glow { background: rgba(37, 99,235,.26); }
.v3-fn-bc--wa     .v3-fn-bc-glow { background: rgba(16,185,129,.26); }
.v3-fn-bc--insta  .v3-fn-bc-glow { background: rgba(236,72,153,.22); }
.v3-fn-bc--tiktok .v3-fn-bc-glow { background: rgba(6, 182,212,.22); }

.v3-fn-bc-ico {
  display        : flex;
  align-items    : center;
  justify-content: center;
  width          : 60px;
  height         : 60px;
  border-radius  : 16px;
  flex-shrink    : 0;
  margin-bottom  : 4px;
  transition     : transform 0.26s ease,box-shadow 0.26s ease;
}
.v3-fn-bigcard:hover .v3-fn-bc-ico { transform: scale(1.08); }

.v3-fn-bc--phone  .v3-fn-bc-ico {
  background: radial-gradient(ellipse at 30% 25%,#5CA0FF,#1A56DB,#0F3DB0);
  box-shadow: 0 8px 26px rgba(37,99,235,.46);
}
.v3-fn-bc--wa     .v3-fn-bc-ico {
  background: radial-gradient(ellipse at 30% 25%,#4ADE80,#16A34A,#14532D);
  box-shadow: 0 8px 26px rgba(22,163,74,.46);
}
.v3-fn-bc--insta  .v3-fn-bc-ico {
  background: linear-gradient(135deg,#F472B6 0%,#EC4899 45%,#FB923C 100%);
  box-shadow: 0 8px 26px rgba(236,72,153,.42);
}
.v3-fn-bc--tiktok .v3-fn-bc-ico {
  background: radial-gradient(ellipse at 30% 25%,#22D3EE,#0891B2,#0E7490);
  box-shadow: 0 8px 26px rgba(6,182,212,.42);
}

.v3-fn-bigcard strong { font-size: 16px; font-weight: 700; color: rgba(255,255,255,.92); letter-spacing: -0.01em; }
.v3-fn-bigcard span   { font-size: 13px; color: rgba(255,255,255,.44); }
.v3-fn-bigcard small  { font-size: 12px; color: rgba(255,255,255,.26); }

.v3-fn-bc-arr {
  position  : absolute;
  top       : 20px;
  right     : 20px;
  font-size : 18px;
  color     : rgba(255,255,255,.18);
  transition: color 0.20s ease,transform 0.20s ease;
}
.v3-fn-bigcard:hover .v3-fn-bc-arr { color: rgba(255,255,255,.55); transform: translate(2px,-2px); }

/* ══════════════════════════════════════════════════════════════════
   STATS STRIP
   ══════════════════════════════════════════════════════════════════ */
.v3-fn-strip { padding: 0 clamp(24px,5vw,80px) clamp(60px,6vw,88px); }

.v3-fn-strip-in {
  max-width    : 1300px;
  margin       : 0 auto;
  display      : grid;
  grid-template-columns: 1fr auto;
  gap          : clamp(32px,4.5vw,64px);
  align-items  : center;
  background   : rgba(255,255,255,.025);
  border       : 1px solid rgba(255,255,255,.07);
  border-radius: 26px;
  padding      : clamp(32px,4vw,52px);
  position     : relative;
  overflow     : hidden;
}
.v3-fn-strip-in::before {
  content   : '';
  position  : absolute;
  top       : 0;
  left      : 18%;
  right     : 18%;
  height    : 1px;
  background: linear-gradient(90deg,transparent,rgba(99,102,241,.38),transparent);
}

.v3-fn-sstats {
  display              : grid;
  grid-template-columns: repeat(4,1fr);
  gap                  : clamp(20px,2.5vw,40px);
}

.v3-fn-sstat     { display: flex; align-items: flex-start; gap: 14px; }
.v3-fn-sstat-ico {
  display        : flex;
  align-items    : center;
  justify-content: center;
  width          : 44px;
  height         : 44px;
  border-radius  : 12px;
  flex-shrink    : 0;
}
.v3-fn-si--1 { background: linear-gradient(135deg,#7C3AED,#4F46E5); box-shadow: 0 4px 16px rgba(124,58,237,.35); }
.v3-fn-si--2 { background: linear-gradient(135deg,#2563EB,#1D4ED8); box-shadow: 0 4px 16px rgba(37,99,235,.35);  }
.v3-fn-si--3 { background: linear-gradient(135deg,#0284C7,#2563EB); box-shadow: 0 4px 16px rgba(2,132,199,.35);  }
.v3-fn-si--4 { background: linear-gradient(135deg,#7C3AED,#9333EA); box-shadow: 0 4px 16px rgba(124,58,237,.35); }

.v3-fn-sstat-txt  { display: flex; flex-direction: column; gap: 5px; }
.v3-fn-sstat-top  { display: flex; align-items: baseline; gap: 1px; line-height: 1; }

.v3-fn-sstat-pre,
.v3-fn-sstat-num,
.v3-fn-sstat-suf {
  font-family   : var(--font-display,"Cabinet Grotesk",sans-serif);
  font-weight   : 900;
  font-size     : clamp(26px,3.2vw,42px);
  color         : #FFFFFF;
  letter-spacing: -0.035em;
}
.v3-fn-sstat-pre  { color: #60A5FA; font-size: clamp(18px,2.2vw,28px); }
.v3-fn-sstat-suf  { color: rgba(255,255,255,.45); font-size: clamp(16px,1.8vw,22px); }
.v3-fn-sstat-label { font-size: 12px; color: rgba(255,255,255,.36); line-height: 1.45; }

.v3-fn-quote {
  max-width    : 300px;
  padding      : 28px 24px;
  background   : rgba(255,255,255,.04);
  border       : 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  flex-shrink  : 0;
}
.v3-fn-quote-mark {
  display      : block;
  font-size    : 60px;
  line-height  : 0.55;
  color        : rgba(99,102,241,.28);
  font-family  : Georgia,serif;
  margin-bottom: 16px;
}
.v3-fn-quote-txt  { font-size: 14px; line-height: 1.68; color: rgba(255,255,255,.62); margin: 0 0 20px; }
.v3-fn-quote-hl   { color: rgba(255,255,255,.90); font-weight: 600; }
.v3-fn-quote-author { display: flex; align-items: center; gap: 10px; }
.v3-fn-quote-avatar {
  width          : 36px;
  height         : 36px;
  border-radius  : 50%;
  background     : linear-gradient(135deg,#6366F1,#8B5CF6);
  display        : flex;
  align-items    : center;
  justify-content: center;
  font-weight    : 700;
  font-size      : 14px;
  color          : #fff;
  flex-shrink    : 0;
}
.v3-fn-quote-id strong { display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.84); }
.v3-fn-quote-id span   { font-size: 12px; color: rgba(255,255,255,.33); }

/* ══════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════ */
.v3-fn-footer {
  position  : relative;
  padding   : clamp(28px,3vw,44px) clamp(24px,5vw,80px);
  border-top: 1px solid rgba(255,255,255,.055);
}
.v3-fn-footer-in {
  max-width      : 1300px;
  margin         : 0 auto;
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  gap            : 32px;
  flex-wrap      : wrap;
}
.v3-fn-footer-brand   { display: flex; align-items: center; gap: 12px; }
.v3-fn-footer-logo {
  display        : flex;
  align-items    : center;
  justify-content: center;
  width          : 36px;
  height         : 36px;
  border-radius  : 10px;
  background     : linear-gradient(135deg,#4F46E5,#7C3AED);
  font-weight    : 800;
  font-size      : 13px;
  color          : #fff;
  letter-spacing : -0.02em;
  flex-shrink    : 0;
}
.v3-fn-footer-name    { display: block; font-size: 14px; font-weight: 700; color: rgba(255,255,255,.84); }
.v3-fn-footer-tagline { display: block; font-size: 12px; color: rgba(255,255,255,.28); max-width: 26ch; }

.v3-fn-footer-nav     { display: flex; gap: 24px; flex-wrap: wrap; }
.v3-fn-footer-nav a   { font-size: 13px; color: rgba(255,255,255,.36); text-decoration: none; transition: color 0.18s ease; }
.v3-fn-footer-nav a:hover { color: rgba(255,255,255,.75); }

.v3-fn-footer-social  { display: flex; gap: 8px; }
.v3-fn-soc-btn {
  display        : flex;
  align-items    : center;
  justify-content: center;
  width          : 36px;
  height         : 36px;
  border-radius  : 10px;
  background     : rgba(255,255,255,.045);
  border         : 1px solid rgba(255,255,255,.07);
  color          : rgba(255,255,255,.42);
  text-decoration: none;
  transition     : background 0.18s ease,color 0.18s ease,border-color 0.18s ease;
}
.v3-fn-soc-btn:hover {
  background  : rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
  color       : rgba(255,255,255,.85);
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .v3-fn-sstats        { grid-template-columns: repeat(2,1fr); }
  .v3-fn-strip-in      { grid-template-columns: 1fr; }
  .v3-fn-quote         { max-width: 100%; }
}
@media (max-width: 900px) {
  .v3-fn-hero          { grid-template-columns: 1fr; }
  .v3-fn-hero-r        { justify-content: flex-start; }
  .v3-fn-cta-card      { max-width: 100%; }
  .v3-fn-bigcards      { grid-template-columns: repeat(2,1fr); }
  .v3-fn-footer-in     { flex-direction: column; align-items: flex-start; gap: 20px; }
}
@media (max-width: 560px) {
  .v3-fn-h2            { font-size: clamp(50px,14vw,76px); }
  .v3-fn-bigcards      { grid-template-columns: 1fr 1fr; gap: 10px; }
  .v3-fn-sstats        { grid-template-columns: 1fr 1fr; gap: 16px; }
  .v3-fn-hero,
  .v3-fn-contact-section,
  .v3-fn-strip,
  .v3-fn-footer        { padding-left: 20px; padding-right: 20px; }
  .v3-fn-cta-trust     { gap: 10px; }
}
@media (max-width: 380px) {
  .v3-fn-bigcards      { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   CRÉDIBILITÉ — Badge source Google sur les témoignages
   ═══════════════════════════════════════════════════════════════ */
.v3-testi-google {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #5f6368;
  background: #f8f9fa;
  border: 1px solid #e8eaed;
  padding: 3px 9px 3px 6px;
  border-radius: 999px;
  margin-bottom: 8px;
  width: fit-content;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION FONDATEUR — fnd-* v5 — Light section + Dark panel
   Direction : Editorial · Portrait panel · Stats solides blancs
   Note : jamais -webkit-text-fill-color transparent sur dark bg
═══════════════════════════════════════════════════════════════ */

/* ── Masquer v3-human-block (dans v3-why) ── */
.v3-human-block { display: none !important; }

/* ── Section wrapper — fond blanc avec halos couleur subtils ── */
.fnd {
  padding: clamp(96px, 11vw, 152px) clamp(20px, 5vw, 48px);
  background:
    radial-gradient(ellipse 65% 55% at 0% 28%, rgba(219,234,254,.55) 0%, transparent 58%),
    radial-gradient(ellipse 55% 50% at 100% 82%, rgba(237,233,254,.38) 0%, transparent 54%),
    #ffffff;
  position: relative;
  overflow: hidden;
}

/* Ligne décorative haute — séparation subtile avec la section précédente */
.fnd::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(0, 102, 204, .12) 30%,
    rgba(0, 102, 204, .12) 70%,
    transparent
  );
}
/* ── Grille principale — ratio 40/60 pour équilibrer carte et contenu ── */
.fnd-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(48px, 5.5vw, 72px);
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════
   PANNEAU IDENTITÉ — compact dark premium
   Hauteur cible : ~340–400px (jamais massif)
══════════════════════════════════════════════════════════ */
.fnd-panel {
  position: sticky;
  top: 88px;
  background: linear-gradient(170deg, #0d1117 0%, #0b0e1a 100%);
  border-radius: 28px;
  padding: 38px 32px 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.082),
    inset 0 1px 0 rgba(255,255,255,.07),
    0 24px 72px rgba(0,0,0,.22),
    0 4px 12px rgba(0,0,0,.14),
    0 0 80px rgba(0,60,200,.05);
  transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s;
}

.fnd-panel:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.10),
    inset 0 1px 0 rgba(255,255,255,.09),
    0 36px 96px rgba(0,0,0,.26),
    0 4px 12px rgba(0,0,0,.16),
    0 0 100px rgba(0,60,200,.08);
}

/* Halo bleu haute partie — plus visible */
.fnd-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: radial-gradient(ellipse 90% 70% at 50% -15%, rgba(0,100,255,.13), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ── Head : avatar + meta (côte à côte) ── */
.fnd-panel-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

/* Avatar arrondi — taille augmentée */
.fnd-avatar {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  background: linear-gradient(145deg, #0e1e3f, #091225);
  box-shadow:
    0 0 0 1px rgba(0,100,220,.22),
    0 0 0 4px rgba(0,60,180,.08),
    0 12px 32px rgba(0,0,0,.40);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.fnd-avatar-letter {
  font-family: var(--font-display, "Cabinet Grotesk", system-ui, sans-serif);
  font-size: 26px; font-weight: 900;
  color: #fff;
  position: relative; z-index: 1; line-height: 1;
  letter-spacing: -.02em;
}

.fnd-panel-meta {
  display: flex; flex-direction: column; gap: 5px;
}

.fnd-panel-name {
  font-family: var(--font-display, "Cabinet Grotesk", system-ui, sans-serif);
  font-size: 16px; font-weight: 800;
  color: rgba(255,255,255,.94);
  letter-spacing: -.02em;
}

.fnd-panel-role {
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.58);
  letter-spacing: .03em;
}

/* ── Badge disponibilité ── */
.fnd-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(34,197,94,.09);
  border: 1px solid rgba(34,197,94,.22);
  border-radius: 999px;
  padding: 6px 16px 6px 11px;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.62);
  letter-spacing: .02em;
  width: fit-content;
  position: relative; z-index: 1;
}

.fnd-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.13);
  flex-shrink: 0;
  animation: fnd-pulse 2.6s ease-in-out infinite;
}

@keyframes fnd-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,.13); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,.00); }
}

/* ── Séparateur ── */
.fnd-panel-sep {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.14);
  margin: 18px 0;
  flex-shrink: 0;
  position: relative; z-index: 1;
}

/* ══════════════════════════════════════════════════════════
   SERVICES — icône + label + description (compact)
══════════════════════════════════════════════════════════ */
.fnd-svc-list {
  display: flex; flex-direction: column; gap: 0;
  position: relative; z-index: 1;
}

.fnd-svc-item {
  display: flex; align-items: center; gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: opacity .2s;
}
.fnd-svc-item:first-child { padding-top: 4px; }
.fnd-svc-item:last-child { border-bottom: none; padding-bottom: 4px; }
.fnd-panel:hover .fnd-svc-item { opacity: 1; }
.fnd-panel:hover .fnd-svc-item:hover { opacity: 1; }

/* Icône dans carré arrondi — visible */
.fnd-svc-ico {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.20);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.90);
  flex-shrink: 0;
  transition: background .22s, border-color .22s, color .22s;
}

/* Item mis en avant — support WA */
.fnd-svc-item--hi .fnd-svc-ico {
  background: rgba(0,102,204,.16);
  border-color: rgba(0,102,204,.34);
  color: #7cb9ff;
  box-shadow: 0 0 14px rgba(0,102,204,.14);
}

.fnd-svc-copy {
  display: flex; flex-direction: column; gap: 2px;
}

.fnd-svc-label {
  font-size: 13.5px; font-weight: 700;
  color: #f8fafc;
  line-height: 1.25; letter-spacing: -.01em;
}
.fnd-svc-item--hi .fnd-svc-label { color: #ffffff; }

.fnd-svc-desc {
  font-size: 12px;
  color: #b8cbdb;
  line-height: 1.3;
}
.fnd-svc-item--hi .fnd-svc-desc { color: #7dd3fc; }

/* ── Preuve sociale ── */
.fnd-panel-proof {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 6px;
}

.fnd-proof-stars {
  font-size: 13px;
  color: #f59e0b;
  letter-spacing: 2px;
}

.fnd-proof-text {
  font-size: 12px;
  color: #a8bccf;
  line-height: 1.5;
}
.fnd-proof-text strong {
  color: #e8f2fa;
  font-weight: 700;
}
.fnd-proof-text + .fnd-proof-text {
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════
   CONTENU ÉDITORIAL DROIT
══════════════════════════════════════════════════════════ */
.fnd-content {
  display: flex; flex-direction: column;
  gap: 0; padding-top: 4px;
}

/* ── Eyebrow pill ── */
.fnd-eyebrow {
  display: inline-flex;
  font-size: 11px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: #0066cc;
  background: rgba(0,102,204,.07);
  border: 1px solid rgba(0,102,204,.14);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 26px;
  width: fit-content;
}

/* ── Titre ── */
.fnd-title {
  font-family: var(--font-display, "Cabinet Grotesk", system-ui, sans-serif);
  font-size: clamp(44px, 5.8vw, 76px);
  font-weight: 900;
  letter-spacing: -0.052em;
  line-height: 1.00;
  color: #0d1117;
  margin: 0 0 28px;
}

/* em — accent solide (JAMAIS gradient-clip) */
.fnd-title em {
  font-style: normal;
  color: #0066cc;
}

/* ── Corps de texte ── */
.fnd-body {
  font-size: clamp(16px, 1.8vw, 17.5px);
  font-weight: 400; line-height: 1.72;
  color: #4b5563;
  margin: 0 0 28px;
  max-width: 540px;
}

/* ── Pull quote — grand format, bordure gauche premium ── */
.fnd-quote {
  font-size: clamp(19px, 2.1vw, 24px);
  font-style: italic; font-weight: 600;
  line-height: 1.50; color: #111827;
  padding: 2px 0 2px 22px;
  border-left: 4px solid #0066cc;
  margin: 0 0 36px;
  max-width: 500px;
  border-radius: 0 8px 8px 0;
}

/* ══════════════════════════════════════════════════════════
   KPI CHIPS — 3 colonnes, nombres sombres sur fond clair
   JAMAIS gradient-clip sur fond clair → dark #0d1117
══════════════════════════════════════════════════════════ */
.fnd-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 36px;
}

.fnd-kpi {
  background: #f0f4f8;
  border: 1.5px solid #d0d9e3;
  border-radius: 16px;
  padding: 18px 14px 16px;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  transition: transform .24s cubic-bezier(.16,1,.3,1), box-shadow .24s, border-color .24s, background .24s;
  cursor: default;
  opacity: 1; /* garantit la visibilité si GSAP ne charge pas */
}

.fnd-kpi:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,.11);
  border-color: #a5b8cc;
  background: #e6edf5;
}

/* Nombre : dark ink sur fond clair — toujours visible */
.fnd-kpi-num {
  font-family: var(--font-display, "Cabinet Grotesk", system-ui, sans-serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 900;
  color: #0d1117;
  letter-spacing: -0.045em; line-height: 1;
}

.fnd-kpi-lbl {
  font-size: 11.5px; font-weight: 500;
  color: #6b7280; line-height: 1.3;
}

/* ── CTAs ── */
.fnd-ctas {
  display: flex; align-items: center;
  gap: 12px; flex-wrap: wrap;
}

.fnd-cta-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: #0066cc;
  color: #fff; font-size: 15px; font-weight: 700;
  padding: 16px 30px; border-radius: 14px;
  text-decoration: none; letter-spacing: -.01em;
  box-shadow:
    0 1px 3px rgba(0,102,204,.18),
    0 8px 24px rgba(0,102,204,.20);
  transition: background .22s, transform .22s, box-shadow .22s;
  white-space: nowrap;
}

.fnd-cta-primary:hover {
  background: #0055aa;
  transform: translateY(-2px);
  box-shadow:
    0 2px 4px rgba(0,102,204,.20),
    0 16px 40px rgba(0,102,204,.28);
}

.fnd-cta-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent;
  border: 1.5px solid #d1d5db; color: #374151;
  font-size: 15px; font-weight: 600;
  padding: 15px 24px; border-radius: 14px;
  text-decoration: none; letter-spacing: -.01em;
  transition: border-color .22s, color .22s, transform .22s, background .22s;
  white-space: nowrap;
}

.fnd-cta-ghost:hover {
  border-color: #9ca3af; color: #111827;
  background: rgba(0,0,0,.025);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — fnd-* v7
   Note : pas d'override 1080px — 2fr/3fr gère le scaling
══════════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  .fnd-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* Mobile : éditorial en premier, panneau en second */
  .fnd-panel {
    order: 2;
    position: static;
    border-radius: 24px;
    padding: 30px 26px 26px;
    /* Sur mobile, max-width pour ne pas être trop large */
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .fnd-content { order: 1; }
  /* KPIs en 3 colonnes sur tablet */
  .fnd-kpis { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .fnd-title {
    font-size: clamp(36px, 8.5vw, 48px);
    line-height: 1.02;
  }
  .fnd-body { font-size: 15.5px; max-width: 100%; }
  .fnd-quote { font-size: 17.5px; padding-left: 18px; }
  .fnd-kpis { gap: 8px; }
  .fnd-kpi { padding: 14px 12px; }
  .fnd-kpi-num { font-size: 26px; }
  .fnd-kpi-lbl { font-size: 11px; }
  .fnd-ctas { flex-direction: column; gap: 10px; }
  .fnd-cta-primary,
  .fnd-cta-ghost {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 380px) {
  .fnd-kpis { grid-template-columns: 1fr; }
  .fnd-kpi {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
  }
  .fnd-kpi-num { font-size: 32px; }
}