/* ========================================
   SHOPPABLE VIDEO - Solution Page
   Apple-inspired light & clean aesthetic
   ======================================== */

:root {
  --section-pad: clamp(80px, 10vw, 140px);
  --color-offwhite: #FAFAFA;
  --transition-luxury: 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* padding-top handled by .nav-offset in components.css */

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

/* ========================================
   HERO - Light, airy, product-focused
   ======================================== */
.hero {
  position: relative;
  padding: clamp(80px, 8vw, 120px) 0 var(--section-pad);
  background: var(--color-white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(214,191,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.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.1);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  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;
  color: var(--color-primary);
  margin-bottom: var(--space-6);
}
.hero__title .em {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__desc {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
  max-width: 440px;
  margin-bottom: var(--space-8);
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.hero__actions .btn--primary {
  border: 1.5px solid transparent;
}

/* Shoppable Carousel */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.sc-wrap {
  position: relative;
  width: 100%;
  max-width: 580px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.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; }
/* Bottom sheet */
.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; }

/* ========================================
   KEY METRICS — Glassmorphism
   ======================================== */
.metrics-section {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, #12001F 0%, #2a1050 50%, #12001F 100%);
  position: relative;
  overflow: hidden;
}
.metrics-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;
}
.metrics-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;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}
.metric {
  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);
}
.metric:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}
.metric__value {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
  color: var(--color-white);
}
.metric__label {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
  line-height: var(--lh-normal);
  font-weight: var(--fw-medium);
}

/* ========================================
   FEATURES
   ======================================== */
.features {
  padding: var(--section-pad) 0;
}
.features__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-20);
}
.features__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}
.features__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}
.features__subtitle {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.feature-item {
  padding: var(--space-10);
  border-radius: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  transition: all var(--transition-luxury);
  position: relative;
  overflow: hidden;
}
.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-luxury);
}
.feature-item:hover {
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(18,0,31,0.08);
  transform: translateY(-4px);
}
.feature-item:hover::before {
  transform: scaleX(1);
}
.feature-item__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(137,0,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--color-secondary);
  font-size: 26px;
  transition: all var(--transition-luxury);
}
.feature-item:hover .feature-item__icon {
  background: rgba(137,0,255,0.1);
  transform: scale(1.05);
}
.feature-item__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}
.feature-item__desc {
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
}

/* ========================================
   VIDEO CARD (inside How it works)
   ======================================== */
