/* Caast.tv Homepage — Page-specific styles */

/* =========================================================
   KPI TIMELINE
   ========================================================= */
.kpi-section {
  background: var(--color-primary);
  padding: var(--space-24) var(--container-padding);
  position: relative;
  overflow: hidden;
}
.kpi-section .section-header {
  margin-bottom: var(--space-10);
}
.kpi-section .section-header__label {
  color: var(--color-light);
  margin-bottom: var(--space-3);
}
.kpi-section .section-header__title {
  color: var(--color-white);
  font-size: var(--fs-4xl);
}

.kpi__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.kpi__line {
  position: absolute;
  left: 0; right: 0;
  top: 83px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gradient-start) 15%, var(--gradient-mid) 50%, var(--gradient-end) 85%, transparent);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.kpi__item {
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.kpi__item:first-child { padding-left: 0; }
.kpi__item:last-child { padding-right: 0; }

.kpi__number {
  font-size: clamp(2rem, 1.3rem + 3.5vw, 3.5rem);
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-white) 50%, rgba(200,150,255,0.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  height: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 20px;
}

.kpi__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B4DFF, #F000B9);
  box-shadow: 0 0 16px rgba(137,0,255,0.9);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.kpi__label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  margin-bottom: 8px;
}

.kpi__desc {
  font-size: var(--fs-xs);
  font-weight: var(--fw-regular);
  line-height: var(--lh-relaxed);
  color: var(--color-white);
}
.kpi__source {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  padding: 4px 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  letter-spacing: .02em;
}
.kpi__source::before {
  content: '↗';
  font-size: 10px;
  color: rgba(155,93,255,.8);
}

@media (max-width: 800px) {
  .kpi__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 0;
    padding: 0;
  }
  .kpi__line { display: none; }
  .kpi__item { padding: 0 20px; }
  .kpi__item:first-child { padding-left: 0; }
  .kpi__item:last-child { padding-right: 0; }
  .kpi__number { font-size: var(--fs-2xl); height: auto; margin-bottom: 12px; }
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  position: relative;
  padding: calc(72px + var(--space-16)) 0 var(--space-16);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(137, 0, 255, 0.10) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  pointer-events: none;
  z-index: 0;
}
.hero-halo-rose {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(240, 0, 185, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gray-200), transparent);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--space-12);
  align-items: center;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-left: calc(var(--space-8) + 10%);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 16px;
  background: rgba(137, 0, 255, 0.06);
  border: 1px solid rgba(137, 0, 255, 0.12);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-secondary);
  margin-bottom: var(--space-6);
}
.hero__badge .material-symbols-rounded {
  font-size: 16px;
}

.hero__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
  color: var(--color-primary);
}

.hero__subtitle {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
  max-width: 440px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: nowrap;
}
.hero__actions .btn {
  padding: 12px 28px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  border-width: 1.5px;
  box-sizing: border-box;
}
.hero__actions .btn--primary {
  border: 1.5px solid transparent;
}

/* Hero — Channel Chips (multi-diffusion) — Style P2 Icon Bubbles */
.hero__channels {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}
.hero__channels-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-gray-400);
  letter-spacing: .04em;
  white-space: nowrap;
  margin-right: 2px;
}
.hero__channels-chips {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.channel-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--color-gray-500);
}
.channel-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.channel-icon svg { width: 12px; height: 12px; }
.channel-chip--site .channel-icon { background: rgba(137,0,255,.10); color: #8900FF; }
.channel-chip--ig   .channel-icon { background: rgba(225,48,108,.10); color: #E1306C; }
.channel-chip--tt   .channel-icon { background: rgba(1,1,1,.07);       color: #010101; }
.channel-chip--fb   .channel-icon { background: rgba(24,119,242,.10);  color: #1877F2; }
.channel-sep { font-size: 11px; color: var(--color-gray-300); line-height: 1; }

/* Hero Stack Carousel */
.hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 560px;
  perspective: 1000px;
}

.hero-stack {
  position: relative;
  width: 380px;
  height: 530px;
  transform-style: preserve-3d;
}
.hero-stack .hero-stack__card {
  position: absolute; width: 248px; height: 491px;
  border-radius: 20px; overflow: hidden;
  transition: all .6s cubic-bezier(.16,1,.3,1);
  transform-style: preserve-3d;
}
.hero-stack .hero-stack__card video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-stack .hero-stack__card .hero-stack__badge {
  position: absolute; top: 10px; left: 10px;
  background: #E53935; color: #fff; font-size: 8px; font-weight: 700;
  padding: 2px 8px; border-radius: 3px; text-transform: uppercase; letter-spacing: .05em;
}
.hero-stack .hero-stack__card .hero-stack__overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 14px;
  background: linear-gradient(transparent, rgba(0,0,0,.6));
}
.hero-stack__overlay-name { font-size: 10px; font-weight: 500; color: rgba(255,255,255,.9); }
.hero-stack__overlay-price { font-size: 13px; font-weight: 700; color: #fff; }

.hero-stack .hero-stack__card[data-pos="left"] {
  transform: translateX(-30px) translateZ(-100px) rotateY(14deg) scale(.85);
  opacity: .4; z-index: 1;
  box-shadow: 0 4px 16px rgba(18,0,31,.08);
}
.hero-stack .hero-stack__card[data-pos="right"] {
  transform: translateX(100px) translateZ(-100px) rotateY(-14deg) scale(.85);
  opacity: .4; z-index: 1;
  box-shadow: 0 4px 16px rgba(18,0,31,.08);
}
.hero-stack .hero-stack__card[data-pos="front"] {
  transform: translateX(35px) translateZ(0) rotateY(0) scale(1);
  opacity: 1; z-index: 3;
  box-shadow: 0 16px 48px rgba(18,0,31,.22);
}
.hero-stack .hero-stack__card[data-pos="hidden"] {
  transform: translateX(35px) translateZ(-200px) scale(.6);
  opacity: 0; z-index: 0;
  pointer-events: none;
}
.hero-stack .hero-stack__card[data-pos="hidden2"] {
  transform: translateX(-35px) translateZ(-200px) scale(.6);
  opacity: 0; z-index: 0;
  pointer-events: none;
}
.hero-stack .hero-stack__card[data-pos="hidden3"] {
  transform: translateX(0) translateZ(-250px) scale(.5);
  opacity: 0; z-index: 0;
  pointer-events: none;
}
/* Progressive reveal: hide cards until video is ready to render */
.hero-stack__card:not(.video-ready) { opacity: 0 !important; }

.hero-stack__arrows {
  position: absolute; bottom: -50px;
  left: calc(35px + 124px); transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.hero-stack__arrow {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--color-gray-200); background: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary); transition: all .2s;
  box-shadow: 0 2px 8px rgba(18,0,31,.06);
}
.hero-stack__arrow:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.hero-stack__arrow svg { width: 16px; height: 16px; }

.video-player__screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #1a0a2e, #2d1154);
  position: relative;
  overflow: hidden;
}

/* Video area */
.phone-video {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.phone-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 40% 35%, rgba(139, 77, 255, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 65% 65%, rgba(240, 0, 185, 0.2) 0%, transparent 50%);
}

.phone-video__badge {
  position: absolute;
  top: 36px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: var(--color-live);
  border-radius: var(--radius-full);
  font-size: 9px;
  font-weight: var(--fw-bold);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}
.phone-video__badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  animation: pulse-dot 1.5s infinite;
}

.phone-video__viewers {
  position: absolute;
  top: 36px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  font-size: 9px;
  color: white;
  z-index: 2;
}
.phone-video__viewers .material-symbols-rounded {
  font-size: 12px;
}

.phone-video__presenter {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
.phone-video__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 30px rgba(137, 0, 255, 0.3);
}
.phone-video__avatar .material-symbols-rounded {
  font-size: 36px;
  color: white;
}
.phone-video__name {
  font-size: 11px;
  font-weight: var(--fw-semibold);
  color: white;
}

/* Reactions floating */
.phone-video__reactions {
  position: absolute;
  right: 14px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}
.phone-reaction {
  font-size: 18px;
  animation: float-up 3s ease-out infinite;
  opacity: 0.8;
}
.phone-reaction:nth-child(2) { animation-delay: 0.8s; }
.phone-reaction:nth-child(3) { animation-delay: 1.6s; }
@keyframes float-up {
  0% { transform: translateY(0); opacity: 0.8; }
  100% { transform: translateY(-30px); opacity: 0; }
}

/* Bottom product overlay */
.phone-bottom {
  padding: 10px 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  position: relative;
  z-index: 2;
}

.phone-product {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.phone-product__img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phone-product__img .material-symbols-rounded {
  font-size: 22px;
  color: var(--color-secondary);
}
.phone-product__info {
  flex: 1;
  color: white;
}
.phone-product__name {
  font-size: 10px;
  font-weight: var(--fw-medium);
  opacity: 0.9;
}
.phone-product__price {
  font-size: 13px;
  font-weight: var(--fw-bold);
}
.phone-product__cta {
  padding: 6px 14px;
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: var(--fw-bold);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

/* Chat overlay */
.phone-chat {
  padding: 0 12px 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 2;
}
.phone-chat__msg {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 8px;
  border-radius: 8px;
  width: fit-content;
}
.phone-chat__msg strong {
  color: white;
  font-weight: var(--fw-semibold);
}

@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding: calc(72px + var(--space-12)) 0 var(--space-12);
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }
  .hero__content {
    padding-left: 0;
  }
  .hero__subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__visual {
    height: 440px;
  }
  .hero-stack {
    width: 300px;
    height: 420px;
  }
  .hero-stack .hero-stack__card {
    width: 200px;
    height: 396px;
  }
  .video-player {
    max-width: 200px;
  }
}

