/* =========================================================
   LIVE COMMERCE - Solution Page
   ========================================================= */

/* --- Navigation page-specific --- */
.nav {
  border-bottom: 1px solid var(--color-gray-200);
  transition: all var(--transition-base), box-shadow var(--transition-base);
}

/* =========================================================
   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: -40%;
  right: -20%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(137, 0, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.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-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.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,
.section-header__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: wrap;
}
.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;
}

/* Phone Mockup */
.hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.video-player {
  width: 100%;
  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;
  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); }
}

.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);
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

@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__subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__actions {
    justify-content: center;
  }
  .video-player {
    max-width: 230px;
    height: 455px;
  }
}

@media (max-width: 640px) {
  .hero__title {
    font-size: var(--fs-3xl);
  }
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .video-player {
    max-width: 200px;
    height: 395px;
  }
}

/* =========================================================
   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-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.kpi-timeline__point {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  flex: 1;
}

.kpi-timeline__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-white);
  position: relative;
  flex-shrink: 0;
  order: 2;
}
.kpi-timeline__dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: rgba(137, 0, 255, .2);
  filter: blur(3px);
}

.kpi-timeline__above {
  order: 1;
  text-align: center;
  padding-bottom: 18px;
  height: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.kpi-timeline__number {
  font-size: clamp(1.75rem, 1.3rem + 2.25vw, 2.75rem);
  font-weight: var(--fw-bold);
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--color-white);
}

.kpi-timeline__below {
  order: 3;
  text-align: center;
  padding-top: 40px;
  width: 220px;
}

.kpi-timeline__label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-light);
  margin-bottom: 8px;
  white-space: nowrap;
}

.kpi-timeline__desc {
  font-size: var(--fs-xs);
  font-weight: var(--fw-regular);
  line-height: var(--lh-relaxed);
  color: var(--color-white);
  min-height: 52px;
}

@media (max-width: 800px) {
  .kpi-timeline {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 36px;
  }
  .kpi-timeline__line {
    top: 0; bottom: 0; left: 24px; right: auto;
    width: 1px; height: auto;
    background: linear-gradient(180deg, transparent, var(--gradient-start) 15%, var(--gradient-mid) 50%, var(--gradient-end) 85%, transparent);
    transform: none;
  }
  .kpi-timeline__point { flex-direction: row; align-items: center; }
  .kpi-timeline__dot { order: 1; margin-left: 20px; }
  .kpi-timeline__above { order: 2; padding: 0 0 0 20px; text-align: left; height: auto; }
  .kpi-timeline__below { order: 3; padding: 0 0 0 16px; text-align: left; width: auto; }
  .kpi-timeline__number { font-size: var(--fs-2xl); }
  .kpi-timeline__label { white-space: normal; height: auto; }
}

/* =========================================================
   FEATURES SECTION - Tabbed Phone Showcase
   ========================================================= */
.features {
  padding: calc(72px + var(--space-16)) 0 var(--space-24);
  background: var(--color-gray-50);
}

.features.features--hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

.features__left {
  display: flex;
  flex-direction: column;
}

.features__header {
  text-align: left;
  margin-bottom: var(--space-8);
}

.features__label {
  display: inline-block;
  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);
}

.features__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);
}

.features__subtitle {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
}


/* --- Feature List (V2 Mini Cards accordion, 2 columns) --- */
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: var(--space-8);
}
.feature-list__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list__col-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 2px;
}
.feature-list__card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #F0ECF5;
  box-shadow: 0 1px 3px rgba(18,0,31,0.04);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.feature-list__card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: #8900FF;
  border-radius: 3px 0 0 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-list__card:hover {
  box-shadow: 0 2px 8px rgba(18,0,31,0.07);
  border-color: #E8E0F0;
}
.feature-list__card--active {
  border-color: #E0D4F0;
  box-shadow: 0 2px 12px rgba(137,0,255,0.08);
}
.feature-list__card--active::before {
  opacity: 1;
}
.feature-list__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 14px 18px;
}
.feature-list__icon {
  font-size: 20px;
  color: #8900FF;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  transition: font-variation-settings 0.3s ease;
  flex-shrink: 0;
}
.feature-list__card--active .feature-list__icon {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.feature-list__title {
  font-size: 14px;
  font-weight: 600;
  color: #2D1A45;
  flex: 1;
}
.feature-list__chevron {
  font-size: 20px;
  color: #B8A8CC;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), color 0.3s ease;
  flex-shrink: 0;
}
.feature-list__card--active .feature-list__chevron {
  transform: rotate(180deg);
  color: #8900FF;
}
.feature-list__body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease 0.05s;
}
.feature-list__card--active .feature-list__body {
  max-height: 120px;
  opacity: 1;
}
.feature-list__body-inner {
  padding: 0 16px 14px 48px;
}
.feature-list__body-inner p {
  font-size: 13px;
  font-weight: 400;
  color: #6B5A80;
  line-height: 1.65;
}

/* --- Phone Showcase --- */
.features__right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.features .video-player {
  width: 280px;
}

.phone-screen__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.phone-screen__content--active {
  opacity: 1;
  pointer-events: auto;
}