.hiw-card {
  width: 300px;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: 0 24px 60px rgba(18,0,31,0.18), 0 8px 24px rgba(18,0,31,0.08);
}
.hiw-card video {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  transition: opacity 0.3s ease;
}
/* Click zones for navigation */
.hiw-nav { position: absolute; left: 0; right: 0; z-index: 4; cursor: pointer; }
.hiw-nav--up { top: 0; height: 40%; }
.hiw-nav--down { bottom: 28px; height: 30%; }
/* Video counter dots */
.hiw-dots { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 6px; z-index: 5; }
.hiw-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.4); transition: all 0.3s ease; }
.hiw-dot--active { background: #fff; transform: scale(1.4); }
/* Slide transition */
.hiw-card--slide-up video { animation: hiwSlideUp 0.3s ease; }
.hiw-card--slide-down video { animation: hiwSlideDown 0.3s ease; }
@keyframes hiwSlideUp { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes hiwSlideDown { 0% { opacity: 0; transform: translateY(-20px); } 100% { opacity: 1; transform: translateY(0); } }
/* Top bar */
.hiw-ov__top {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 14px 14px 10px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 5;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), transparent);
}
.hiw-ov__menu { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.hiw-ov__menu svg { width: 16px; height: 16px; color: rgba(255,255,255,0.9); }
.hiw-ov__top-right { display: flex; align-items: center; gap: 6px; }
.hiw-ov__icon { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.hiw-ov__icon svg { width: 15px; height: 15px; color: rgba(255,255,255,0.9); }
.hiw-ov__grad {
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  z-index: 2; pointer-events: none;
}
.hiw-ov__product {
  position: absolute; bottom: 40px; left: 16px; right: 50px;
  display: flex; align-items: center; gap: 10px; z-index: 3;
}
.hiw-ov__pimg { width: 46px; height: 46px; background: #fff; flex-shrink: 0; overflow: hidden; }
.hiw-ov__pimg img { width: 100%; height: 100%; object-fit: cover; }
.hiw-ov__pname { font-size: 10px; font-weight: 500; color: #fff; line-height: 1.3; }
.hiw-ov__pprice { font-size: 12px; font-weight: 700; color: #fff; margin-top: 2px; }
.hiw-ov__actions {
  position: absolute; bottom: 44px; right: 14px;
  display: flex; flex-direction: column; align-items: center; gap: 14px; z-index: 3;
}
.hiw-ov__action { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.hiw-ov__action svg { width: 22px; height: 22px; color: #fff; }
.hiw-ov__action span { font-size: 9px; color: rgba(255,255,255,0.8); font-weight: 600; }
.hiw-ov__progress {
  position: absolute; bottom: 20px; left: 14px; right: 14px;
  height: 2px; background: rgba(255,255,255,0.2); border-radius: 2px; z-index: 3; overflow: hidden;
}
.hiw-ov__progress-fill { width: 0%; height: 100%; background: #fff; border-radius: 2px; transition: width 0.3s linear; }
/* Scroll hint */
.hiw-card-wrap { position: relative; }
.hiw-scroll-hint {
  display: flex; align-items: center; gap: 6px;
  margin-top: 16px; color: #999; font-size: 11px; font-weight: 500;
  justify-content: center;
  position: absolute; left: 0; right: 0; bottom: -36px;
}
.hiw-scroll-hint svg { width: 14px; height: 14px; color: #999; animation: hiwBounce 2s infinite; }
@keyframes hiwBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(3px); } }

/* ========================================
   USE CASES — Client showcase
   ======================================== */
.usecases {
  padding: var(--section-pad) 0;
  background: var(--color-offwhite);
}
.usecases__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.usecases__label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #8B4DFF, #F000B9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-4);
}
.usecases__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  color: var(--color-primary);
}
.usecases__carousel {
  position: relative;
}
.usecases__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.usecase-card.uc-hidden {
  display: none;
}
.usecases__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #E5E5E5;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(18,0,31,0.08);
}
.usecases__arrow:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 4px 12px rgba(137,0,255,0.15);
}
.usecases__arrow .material-symbols-rounded {
  font-size: 20px;
  color: var(--color-primary);
}
.usecases__arrow:hover .material-symbols-rounded {
  color: var(--color-secondary);
}
.usecases__arrow--left {
  left: -56px;
}
.usecases__arrow--right {
  right: -56px;
}
.usecases__arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
.usecases__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}
.usecases__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D4D4D4;
  transition: all 0.3s ease;
  cursor: pointer;
}
.usecases__dot--active {
  background: var(--color-secondary);
  width: 24px;
  border-radius: 4px;
}
.usecase-card {
  background: var(--color-white);
  border: 1px solid #E5E5E5;
  border-radius: 1rem;
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow:
    0 1px 2px rgba(18, 0, 31, 0.04),
    0 4px 12px rgba(18, 0, 31, 0.03);
}
.usecase-card:hover {
  border-color: #D4D4D4;
  box-shadow:
    0 2px 4px rgba(18, 0, 31, 0.06),
    0 8px 24px rgba(18, 0, 31, 0.06);
  transform: translateY(-2px);
}
.usecase-card__brand-area {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.usecase-card__number {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #A3A3A3;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: #F5F5F5;
}
.usecase-card__brand-link {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  flex-direction: column;
  gap: 0.375rem;
  transition: opacity 0.2s ease;
}
.usecase-card__brand-link:hover {
  opacity: 0.8;
}
.usecase-card__brand-link:hover .usecase-card__underline {
  width: 100%;
}
.usecase-card__logo {
  height: 32px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.usecase-card__underline {
  height: 3px;
  width: 2.5rem;
  border-radius: 2px;
  background: linear-gradient(135deg, #8B4DFF, #F000B9, #D6BFFF);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.usecase-card__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #525252;
}
.usecase-card__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px;
  background: #FAFAFC;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.04);
}
.usecase-card__detail {
  display: flex;
  align-items: center;
  gap: 10px;
}
.usecase-card__detail-icon {
  width: 28px; height: 28px; border-radius: 7px;
  background: rgba(137, 0, 255, 0.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.usecase-card__detail-icon .material-symbols-rounded {
  font-size: 15px; color: var(--color-secondary);
}
.usecase-card__detail-label {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: #A3A3A3;
  width: 65px; flex-shrink: 0;
}
.usecase-card__detail-value {
  font-size: 0.8rem; font-weight: 600; color: var(--color-primary);
}
.usecase-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: var(--space-4);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-secondary);
  transition: gap var(--transition-base);
}
.usecase-card__cta:hover {
  gap: 8px;
}
.usecase-card__cta .material-symbols-rounded {
  font-size: 14px;
  line-height: 1;
}
@media (max-width: 768px) {
  .usecases__grid {
    grid-template-columns: 1fr;
  }
  .usecases__arrow--left { left: -12px; }
  .usecases__arrow--right { right: -12px; }
  .usecases__arrow { width: 36px; height: 36px; }
}

/* ========================================
   HOW IT WORKS - Horizontal Timeline
   ======================================== */
.how-it-works {
  padding: var(--space-24) 0;
  background: var(--color-offwhite);
}
.how-it-works__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-16);
}
.how-it-works__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}
.how-it-works__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}
.how-it-works__subtitle {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
}
.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;
}
.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;
}

/* ========================================
   IMPORT PLATFORMS
   ======================================== */
.import {
  padding: var(--section-pad) 0;
}
.import__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}
.import__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}
.import__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}
.import__desc {
  font-size: var(--fs-base);
  font-weight: var(--fw-light);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
}
.import__sources {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.source-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 22px;
  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-gray-600);
  transition: all var(--transition-base);
}
.source-pill:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  box-shadow: 0 4px 16px rgba(137,0,255,0.08);
}