@media (max-width: 640px) {
  .hero__title {
    font-size: var(--fs-3xl);
  }
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .hero__visual {
    height: 380px;
  }
  .hero-stack {
    width: 260px;
    height: 370px;
  }
  .hero-stack .hero-stack__card {
    width: 175px;
    height: 346px;
  }
  .hero-stack__arrows {
    left: calc(30px + 87px);
  }
  .video-player {
    max-width: 160px;
  }
}

/* =========================================================
   CLIENT LOGOS
   ========================================================= */
.logos-section {
  padding: var(--space-8) 0;
}
.logos-section__label {
  text-align: center;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-6);
}
.logos-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.logos-marquee::before,
.logos-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.logos-marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}
.logos-marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}
.logos-track {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  animation: marquee 60s linear infinite;
  width: max-content;
}
.logos-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logos-track__item {
  height: 28px;
  width: 120px;
  object-fit: contain;
  flex-shrink: 0;
}
/* Clickable logos with case study page */
.logos-track__link {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.logos-track__link:hover {
  transform: scale(1.12);
}
.logos-track__link .logos-track__item {
  cursor: pointer;
}

@media (max-width: 640px) {
  .logos-track__item {
    height: 22px;
    width: 100px;
  }
  .logos-track {
    gap: var(--space-10);
  }
  .logos-marquee::before,
  .logos-marquee::after {
    width: 40px;
  }
}

/* =========================================================
   KEY METRICS — Glassmorphism
   ========================================================= */
/* =========================================================
   AVANT / APRES — Cards side by side
   ========================================================= */
.avant-apres {
  padding: var(--space-20) 0;
  background: var(--color-gray-50);
  position: relative;
  overflow: hidden;
}
.avant-apres__bg-1 {
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,77,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.avant-apres__bg-2 {
  position: absolute; bottom: -150px; left: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,0,185,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.avant-apres__cards {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.avant-apres__arrow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center;
}
.avant-apres__arrow .material-symbols-rounded {
  font-size: 22px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card base */
.aa-card {
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background: var(--color-white);
}
.aa-card__inner { padding: 40px; }

/* Before card */
.aa-card--before {
  border: 1px solid var(--color-gray-200);
}
.aa-card--before::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, #D4544E, #E88B87);
}
.aa-card--before::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 80px; height: 80px;
  background: repeating-linear-gradient(-45deg, transparent, transparent 6px, rgba(212,84,78,0.03) 6px, rgba(212,84,78,0.03) 7px);
  pointer-events: none;
}
.aa-card__badge--before {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #B85450;
  background: rgba(212,84,78,0.06);
  border: 1px solid rgba(212,84,78,0.1);
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 24px;
}
.aa-card__badge--before .material-symbols-rounded { font-size: 14px; }
.aa-card__title--before {
  font-size: 1.35rem; font-weight: 800;
  color: var(--color-gray-500); margin-bottom: 8px;
  line-height: 1.3; position: relative;
}
.aa-card__desc--before {
  font-size: var(--fs-sm); color: var(--color-gray-400);
  margin-bottom: 32px; line-height: 1.5;
}
.aa-card__list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.aa-card__item {
  display: flex; align-items: center; gap: 14px;
}
.aa-card__icon--before {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--color-gray-100); border: 1px solid var(--color-gray-200);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.aa-card__icon--before .material-symbols-rounded { font-size: 16px; color: #C47370; }
.aa-card__text--before {
  font-size: var(--fs-sm); font-weight: 500; color: var(--color-gray-400); line-height: 1.4;
}
.aa-card__bottom--before {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--color-gray-200);
  display: flex; align-items: center; gap: 8px;
  color: var(--color-gray-400); font-size: var(--fs-xs); font-weight: 500;
}
.aa-card__bottom--before .material-symbols-rounded { font-size: 18px; color: var(--color-gray-300); }

/* After card */
.aa-card--after {
  border: 1px solid rgba(139,77,255,0.12);
  box-shadow: 0 4px 6px rgba(0,0,0,0.02), 0 12px 40px rgba(139,77,255,0.08), 0 24px 80px rgba(139,77,255,0.05);
  transform: translateY(-8px) scale(1.02);
}
.aa-card--after::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--gradient-primary);
}
.aa-card--after .aa-card__inner { padding: 44px; }
.aa-card__badge--after {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, rgba(139,77,255,0.06), rgba(240,0,185,0.06));
  border: 1px solid rgba(139,77,255,0.1);
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 24px;
}
.aa-card__badge--after .material-symbols-rounded { font-size: 14px; color: var(--color-secondary); }
.aa-card__badge--after span:last-child {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--gradient-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.aa-card__title--after {
  font-size: 1.5rem; font-weight: 800;
  color: var(--color-primary); margin-bottom: 8px; line-height: 1.3;
}
.aa-card__desc--after {
  font-size: var(--fs-sm); color: var(--color-gray-500);
  margin-bottom: 32px; line-height: 1.5;
}
.aa-card__icon--after {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(137, 0, 255, 0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.aa-card__icon--after .material-symbols-rounded { font-size: 16px; color: var(--color-secondary); }
.aa-card__text--after {
  font-size: var(--fs-sm); font-weight: 600; color: var(--color-primary); line-height: 1.4;
}
.aa-card__text--after .sub {
  display: block; font-size: var(--fs-xs); font-weight: 400;
  color: var(--color-gray-500); margin-top: 2px;
}
.aa-card__bottom--after {
  margin-top: 36px; padding-top: 24px;
  border-top: 1px solid rgba(139,77,255,0.08);
}
.aa-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 12px;
  background: var(--color-primary);
  color: #fff; font-size: var(--fs-sm); font-weight: 700;
  text-decoration: none; transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(18,0,31,0.25);
}
.aa-card__cta:hover {
  box-shadow: 0 6px 24px rgba(18,0,31,0.35);
  transform: translateY(-1px);
}
.aa-card__cta .material-symbols-rounded { font-size: 18px; }

@media (max-width: 768px) {
  .avant-apres__cards {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 480px;
  }
  .avant-apres__arrow { display: none; }
  .aa-card--after { transform: none; }
}

/* =========================================================
   COMMENT CA MARCHE (How it works) — Horizontal Timeline
   ========================================================= */
.how-section {
  padding: var(--space-24) 0;
  background: var(--color-gray-50);
}
.how-section .section-header {
  margin-bottom: var(--space-16);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
}

/* Gradient timeline line */
.how-timeline {
  position: absolute;
  top: 28px;
  left: calc(16.67%);
  right: calc(16.67%);
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  z-index: 0;
}

.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 var(--space-4);
}

.how-step__dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  position: relative;
  transition: all var(--transition-base);
}
.how-step:hover .how-step__dot {
  background: var(--color-secondary);
  transform: scale(1.1);
}
.how-step__dot .material-symbols-rounded {
  font-size: 24px;
  color: var(--color-secondary);
  transition: color var(--transition-base);
}
.how-step:hover .how-step__dot .material-symbols-rounded {
  color: var(--color-white);
}

.how-step__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
}

.how-step__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-3);
  color: var(--color-primary);
}
.how-step__desc {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .how-steps {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .how-timeline {
    display: none;
  }
}

/* =========================================================
   FEATURE SECTIONS (Live Video & Shoppable Video)
   ========================================================= */
.feature-section {
  padding: var(--space-16) 0;
}
.feature-section--alt {
  background: var(--color-gray-50);
}

.feature-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.feature-section--reversed .feature-section__inner {
  direction: rtl;
}
.feature-section--reversed .feature-section__content {
  direction: ltr;
}
.feature-section--reversed .feature-section__visual {
  direction: ltr;
}

.feature-section__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
  margin-bottom: var(--space-6);
}
.feature-section__label .material-symbols-rounded {
  font-size: 18px;
}

.feature-section__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
}

.feature-section__checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8) 0;
}
.feature-section__checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-gray-200);
  font-size: var(--fs-sm);
  color: var(--color-gray-600);
  font-weight: var(--fw-medium);
}
.feature-section__checklist li:first-child {
  border-top: 1px solid var(--color-gray-200);
}
.feature-section__checklist .material-symbols-rounded {
  display: none;
}
.feature-section__checklist li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-primary);
  flex-shrink: 0;
}