/* --- Screen 1: Diffusion HD --- */
.screen-hd { background: linear-gradient(180deg, #1a0a2e, #2d1154); }
.screen-hd__video {
  flex: 1; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.screen-hd__video::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 40% 35%, rgba(139, 77, 255, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 65% 65%, rgba(240, 0, 185, 0.25) 0%, transparent 50%);
}
.screen-hd__badge {
  position: absolute; top: 36px; left: 14px;
  padding: 4px 10px; background: rgba(139, 77, 255, 0.8);
  backdrop-filter: blur(8px); border-radius: var(--radius-full);
  font-size: 10px; font-weight: var(--fw-bold); color: white; z-index: 2;
}
.screen-hd__quality {
  position: absolute; bottom: 16px; right: 14px;
  padding: 3px 8px; background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px); border-radius: var(--radius-sm);
  font-size: 9px; font-weight: var(--fw-bold); color: white;
  letter-spacing: 0.05em; z-index: 2;
}
.screen-hd__play {
  position: relative; z-index: 2;
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex; align-items: center; justify-content: center;
}
.screen-hd__play .material-symbols-rounded { font-size: 32px; color: white; margin-left: 3px; }

/* --- Screen 2: Chat en direct --- */
.screen-chat { background: linear-gradient(180deg, #1a0a2e, #2d1154); }
.screen-chat__video {
  flex: 1; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.screen-chat__video::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(139, 77, 255, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 60% 70%, rgba(240, 0, 185, 0.15) 0%, transparent 50%);
}
.screen-chat__video-label {
  position: relative; z-index: 1;
  font-size: 10px; font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase; letter-spacing: 0.15em;
}
.screen-chat__messages {
  flex: 1; display: flex; flex-direction: column;
  justify-content: flex-end; gap: 6px; padding: 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}
.chat-bubble {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 6px 10px; border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px); max-width: 90%;
  transition: all var(--transition-base);
}
.chat-bubble--highlight {
  background: rgba(139, 77, 255, 0.2);
  border: 1px solid rgba(139, 77, 255, 0.3);
}
.chat-bubble__avatar {
  width: 22px; height: 22px; border-radius: 50%;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: var(--fw-bold); color: white;
}
.chat-bubble__avatar--purple { background: #8B4DFF; }
.chat-bubble__avatar--pink { background: #F000B9; }
.chat-bubble__avatar--blue { background: #4D8BFF; }
.chat-bubble__avatar--orange { background: #FF8B4D; }
.chat-bubble__content { display: flex; flex-direction: column; gap: 1px; }
.chat-bubble__name { font-size: 9px; font-weight: var(--fw-bold); color: rgba(255, 255, 255, 0.7); }
.chat-bubble__text { font-size: 10px; color: rgba(255, 255, 255, 0.85); line-height: 1.3; }

/* --- Screen 3: Produits cliquables --- */
.screen-products { background: linear-gradient(180deg, #1a0a2e, #2d1154); }
.screen-products__video {
  flex: 1; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.screen-products__video::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 45% 40%, rgba(139, 77, 255, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 55% 65%, rgba(240, 0, 185, 0.2) 0%, transparent 50%);
}
.screen-products__tag {
  position: absolute; top: 45%; left: 20%;
  display: flex; align-items: center; gap: 4px;
  padding: 4px 10px; background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 9px; font-weight: var(--fw-semibold); color: white;
  z-index: 2; cursor: pointer;
  animation: tag-pulse 2.5s ease-in-out infinite;
}
.screen-products__tag .material-symbols-rounded { font-size: 12px; }
@keyframes tag-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(139, 77, 255, 0.3); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(139, 77, 255, 0); }
}
.screen-products__card {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  z-index: 2;
}
.product-card-overlay {
  display: flex; align-items: center; gap: 10px;
  padding: 10px; background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px); border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.product-card-overlay__img {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.product-card-overlay__img .material-symbols-rounded { font-size: 24px; color: var(--color-secondary); }
.product-card-overlay__info { flex: 1; min-width: 0; }
.product-card-overlay__name { font-size: 11px; font-weight: var(--fw-semibold); color: white; margin-bottom: 2px; }
.product-card-overlay__price { font-size: 13px; font-weight: var(--fw-bold); color: white; }
.product-card-overlay__cta {
  padding: 7px 14px; background: var(--color-white);
  color: var(--color-primary); border-radius: var(--radius-full);
  font-size: 9px; font-weight: var(--fw-bold);
  text-transform: uppercase; letter-spacing: 0.05em;
  border: none; cursor: pointer; white-space: nowrap;
}

/* --- Screen 4: Replay --- */
.screen-replay { background: linear-gradient(180deg, #1a0a2e, #2d1154); }
.screen-replay__video {
  flex: 1; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.screen-replay__video::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(139, 77, 255, 0.2) 0%, transparent 50%);
}
.screen-replay__video-icon {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.screen-replay__video-icon .material-symbols-rounded { font-size: 40px; color: rgba(255, 255, 255, 0.5); }
.screen-replay__video-icon span:last-child { font-size: 10px; color: rgba(255, 255, 255, 0.35); font-weight: var(--fw-medium); }
.screen-replay__progress { padding: 0 14px 8px; position: relative; z-index: 2; }
.progress-bar { position: relative; width: 100%; height: 4px; background: rgba(255, 255, 255, 0.15); border-radius: 2px; }
.progress-bar__fill { width: 42%; height: 100%; background: var(--gradient-primary); border-radius: 2px; }
.progress-bar__marker {
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  width: 8px; height: 8px; border-radius: 50%;
  border: 1.5px solid white; z-index: 1;
}
.progress-bar__marker--1 { left: 0%; background: #8B4DFF; }
.progress-bar__marker--2 { left: 28%; background: #F000B9; }
.progress-bar__marker--3 { left: 58%; background: #D6BFFF; }
.progress-bar__time {
  display: flex; justify-content: space-between; margin-top: 4px;
  font-size: 8px; color: rgba(255, 255, 255, 0.4); font-weight: var(--fw-medium);
}
.screen-replay__chapters {
  padding: 8px 12px 16px; display: flex; flex-direction: column; gap: 6px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}
.screen-replay__chapters-title {
  font-size: 9px; font-weight: var(--fw-bold);
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px;
}
.chapter-item {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px; border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  transition: background var(--transition-fast);
}
.chapter-item--active { background: rgba(139, 77, 255, 0.2); }
.chapter-item__dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.chapter-item__dot--purple { background: #8B4DFF; }
.chapter-item__dot--pink { background: #F000B9; }
.chapter-item__dot--light { background: #D6BFFF; }
.chapter-item__label { font-size: 10px; font-weight: var(--fw-medium); color: rgba(255, 255, 255, 0.8); flex: 1; }
.chapter-item__time { font-size: 9px; color: rgba(255, 255, 255, 0.4); font-weight: var(--fw-medium); font-variant-numeric: tabular-nums; }

/* --- Screen 5: Analytics --- */
.screen-analytics {
  background: linear-gradient(180deg, #1a0a2e, #1e0d3a);
  padding: 36px 12px 16px; gap: 10px;
}
.analytics-kpi-row { display: flex; gap: 6px; }
.analytics-kpi {
  flex: 1; padding: 10px 8px; border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.analytics-kpi__value { font-size: 16px; font-weight: var(--fw-bold); color: white; line-height: 1.2; margin-bottom: 2px; }
.analytics-kpi__label { font-size: 8px; font-weight: var(--fw-medium); color: rgba(255, 255, 255, 0.45); text-transform: uppercase; letter-spacing: 0.05em; }
.analytics-kpi__trend { font-size: 8px; font-weight: var(--fw-bold); color: #4ADE80; margin-top: 2px; }
.analytics-chart {
  flex: 1; padding: 12px; border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex; flex-direction: column;
}
.analytics-chart__title { font-size: 9px; font-weight: var(--fw-semibold); color: rgba(255, 255, 255, 0.5); margin-bottom: 10px; }
.analytics-chart__bars { display: flex; align-items: flex-end; gap: 5px; flex: 1; }
.analytics-chart__bar { flex: 1; border-radius: 3px 3px 0 0; min-height: 6px; transition: all var(--transition-base); }
.analytics-chart__bar--purple { background: linear-gradient(to top, rgba(139, 77, 255, 0.4), rgba(139, 77, 255, 0.8)); }
.analytics-chart__bar--pink { background: linear-gradient(to top, rgba(240, 0, 185, 0.4), rgba(240, 0, 185, 0.8)); }
.analytics-chart__bar--light { background: linear-gradient(to top, rgba(214, 191, 255, 0.3), rgba(214, 191, 255, 0.7)); }
.analytics-chart__labels { display: flex; justify-content: space-between; margin-top: 6px; }
.analytics-chart__label { font-size: 7px; color: rgba(255, 255, 255, 0.3); font-weight: var(--fw-medium); }

/* --- Screen 6: Jeux & sondages --- */
.screen-polls { background: linear-gradient(180deg, #1a0a2e, #2d1154); }
.screen-polls__video {
  flex: 1; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.screen-polls__video::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 45% 45%, rgba(139, 77, 255, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 60% 60%, rgba(240, 0, 185, 0.15) 0%, transparent 50%);
}
.screen-polls__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 14px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
  z-index: 2;
}
.poll-widget {
  padding: 12px; background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px); border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.poll-widget__badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px; background: rgba(139, 77, 255, 0.3);
  border-radius: var(--radius-full);
  font-size: 8px; font-weight: var(--fw-bold); color: white;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px;
}
.poll-widget__badge .material-symbols-rounded { font-size: 10px; }
.poll-widget__question { font-size: 11px; font-weight: var(--fw-bold); color: white; margin-bottom: 10px; line-height: 1.3; }
.poll-option { position: relative; margin-bottom: 6px; border-radius: var(--radius-md); overflow: hidden; background: rgba(255, 255, 255, 0.06); }
.poll-option:last-child { margin-bottom: 0; }
.poll-option__bar {
  height: 100%; position: absolute; top: 0; left: 0;
  border-radius: var(--radius-md);
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.poll-option__bar--gradient { background: var(--gradient-primary); opacity: 0.4; }
.poll-option__bar--subtle { background: rgba(255, 255, 255, 0.08); }
.poll-option__content {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 10px;
}
.poll-option__label { font-size: 10px; font-weight: var(--fw-semibold); color: white; }
.poll-option__percent { font-size: 10px; font-weight: var(--fw-bold); color: rgba(255, 255, 255, 0.7); }
.poll-option--winner .poll-option__percent { color: white; }
.poll-widget__voters { margin-top: 8px; font-size: 8px; color: rgba(255, 255, 255, 0.35); font-weight: var(--fw-medium); text-align: right; }

/* --- Features Responsive --- */
@media (max-width: 1024px) {
  .features.features--hero { min-height: auto; }
  .features__inner { grid-template-columns: 1fr; gap: var(--space-8); }
  .features__left { text-align: center; align-items: center; }
  .features__header { text-align: center; }
  .feature-list { align-items: center; }
  .features__right { order: -1; }
  .features .video-player { max-width: 240px; }
}
@media (max-width: 480px) {
  .features { padding: var(--space-12) 0; }
  .features__title { font-size: var(--fs-2xl); }
  .features .video-player { max-width: 200px; }
  .feature-list__item { padding: 6px 12px; font-size: 11px; }
}

/* =========================================================
   SPLIT SECTION - ADMIN INTERFACE
   ========================================================= */
.split-section {
  padding: var(--space-24) 0;
}

.split-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.split-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);
}
.split-section__label .material-symbols-rounded {
  font-size: 18px;
}

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

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

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--space-8);
}
.checklist__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-gray-600);
  line-height: var(--lh-snug);
}
.checklist__item .material-symbols-rounded {
  font-size: 16px;
  color: var(--color-secondary);
  flex-shrink: 0;
}
.checklist__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.checklist__group-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  padding-bottom: var(--space-1);
}

/* Feature cards (Admin section) — page-specific override */
.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: var(--space-8);
}
.split-section .feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.split-section .feature-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
}
.feature-card--shoppable::before { background: linear-gradient(90deg, var(--color-secondary), #B366FF); }
.feature-card--engagement::before { background: linear-gradient(90deg, #F000B9, #FF66D9); }
.split-section .feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(18, 0, 31, 0.08);
}
.feature-card__header {
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.feature-card__icon-wrap {
  width: 28px; height: 28px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-card--shoppable .feature-card__icon-wrap { background: rgba(137, 0, 255, 0.08); }
.feature-card--engagement .feature-card__icon-wrap { background: rgba(240, 0, 185, 0.08); }
.feature-card__icon-wrap .material-symbols-rounded { font-size: 16px; }
.feature-card--shoppable .feature-card__icon-wrap .material-symbols-rounded { color: var(--color-secondary); }
.feature-card--engagement .feature-card__icon-wrap .material-symbols-rounded { color: #F000B9; }
.split-section .feature-card__title {
  font-size: var(--fs-xs); font-weight: var(--fw-bold); text-transform: uppercase;
  letter-spacing: 0.08em; line-height: 28px; color: var(--color-primary);
}
.feature-card__list { list-style: none; display: flex; flex-direction: column; }
.feature-card__item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 8px; border-bottom: 1px solid rgba(0,0,0,0.04);
  cursor: default; transition: all 250ms; border-radius: 8px; margin: 0 -8px;
}
.feature-card__item:last-child { border-bottom: none; }
.feature-card__item:hover { background: rgba(0,0,0,0.02); }
.feature-card__item-icon {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 250ms;
}
.feature-card--shoppable .feature-card__item-icon { background: rgba(137, 0, 255, 0.06); }
.feature-card--engagement .feature-card__item-icon { background: rgba(240, 0, 185, 0.06); }
.feature-card__item:hover .feature-card__item-icon { transform: scale(1.05); }
.feature-card--shoppable .feature-card__item:hover .feature-card__item-icon { background: rgba(137, 0, 255, 0.1); }
.feature-card--engagement .feature-card__item:hover .feature-card__item-icon { background: rgba(240, 0, 185, 0.1); }
.feature-card__item-icon .material-symbols-rounded { font-size: 17px; }
.feature-card--shoppable .feature-card__item-icon .material-symbols-rounded { color: var(--color-secondary); }
.feature-card--engagement .feature-card__item-icon .material-symbols-rounded { color: #F000B9; }
.feature-card__item-label {
  font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--color-gray-600);
}
@media (max-width: 480px) { .feature-cards { grid-template-columns: 1fr; } }

/* Browser Mockup */
.browser-mockup {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 32px rgba(137,0,255,0.08), 0 24px 60px rgba(18,0,31,0.07);
  background: var(--color-white);
  max-width: 480px;
}
.browser-mockup__header {
  display: flex; align-items: center; gap: var(--space-2);
  padding: 12px 16px; background: #f5f5f7; border-bottom: 1px solid #e8e8ec;
}
.browser-mockup__dot { width: 10px; height: 10px; border-radius: 50%; }
.browser-mockup__dot--red { background: #FF5F57; }
.browser-mockup__dot--yellow { background: #FFBD2E; }
.browser-mockup__dot--green { background: #28C840; }
.browser-mockup__url {
  flex: 1; margin-left: var(--space-3); padding: 6px 14px;
  background: #fff; border: 1px solid #e8e8ec; border-radius: 8px;
  font-size: 11px; color: #999;
}
.browser-mockup__url b { color: var(--color-secondary); font-weight: 600; }

/* Dashboard layout */
.adm { display: flex; min-height: 440px; }
.adm__sidebar {
  width: 52px; background: var(--color-primary); padding: 14px 0;
  flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.adm__sidebar-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.adm__sidebar-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.35); }
.adm__sidebar-icon--active { background: rgba(137,0,255,0.3); }
.adm__sidebar-icon--active svg { color: #D6BFFF; }

.adm__main {
  flex: 1; padding: 16px; display: flex; flex-direction: column;
  gap: 12px; overflow: hidden; background: #fafafc;
}
.adm__top { display: flex; justify-content: space-between; align-items: center; }
.adm__title { font-size: 15px; font-weight: 700; color: var(--color-primary); }
.adm__tabs { display: flex; gap: 4px; }
.adm__tab {
  font-size: 10px; font-weight: 600; color: #999; background: #f0f0f2;
  border: none; border-radius: 8px; padding: 5px 12px; cursor: pointer;
  font-family: inherit;
}
.adm__tab--active { background: var(--color-primary); color: #fff; }

/* Stat cards */
.adm__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.adm__stat {
  background: #fff; border: 1px solid #eee; border-radius: 12px;
  padding: 16px; position: relative; overflow: hidden;
}
.adm__stat-label {
  font-size: 10px; color: #999; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; line-height: 1;
}
.adm__stat-value { font-size: 26px; font-weight: 800; color: var(--color-primary); line-height: 1; margin-bottom: 4px; }
.adm__stat-sub { display: flex; align-items: center; gap: 6px; }
.adm__stat-change { font-size: 10px; font-weight: 600; color: #28c840; line-height: 1; }
.adm__stat-vs { font-size: 9px; color: #bbb; font-weight: 500; }
.adm__stat-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: #f0f0f2; }
.adm__stat-bar-fill { height: 100%; border-radius: 0 2px 0 0; }
.adm__stat-bar-fill--purple { background: linear-gradient(90deg, #8B4DFF, #F000B9); }
.adm__stat-bar-fill--green { background: #28c840; }
.adm__stat-bar-fill--pink { background: #F000B9; }

/* Chart */
.adm__chart {
  background: #fff; border: 1px solid #eee; border-radius: 12px;
  padding: 16px; flex: 1; display: flex; flex-direction: column;
}
.adm__chart-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.adm__chart-title { font-size: 12px; font-weight: 600; color: var(--color-primary); }
.adm__chart-legend { display: flex; gap: 12px; }
.adm__chart-legend-item { display: flex; align-items: center; gap: 4px; font-size: 9px; color: #999; font-weight: 500; }
.adm__chart-legend-dot { width: 6px; height: 6px; border-radius: 50%; }
.adm__chart-legend-dot--purple { background: #8B4DFF; }
.adm__chart-legend-dot--pink { background: #F000B9; }
.adm__chart-area { flex: 1; min-height: 110px; }
.adm__chart-area svg { width: 100%; height: 100%; }

/* Product table */
.adm__table { background: #fff; border: 1px solid #eee; border-radius: 12px; overflow: hidden; }
.adm__table-top { padding: 12px 16px; display: flex; justify-content: space-between; align-items: center; }
.adm__table-title { font-size: 12px; font-weight: 600; color: var(--color-primary); }
.adm__table-link { font-size: 9px; font-weight: 600; color: var(--color-secondary); text-decoration: none; }
.adm__tbl-head {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 6px 16px; background: #fafafc;
  border-top: 1px solid #f0f0f2; border-bottom: 1px solid #f0f0f2;
}
.adm__tbl-head span { font-size: 9px; font-weight: 600; color: #bbb; text-transform: uppercase; letter-spacing: 0.04em; }
.adm__tbl-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 9px 16px; align-items: center; border-bottom: 1px solid #f8f8fa;
}
.adm__tbl-row:last-child { border-bottom: none; }
.adm__tbl-name { font-size: 11px; font-weight: 600; color: var(--color-primary); display: flex; align-items: center; gap: 8px; }
.adm__tbl-thumb {
  width: 24px; height: 24px; border-radius: 4px; background: #f0ecff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.adm__tbl-thumb svg { width: 12px; height: 12px; color: var(--color-secondary); }
.adm__tbl-val { font-size: 11px; font-weight: 600; color: #444; }
.adm__tbl-bar { height: 4px; background: #f0f0f2; border-radius: 2px; overflow: hidden; }
.adm__tbl-bar-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, #8B4DFF, #F000B9); }

/* ========== REPLAY SECTION ========== */
.replay-section {
  padding: var(--space-24) 0;
  background:
    radial-gradient(ellipse at 65% 50%, rgba(139, 77, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(240, 0, 185, 0.03) 0%, transparent 45%),
    var(--color-white);
}
.replay-section__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-16);
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.replay-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);
}
.replay-section__label .material-symbols-rounded { font-size: 18px; }
.replay-section__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);
}

.replay-chapters-title {
  font-size: var(--fs-xs); font-weight: var(--fw-bold);
  color: var(--color-gray-400); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: var(--space-4);
  display: flex; align-items: center; gap: var(--space-2);
}
.replay-chapters-title .material-symbols-rounded { font-size: 16px; color: var(--color-secondary); }
.replay-chapters-list { display: flex; flex-direction: column; gap: 6px; }

.replay-chapter {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  background: var(--color-white); border: 1px solid var(--color-gray-200);
  border-radius: 0; cursor: pointer; position: relative; overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.replay-chapter::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--gradient-primary); opacity: 0; transition: opacity 0.3s;
}
.replay-chapter:hover { border-color: rgba(137,0,255,0.2); box-shadow: var(--shadow-md); transform: translateX(3px); }
.replay-chapter:hover::before { opacity: 1; }
.replay-chapter.active { border-color: rgba(137,0,255,0.25); background: linear-gradient(135deg, rgba(137,0,255,0.03), rgba(240,0,185,0.02)); box-shadow: var(--shadow-md); }
.replay-chapter.active::before { opacity: 1; }

.replay-chapter__time {
  flex-shrink: 0; width: 48px; height: 26px; display: flex; align-items: center; justify-content: center;
  background: rgba(137,0,255,0.05); border: 1px solid rgba(137,0,255,0.08); border-radius: 6px;
  font-size: 0.65rem; font-weight: var(--fw-bold); color: var(--color-secondary); font-variant-numeric: tabular-nums;
}
.replay-chapter__icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(240,0,185,0.12), rgba(137,0,255,0.08));
  display: flex; align-items: center; justify-content: center;
}
.replay-chapter__icon .material-symbols-rounded { font-size: 14px; color: var(--gradient-mid); }
.replay-chapter__content { flex: 1; min-width: 0; }
.replay-chapter__question {
  font-size: var(--fs-xs); font-weight: var(--fw-semibold); color: var(--color-primary);
  line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.replay-chapter__play {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 0;
  border: 1px solid rgba(137,0,255,0.15); background: transparent;
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.25s;
}
.replay-chapter__play svg { width: 14px; height: 14px; color: var(--color-secondary); margin-left: 2px; }
.replay-chapter__play:hover { border-color: rgba(137,0,255,0.35); background: rgba(137,0,255,0.05); }
.replay-chapter--faded { filter: blur(2.5px); opacity: 0.45; pointer-events: none; user-select: none; transform: scale(0.97); }

.replay-player-wrapper {
  position: relative; width: 248px; height: 491px; margin: 0 auto; border-radius: var(--radius-2xl); overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 8px 32px rgba(18,0,31,0.15), 0 24px 64px rgba(18,0,31,0.1), 0 0 0 0 rgba(139,77,255,0.3);
  animation: replay-halo 4s infinite cubic-bezier(0.66, 0, 0, 1);
}
@keyframes replay-halo {
  0% { box-shadow: 0 8px 32px rgba(18,0,31,0.15), 0 24px 64px rgba(18,0,31,0.1), 0 0 0 0 rgba(139,77,255,0.5), 0 0 60px rgba(139,77,255,0.15); }
  30%, 100% { box-shadow: 0 8px 32px rgba(18,0,31,0.15), 0 24px 64px rgba(18,0,31,0.1), 0 0 0 35px rgba(139,77,255,0), 0 0 80px rgba(139,77,255,0); }
}
.replay-player-wrapper video { width: 100%; height: 100%; object-fit: cover; display: block; }

.replay-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; color: #fff; font-family: var(--font-primary); }
.replay-overlay__grad { position: absolute; bottom: 0; left: 0; right: 0; height: 50%; background: linear-gradient(to top, rgba(0,0,0,0.75), transparent); pointer-events: none; }
.replay-overlay__spacer { flex: 1; }

.replay-products { position: absolute; left: 10px; top: 48px; display: flex; flex-direction: column; gap: 10px; z-index: 5; }
.replay-product { position: relative; cursor: pointer; flex-shrink: 0; background: transparent; border-radius: 0; padding: 0; width: 50px; margin-bottom: 2px; text-decoration: none; color: inherit; display: block; transition: transform .2s ease; }
.replay-product:hover { transform: scale(1.1); }
.replay-product__img { width: 50px; height: 50px; border-radius: 0; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.replay-product__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.replay-product__price {
  position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
  background: #fff; font-size: 7.5px; font-weight: 800; color: #e00034;
  text-align: center; padding: 2px 6px; line-height: 1; border-radius: 8px;
  white-space: nowrap; box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

/* Product detail sheet inside replay player */
.replay-detail-backdrop {
  position: absolute; inset: 0; z-index: 20;
  background: rgba(0,0,0,0.5); opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.replay-detail-backdrop.active { opacity: 1; pointer-events: auto; }
.replay-detail-sheet {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 21;
  background: #f5f5f5; border-radius: 14px 14px 0 0;
  max-height: 85%; overflow-y: auto;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
  padding: 16px 14px 20px;
}
.replay-detail-backdrop.active + .replay-detail-sheet,
.replay-detail-sheet.active { transform: translateY(0); }
.replay-detail__close {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 24px; height: 24px; border-radius: 50%; border: none;
  background: rgba(0,0,0,0.06); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #555; transition: background .2s;
}
.replay-detail__close:hover { background: rgba(0,0,0,0.12); }
.replay-detail__image {
  width: 100%; aspect-ratio: 4/3; background: #fff; border-radius: 8px;
  overflow: hidden; margin-bottom: 10px;
}
.replay-detail__image img { width: 100%; height: 100%; object-fit: contain; display: block; }
.replay-detail__name { font-size: 11px; font-weight: 400; color: #1a1a1a; line-height: 1.35; margin-bottom: 5px; }
.replay-detail__price { font-size: 13px; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; }
.replay-detail__desc {
  font-size: 9px; color: #555; line-height: 1.45; margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.replay-detail__desc.expanded { -webkit-line-clamp: unset; display: block; }
.replay-detail__more { font-size: 9px; color: #555; cursor: pointer; margin-bottom: 8px; text-decoration: underline; }
.replay-detail__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; transition: background .15s; font-family: inherit;
}
.replay-detail__cta:hover { background: #333; }
.replay-detail__cta--cart { background: #2979FF; margin-top: 6px; }
.replay-detail__cta--cart:hover { background: #1565C0; }

.replay-cards-area { position: relative; z-index: 2; padding: 0 10px; margin-bottom: 6px; }
.replay-cards-carousel { display: flex; gap: 8px; overflow: hidden; scroll-behavior: smooth; }
.replay-card {
  flex: 0 0 82%; min-width: 0; display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px; background: rgba(55,55,55,0.6); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); border-radius: 0; cursor: pointer; transition: background 0.25s;
}
.replay-card:hover { background: rgba(75,75,75,0.7); }
.replay-card__play {
  flex-shrink: 0; width: 38px; height: 38px; background: transparent;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 0;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.replay-card__play svg { width: 24px; height: 24px; color: #fff; margin-left: 2px; }
.replay-card__content { flex: 1; min-width: 0; }
.replay-card__question { font-size: 12px; font-weight: 700; color: #fff; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.replay-card__time { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.5); margin-top: 4px; }

.replay-controls { position: relative; z-index: 2; padding: 0 10px 10px; display: flex; flex-direction: column; gap: 5px; }
.replay-progress { position: relative; width: 100%; height: 4px; cursor: pointer; }
.replay-progress__bg { position: absolute; inset: 0; background: rgba(255,255,255,0.25); border-radius: 2px; }
.replay-progress__fill { position: absolute; left: 0; top: 0; bottom: 0; width: 32%; background: var(--color-live); border-radius: 2px; transition: width 0.3s; }
.replay-progress__thumb { position: absolute; top: 50%; left: 32%; transform: translate(-50%,-50%); width: 12px; height: 12px; border-radius: 50%; background: var(--color-live); box-shadow: 0 0 8px rgba(255,0,92,0.6); transition: left 0.3s; }
.replay-controls__row { display: flex; align-items: center; gap: 8px; }
.replay-controls__btn { background: none; border: none; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0.9; padding: 0; }
.replay-controls__btn svg { width: 18px; height: 18px; }
.replay-controls__btn--sm svg { width: 14px; height: 14px; }
.replay-controls__time { font-size: 11px; font-weight: var(--fw-semibold); color: rgba(255,255,255,0.8); font-variant-numeric: tabular-nums; }

@media (max-width: 1024px) {
  .replay-section__inner { grid-template-columns: 1fr; gap: var(--space-8); text-align: center; }
  .replay-player-wrapper { width: 220px; height: 435px; }
}

@media (max-width: 1024px) {
  .split-section__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }
  .split-section__desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .checklist {
    align-items: center;
  }
  .dashboard {
    grid-template-columns: 1fr;
  }
  .dashboard__sidebar {
    display: none;
  }
}

/* =========================================================
   MULTICANAL SECTION
   ========================================================= */
.multicanal-section {
  padding: var(--space-24) 0;
  background: var(--color-gray-50);
  overflow: hidden;
}

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

.multicanal-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.multicanal-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);
}
.multicanal-label .material-symbols-rounded { font-size: 18px; }

.multicanal-title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--color-primary);
}

.multicanal-subtitle {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
  max-width: 520px;
}

.platform-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-2);
}
.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-primary);
  transition: all var(--transition-base);
  cursor: default;
}
.platform-pill:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

/* Multicanal Visual */
.multicanal-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.connection-lines {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

.central-hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow:
    0 0 0 8px rgba(137, 0, 255, 0.08),
    0 0 0 16px rgba(137, 0, 255, 0.04),
    var(--shadow-xl);
  animation: hubPulse 3s ease-in-out infinite;
}
.central-hub .material-symbols-rounded {
  font-size: 36px;
  color: var(--color-white);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

@keyframes hubPulse {
  0%, 100% {
    box-shadow:
      0 0 0 8px rgba(137, 0, 255, 0.08),
      0 0 0 16px rgba(137, 0, 255, 0.04),
      var(--shadow-xl);
  }
  50% {
    box-shadow:
      0 0 0 12px rgba(137, 0, 255, 0.12),
      0 0 0 24px rgba(137, 0, 255, 0.06),
      var(--shadow-2xl);
  }
}

.platform-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  width: 100%;
  position: relative;
  z-index: 2;
  padding: var(--space-4);
}
.platform-row {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
}
.platform-row .platform-card {
  flex: 0 1 130px;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-6) var(--space-4);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  cursor: default;
  position: relative;
  z-index: 2;
}
.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.platform-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.platform-card__icon svg {
  width: 24px; height: 24px;
}
.platform-card__icon .material-symbols-rounded {
  font-size: 24px;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.platform-card__name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  text-align: center;
}

/* Platform-specific icon backgrounds */
.platform-card--site .platform-card__icon { background: #EEE5FF; color: var(--color-secondary); }
.platform-card--facebook .platform-card__icon { background: #E7F0FF; color: #1877F2; }
.platform-card--instagram .platform-card__icon { background: #FFE8F0; color: #E4405F; }
.platform-card--youtube .platform-card__icon { background: #FFE5E5; color: #FF0000; }
.platform-card--linkedin .platform-card__icon { background: #E5F1FF; color: #0A66C2; }
.platform-card--x .platform-card__icon { background: #F0F0F0; color: var(--color-primary); }
.platform-card--tiktok .platform-card__icon { background: #FFE5EF; color: #FF0050; }

/* SVG Animated Lines */
.connection-line {
  stroke-width: 2; fill: none;
  stroke: url(#lineGradient); opacity: 0.5;
}
.connection-line-animated {
  stroke-width: 3; fill: none;
  stroke: url(#pulseGradient);
  stroke-dasharray: 8 120;
  stroke-linecap: round; opacity: 0.9;
}
.connection-line-animated--1 { animation: flowPulse 3s linear infinite; }
.connection-line-animated--2 { animation: flowPulse 3s linear infinite 0.5s; }
.connection-line-animated--3 { animation: flowPulse 3s linear infinite 1.0s; }
.connection-line-animated--4 { animation: flowPulse 3s linear infinite 1.5s; }
.connection-line-animated--5 { animation: flowPulse 3s linear infinite 2.0s; }
.connection-line-animated--6 { animation: flowPulse 3s linear infinite 2.5s; }
.connection-line-animated--7 { animation: flowPulse 3s linear infinite 3.0s; }

@keyframes flowPulse {
  0% { stroke-dashoffset: 128; }
  100% { stroke-dashoffset: 0; }
}

@media (max-width: 1024px) {
  .multicanal-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-12);
  }
  .multicanal-text { align-items: center; order: 2; }
  .multicanal-visual { order: 1; }
  .multicanal-subtitle { max-width: 600px; margin: 0 auto; }
  .platform-pills { justify-content: center; }
}
@media (max-width: 640px) {
  .multicanal-visual { min-height: 380px; }
  .platform-grid { gap: var(--space-3); padding: var(--space-2); }
  .platform-row { gap: var(--space-3); }
  .platform-card { padding: var(--space-4) var(--space-2); }
  .platform-card__icon { width: 40px; height: 40px; }
  .platform-card__icon .material-symbols-rounded { font-size: 20px; }
  .platform-card__icon svg { width: 20px; height: 20px; }
  .platform-card__name { font-size: var(--fs-xs); }
  .central-hub { width: 60px; height: 60px; }
  .central-hub .material-symbols-rounded { font-size: 28px; }
}
@media (max-width: 420px) {
  .platform-row { flex-wrap: wrap; }
  .platform-row .platform-card { flex: 0 1 calc(50% - var(--space-3)); }
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  padding: var(--space-24) 0;
  background: var(--color-white);
}
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--container-padding);
}
.cta-inner__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);
}
.cta-inner__badge .material-symbols-rounded {
  font-size: 16px;
}
.cta-inner__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
}
.cta-inner__desc {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-inner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}
.cta-inner__actions .btn {
  padding: 14px 32px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
}
.cta-inner__actions .btn--primary {
  border: 1.5px solid transparent;
}
.cta-inner__note {
  font-size: var(--fs-xs);
  color: var(--color-gray-400);
  font-weight: var(--fw-medium);
}

@media (max-width: 640px) {
  .cta-inner__actions {
    flex-direction: column;
  }
  .cta-inner__actions .btn {
    width: 100%;
  }
}

/* =========================================================
   GLOBAL RESPONSIVE OVERRIDES
   ========================================================= */
@media (max-width: 768px) {
  .features-section,
  .split-section,
  .multicanal-section,
  .cta-section {
    padding: var(--space-16) 0;
  }
  .section-header {
    margin-bottom: var(--space-8);
  }
}