/* Import visual - funnel concept */
.import__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}
.import-funnel {
  position: relative;
  width: 240px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.import-source {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--color-gray-500);
  box-shadow: 0 4px 16px rgba(18,0,31,0.06);
  transition: all var(--transition-luxury);
}
.import-source:hover {
  border-color: var(--color-secondary);
  transform: scale(1.08);
}
.import-source--ig { top: 0; left: 10%; color: #E4405F; }
.import-source--yt { top: 0; right: 10%; color: #FF0000; }
.import-source--tt { top: 45%; left: -5%; color: #000000; }
.import-center {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  box-shadow: 0 16px 48px rgba(137,0,255,0.25);
  z-index: 2;
}
.import-output {
  position: absolute;
  bottom: 0;
  width: 140px;
  padding: 10px 16px;
  background: var(--color-white);
  border: 2px solid var(--color-secondary);
  border-radius: 14px;
  text-align: center;
  font-size: 11px;
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  box-shadow: 0 4px 20px rgba(137,0,255,0.1);
}
.import-arrow {
  position: absolute;
  color: var(--color-gray-300);
  font-size: 20px;
}
.import-arrow--1 { top: 28%; left: 30%; transform: rotate(30deg); }
.import-arrow--2 { top: 28%; right: 30%; transform: rotate(-30deg); }
.import-arrow--3 { top: 55%; left: 20%; transform: rotate(60deg); }
.import-arrow--down { bottom: 22%; left: 50%; transform: translateX(-50%); }

/* ========================================
   TESTIMONIAL — Split blue/white
   ======================================== */
.testi-v3 {
  padding: var(--section-pad) 0;
}
.testi-v3__card {
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 2fr 3fr;
  min-height: 420px;
  box-shadow: 0 32px 80px rgba(0,40,100,0.1);
}
.testi-v3__left {
  background: linear-gradient(160deg, #004C99 0%, #0066CC 40%, #0080E6 100%);
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testi-v3__left::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.testi-v3__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.2);
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 1;
}
.testi-v3__name {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: white;
  position: relative;
  z-index: 1;
}
.testi-v3__role {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 1;
}
.testi-v3__logo {
  height: 28px;
  position: relative;
  z-index: 1;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}
.testi-v3__right {
  background: white;
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testi-v3__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: #0066CC;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}
.testi-v3__quote-icon {
  font-size: 56px;
  color: #0066CC;
  opacity: 0.12;
  font-family: Georgia, serif;
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--space-4);
}
.testi-v3__quote {
  font-size: clamp(1.05rem, 0.9rem + 0.7vw, 1.35rem);
  font-weight: var(--fw-regular);
  color: var(--color-primary);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}
.testi-v3__quote strong {
  font-weight: var(--fw-bold);
  color: #0066CC;
}
.testi-v3__stats {
  display: flex;
  gap: var(--space-4);
}
.testi-v3__stat {
  padding: var(--space-3) var(--space-4);
  background: rgba(0,102,204,0.05);
  border-radius: 12px;
  text-align: center;
  flex: 1;
}
.testi-v3__stat-value {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: #0066CC;
  line-height: 1;
  margin-bottom: 2px;
}
.testi-v3__stat-label {
  font-size: 0.6rem;
  font-weight: var(--fw-medium);
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .testi-v3__card { grid-template-columns: 1fr; }
  .testi-v3__left { padding: var(--space-10); }
}

/* ========================================
   FINAL CTA
   ======================================== */
.cta-section {
  padding: var(--section-pad) 0;
}
.cta-section__inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.cta-section__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 18px;
  background: rgba(137,0,255,0.06);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}
.cta-section__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--color-primary);
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}
.cta-section__desc {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
}
.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.cta-section__actions .btn {
  padding: 14px 32px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
}
.cta-section__note {
  font-size: var(--fs-xs);
  color: var(--color-gray-400);
}

/* ========================================
   FOOTER page-specific
   ======================================== */
.footer__logo img {
  height: 28px;
  margin-bottom: var(--space-4);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__visual { order: -1; }
  .sc-wrap { max-width: 500px; margin: 0 auto; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .usecases__grid { grid-template-columns: repeat(2, 1fr); }
  .import__inner { grid-template-columns: 1fr; }
  .import__visual { order: -1; min-height: 300px; }
  .how-steps { grid-template-columns: 1fr; gap: var(--space-10); max-width: 400px; }
  .how-timeline { display: none; }
  .hiw-card { width: 240px; }
}

@media (max-width: 768px) {
  .hero { padding: var(--space-12) 0 var(--space-16); }
  .hero__actions { flex-direction: column; }
  .features__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .usecases__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .metrics-grid { grid-template-columns: 1fr; }
  .sc-card[data-pos="outer-left"], .sc-card[data-pos="outer-right"] { display: none; }
  .cta-section__actions { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--space-3); text-align: center; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .import-source { display: none; }
  .import-center { margin: 0 auto; }
  .import-output { position: static; margin: var(--space-4) auto 0; }
  .import-arrow { display: none; }
}