/* Services feature section (Bien plus qu'une solution technique) */
.svc-section { padding: var(--space-16) 0; }
.svc-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.svc__left { position: sticky; top: 80px; }
.svc__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(137,0,255,.08);
  border: 1px solid rgba(137,0,255,.15);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 18px;
}
.svc__label .material-symbols-rounded { font-size: 14px; }
.svc__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.svc__subtitle {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
  margin-bottom: 28px;
}
.svc__rows { display: flex; flex-direction: column; }
.svc__row {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-gray-200);
  transition: background .2s;
  cursor: default;
}
.svc__row:first-child { border-top: 1px solid var(--color-gray-200); }
.svc__row:hover { background: transparent; }
.svc__row-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svc__row-icon .material-symbols-rounded { font-size: 22px; }
.svc__row:nth-child(1) .svc__row-icon { background: rgba(139,77,255,.12); }
.svc__row:nth-child(1) .svc__row-icon .material-symbols-rounded { color: #9B5DFF; }
.svc__row:nth-child(2) .svc__row-icon { background: rgba(240,0,185,.10); }
.svc__row:nth-child(2) .svc__row-icon .material-symbols-rounded { color: #F000B9; }
.svc__row:nth-child(3) .svc__row-icon { background: rgba(0,180,140,.10); }
.svc__row:nth-child(3) .svc__row-icon .material-symbols-rounded { color: #00B48C; }
.svc__row:nth-child(4) .svc__row-icon { background: rgba(255,149,0,.12); }
.svc__row:nth-child(4) .svc__row-icon .material-symbols-rounded { color: #FF9500; }
.svc__row-title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 3px;
  max-width: 32ch;
}
.svc__row-desc {
  font-size: var(--fs-xs);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
  max-width: 46ch;
}
@media (max-width: 900px) {
  .svc-inner { grid-template-columns: 1fr; gap: 40px; }
  .svc__left { position: static; }
}

.feature-section__desc {
  font-size: var(--fs-base);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
  max-width: 480px;
}

/* =========================================================
   DIFFUSION MULTICANALE — Signal broadcast
   ========================================================= */
.multicanal-section {
  padding: var(--space-16) 0;
  background: #FAFAFA;
}
.multicanal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.multicanal-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.multicanal-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Broadcast canvas */
.bc-canvas {
  position: relative;
  width: min(380px, 100%);
  aspect-ratio: 1;
}
.bc-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Concentric waves */
.bc-wave {
  fill: none;
  stroke: rgba(137, 0, 255, 0.18);
  stroke-width: 1.5;
  transform-origin: 190px 190px;
  animation: waveExpand 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}
.bc-wave:nth-child(1) { animation-delay: 0s; }
.bc-wave:nth-child(2) { animation-delay: 0.8s; }
.bc-wave:nth-child(3) { animation-delay: 1.6s; }
@keyframes waveExpand {
  0%   { r: 40;  opacity: 0.7; }
  100% { r: 160; opacity: 0; }
}

/* Connection lines */
.bc-line {
  stroke: rgba(137, 0, 255, 0.18);
  stroke-width: 1;
  fill: none;
  stroke-linecap: round;
}

/* Central hub */
.bc-hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #12001F;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(18, 0, 31, 0.30);
}
.bc-hub .material-symbols-rounded {
  font-size: 26px;
  color: #fff;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 92, 0.5); }
  60%       { box-shadow: 0 0 0 5px rgba(255, 0, 92, 0); }
}
.bc-live-dot {
  position: absolute;
  top: 10px; right: 10px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #FF005C;
  animation: livePulse 1.8s ease-out infinite;
  border: 1.5px solid #FAFAFA;
}

/* Platform nodes */
.bc-platform {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: default;
  z-index: 5;
}
.bc-platform__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(18, 0, 31, 0.09);
  transition: transform 0.22s, box-shadow 0.22s;
}
.bc-platform:hover .bc-platform__icon {
  transform: scale(1.12);
  box-shadow: 0 4px 16px rgba(137, 0, 255, 0.15);
}
.bc-platform__icon svg { display: block; }
.bc-platform__icon .material-symbols-rounded {
  font-size: 20px;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.bc-platform__name {
  font-size: 11px;
  font-weight: 600;
  color: #525252;
  white-space: nowrap;
  line-height: 1;
}

.mc-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.mc-pill {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
  border: 1.5px solid #E5E5E5;
  border-radius: var(--radius-full);
  padding: 7px 16px;
  background: #fff;
  transition: border-color .2s, color .2s;
  cursor: default;
}
.mc-pill:hover { border-color: var(--color-secondary); color: var(--color-secondary); }

@media (max-width: 900px) {
  .multicanal-inner { grid-template-columns: 1fr; gap: 48px; }
  .multicanal-content { order: 2; }
  .multicanal-visual { order: 1; }
}
/* bc-canvas is now fully responsive via min(380px, 100%) */

/* Feature cards — V5a Floating Lines */
.feature-cards {
  max-width: 560px;
  width: 100%;
  margin-bottom: var(--space-8);
}
.feature-cards__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.feature-cards__column {
  display: flex;
  flex-direction: column;
}
.feature-cards__title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding-bottom: 10px;
  margin-bottom: 4px;
}
.feature-cards__title--conversion {
  color: #8900FF;
  border-bottom: 2px solid #8900FF;
}
.feature-cards__title--engagement {
  color: #F000B9;
  border-bottom: 2px solid #F000B9;
}
.feature-cards__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  cursor: pointer;
  line-height: 1;
}
.feature-cards__item:last-child {
  border-bottom: none;
}
.feature-cards__item-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-cards__item-icon .material-symbols-rounded {
  font-size: 20px;
  color: #999;
}
.feature-cards__item-label {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: #2a2a2a;
  min-width: 0;
}
.feature-cards__item-ring {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-cards__item-ring .material-symbols-rounded {
  font-size: 16px;
  color: #bbb;
  font-variation-settings: 'FILL' 1;
  margin-left: 1px;
  transition: color 0.2s;
}
.feature-cards__item[data-demo] { cursor: pointer; }
.feature-cards__column--conversion .feature-cards__item:hover .feature-cards__item-ring {
  border-color: #8900FF;
  transform: scale(1.1);
}
.feature-cards__column--conversion .feature-cards__item:hover .feature-cards__item-ring .material-symbols-rounded {
  color: #8900FF;
}
.feature-cards__column--engagement .feature-cards__item:hover .feature-cards__item-ring {
  border-color: #F000B9;
  transform: scale(1.1);
}
.feature-cards__column--engagement .feature-cards__item:hover .feature-cards__item-ring .material-symbols-rounded {
  color: #F000B9;
}
@media (max-width: 480px) {
  .feature-cards__inner { grid-template-columns: 1fr; gap: 24px; }
}

/* Video player for Live Video section */
.feature-video {
  display: flex;
  justify-content: center;
}
.feature-video__player {
  width: 100%;
  box-shadow:
    0 4px 12px rgba(18, 0, 31, 0.08),
    0 16px 40px rgba(18, 0, 31, 0.12);
  background: var(--color-gray-900);
}

/* Phone mockup (legacy) */
.feature-phone {
  display: flex;
  justify-content: center;
}
.live-video-player {
  width: 100%;
  max-width: 252px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 4px 12px rgba(18, 0, 31, 0.08),
    0 16px 40px rgba(18, 0, 31, 0.12),
    0 0 0 0 rgba(139, 77, 255, 0.4);
  background: var(--color-gray-900);
  position: relative;
  aspect-ratio: 9 / 16;
  animation: hero-pulse 4s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes hero-pulse {
  0% { box-shadow: 0 4px 12px rgba(18, 0, 31, 0.08), 0 16px 40px rgba(18, 0, 31, 0.12), 0 0 0 0 rgba(139, 77, 255, 0.3); }
  30%, 100% { box-shadow: 0 4px 12px rgba(18, 0, 31, 0.08), 0 16px 40px rgba(18, 0, 31, 0.12), 0 0 0 20px rgba(139, 77, 255, 0); }
}

.live-video-player__screen {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone-live__video-area {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #1a0a2e 0%, #2d1154 50%, #3d1a6e 100%);
}
.phone-live__video-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 40% 30%, rgba(139, 77, 255, 0.25) 0%, transparent 60%),
    radial-gradient(circle at 60% 70%, rgba(240, 0, 185, 0.15) 0%, transparent 60%);
}
.phone-live__badge {
  position: absolute;
  top: 40px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  background: var(--color-live);
  border-radius: var(--radius-full);
  font-size: 9px;
  font-weight: var(--fw-bold);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.phone-live__badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  animation: pulse-dot 1.5s infinite;
}

.phone-live__presenter-area {
  position: relative;
  z-index: 1;
  text-align: center;
}
.phone-live__presenter-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-1);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.phone-live__presenter-icon .material-symbols-rounded {
  font-size: 28px;
  color: white;
}

.phone-live__product-card {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
}
.phone-live__product-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--color-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phone-live__product-img .material-symbols-rounded {
  font-size: 20px;
  color: var(--color-gray-400);
}
.phone-live__product-info {
  flex: 1;
}
.phone-live__product-name {
  font-size: 10px;
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
}
.phone-live__product-price {
  font-size: 10px;
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
}
.phone-live__product-btn {
  padding: 5px 10px;
  font-size: 9px;
  font-weight: var(--fw-bold);
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-full);
  white-space: nowrap;
  border: none;
}

/* Shoppable video — Video player rectangle */
.shoppable-video-player {
  width: 100%;
  max-width: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 4px 12px rgba(18, 0, 31, 0.08),
    0 16px 40px rgba(18, 0, 31, 0.12),
    0 0 0 0 rgba(139, 77, 255, 0.4);
  background: var(--color-gray-900);
  position: relative;
  aspect-ratio: 9 / 16;
  animation: hero-pulse 4s infinite cubic-bezier(0.66, 0, 0, 1);
}

.shoppable-video-player__screen {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #1a0a2e 0%, #2d1154 40%, #1a0a2e 100%);
}
.shoppable-video-player__screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(240, 0, 185, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(139, 77, 255, 0.3) 0%, transparent 50%);
}

/* Floating product hotspot tags */
.shoppable-hotspot {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 6px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-full);
  z-index: 4;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.shoppable-hotspot__img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, #e8e0f0, #d4c8e4);
  flex-shrink: 0;
}
.shoppable-hotspot__info {
  display: flex;
  flex-direction: column;
}
.shoppable-hotspot__name {
  font-size: 9px;
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  line-height: 1.2;
  white-space: nowrap;
}
.shoppable-hotspot__price {
  font-size: 9px;
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  line-height: 1.2;
}

/* Pulsing dot on hotspot */
.shoppable-hotspot::before {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-secondary);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* Bottom product drawer overlay */
.shoppable-drawer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  z-index: 4;
}
.shoppable-drawer__product {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
}
.shoppable-drawer__thumb {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e8e0f0, #d4c8e4);
  flex-shrink: 0;
}
.shoppable-drawer__info {
  flex: 1;
  min-width: 0;
}
.shoppable-drawer__name {
  font-size: 10px;
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  line-height: 1.3;
}
.shoppable-drawer__price {
  font-size: 10px;
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
}
.shoppable-drawer__cta {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  font-size: 9px;
  font-weight: var(--fw-bold);
  color: white;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Shoppable Carousel */
.sc-wrap {
  position: relative; width: 100%; max-width: 580px; height: 400px;
  display: flex; align-items: center; justify-content: center; direction: ltr;
}
.sc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 20; transition: all 0.2s ease;
  right: -6px; user-select: none;
}
.sc-arrow--left { right: auto; left: -6px; }
.sc-arrow:hover { background: #fff; box-shadow: 0 6px 28px rgba(0,0,0,0.16); transform: translateY(-50%) scale(1.05); }
.sc-arrow svg { width: 18px; height: 18px; color: #333; }
.sc-track { display: flex; align-items: center; justify-content: center; }
.sc-card {
  border-radius: 14px; overflow: hidden; position: relative;
  flex-shrink: 0; transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94); background: #000;
}
.sc-card video { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; }
.sc-card[data-pos="outer-left"]  { width: 108px; height: 228px; opacity: 0.35; filter: blur(2.5px); z-index: 2; margin: 0 -22px; }
.sc-card[data-pos="side-left"]   { width: 130px; height: 256px; opacity: 0.6;  filter: blur(1px);   z-index: 5; margin: 0 -30px; }
.sc-card[data-pos="center"]      { width: 200px; height: 356px; opacity: 1;    filter: none;        z-index: 10; margin: 0; box-shadow: 0 20px 60px rgba(0,0,0,0.25), 0 8px 24px rgba(0,0,0,0.15); }
.sc-card[data-pos="side-right"]  { width: 130px; height: 256px; opacity: 0.6;  filter: blur(1px);   z-index: 5; margin: 0 -30px; }
.sc-card[data-pos="outer-right"] { width: 108px; height: 228px; opacity: 0.35; filter: blur(2.5px); z-index: 2; margin: 0 -22px; }
.sc-card[data-pos="hidden"]      { width: 0; height: 0; opacity: 0; z-index: 0; margin: 0; overflow: hidden; }
.sc-card::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.15); z-index: 1; pointer-events: none; transition: opacity 0.5s; }
.sc-card[data-pos="center"]::after { opacity: 0; }
.sc-ov { position: absolute; inset: 0; z-index: 4; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.sc-card[data-pos="center"] .sc-ov { opacity: 1; pointer-events: auto; }
.sc-ov__top { position: absolute; top: 0; left: 0; right: 0; padding: 10px 12px; display: flex; align-items: center; justify-content: space-between; z-index: 5; background: linear-gradient(to bottom, rgba(0,0,0,0.35), transparent); }
.sc-ov__menu { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.sc-ov__menu svg { width: 16px; height: 16px; color: rgba(255,255,255,0.9); }
.sc-ov__top-right { display: flex; align-items: center; gap: 6px; }
.sc-ov__icon { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.sc-ov__icon svg { width: 15px; height: 15px; color: rgba(255,255,255,0.9); }
.sc-ov__grad { position: absolute; bottom: 0; left: 0; right: 0; height: 55%; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%); pointer-events: none; }
.sc-ov__product { position: absolute; bottom: 40px; left: 10px; right: 40px; display: flex; align-items: center; gap: 8px; z-index: 5; }
.sc-ov__pimg { width: 44px; height: 44px; border-radius: 0; background: #fff; flex-shrink: 0; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.sc-ov__pimg img { width: 100%; height: 100%; object-fit: cover; }
.sc-ov__pinfo { flex: 1; min-width: 0; }
.sc-ov__pname { font-size: 9px; font-weight: 500; color: #fff; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sc-ov__pprice { font-size: 11px; font-weight: 700; color: #fff; margin-top: 2px; }
.sc-ov__actions { position: absolute; bottom: 44px; right: 10px; display: flex; flex-direction: column; align-items: center; gap: 12px; z-index: 5; }
.sc-ov__action { display: flex; flex-direction: column; align-items: center; gap: 2px; cursor: pointer; }
.sc-ov__action svg { width: 20px; height: 20px; color: #fff; }
.sc-ov__action-count { font-size: 9px; color: rgba(255,255,255,0.8); font-weight: 600; }
.sc-ov__progress { position: absolute; bottom: 22px; left: 10px; right: 10px; height: 2px; background: rgba(255,255,255,0.2); border-radius: 2px; z-index: 5; overflow: hidden; }
.sc-ov__progress-fill { width: 0%; height: 100%; background: #fff; border-radius: 2px; transition: width 0.3s linear; }
.sc-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.4); z-index: 19; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.sc-backdrop.is-open { opacity: 1; pointer-events: auto; }
.sc-sheet { position: absolute; bottom: 0; left: 0; right: 0; background: #fff; border-radius: 14px 14px 0 0; z-index: 20; padding: 0; transform: translateY(100%); opacity: 0; transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.25s ease; pointer-events: none; }
.sc-sheet.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.sc-sheet__head { display: flex; align-items: center; justify-content: flex-end; padding: 6px 10px 0; }
.sc-sheet__close { width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; cursor: pointer; border-radius: 50%; background: #f0f0f0; }
.sc-sheet__close svg { width: 12px; height: 12px; color: #333; }
.sc-sheet__items { padding: 2px 12px 8px; }
.sc-sheet__item { display: flex; align-items: center; gap: 8px; padding: 7px 0; cursor: pointer; transition: opacity 0.15s; }
.sc-sheet__item:hover { opacity: 0.7; }
.sc-sheet__item svg { width: 16px; height: 16px; color: #333; flex-shrink: 0; }
.sc-sheet__item span { font-size: 11px; font-weight: 500; color: #1a1a1a; }

@media (max-width: 640px) {
  .sc-wrap {
    height: 320px;
    max-width: 100%;
  }
  .sc-card[data-pos="center"]      { width: 160px; height: 284px; }
  .sc-card[data-pos="side-left"],
  .sc-card[data-pos="side-right"]  { width: 104px; height: 204px; margin: 0 -24px; }
  .sc-card[data-pos="outer-left"],
  .sc-card[data-pos="outer-right"] { width: 86px; height: 182px; margin: 0 -18px; }
  .sc-arrow { width: 32px; height: 32px; }
}

@media (max-width: 1024px) {
  .feature-section__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }
  .feature-section--reversed .feature-section__inner {
    direction: ltr;
  }
  .feature-section__desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .feature-list {
    align-items: center;
  }
  .shoppable-video-player {
    max-width: 234px;
  }
}

/* =========================================================
   RESULTS / STATS
   ========================================================= */
.results-section {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, #12001F 0%, #2a1050 50%, #12001F 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.results-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 180%;
  background: radial-gradient(ellipse at center, rgba(139, 77, 255, 0.25) 0%, transparent 60%);
  pointer-events: none;
}
.results-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 60%;
  height: 180%;
  background: radial-gradient(ellipse at center, rgba(240, 0, 185, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.results-section .section-header {
  position: relative;
  z-index: 1;
}
.results-section .section-header__subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}
.result-card {
  text-align: center;
  padding: var(--space-8) var(--space-4);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}
.result-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}
.result-card__value {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extrabold);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
  padding-bottom: 2px;
  color: var(--color-white);
}
.result-card__label {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
  line-height: var(--lh-normal);
  font-weight: var(--fw-medium);
}

@media (max-width: 768px) {
  .results-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-section {
  padding: var(--space-24) 0;
  background: var(--color-gray-50);
}

.testimonials-carousel {
  position: relative;
}
.testimonials-wrapper {
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: var(--space-6);
  transition: transform 0.4s ease;
}

.testimonial-card {
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  min-width: 380px;
  max-width: 380px;
  flex-shrink: 0;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.testimonial-card__icon {
  font-size: 36px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-4);
  line-height: 1;
  font-family: Georgia, serif;
  font-weight: 700;
}

.testimonial-card__quote {
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--color-gray-700);
  margin-bottom: var(--space-8);
  flex: 1;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.testimonial-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-card__name {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.testimonial-card__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #0A66C2;
  transition: opacity .2s;
  flex-shrink: 0;
}
.testimonial-card__linkedin:hover {
  opacity: .7;
}
.testimonial-card__linkedin svg {
  width: 14px;
  height: 14px;
}
.testimonial-card__role {
  font-size: 11px;
  color: var(--color-gray-400);
}
.testimonial-card__brand-logo {
  height: 30px;
  flex-shrink: 0;
}
.testimonial-card__brand-logo img {
  height: 100%;
  max-height: 30px;
  max-width: 100px;
  width: auto;
  object-fit: contain;
}

/* Carousel arrows */
.testimonials-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-base);
}
.testimonials-arrow:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gray-300);
}
.testimonials-arrow .material-symbols-rounded {
  font-size: 20px;
  color: var(--color-primary);
}
.testimonials-arrow--prev { left: -22px; }
.testimonials-arrow--next { right: -22px; }

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 300px;
    max-width: 300px;
  }
  .testimonials-arrow { display: none; }
}

/* =========================================================
   ACCOMPAGNEMENT
   ========================================================= */
.accomp-section {
  padding: var(--space-24) 0;
  background: var(--color-gray-50);
}

.accomp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.accomp-card {
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  text-align: center;
  transition: all var(--transition-base);
}
.accomp-card:hover {
  border-color: var(--color-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.accomp-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  background: rgba(137, 0, 255, 0.06);
}
.accomp-card__icon .material-symbols-rounded {
  font-size: 26px;
  color: var(--color-secondary);
}

.accomp-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-3);
  color: var(--color-primary);
}
.accomp-card__desc {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-6);
}
.accomp-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-secondary);
  transition: gap var(--transition-fast);
}
.accomp-card__link:hover {
  gap: var(--space-2);
}
.accomp-card__link .material-symbols-rounded {
  font-size: 18px;
}

@media (max-width: 768px) {
  .accomp-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

/* =========================================================
   INTEGRATION
   ========================================================= */
.integration-section {
  padding: var(--space-24) 0;
}

.integration-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.code-block {
  background: #0D0117;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(18, 0, 31, 0.2);
}
.code-block__header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.code-block__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.code-block__dot--red { background: #FF5F57; }
.code-block__dot--yellow { background: #FFBD2E; }
.code-block__dot--green { background: #28C840; }
.code-block__filename {
  margin-left: var(--space-2);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'SF Mono', 'Fira Code', monospace;
}
.code-block__body {
  padding: 20px;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  overflow-x: auto;
}
.code-block__body .tag { color: #FF5F9E; }
.code-block__body .attr { color: #D6BFFF; }
.code-block__body .val { color: #7DF9FF; }
.code-block__body .comment { color: rgba(255, 255, 255, 0.25); }

.integration-platforms {
  text-align: center;
}
.integration-platforms__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-6);
  color: var(--color-primary);
}
.platform-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  max-width: 400px;
  margin: 0 auto;
}
.platform-logo__name {
  white-space: nowrap;
}
.platform-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
.platform-logo__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: var(--fw-extrabold);
  color: var(--color-gray-500);
}
.platform-logo__name {
  font-size: 10px;
  font-weight: var(--fw-medium);
  color: var(--color-gray-400);
}

@media (max-width: 1024px) {
  .integration-inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .code-block {
    max-width: 600px;
    margin: 0 auto;
  }
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  padding: var(--space-24) 0;
  background: var(--color-gray-50);
}
.cta-card {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-16) var(--space-8);
  background: var(--color-primary);
  border-radius: var(--radius-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(139, 77, 255, 0.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(240, 0, 185, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-card > * {
  position: relative;
  z-index: 1;
}
.cta-card__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}
.cta-card__desc {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-8);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: var(--lh-relaxed);
}
.cta-card__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.cta-card .btn--gradient {
  padding: 14px 32px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
}
.cta-card .btn--outline {
  padding: 14px 32px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}
.cta-card .btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 640px) {
  .cta-card {
    padding: var(--space-10) var(--space-6);
  }
  .cta-card__actions {
    flex-direction: column;
  }
  .cta-card__actions .btn {
    width: 100%;
  }
}

/* =========================================================
   GLOBAL RESPONSIVE OVERRIDES
   ========================================================= */
@media (max-width: 768px) {
  .section {
    padding: var(--space-16) 0;
  }
  .how-section,
  .feature-section,
  .results-section,
  .testimonials-section,
  .accomp-section,
  .integration-section,
  .cta-section {
    padding: var(--space-16) 0;
  }
  .section-header {
    margin-bottom: var(--space-8);
  }
}

/* =========================================================
   ECLS 2026 SECTION
   ========================================================= */
.ecls {
  position: relative;
  padding: 80px 24px 100px;
  overflow: hidden;
  background: #12001F;
  color: #fff;
}
.ecls__container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.ecls__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}
.ecls__badge .material-symbols-rounded {
  font-size: 14px;
  color: #FFD700;
}
.ecls__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: #fff;
}
.ecls__title span {
  color: #FFD700;
  -webkit-text-fill-color: #FFD700;
}
.ecls__subtitle {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin-bottom: 20px;
}
.ecls__date-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 48px;
}
.ecls__date-tag .material-symbols-rounded {
  font-size: 16px;
  color: #FFD700;
}
.ecls__kpis {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .ecls__kpis { flex-direction: column; gap: 24px; }
}
.ecls__kpi {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ecls__kpi-number {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}
.ecls__kpi-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.ecls__hero-photo {
  position: relative;
  width: 100%;
  height: 440px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 8px;
}
.ecls__hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.ecls__hero-photo:hover img {
  transform: scale(1.03);
}
.ecls__hero-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(18,0,31,0.75) 0%, rgba(18,0,31,0.3) 50%, transparent 100%);
  pointer-events: none;
}
.ecls__hero-overlay {
  position: absolute;
  bottom: 24px;
  left: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ecls__hero-overlay-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.ecls__hero-overlay-date {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ecls__hero-overlay-date .material-symbols-rounded {
  font-size: 16px;
  color: #D6BFFF;
}
.ecls__photos-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .ecls__photos-row { grid-template-columns: repeat(2, 1fr); }
}
.ecls__photos-row-item {
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
}
.ecls__photos-row-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.ecls__photos-row-item:hover img {
  transform: scale(1.05);
}
.ecls__next {
  position: relative;
  padding: 40px 48px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .ecls__next { flex-direction: column; text-align: center; padding: 32px 24px; }
}
.ecls__next::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(137,0,255,0.08), transparent 70%);
  pointer-events: none;
}
.ecls__next-info {
  position: relative;
  z-index: 1;
}
.ecls__next-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8900FF;
  margin-bottom: 8px;
}
.ecls__next-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #12001F;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.ecls__next-date {
  font-size: 14px;
  color: #6B6B6B;
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 768px) {
  .ecls__next-date { justify-content: center; }
}
.ecls__next-date .material-symbols-rounded {
  font-size: 16px;
  color: #8900FF;
}
.ecls__next-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #8B4DFF, #F000B9);
  border: none;
  border-radius: 999px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.ecls__next-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(137,0,255,0.3);
}
.ecls__next-cta .material-symbols-rounded {
  font-size: 18px;
}

/* =========================================================
   CAMPAGNE LIVE & SHORTS
   ========================================================= */
/* ── Campagne Live & Shorts section ── */
.campagne-section { padding: 100px var(--container-padding); max-width: var(--container-max); margin: 0 auto; }


.campagne-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
.campagne-header__label { display: inline-flex; align-items: center; gap: 6px; padding: 5px 16px; background: rgba(137,0,255,.08); border: 1px solid rgba(137,0,255,.15); border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--color-secondary); margin-bottom: 20px; }
.campagne-header__label .material-symbols-rounded { font-size: 14px; }
.campagne-header__title { font-size: clamp(28px, 3vw, 44px); font-weight: 800; color: var(--color-primary); line-height: 1.18; letter-spacing: -.025em; margin-bottom: 14px; }
.campagne-header__desc { font-size: 15px; color: var(--color-gray-500); line-height: 1.7; max-width: 520px; margin: 0 auto; }

.campagne-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: 32px; align-items: center; position: relative; z-index: 1; }

/* ── Browser chrome ── */
.browser { border-radius: 18px; overflow: hidden; border: 1px solid rgba(18,0,31,.09); box-shadow: 0 20px 64px rgba(18,0,31,.1), 0 4px 16px rgba(18,0,31,.06); }
.browser-bar { background: #EEEDF4; border-bottom: 1px solid rgba(18,0,31,.07); padding: 9px 14px; display: flex; align-items: center; gap: 10px; }
.browser-dots { display: flex; gap: 5px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FEBC2E; }
.browser-dots span:nth-child(3) { background: #28C840; }
.browser-url { flex: 1; background: #fff; border: 1px solid rgba(18,0,31,.1); border-radius: 6px; padding: 4px 10px; font-size: 10px; color: var(--color-gray-500); display: flex; align-items: center; gap: 5px; }
.browser-url::before { content: '🔒'; font-size: 9px; }

/* ══════════════════════════════════════════
   DECATHLON DECAT LIVE page mockup
══════════════════════════════════════════ */

.dcat-page { background: #1a2535; }

/* ── Bandeau Decathlon ── */
.dcat-nav {
  background: #3643ba;
  padding: 10px 16px;
  display: flex; align-items: center;
}
.dcat-nav-logo { height: 22px; width: auto; display: block; }
/* Replay thumbnail cards scattered */
.dcat-rcard {
  position: absolute;
  border-radius: 5px; overflow: hidden;
  background: linear-gradient(135deg, #1a6080, #2a8090);
  border: 1px solid rgba(255,255,255,.12);
}
.dcat-rcard::before {
  content: 'REPLAY';
  position: absolute; top: 4px; left: 4px;
  font-size: 4px; font-weight: 900; color: rgba(255,255,255,.8);
  letter-spacing: .1em;
  background: rgba(0,0,0,.3); padding: 1px 4px; border-radius: 2px;
}
.dcat-rcard:nth-child(1) { width: 52px; height: 38px; top: 8px; left: 8px; transform: rotate(-4deg); background: linear-gradient(135deg, #1a6080, #1A8060); }
.dcat-rcard:nth-child(2) { width: 44px; height: 32px; bottom: 8px; left: 16px; transform: rotate(3deg); background: linear-gradient(135deg, #2a4070, #3a60A0); }
.dcat-rcard:nth-child(3) { width: 50px; height: 36px; top: 8px; right: 10px; transform: rotate(2deg); background: linear-gradient(135deg, #1a6050, #208070); }
.dcat-rcard:nth-child(4) { width: 42px; height: 30px; bottom: 10px; right: 14px; transform: rotate(-4deg); background: linear-gradient(135deg, #305080, #2060A0); }
/* DECAT LIVE logo */
.dcat-logo-name {
  font-size: 26px; font-weight: 900; color: #fff;
  letter-spacing: -.01em; line-height: 1; font-family: Arial, sans-serif;
  display: block;
}
.dcat-logo-line {
  display: flex; align-items: center; gap: 6px; margin-top: 1px;
}
.dcat-logo-live {
  font-size: 26px; font-weight: 900; color: #fff;
  letter-spacing: .15em; font-family: Arial, sans-serif;
  display: inline-block; line-height: 1;
}
.dcat-logo-dot { width: 10px; height: 10px; background: #E57B00; border-radius: 50%; flex-shrink: 0; }

/* ── Hide nav + promo in shorts mode ── */
[data-mode="shorts"] .dcat-nav { display: none; }

/* ── Views toggle — grid stacking so both views always contribute to height ── */
.dcat-views { display: grid; grid-template-columns: 1fr; }
.dcat-view { grid-row: 1; grid-column: 1; transition: opacity .35s; min-width: 0; }
[data-mode="live"]   .dcat-view--live   { opacity: 1; pointer-events: auto; }
[data-mode="live"]   .dcat-view--shorts { opacity: 0; pointer-events: none; }
[data-mode="shorts"] .dcat-view--live   { opacity: 0; pointer-events: none; }
[data-mode="shorts"] .dcat-view--shorts { opacity: 1; pointer-events: auto; }
.dcat-view--live { display: flex; flex-direction: column; }
.dcat-replays { flex: 0; }

/* ── Live view: video + info ── */
.dcat-live-row {
  display: flex; gap: 0; align-items: flex-start;
  padding: 18px 16px 22px;
  background: #DCDCEE;
}

/* Video player */
.dcat-video {
  flex: 0 0 60%;
  border-radius: 10px 0 0 10px; overflow: hidden;
  position: relative;
  background: #1a3850;
  aspect-ratio: 16/9;
}
#dcatVideo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* CSS ski scene */
.dcat-scene {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    #5BAAD6 0%, #8CC8EC 18%, #C0E0F8 36%,
    #E8F4FC 46%, #F0F8FF 52%,
    #E4EEF8 60%, #D8EAF8 72%, #C8DDEF 100%
  );
}
/* Snow slope shape */
.dcat-slope {
  position: absolute; bottom: 0; left: 0; right: 0; height: 58%;
  background: linear-gradient(180deg, rgba(235,248,255,.5) 0%, rgba(210,235,255,.85) 100%);
  clip-path: polygon(0 45%, 15% 25%, 32% 38%, 48% 18%, 65% 30%, 82% 12%, 100% 22%, 100% 100%, 0 100%);
}
/* Ski lift tower */
.dcat-tower { position: absolute; bottom: 12%; left: 37%; width: 2.5px; height: 42%; background: rgba(55,55,75,.7); }
.dcat-tower::before { content: ''; position: absolute; top: 8px; left: -22px; right: -22px; height: 1px; background: rgba(60,60,80,.45); }
.dcat-tower::after { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-style: solid; border-width: 0 5px 8px 5px; border-color: transparent transparent rgba(55,55,75,.7) transparent; }
/* Cable lines */
.dcat-cable { position: absolute; top: 15%; left: 0; right: 0; height: 1px; background: rgba(50,50,70,.35); transform: rotate(-3deg); }
/* Skier silhouettes */
.dcat-skier { position: absolute; }
.dcat-skier-b { width: 9px; height: 14px; background: rgba(30,20,10,.65); border-radius: 40% 40% 10% 10%; }
.dcat-skier-h { width: 7px; height: 7px; background: rgba(200,170,130,.6); border-radius: 50%; margin: 0 auto 1px; }
.dcat-skier:nth-child(1) { left: 18%; bottom: 27%; }
.dcat-skier:nth-child(2) { left: 30%; bottom: 22%; }
.dcat-skier:nth-child(3) { left: 50%; bottom: 28%; transform: rotate(-8deg); }
/* Bottom gradient */
.dcat-voverlay {
  position: absolute; bottom: 0; left: 0; right: 0; height: 55%;
  background: linear-gradient(0deg, rgba(0,0,0,.72) 0%, transparent 100%);
}
/* "• En replay" badge */
.dcat-replay {
  position: absolute; bottom: 34%; left: 8px;
  background: #C41E3A; color: #fff;
  font-size: 7px; font-weight: 700; padding: 3px 8px; border-radius: 3px;
  display: flex; align-items: center; gap: 4px; z-index: 5;
}
.dcat-rdot { width: 5px; height: 5px; background: #fff; border-radius: 50%; flex-shrink: 0; }
/* Title overlay at bottom */
.dcat-vtitle {
  position: absolute; bottom: 8px; left: 10px; right: 10px; z-index: 5;
  font-size: 9.5px; font-weight: 800; color: #fff; line-height: 1.35;
}
/* Play button */
.dcat-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px; background: rgba(255,255,255,.9);
  border-radius: 50%; border: 2px solid rgba(255,255,255,.7);
  box-shadow: 0 4px 16px rgba(0,0,0,.4); cursor: pointer; z-index: 6;
  transition: transform .15s, box-shadow .15s;
}
.dcat-play::after {
  content: ''; position: absolute; top: 50%; left: 53%; transform: translate(-50%,-50%);
  width: 0; height: 0; border-style: solid; border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #111;
}
.dcat-play:hover { transform: translate(-50%,-50%) scale(1.08); box-shadow: 0 6px 22px rgba(0,0,0,.5); }

/* ── Info panel ── */
.dcat-info {
  flex: 1; display: flex; flex-direction: column; gap: 0;
  background: #fff; border-radius: 0 10px 10px 0;
  padding: 12px 14px; position: relative;
  align-self: stretch;
}
.dcat-info-title {
  font-size: 15px; font-weight: 800; color: #111; line-height: 1.3;
  text-transform: uppercase; letter-spacing: .01em; margin-bottom: 10px;
}
.dcat-info-desc {
  font-size: 9px; color: #333; line-height: 1.75; margin-bottom: 14px; flex: 1;
}
.dcat-info-btn {
  background: #1E3A8A; color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 10px 20px; border-radius: 7px; border: none;
  align-self: flex-start; cursor: pointer; margin-bottom: 10px;
  font-family: var(--font-primary);
}
.dcat-info-date { font-size: 10px; font-weight: 700; font-style: italic; color: #111; }
.dcat-info-share { position: absolute; bottom: 0; right: 0; font-size: 15px; color: #bbb; }

/* ── Shorts view ── */
.dcat-shorts-row {
  display: flex; gap: 0; align-items: stretch;
  padding: 12px 14px 14px; background: #DCDCEE;
}
.dcat-shorts-grid {
  flex: 0 0 60%; display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  border-radius: 10px 0 0 10px; overflow: hidden; background: #111; aspect-ratio: 16/9;
}
.dcat-short { position: relative; overflow: hidden; }
.dcat-short:nth-child(1) { background: linear-gradient(155deg, #F000B9, #8B4DFF); }
.dcat-short:nth-child(2) { background: linear-gradient(155deg, #FF5500, #F000B9); }
.dcat-short:nth-child(3) { background: linear-gradient(155deg, #0055FF, #00B48C); }
.dcat-short:nth-child(4) { background: linear-gradient(155deg, #8B4DFF, #1a00ff); }
.dcat-short::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.5) 100%); }
.dcat-short-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-55%); width: 24px; height: 24px; background: rgba(255,255,255,.25); border-radius: 50%; }
.dcat-short-play::after { content: ''; position: absolute; top: 50%; left: 53%; transform: translate(-50%,-50%); width: 0; height: 0; border-style: solid; border-width: 4px 0 4px 8px; border-color: transparent transparent transparent rgba(255,255,255,.9); }
.dcat-short-tag { position: absolute; bottom: 7px; left: 50%; transform: translateX(-50%); background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.28); color: #fff; font-size: 6.5px; font-weight: 700; padding: 2px 6px; border-radius: 3px; white-space: nowrap; }
.dcat-shorts-info { flex: 1; display: flex; flex-direction: column; gap: 0; background: #fff; border-radius: 0 10px 10px 0; padding: 12px 14px; }
.dcat-shorts-info-count { font-size: 8px; font-weight: 700; color: #F000B9; margin-bottom: 6px; }
.dcat-shorts-info-title { font-size: 12.5px; font-weight: 800; color: #111; line-height: 1.3; text-transform: uppercase; margin-bottom: 9px; }
.dcat-shorts-info-desc { font-size: 7.5px; color: #333; line-height: 1.75; margin-bottom: 13px; flex: 1; }
.dcat-shorts-info-btn { background: #1E3A8A; color: #fff; font-size: 9px; font-weight: 700; padding: 9px 18px; border-radius: 7px; border: none; align-self: flex-start; cursor: pointer; font-family: var(--font-primary); }

/* ── Replays section ── */
.dcat-replays { background: #1a2535; padding: 14px 16px 10px; margin-top: 20px; }
.dcat-rep-hdr { display: flex; align-items: baseline; gap: 6px; margin-bottom: 10px; }
.dcat-rep-title { font-size: 11px; font-weight: 900; color: #fff; letter-spacing: .06em; text-transform: uppercase; font-family: Arial, sans-serif; }
.dcat-rep-count { font-size: 8px; color: rgba(255,255,255,.45); }
.dcat-rep-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px; }
.dcat-rep-thumb {
  aspect-ratio: 16/9; border-radius: 4px; overflow: hidden;
  position: relative; margin-bottom: 5px;
}
.dcat-rep-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.28); z-index: 1;
}
.dcat-rep-badge {
  position: absolute; top: 4px; left: 4px;
  background: #E53935; color: #fff; font-size: 5px; font-weight: 800;
  padding: 1.5px 4px; border-radius: 2px;
  display: flex; align-items: center; gap: 2px; z-index: 3; line-height: 1;
}
.dcat-rdot2 { width: 3px; height: 3px; background: #fff; border-radius: 50%; flex-shrink: 0; }
.dcat-rep-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.85);
  background: rgba(255,255,255,.18); z-index: 3;
}
.dcat-rep-play::after {
  content: ''; position: absolute; top: 50%; left: 54%; transform: translate(-50%,-50%);
  width: 0; height: 0; border-style: solid; border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent rgba(255,255,255,.92);
}
.dcat-rep-share { position: absolute; top: 4px; right: 5px; font-size: 9px; color: rgba(255,255,255,.65); z-index: 3; }
.dcat-rep-name { font-size: 6.5px; font-weight: 800; color: #fff; line-height: 1.3; text-transform: uppercase; margin-bottom: 3px; font-family: Arial, sans-serif; }
.dcat-rep-desc { font-size: 6.5px; color: rgba(255,255,255,.48); line-height: 1.55; }

/* Inline player overlay */
.dcat-inline-player {
  position: absolute; inset: 0; z-index: 20;
  background: #000; opacity: 0; pointer-events: none; transition: opacity .25s;
}
.dcat-inline-player.is-open { opacity: 1; pointer-events: auto; }
#inlineVideo { width: 100%; height: 100%; object-fit: contain; display: block; }
.dcat-inline-close {
  position: absolute; top: 10px; right: 10px; z-index: 25;
  width: 28px; height: 28px; background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%; color: #fff; cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center; transition: background .15s;
}
.dcat-inline-close:hover { background: rgba(255,255,255,.2); }

/* ══ Shorts view: Fiche produit WEDZE ══ */
.dcp-promo { background: #FFDE00; font-size: 7px; text-align: center; padding: 2px 10px; overflow: hidden; white-space: nowrap; }
.dcp-promo-link { color: #3643ba; font-weight: 700; text-decoration: underline; }
.dcp-breadcrumb { font-size: 6.5px; color: #888; padding: 3px 10px; display: flex; align-items: center; gap: 2px; white-space: nowrap; overflow: hidden; background: #fff; border-bottom: 1px solid #eee; }
.dcp-breadcrumb span + span::before { content: ' › '; color: #ccc; }
.dcp-breadcrumb span:last-child { color: #111; font-weight: 600; }
.dcp-layout { display: flex; background: #fff; }
/* Product images — 2 side by side */
.dcp-images { flex: 0 0 42%; background: #f2f2f2; display: flex; gap: 2px; }
.dcp-img-cell { flex: 1; aspect-ratio: 3/4; overflow: hidden; }
.dcp-img-cell img { width: 100%; height: 100%; object-fit: contain; display: block; }
/* CSS glove silhouette */
.dcp-glove { width: 48%; height: 72%; background: #1a1a1a; border-radius: 40% 40% 40% 40% / 22% 22% 55% 55%; position: relative; }
.dcp-glove::before { content: ''; position: absolute; top: -38%; left: 8%; width: 24%; height: 44%; background: inherit; border-radius: 50% 50% 0 0; }
.dcp-glove::after { content: ''; position: absolute; top: -33%; left: 34%; width: 56%; height: 38%; background: inherit; border-radius: 50% 50% 20% 20% / 50% 50% 20% 20%; }
/* Info panel — compact, no flex growth */
.dcp-info { flex: 1; padding: 10px 16px; background: #fff; display: flex; flex-direction: column; gap: 0; }
.dcp-brand { font-size: 8.5px; font-weight: 800; color: #111; letter-spacing: .08em; text-transform: uppercase; font-family: Arial, sans-serif; margin-bottom: 2px; }
.dcp-title { font-size: 11px; font-weight: 800; color: #111; line-height: 1.2; margin-bottom: 3px; }
.dcp-rating { font-size: 7px; color: #555; margin-bottom: 3px; display: flex; align-items: center; gap: 3px; }
.dcp-stars { color: #F5A623; font-size: 8.5px; }
.dcp-reviews-link { color: #3643ba; text-decoration: underline; }
.dcp-desc { font-size: 7px; color: #444; line-height: 1.5; margin-bottom: 4px; }
.dcp-pid { display: none; }
.dcp-color-label { font-size: 7px; color: #111; margin-bottom: 2px; }
.dcp-swatches { display: flex; gap: 3px; margin-bottom: 4px; }
.dcp-swatch { width: 12px; height: 12px; border-radius: 2px; border: 1px solid rgba(0,0,0,.1); flex-shrink: 0; }
.dcp-swatch.is-active { outline: 2px solid #3643ba; outline-offset: 1px; }
.dcp-size-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.dcp-size-label { font-size: 7px; color: #111; }
.dcp-size-guide { font-size: 6.5px; color: #3643ba; text-decoration: underline; }
.dcp-price { font-size: 15.5px; font-weight: 800; color: #111; margin-bottom: 5px; }
.dcp-cta { background: #3643ba; color: #fff; font-size: 9px; font-weight: 700; padding: 3px 8px; border: none; border-radius: 20px; cursor: pointer; width: 38%; font-family: var(--font-primary); }
/* Caast Shorts section */
.dcp-shorts-section { background: #fff; padding: 8px 12px 12px; border-top: 1px solid #eee; }
.dcp-shorts-hdr { display: flex; align-items: center; gap: 7px; margin-bottom: 7px; }
.dcp-shorts-hdr-title { font-size: 11px; font-weight: 800; color: #111; }
.dcp-shorts-hdr-badge { background: linear-gradient(90deg, #8900FF, #F000B9); color: #fff; font-size: 6.5px; font-weight: 700; padding: 2px 7px; border-radius: 3px; letter-spacing: .04em; text-transform: uppercase; }
/* ── Shoppable Videos — static player_caast_shorts design ── */
.dcp-shorts-row { display: flex; gap: 6px; }
.msp-wrapper { flex: 1; aspect-ratio: 248/442; overflow: hidden; border-radius: 0; position: relative; min-width: 0; box-shadow: 0 4px 16px rgba(0,0,0,.22); background: #111; cursor: pointer; transition: transform .18s, box-shadow .18s; }
.msp-wrapper:hover { transform: scale(1.04); box-shadow: 0 8px 28px rgba(0,0,0,.35); }
.msp-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.msp-grad-top { position: absolute; top: 0; left: 0; right: 0; height: 38%; background: linear-gradient(rgba(0,0,0,.25), transparent); z-index: 2; pointer-events: none; }
.msp-grad-bot { position: absolute; bottom: 0; left: 0; right: 0; height: 55%; background: linear-gradient(transparent, rgba(0,0,0,.72)); z-index: 2; pointer-events: none; }
/* Top bar */
.msp-topbar { position: absolute; top: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: space-between; padding: 6px 7px 4px; z-index: 10; }
.msp-topbar-r { display: flex; align-items: center; gap: 3px; }
.msp-ibtn { width: 14px; height: 14px; display: flex; align-items: center; justify-content: center; background: none; border: none; color: #fff; filter: drop-shadow(0 1px 2px rgba(0,0,0,.6)); padding: 0; cursor: default; line-height: 1; }
.msp-ibtn svg { width: 7px; height: 7px; display: block; flex-shrink: 0; }
/* Center play button */
.msp-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 24px; height: 24px; background: rgba(255,255,255,.88); border-radius: 50%; border: 1.5px solid rgba(255,255,255,.5); box-shadow: 0 2px 10px rgba(0,0,0,.4); z-index: 10; pointer-events: none; display: flex; align-items: center; justify-content: center; }
.msp-play::after { content: ''; width: 0; height: 0; border-style: solid; border-width: 4px 0 4px 8px; border-color: transparent transparent transparent #111; margin-left: 1px; }
/* Right actions */
.msp-actions { position: absolute; right: 7px; bottom: 30px; display: flex; flex-direction: column; align-items: center; gap: 6px; z-index: 10; }
.msp-action { display: flex; flex-direction: column; align-items: center; gap: 1px; background: none; border: none; color: #fff; filter: drop-shadow(0 1px 2px rgba(0,0,0,.6)); }
.msp-action svg { width: 9px; height: 9px; display: block; flex-shrink: 0; }
.msp-action span { font-size: 5px; font-weight: 600; color: #fff; }
/* Product card — matches .shorts-product */
.msp-product { position: absolute; bottom: 12px; left: 0; right: 0; z-index: 10; padding: 0 7px 6px; cursor: default; }
.msp-product-inner { display: flex; align-items: center; gap: 5px; }
.msp-thumb { width: 26px; height: 26px; flex-shrink: 0; background: #fff; overflow: hidden; }
.msp-thumb img { width: 26px; height: 26px; object-fit: contain; display: block; }
.msp-pinfo { flex: 1; min-width: 0; }
.msp-pname { font-size: 5.5px; font-weight: 400; color: #fff; line-height: 1.3; text-shadow: 0 1px 2px rgba(0,0,0,.5); }
.msp-pprice { font-size: 7px; font-weight: 700; color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.5); }
/* Progress bar */
.msp-bar { position: absolute; bottom: 5px; left: 7px; right: 7px; height: 2px; background: rgba(255,255,255,.28); border-radius: 1px; z-index: 11; }
.msp-bar-fill { height: 100%; background: #fff; border-radius: 1px; }

/* ── Shorts in-mockup player ── */
.dcat-sv { position: absolute; inset: 0; z-index: 21; opacity: 0; pointer-events: none; transition: opacity .25s; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.dcat-sv.is-open { opacity: 1; pointer-events: auto; }
/* Blurred background video */
.dcat-sv-bg { position: absolute; inset: -8%; z-index: 0; }
.dcat-sv-bg video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: blur(22px) brightness(.42); display: block; }
/* Carousel flex row */
.dcat-sv-carousel { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 0; z-index: 2; }
/* Side cards — partiellement cachées derrière la carte centrale */
.dcat-sv-side { flex-shrink: 0; height: 62%; aspect-ratio: 9/16; border-radius: 14px; overflow: hidden; cursor: pointer; position: relative; z-index: 1; background: #1a0a2e; transition: opacity .2s; }
.dcat-sv-side-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; filter: blur(3px) brightness(.6); transform: scale(1.08); }
.dcat-sv-side::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.5); z-index: 2; }
.dcat-sv-side-prev { margin-right: -72px; }
.dcat-sv-side-next { margin-left: -72px; }
.dcat-sv-side.sv-hidden { opacity: 0; pointer-events: none; }
/* Side card product badge */
.dcat-sv-side-prod { position: absolute; bottom: 10px; left: 0; right: 0; z-index: 3; padding: 0 8px; }
.dcat-sv-side-prod-row { display: flex; align-items: center; gap: 6px; }
.dcat-sv-side-pimg { width: 30px; height: 30px; background: #fff; overflow: hidden; flex-shrink: 0; }
.dcat-sv-side-pimg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dcat-sv-side-pname { font-size: 7.5px; color: rgba(255,255,255,.9); line-height: 1.3; margin-bottom: 1px; }
.dcat-sv-side-pprice { font-size: 9.5px; font-weight: 700; color: #fff; }
/* Center 9:16 card — player_caast_shorts design */
.dcat-sv-inner { position: relative; z-index: 10; height: 84%; aspect-ratio: 9/16; border-radius: 20px; overflow: hidden; background: #111; box-shadow: 0 8px 40px rgba(0,0,0,.6); flex-shrink: 0; }
.dcat-sv-inner video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.dcat-sv-gt { position: absolute; top: 0; left: 0; right: 0; height: 35%; background: linear-gradient(rgba(0,0,0,.25), transparent); z-index: 2; pointer-events: none; }
.dcat-sv-gb { position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: linear-gradient(transparent, rgba(0,0,0,.78)); z-index: 2; pointer-events: none; }
/* Topbar: 3-dots (left) | sound + X (right) */
.dcat-sv-topbar { position: absolute; top: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: space-between; padding: 14px 14px 10px; z-index: 10; background: linear-gradient(rgba(0,0,0,.22), transparent); }
.dcat-sv-topbar-right { display: flex; align-items: center; gap: 8px; }
.dcat-sv-ibtn { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; color: #fff; filter: drop-shadow(0 1px 3px rgba(0,0,0,.5)); padding: 0; transition: opacity .15s; }
.dcat-sv-ibtn:active { opacity: .6; }
.dcat-sv-ibtn svg { width: 16px; height: 16px; }
/* Right actions: heart + share */
.dcat-sv-actions { position: absolute; right: 14px; bottom: 60px; display: flex; flex-direction: column; align-items: center; gap: 18px; z-index: 10; }
.dcat-sv-act { display: flex; flex-direction: column; align-items: center; gap: 3px; background: none; border: none; cursor: pointer; color: #fff; padding: 0; filter: drop-shadow(0 1px 3px rgba(0,0,0,.5)); transition: transform .15s; }
.dcat-sv-act:active { transform: scale(.9); }
.dcat-sv-act svg { width: 18px; height: 18px; }
.dcat-sv-act span { font-size: 11px; font-weight: 600; color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,.5); }
.dcat-sv-act--liked svg { fill: #ff4d6d; color: #ff4d6d; }
/* Reaction bubbles */
.dcat-sv-bubbles { position: absolute; bottom: 140px; right: 18px; width: 30px; height: 120px; z-index: 9; pointer-events: none; }
.dcat-sv-bub { position: absolute; bottom: 0; font-size: 18px; animation: sv-rise 3s ease-out forwards; opacity: 0; }
@keyframes sv-rise { 0%{opacity:1;transform:translateY(0) scale(1)} 70%{opacity:.6} 100%{opacity:0;transform:translateY(-120px) scale(.5)} }
/* Product card */
.dcat-sv-product { position: absolute; bottom: 24px; left: 0; right: 0; z-index: 10; padding: 0 14px 16px; cursor: pointer; transition: opacity .2s; }
.dcat-sv-product:active { opacity: .8; }
.dcat-sv-prod { display: flex; align-items: center; gap: 10px; }
.dcat-sv-pimg { width: 50px; height: 50px; flex-shrink: 0; background: #fff; overflow: hidden; }
.dcat-sv-pimg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dcat-sv-pname { font-size: 11px; font-weight: 400; color: #fff; line-height: 1.3; margin-bottom: 2px; }
.dcat-sv-pprice { font-size: 13px; font-weight: 700; color: #fff; }
/* Progress bar */
.dcat-sv-bar { position: absolute; bottom: 28px; left: 14px; right: 14px; height: 3px; background: rgba(255,255,255,.3); border-radius: 2px; z-index: 10; overflow: hidden; }
.dcat-sv-bar-fill { height: 100%; background: #fff; border-radius: 2px; width: 0%; }
/* Bottom sheet */
.dcat-sv-sheet-bg { position: absolute; inset: 0; background: rgba(0,0,0,.75); z-index: 25; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.dcat-sv-sheet-bg.sv-on { opacity: 1; pointer-events: auto; }
.dcat-sv-sheet { position: absolute; bottom: 0; left: 0; right: 0; background: #fff; border-radius: 10px 10px 0 0; z-index: 26; transform: translateY(100%); transition: transform .6s cubic-bezier(.19,1,.22,1); }
.dcat-sv-sheet.sv-on { transform: translateY(0); }
.dcat-sv-sh-hdl { width: 32px; height: 4px; background: #ccc; border-radius: 2px; margin: 8px auto 10px; }
.dcat-sv-sh-x { position: absolute; top: 8px; right: 8px; background: none; border: none; cursor: pointer; color: #666; padding: 4px; display: flex; z-index: 1; }
.dcat-sv-sh-x svg { width: 16px; height: 16px; }
.dcat-sv-sh-body { padding: 0 14px 14px; }
.dcat-sv-sh-img { width: 100%; aspect-ratio: 4/3; background: #fff; border-radius: 8px; overflow: hidden; margin-bottom: 8px; }
.dcat-sv-sh-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.dcat-sv-sh-name { font-size: 11px; font-weight: 400; color: #1a1a1a; line-height: 1.35; margin-bottom: 5px; }
.dcat-sv-sh-price { font-size: 13px; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; }
.dcat-sv-sh-cta { display: block; width: 100%; padding: 8px; border: none; border-radius: 999px; background: #1a1a1a; color: #fff; font-size: 10px; font-weight: 600; cursor: pointer; text-align: center; font-family: var(--font-primary); margin-bottom: 6px; transition: background .15s; }
.dcat-sv-sh-cta:hover { background: #333; }
.dcat-sv-sh-cart { background: transparent; color: #1a1a1a; border: 1.5px solid #1a1a1a; padding: 5.5px 8px; }
.dcat-sv-sh-cart:hover { background: rgba(0,0,0,.05); }
@keyframes sv-cart { 0%,100%{transform:scale(1)} 30%{transform:scale(1.06)} 60%{transform:scale(.97)} }
.dcat-sv-sh-cart.sv-carted { animation: sv-cart .5s; background: #2E7D32 !important; border-color: #2E7D32 !important; color: #fff !important; }

/* ── Right: clickable cards ── */
.campagne-right-panel { display: flex; flex-direction: column; gap: 14px; }
.campagne-card { background: #fff; border: 1.5px solid rgba(18,0,31,.08); border-radius: 20px; padding: 24px; cursor: pointer; box-shadow: 0 2px 12px rgba(18,0,31,.05); transition: background .2s, border-color .2s, box-shadow .2s, transform .2s; }
.campagne-card:hover { box-shadow: 0 6px 24px rgba(18,0,31,.09); transform: translateX(4px); }
.campagne-card--live.is-active { border-color: #8B4DFF; box-shadow: 0 0 0 4px rgba(139,77,255,.1), 0 8px 32px rgba(139,77,255,.12); background: rgba(139,77,255,.03); }
.campagne-card--shorts.is-active { border-color: #F000B9; box-shadow: 0 0 0 4px rgba(240,0,185,.08), 0 8px 32px rgba(240,0,185,.1); background: rgba(240,0,185,.02); }
.campagne-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.campagne-card__badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 11px; border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.campagne-card--live .campagne-card__badge { background: rgba(139,77,255,.1); color: #8B4DFF; border: 1px solid rgba(139,77,255,.2); }
.campagne-card--live .campagne-card__badge .material-symbols-rounded { font-size: 11px; color: #E53935; }
.campagne-card--shorts .campagne-card__badge { background: rgba(240,0,185,.08); color: #F000B9; border: 1px solid rgba(240,0,185,.2); }
.campagne-card--shorts .campagne-card__badge .material-symbols-rounded { font-size: 11px; }
.campagne-card__indicator { width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(18,0,31,.15); transition: background .2s, border-color .2s, box-shadow .2s; }
.campagne-card--live.is-active .campagne-card__indicator { background: #8B4DFF; border-color: #8B4DFF; box-shadow: 0 0 8px rgba(139,77,255,.5); }
.campagne-card--shorts.is-active .campagne-card__indicator { background: #F000B9; border-color: #F000B9; box-shadow: 0 0 8px rgba(240,0,185,.5); }
.campagne-card__title { font-size: 16px; font-weight: 800; color: var(--color-primary); line-height: 1.3; margin-bottom: 6px; letter-spacing: -.01em; }
.campagne-card__desc { font-size: 13px; color: var(--color-gray-500); line-height: 1.55; margin-bottom: 14px; }
.campagne-card__link { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; text-decoration: none; }
.campagne-card__link .material-symbols-rounded { font-size: 14px; }
.campagne-card--live .campagne-card__link { color: #8B4DFF; }
.campagne-card--shorts .campagne-card__link { color: #F000B9; }
