/* ============================================================
   PRODUCTS PAGE — extends styles.css
   ============================================================ */

/* Reveal helper (matches main page) */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }

.section { padding: 120px 0; }

/* Active nav link — handled globally in styles.css (color only) */

/* ============================================================
   PROD HERO
   ============================================================ */
.prod-hero {
  position: relative;
  padding: 160px 0 120px;
  background: #FBF7FE;
  overflow: hidden;
}
.prod-hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(45% 60% at 12% 18%, rgba(138,43,226,0.18), transparent 70%),
    radial-gradient(40% 55% at 90% 30%, rgba(255,159,28,0.14), transparent 70%),
    radial-gradient(60% 50% at 50% 95%, rgba(224,23,143,0.12), transparent 70%);
  pointer-events: none;
}
.prod-hero-inner { position: relative; max-width: 980px; }
.prod-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #8A2BE2;
  padding: 8px 14px;
  background: rgba(138,43,226,0.08);
  border: 1px solid rgba(138,43,226,0.2);
  border-radius: 999px;
  margin-bottom: 32px;
}
.prod-hero-title {
  /* Match streamers hero scale (.s-hero-title): clamp(56px, 6.4vw, 100px). */
  font-size: clamp(56px, 6.4vw, 100px);
  line-height: 1.05;
  font-weight: 900;
  color: #14111C;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  /* Keep Chinese phrases intact — only break at the explicit <br/>. */
  word-break: keep-all;
  overflow-wrap: normal;
}
.prod-hero-sub {
  font-size: 19px; line-height: 1.7;
  color: #4A4255;
  max-width: 720px;
  margin-bottom: 48px;
}

.prod-hero-helpers {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 8px;
  margin-bottom: 48px;
}
.phh {
  display: flex; flex-direction: column; gap: 6px;
  padding: 16px 14px;
  background: #fff;
  border: 1px solid #EFE6F2;
  border-radius: 14px;
  transition: all .25s var(--ease);
}
.phh:hover {
  transform: translateY(-3px);
  border-color: #C9B4DD;
  box-shadow: 0 12px 28px -16px rgba(138,43,226,0.4);
}
.phh-num {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 700;
  color: #8A2BE2;
  letter-spacing: 0.08em;
}
.phh-label {
  font-size: 13px;
  color: #14111C;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.phh-special {
  background: var(--brand-gradient);
  border: 0;
}
.phh-special .phh-num,
.phh-special .phh-label { color: #fff; }

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

/* ============================================================
   PROD HERO — 2-column with visual stack
   ============================================================ */
.prod-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  min-height: 640px;
}
.prod-hero-copy { position: relative; }

/* Visual */
.prod-hero-visual {
  position: relative;
  height: 560px;
  perspective: 1400px;
}
.phv-ring {
  position: absolute;
  inset: 8% 4%;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, rgba(138,43,226,0.22), transparent 72%),
    radial-gradient(closest-side at 70% 30%, rgba(255,159,28,0.18), transparent 72%);
  filter: blur(40px);
  pointer-events: none;
}

/* Cards (shared) */
.phv-card {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(13,11,20,0.06);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 30px 60px -20px rgba(13,11,20,0.28),
    0 12px 24px -10px rgba(138,43,226,0.18);
  padding: 18px 20px;
}

/* Card 1 — channels (back, top) */
.phv-card-channels {
  top: 0;
  left: 6%;
  right: 18%;
  padding: 18px 22px 22px;
  transform: rotate(-1.5deg);
  z-index: 1;
}
.phv-card-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
  font-size: 13px; font-weight: 600; color: #2A2233;
}
.phv-card-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #EC0677;
  box-shadow: 0 0 0 4px rgba(224,23,143,0.18);
  animation: phv-pulse 1.6s ease-in-out infinite;
}
@keyframes phv-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(224,23,143,0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(224,23,143,0.06); }
}
.phv-card-title { flex: 1; }
.phv-card-live {
  font-family: var(--font-en);
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  background: linear-gradient(135deg,#EC0677,#8A2BE2);
  color: #fff;
  border-radius: 4px;
}
.phv-channels {
  display: flex; gap: 10px; flex-wrap: wrap;
  align-items: center;
}
/* Channel pills are circular brand-logo badges (text hidden via font-size:0). */
.phv-ch {
  width: 34px; height: 34px;
  padding: 0;
  border-radius: 50%;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 0;
  color: transparent;
  box-shadow: 0 2px 6px rgba(20,17,28,0.08);
}
.phv-ch-fb   { background-image: url('assets/social/fb.png?v=4'); }
.phv-ch-ig   { background-image: url('assets/social/ig.png?v=4'); }
.phv-ch-tt   { background-image: url('assets/social/tiktok.png?v=4'); }
.phv-ch-line { background-image: url('assets/social/line.png?v=4'); }

.phv-arrow-down {
  display: flex; justify-content: center;
  margin: 10px 0 6px;
  color: #8A2BE2;
  opacity: 0.6;
}
.phv-cart {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(138,43,226,0.08);
  border: 1px solid rgba(138,43,226,0.22);
  color: #4A2A6E;
  font-size: 13px; font-weight: 600;
  margin-left: 50%;
  transform: translateX(-50%);
}

/* Card 2 — GMV (front-left) */
.phv-card-gmv {
  width: 240px;
  bottom: 38px;
  left: 0;
  transform: rotate(-3deg);
  z-index: 3;
}
.phv-card-label { font-size: 12px; color: #6B6378; font-weight: 500; flex: 1; }
.phv-card-delta {
  font-family: var(--font-en);
  font-size: 12px; font-weight: 700;
  color: #06C755;
  padding: 3px 8px;
  background: rgba(6,199,85,0.1);
  border-radius: 6px;
}
.phv-card-num {
  font-family: var(--font-en);
  font-size: 30px; font-weight: 900;
  color: #0A0A0A;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 12px 0 14px;
}
.phv-card-num span { font-size: 18px; color: #8A2BE2; margin-left: 2px; }
.phv-card-bars {
  display: flex; align-items: flex-end; gap: 4px;
  height: 38px;
}
.phv-card-bars span {
  flex: 1;
  background: linear-gradient(to top, #8A2BE2, #EC0677);
  border-radius: 2px 2px 0 0;
  min-height: 4px;
}

/* Card 3 — orders (front-right) */
.phv-card-orders {
  width: 260px;
  top: 30%;
  right: 0;
  transform: rotate(2deg);
  z-index: 4;
}
.phv-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #06C755;
  box-shadow: 0 0 0 4px rgba(6,199,85,0.2);
  animation: phv-pulse-g 1.4s ease-in-out infinite;
}
@keyframes phv-pulse-g {
  0%, 100% { box-shadow: 0 0 0 4px rgba(6,199,85,0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(6,199,85,0.06); }
}
.phv-order-list {
  list-style: none; padding: 0; margin: 12px 0 0;
  display: flex; flex-direction: column; gap: 9px;
}
.phv-order-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center; gap: 10px;
  font-size: 12px;
}
.phv-od-tag {
  font-family: var(--font-en);
  font-weight: 800;
  padding: 3px 7px;
  background: #0A0A0A; color: #fff;
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.phv-od-name { color: #2A2233; font-weight: 500; }
.phv-od-amt {
  font-family: var(--font-en);
  font-weight: 700;
  color: #8A2BE2;
}

/* floating comment chips */
.phv-cmt {
  position: absolute;
  background: #0A0A0A;
  color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 8px 14px;
  border-radius: 16px 16px 16px 4px;
  box-shadow: 0 12px 24px -10px rgba(13,11,20,0.5);
  z-index: 5;
  animation: phv-float 4s ease-in-out infinite;
}
.phv-cmt-1 { top: 12%; right: -6%; animation-delay: 0s; }
.phv-cmt-2 { top: 50%; left: 30%; animation-delay: 1.4s; background: linear-gradient(135deg,#EC0677,#8A2BE2); }
.phv-cmt-3 { bottom: 8%; left: 38%; animation-delay: 2.6s; }
@keyframes phv-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ============================================================
   PROD STATS BAND — credibility row right after hero
   ============================================================ */
.prod-stats-band {
  background: #FFFFFF;
  padding: 56px 0;
  position: relative;
  border-top: 1px solid rgba(13,11,20,0.06);
  border-bottom: 1px solid rgba(13,11,20,0.06);
}
.prod-stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 100% at 20% 50%, rgba(138,43,226,0.05), transparent 70%),
    radial-gradient(50% 100% at 80% 50%, rgba(224,23,143,0.04), transparent 70%);
  pointer-events: none;
}
.prod-stats-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
}
.prod-stat {
  text-align: center;
  position: relative;
}
.prod-stat + .prod-stat::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(13,11,20,0.12), transparent);
}
.prod-stat-num {
  font-family: var(--font-en);
  font-size: 44px; font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, #EC0677 0%, #8A2BE2 60%, #FF9F1C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
  min-height: 48px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}
/* Sub-units (大 / AM / PM / + etc.) — smaller, follows Chinese-suffix logic. */
.prod-stat-num .prod-stat-suffix { font-size: 30px; }
.prod-stat-lbl {
  margin-top: 14px;
  font-size: 14px;
  color: #4A4255;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media (max-width: 960px) {
  .prod-hero { padding: 110px 0 80px; }
  .prod-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .prod-hero-visual { height: 460px; max-width: 520px; margin: 0 auto; width: 100%; }
  .prod-stats-row { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .prod-stat + .prod-stat::before { display: none; }
}
@media (max-width: 600px) {
  .prod-hero-visual { height: 420px; }
  .phv-card-gmv { width: 200px; }
  .phv-card-orders { width: 220px; }
  .prod-stat-num { font-size: 42px; }
}

/* ============================================================
   VALUE PILLARS
   ============================================================ */
.value-section {
  background: var(--bg-paper);
  color: #0A0A0A;
}
.value-section .sec-title { color: #14111C; }
.value-section .sec-sub { color: #4A4550; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card.v-04 { grid-column: span 2; }
.value-card.v-07 { grid-column: span 1; }

.value-card {
  position: relative;
  padding: 32px 28px;
  background: #FCFAFD;
  border: 1px solid #EEE7DA;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  min-height: 360px;
  transition: all .3s var(--ease);
  overflow: hidden;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: #D8C5E8;
  box-shadow: 0 24px 40px -24px rgba(138,43,226,0.25);
}
.value-num {
  font-family: var(--font-en);
  font-size: 13px;
  color: #8A2BE2;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.value-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  color: #14111C;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.value-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: #5A5260;
  flex: 1;
  margin-bottom: 24px;
}

/* Value visualizations */
.value-viz { margin-top: auto; }

.value-viz-channels { text-align: center; }
.vvc-row { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 12px; }
.vvc-pill {
  padding: 6px 12px;
  background: #fff;
  border: 1px solid #E6D5F0;
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  color: #8A2BE2;
}
.vvc-arrow { color: #C9B4DD; font-size: 14px; margin: 4px 0; }
.vvc-cart {
  display: inline-block;
  padding: 14px 28px;
  background: var(--brand-gradient);
  border-radius: 14px;
  color: #fff;
  text-align: center;
}
.vvc-cart-label { font-size: 11px; letter-spacing: 0.1em; opacity: 0.85; }
.vvc-cart-num { font-family: var(--font-en); font-size: 28px; font-weight: 900; line-height: 1; }

.value-viz-modes { display: flex; flex-direction: column; gap: 8px; }
.vvm-mode {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #EEE3F4;
  border-radius: 12px;
  font-size: 14px; font-weight: 600;
  color: #14111C;
}
.vvm-mode-tag {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-en); font-size: 11px; font-weight: 800;
}

.value-viz-kw { display: flex; flex-wrap: wrap; gap: 6px; }
.vvkw {
  padding: 6px 12px;
  background: #fff;
  border: 1px dashed #D8C5E8;
  border-radius: 8px;
  font-family: var(--font-en);
  font-size: 12px;
  color: #4A4255;
}
.vvkw-ok {
  background: linear-gradient(120deg, #8A2BE2, #EC0677);
  color: #fff; border: 0;
  font-weight: 700;
}

.value-viz-funnel { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 8px; align-items: center; }
.value-viz-funnel::before, .value-viz-funnel::after {
  content: '→'; color: #C9B4DD; font-size: 18px; text-align: center;
}
.vvf-stage {
  padding: 12px;
  background: #fff;
  border: 1px solid #EEE3F4;
  border-radius: 12px;
  text-align: center;
}
.vvf-stage-label { font-size: 10px; color: #8A2BE2; font-weight: 700; letter-spacing: 0.12em; margin-bottom: 4px; }
.vvf-stage-num { font-size: 12px; font-weight: 600; color: #14111C; }
.vvf-1 { background: #fff; }
.vvf-2 { background: linear-gradient(135deg, #FAF1FB, #FFF5E6); }
.vvf-3 { background: var(--brand-gradient); }
.vvf-3 .vvf-stage-label, .vvf-3 .vvf-stage-num { color: #fff; }

.value-viz-logistics { display: flex; flex-wrap: wrap; gap: 6px; }
.vvl-chip {
  padding: 6px 11px;
  background: #fff;
  border: 1px solid #EEE3F4;
  border-radius: 8px;
  font-size: 12px; font-weight: 600;
  color: #4A4255;
}
.vvl-chip-cold {
  background: linear-gradient(120deg, #2BA8E2, #6CC6F0);
  color: #fff; border: 0;
}

.value-viz-chart { display: flex; align-items: flex-end; gap: 16px; }
.vvch-bars { display: flex; gap: 4px; align-items: flex-end; flex: 1; height: 80px; }
.vvch-bars span {
  flex: 1;
  background: linear-gradient(180deg, #EC0677, #8A2BE2);
  border-radius: 3px;
  min-height: 8px;
}
.vvch-stat { text-align: right; }
.vvch-num { display: block; font-family: var(--font-en); font-size: 28px; font-weight: 900; color: #EC0677; line-height: 1; }
.vvch-lbl { font-size: 11px; color: #7A7289; }

.value-viz-support { display: flex; flex-direction: column; gap: 10px; }
.vvs-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #EEE3F4;
  border-radius: 10px;
  font-size: 13px; font-weight: 500;
  color: #14111C;
}
.vvs-dot { width: 8px; height: 8px; border-radius: 50%; background: #06C755; box-shadow: 0 0 8px rgba(6,199,85,0.5); }
.vvs-dot-orange { background: #FF9F1C; box-shadow: 0 0 8px rgba(255,159,28,0.5); }
.vvs-dot-purple { background: #8A2BE2; box-shadow: 0 0 8px rgba(138,43,226,0.5); }

/* ============================================================
   HELPERS SECTION
   ============================================================ */
.helpers-section {
  background: #FAF7F2;
  color: #0A0A0A;
}
.helpers-section .sec-title { color: #14111C; }
.helpers-section .sec-sub { color: #4A4550; }

.helper-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid rgba(20,17,28,0.06);
}
.helper-row:first-of-type { border-top: 0; }

.helper-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em;
  color: #8A2BE2;
  background: rgba(138,43,226,0.08);
  border: 1px solid rgba(138,43,226,0.2);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.helper-tag-special {
  background: var(--brand-gradient);
  color: #fff; border: 0;
}
.helper-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  color: #14111C;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
/* Secondary tagline under the helper title (smaller, gradient-purple). */
.helper-tagline {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  color: #8A2BE2;
  margin: -8px 0 18px;
}
.helper-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #4A4255;
  margin-bottom: 20px;
}
/* Chinese (繁/簡) gets justified text in 11 core feature module descriptions
   for a cleaner left/right edge alignment. EN/TH keep the default left align. */
html[lang="zh-Hant"] .helper-desc,
html[lang="zh-Hans"] .helper-desc {
  text-align: justify;
  text-justify: inter-character;
}
.helper-list {
  list-style: none; margin: 0 0 24px; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.helper-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: #14111C;
  font-weight: 500;
}
.helper-list li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--brand-gradient);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12l4 4 10-10' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/100% no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12l4 4 10-10' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/100% no-repeat;
}
.helper-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700;
  color: #EC0677;
  transition: gap .2s;
}
.helper-link:hover { gap: 10px; }

/* alternating layout */
.helper-row-alt .helper-copy { order: 2; }
.helper-row-alt .helper-visual { order: 1; }

/* visual container baseline */
.helper-visual {
  position: relative;
  background: #fff;
  border: 1px solid #EEE7DA;
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 380px;
  box-shadow: 0 30px 60px -36px rgba(20,17,28,0.18);
  display: flex; flex-direction: column;
  overflow: hidden;
}

/* Feature row (品牌商城) — gradient background */
.helper-row-feature .helper-visual {
  background: linear-gradient(135deg, #2A1340, #4A1A5E 50%, #6E1A56);
  border: 0;
  color: #fff;
}

/* ---- 01 Live (multi-channel) ---- */
.hvl { display: flex; flex-direction: column; gap: 14px; height: 100%; }
.hvl-streams { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hvl-stream {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: #FBF7FE;
  border: 1px solid #EFE6F2;
  border-radius: 10px;
}
.hvl-pf {
  width: 30px; height: 30px;
  border-radius: 50%;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 0;
  color: transparent;
  box-shadow: 0 1px 3px rgba(20,17,28,0.08);
  flex-shrink: 0;
}
.hvl-fb { background-image: url('assets/social/fb.png?v=4'); }
.hvl-ig { background-image: url('assets/social/ig.png?v=4'); }
.hvl-tt { background-image: url('assets/social/tiktok.png?v=4'); }
.hvl-line { background-image: url('assets/social/line.png?v=4'); }
.hvl-name { flex: 1; font-size: 13px; font-weight: 600; color: #14111C; }
.hvl-vw { font-family: var(--font-en); font-size: 12px; font-weight: 700; color: #EC0677; }

.hvl-merge { text-align: center; font-size: 12px; font-weight: 600; color: #8A2BE2; }

.hvl-cart {
  background: linear-gradient(135deg, #14111C, #2A1340);
  border-radius: 14px;
  padding: 16px;
  color: #fff;
}
.hvl-cart-head {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600;
  margin-bottom: 12px;
}
.hvl-live-dot { width: 8px; height: 8px; border-radius: 50%; background: #FF2D87; box-shadow: 0 0 8px #FF2D87; }
.hvl-cart-num { margin-left: auto; font-family: var(--font-en); font-size: 22px; font-weight: 900; color: #FF9F1C; }
.hvl-cart-bars { display: flex; flex-direction: column; gap: 6px; }
.hvl-cart-bars > div { display: grid; grid-template-columns: 1fr 30px; gap: 8px; align-items: center; }
.hvl-cart-bars > div span {
  display: block; height: 8px; border-radius: 4px;
  background: var(--brand-gradient);
}
.hvl-cart-bars em { font-style: normal; font-family: var(--font-en); font-size: 11px; color: rgba(255,255,255,0.6); }

/* ---- 02 AI bundle (3 capabilities stacked) ---- */
.hvai {
  display: flex; flex-direction: column; gap: 14px;
  padding: 22px;
  background: linear-gradient(180deg, #FBF7FE 0%, #FFFFFF 100%);
  border: 1px solid #EFE6F2;
  border-radius: 18px;
  box-shadow: 0 16px 40px -24px rgba(138,43,226,0.25);
}
.hvai-head {
  display: flex; justify-content: space-between; align-items: center;
}
.hvai-head-title {
  font-size: 14px;
  font-weight: 800;
  color: #14111C;
}
.hvai-pulse {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--brand-gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hvai-pulse-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: hvaiPulse 1.6s ease-in-out infinite;
}
@keyframes hvaiPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(1.4); }
}
.hvai-cards {
  display: flex; flex-direction: column; gap: 8px;
}
.hvai-card {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #FFFFFF;
  border: 1px solid #EFE6F2;
  border-radius: 12px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.hvai-card:hover {
  transform: translateX(2px);
  box-shadow: 0 8px 18px -10px rgba(138,43,226,0.3);
  border-color: rgba(138,43,226,0.3);
}
.hvai-card-ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.hvai-card-photo .hvai-card-ico {
  background: linear-gradient(135deg, #8A2BE2 0%, #EC0677 100%);
}
.hvai-card-msg .hvai-card-ico {
  background: linear-gradient(135deg, #EC0677 0%, #FF9F1C 100%);
}
.hvai-card-bot .hvai-card-ico {
  background: linear-gradient(135deg, #2BA8E2 0%, #8A2BE2 100%);
}
.hvai-card-body { min-width: 0; }
.hvai-card-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #14111C;
  margin-bottom: 2px;
}
.hvai-card-meta {
  font-size: 11px;
  color: #6B6377;
  display: flex; align-items: center; gap: 8px;
}
.hvai-card-time {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(138,43,226,0.1);
  color: #8A2BE2;
  white-space: nowrap;
}
.hvai-card-spark {
  font-size: 14px;
  color: #FF9F1C;
  text-shadow: 0 0 6px rgba(255,159,28,0.55);
  animation: hvaiSpark 1.8s ease-in-out infinite;
}
.hvai-card:nth-child(2) .hvai-card-spark { animation-delay: -0.6s; }
.hvai-card:nth-child(3) .hvai-card-spark { animation-delay: -1.2s; }
@keyframes hvaiSpark {
  0%, 100% { opacity: 0.4; transform: scale(0.85); }
  50%      { opacity: 1;   transform: scale(1.15); }
}
.hvai-foot {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 16px;
  background: linear-gradient(135deg, #14111C 0%, #2A1A3D 100%);
  border-radius: 12px;
  color: #fff;
}
.hvai-foot-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}
.hvai-foot-val {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #C4A6FF 0%, #FF9F1C 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

/* ---- 03 Data ---- */
.hvd { display: flex; flex-direction: column; gap: 14px; height: 100%; }
.hvd-head { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; color: #14111C; }
.hvd-live { color: #E63946; font-size: 11px; font-weight: 700; }
.hvd-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hvd-card {
  padding: 16px;
  background: linear-gradient(135deg, #FAF1FB, #FFF5E6);
  border: 1px solid #EEE3F4;
  border-radius: 12px;
}
.hvd-lbl { font-size: 11px; color: #7A7289; margin-bottom: 6px; font-weight: 500; }
.hvd-val { font-family: var(--font-en); font-size: 26px; font-weight: 900; color: #14111C; line-height: 1; }
.hvd-val span { font-size: 14px; margin-left: 2px; }
.hvd-delta { margin-top: 6px; font-size: 12px; font-weight: 700; color: #EC0677; }
.hvd-line { padding: 12px; background: #FBF7FE; border-radius: 12px; }
.hvd-line svg { width: 100%; height: 80px; }
.hvd-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.hvd-tags span {
  padding: 6px 12px;
  background: #FBF7FE;
  border: 1px solid #EFE6F2;
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  color: #8A2BE2;
}

/* ---- 03 Messages ---- */
.hvm { display: flex; flex-direction: column; gap: 12px; height: 100%; }
.hvm-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.hvm-tab {
  padding: 6px 12px;
  background: #FBF7FE;
  border: 1px solid #EFE6F2;
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  color: #4A4255;
}
.hvm-tab.active { background: var(--brand-gradient); color: #fff; border: 0; }
.hvm-list { display: flex; flex-direction: column; gap: 10px; }
.hvm-msg {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 10px; align-items: flex-start;
  padding: 10px;
  background: #FBF7FE;
  border-radius: 12px;
}
.hvm-av {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #FAA, #F8B);
}
.hvm-av-2 { background: linear-gradient(135deg, #8AC, #5AE); }
.hvm-av-3 { background: linear-gradient(135deg, #FCB, #FA7); }
.hvm-av-4 { background: linear-gradient(135deg, #B8F, #8AE); }
.hvm-bubble { min-width: 0; }
.hvm-name { font-size: 12px; font-weight: 700; color: #14111C; display: flex; align-items: center; gap: 6px; margin-bottom: 2px; }
.hvm-pf { font-family: var(--font-en); font-size: 9px; padding: 2px 6px; background: #1877F2; color: #fff; border-radius: 4px; }
.hvm-pf-ig { background: linear-gradient(135deg, #e6683c, #bc1888); }
.hvm-pf-line { background: #06C755; }
.hvm-pf-tt { background: #000; }
.hvm-pf-wa { background: #25D366; }
.hvm-txt { font-size: 13px; color: #4A4255; }
.hvm-vip {
  font-family: var(--font-en); font-size: 10px; font-weight: 800;
  padding: 4px 8px; border-radius: 6px;
  background: #FF9F1C; color: #fff;
  align-self: center;
}
.hvm-vip-2 { background: #EC0677; }

/* ---- 04 Fan ---- */
.hvf { display: grid; grid-template-columns: 1.6fr 1fr; gap: 14px; height: 100%; }
.hvf-card {
  padding: 18px;
  background: linear-gradient(135deg, #14111C, #2A1340);
  border-radius: 16px;
  color: #fff;
  display: flex; flex-direction: column; gap: 16px;
}
.hvf-card-top { display: flex; gap: 12px; align-items: center; }
.hvf-av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #FAA, #F8B); }
.hvf-name { font-size: 14px; font-weight: 700; }
.hvf-tag { font-size: 11px; color: #FF9F1C; font-weight: 600; margin-top: 2px; }
.hvf-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.hvf-stats > div { background: rgba(255,255,255,0.06); padding: 10px; border-radius: 10px; text-align: center; }
.hvf-num { font-family: var(--font-en); font-size: 18px; font-weight: 900; color: #fff; line-height: 1; }
.hvf-lbl { font-size: 10px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.hvf-meter-lbl { display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,0.7); margin-bottom: 6px; }
.hvf-meter-bar { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.hvf-meter-bar span { display: block; height: 100%; background: var(--brand-gradient); }
.hvf-side { display: flex; flex-direction: column; gap: 8px; }
.hvf-pill {
  padding: 12px 14px;
  background: #FBF7FE;
  border: 1px solid #EFE6F2;
  border-radius: 12px;
  font-size: 13px; font-weight: 600;
  color: #14111C;
}
.hvf-pill-vip { background: var(--brand-gradient); color: #fff; border: 0; }

/* ---- 05 Order ---- */
.hvo { display: flex; flex-direction: column; gap: 6px; height: 100%; }
.hvo-head { display: flex; justify-content: space-between; padding-bottom: 10px; border-bottom: 1px solid #EFE6F2; font-size: 13px; font-weight: 600; color: #14111C; margin-bottom: 6px; }
.hvo-cnt { font-family: var(--font-en); color: #EC0677; font-weight: 800; }
.hvo-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.7fr auto;
  gap: 8px; align-items: center;
  padding: 10px 12px;
  background: #FBF7FE;
  border-radius: 10px;
  font-size: 12px;
}
.hvo-row-new { background: linear-gradient(120deg, rgba(255,159,28,0.16), rgba(224,23,143,0.08)); border: 1px solid rgba(255,159,28,0.3); }
.hvo-row-merge { background: rgba(138,43,226,0.06); border: 1px dashed rgba(138,43,226,0.3); }
.hvo-id { font-family: var(--font-en); color: #14111C; font-weight: 600; }
.hvo-sku { color: #4A4255; font-weight: 600; }
.hvo-pay { color: #7A7289; font-size: 11px; }
.hvo-status {
  font-size: 10px; font-weight: 800;
  padding: 4px 8px; border-radius: 6px;
}
.hvo-status-new { background: #FF9F1C; color: #fff; }
.hvo-status-paid { background: #06C755; color: #fff; }
.hvo-status-ship { background: rgba(138,43,226,0.12); color: #8A2BE2; }
.hvo-status-merge { background: #8A2BE2; color: #fff; }
.hvo-foot { margin-top: auto; display: flex; justify-content: space-between; padding-top: 12px; border-top: 1px solid #EFE6F2; font-size: 12px; color: #4A4255; }
.hvo-foot-pct { font-family: var(--font-en); font-weight: 800; color: #06C755; }

/* ---- 06 Ship ---- */
.hvs { display: flex; flex-direction: column; gap: 18px; height: 100%; }
.hvs-track {
  display: flex;
  gap: 4px;
  position: relative;
  padding: 10px 0;
}
.hvs-step {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  position: relative;
}
.hvs-step:not(:last-child)::after {
  content: ''; position: absolute; left: 50%; top: 9px;
  width: 100%; height: 2px;
  background: #EFE6F2;
}
.hvs-step.done:not(:last-child)::after, .hvs-step.active:not(:last-child)::after { background: var(--brand-gradient); }
.hvs-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #DDD3E8;
  position: relative;
  z-index: 1;
}
.hvs-step.done .hvs-dot { background: var(--brand-gradient); border: 0; }
.hvs-step.active .hvs-dot {
  background: #fff; border-color: #EC0677;
  box-shadow: 0 0 0 4px rgba(224,23,143,0.18);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(224,23,143,0.18); }
  50% { box-shadow: 0 0 0 8px rgba(224,23,143,0.08); }
}
.hvs-step strong { display: block; font-size: 12px; font-weight: 700; color: #14111C; text-align: center; }
.hvs-step em { display: block; font-style: normal; font-family: var(--font-en); font-size: 10px; color: #7A7289; text-align: center; }

.hvs-couriers { display: flex; flex-wrap: wrap; gap: 6px; }
.hvs-cour {
  padding: 6px 11px;
  background: #FBF7FE;
  border: 1px solid #EFE6F2;
  border-radius: 8px;
  font-size: 11.5px; font-weight: 600;
  color: #4A4255;
}
.hvs-cour-cold { background: linear-gradient(120deg, #2BA8E2, #6CC6F0); color: #fff; border: 0; }

.hvs-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: auto; }
.hvs-meta > div {
  padding: 10px;
  background: #FBF7FE;
  border-radius: 10px;
  text-align: center;
}
.hvs-meta span { display: block; font-size: 10px; color: #7A7289; margin-bottom: 4px; }
.hvs-meta strong { display: block; font-size: 12px; color: #14111C; font-weight: 700; }

/* ---- 07 Marketing ---- */
.hvk { display: flex; flex-direction: column; gap: 12px; height: 100%; }
.hvk-coupon {
  display: grid;
  grid-template-columns: 90px 1fr;
  background: #fff;
  border: 1px dashed #C9B4DD;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.hvk-coupon::before {
  content: ''; position: absolute; left: 90px; top: -8px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px #C9B4DD inset;
}
.hvk-coupon::after {
  content: ''; position: absolute; left: 90px; bottom: -8px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px #C9B4DD inset;
}
.hvk-coupon-l {
  background: var(--brand-gradient);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff;
  padding: 16px;
}
.hvk-coupon-amt {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}
.hvk-coupon-amt small { font-size: 14px; margin-left: 2px; }
.hvk-coupon-unit { font-size: 11px; opacity: 0.85; margin-top: 2px; }
.hvk-coupon-r { padding: 14px 16px; }
.hvk-coupon-name { font-size: 14px; font-weight: 800; color: #14111C; margin-bottom: 4px; }
.hvk-coupon-cond { font-size: 12px; color: #4A4255; margin-bottom: 4px; }
.hvk-coupon-time { font-size: 11px; font-family: var(--font-en); color: #EC0677; font-weight: 700; }
.hvk-coupon-code { font-size: 11px; font-family: var(--font-en); color: #8A2BE2; font-weight: 700; letter-spacing: 0.05em; }

.hvk-coupon-2 .hvk-coupon-l { background: linear-gradient(135deg, #FF9F1C, #FFC220); }

/* Gamified mini-cards: 樂透 / 抽卡 / 轉盤 */
.hvk-games {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 2px;
}
.hvk-game {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 8px 12px;
  background: #FFFFFF;
  border: 1px solid #EFE6F2;
  border-radius: 12px;
  box-shadow: 0 4px 12px -8px rgba(138,43,226,0.18);
}
.hvk-game-ico {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  position: relative;
}
.hvk-game-lotto .hvk-game-ico {
  background: linear-gradient(135deg, #FFF0F8 0%, #FFE9D2 100%);
}
.hvk-game-draw .hvk-game-ico {
  background: linear-gradient(135deg, #F0E4FA 0%, #FFE0EF 100%);
}
.hvk-game-wheel .hvk-game-ico {
  background: linear-gradient(135deg, #FFE9D2 0%, #FFD6E5 100%);
}
.hvk-game-name {
  font-size: 12px;
  font-weight: 700;
  color: #14111C;
  letter-spacing: 0.02em;
}
/* Lottery balls */
.hvk-ball {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-grid; place-items: center;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  position: absolute;
  border: 1.5px solid #fff;
  box-shadow: 0 2px 4px rgba(20,17,28,0.15);
}
.hvk-ball-1 { background: linear-gradient(135deg, #EC0677, #FF3B6F); top: 8px; left: 4px; }
.hvk-ball-2 { background: linear-gradient(135deg, #8A2BE2, #C4A6FF); top: 18px; left: 18px; z-index: 2; }
.hvk-ball-3 { background: linear-gradient(135deg, #FF9F1C, #FFD29E); top: 8px; left: 32px; }
/* Card-draw stack */
.hvk-card {
  position: absolute;
  width: 22px; height: 32px;
  border-radius: 4px;
  background: #FFFFFF;
  border: 1.5px solid #C4A6FF;
  box-shadow: 0 2px 4px rgba(20,17,28,0.1);
}
.hvk-card-1 { top: 12px; left: 8px; transform: rotate(-12deg); }
.hvk-card-2 { top: 11px; left: 18px; transform: rotate(0deg); }
.hvk-card-3 {
  top: 12px; left: 28px;
  transform: rotate(12deg);
  background: linear-gradient(135deg, #FF9F1C, #EC0677);
  border-color: #fff;
  display: grid; place-items: center;
  color: #fff;
}
/* Spinning wheel */
.hvk-wheel {
  position: relative;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: block;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(20,17,28,0.06), 0 2px 6px rgba(224,23,143,0.18);
  overflow: hidden;
}
.hvk-wheel-s {
  position: absolute;
  width: 50%; height: 50%;
}
.hvk-wheel-s1 { top: 0; left: 0; background: #EC0677; }
.hvk-wheel-s2 { top: 0; left: 50%; background: #FF9F1C; }
.hvk-wheel-s3 { top: 50%; left: 0; background: #8A2BE2; }
.hvk-wheel-s4 { top: 50%; left: 50%; background: #FFB8D9; }
.hvk-wheel-arrow {
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: #14111C;
  text-shadow: 0 1px 2px rgba(255,255,255,0.6);
  line-height: 1;
}

.hvk-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: auto; }
.hvk-stats > div {
  padding: 12px;
  background: #FBF7FE;
  border-radius: 10px;
  text-align: center;
}
.hvk-stat-num { font-family: var(--font-en); font-size: 20px; font-weight: 900; color: #EC0677; line-height: 1; }
.hvk-stat-lbl { font-size: 11px; color: #7A7289; margin-top: 4px; }

/* ---- 08 Product — compact showcase with AI photography demo ---- */
.hvp { display: flex; flex-direction: column; gap: 14px; height: 100%; }

.hvp-hero {
  padding: 16px;
  background: linear-gradient(180deg, #FBF7FE 0%, #FFFFFF 100%);
  border: 1px solid #EFE6F2;
  border-radius: 16px;
  display: flex; flex-direction: column; gap: 12px;
}
.hvp-hero-head {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.hvp-hero-sku {
  font-size: 14px;
  font-weight: 800;
  color: #14111C;
}
.hvp-hero-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--brand-gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.hvp-hero-shots {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
}
.hvp-shot {
  position: relative;
  height: 84px;
  border-radius: 10px;
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 8px 10px;
}
.hvp-shot-before {
  background:
    radial-gradient(circle at 30% 40%, rgba(0,0,0,0.12), transparent 60%),
    repeating-linear-gradient(135deg, #E5DDE8 0px, #E5DDE8 6px, #DAD0DD 6px, #DAD0DD 12px);
  filter: saturate(0.55);
}
.hvp-shot-after {
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,0.55), transparent 55%),
    linear-gradient(135deg, #FFE9F3 0%, #FFE0CC 50%, #F0E4FA 100%);
  box-shadow: inset 0 0 0 1px rgba(224,23,143,0.18);
}
.hvp-shot-tag {
  position: absolute;
  top: 6px; left: 6px;
  padding: 2px 6px;
  background: rgba(20,17,28,0.7);
  color: #fff;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 4px;
  z-index: 2;
}
.hvp-shot-tag-after {
  background: linear-gradient(135deg, #EC0677, #FF9F1C);
}
.hvp-shot-sub {
  position: relative;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  color: #14111C;
  background: rgba(255,255,255,0.85);
  padding: 2px 7px;
  border-radius: 999px;
}
.hvp-shot-before .hvp-shot-sub { color: #4A4255; }
.hvp-shot-spark {
  position: absolute;
  font-size: 13px;
  color: #FF9F1C;
  text-shadow: 0 0 6px rgba(255,159,28,0.6);
  z-index: 3;
  animation: hvpShotSpark 1.8s ease-in-out infinite;
}
.hvp-shot-spark-1 { top: 8px; right: 12px; }
.hvp-shot-spark-2 { top: 26px; right: 26px; font-size: 10px; animation-delay: -0.9s; }
@keyframes hvpShotSpark {
  0%, 100% { opacity: 0.4; transform: scale(0.85); }
  50%      { opacity: 1;   transform: scale(1.1); }
}
.hvp-shot-arrow {
  display: grid; place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #fff;
  flex-shrink: 0;
}

.hvp-hero-pills {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.hvp-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(138,43,226,0.08);
  border: 1px solid rgba(138,43,226,0.15);
  color: #8A2BE2;
}

.hvp-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: auto;
}
.hvp-tier {
  display: flex; flex-direction: column; align-items: center;
  gap: 2px;
  padding: 10px 6px;
  background: #FBF7FE;
  border: 1px solid #EFE6F2;
  border-radius: 10px;
}
.hvp-tier-l {
  font-size: 11px;
  color: #7A7289;
  font-weight: 600;
}
.hvp-tier-v {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 800;
  color: #14111C;
  letter-spacing: -0.01em;
}
.hvp-tier-vip {
  background: var(--brand-gradient);
  border: 0;
}
.hvp-tier-vip .hvp-tier-l,
.hvp-tier-vip .hvp-tier-v { color: #fff; }

/* ---- 09 Ad helper — 5A audiences + Messenger push + ROAS stats ---- */
.hvad {
  display: flex; flex-direction: column; gap: 14px;
  padding: 22px;
  background: linear-gradient(180deg, #FBF7FE 0%, #FFFFFF 100%);
  border: 1px solid #EFE6F2;
  border-radius: 18px;
  box-shadow: 0 16px 40px -24px rgba(138,43,226,0.25);
}
.hvad-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; font-weight: 700; color: #14111C;
}
.hvad-live {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 800;
  color: #EC0677;
  letter-spacing: 0.04em;
}
.hvad-audiences {
  display: flex; flex-direction: column; gap: 6px;
}
.hvad-aud {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center; gap: 10px;
  padding: 8px 12px;
  background: #FFFFFF;
  border: 1px solid #EFE6F2;
  border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
}
.hvad-aud-hot {
  border-color: rgba(224,23,143,0.45);
  background: linear-gradient(90deg, rgba(255,184,217,0.18), rgba(255,159,28,0.10));
  box-shadow: 0 4px 12px -6px rgba(224,23,143,0.35);
}
.hvad-tag {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #8A2BE2, #EC0677);
  border-radius: 6px;
  text-align: center;
  padding: 4px 0;
}
.hvad-aud-hot .hvad-tag {
  background: linear-gradient(135deg, #EC0677, #FF9F1C);
}
.hvad-name { font-size: 13px; font-weight: 600; color: #14111C; }
.hvad-num {
  font-family: var(--font-en);
  font-size: 13px; font-weight: 800;
  color: #8A2BE2;
}
.hvad-push {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center; gap: 12px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #14111C 0%, #2A1340 100%);
  border-radius: 12px;
  color: #fff;
}
.hvad-push-ico {
  width: 32px; height: 32px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(196,166,255,0.18);
  color: #C4A6FF;
}
.hvad-push-title { font-size: 13px; font-weight: 700; }
.hvad-push-meta { font-size: 11px; color: #B5ADC2; margin-top: 2px; }
.hvad-push-tag {
  font-family: var(--font-en);
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FF3B6F, #FF9F1C);
  color: #fff;
}
.hvad-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hvad-stats > div {
  text-align: center;
  padding: 10px 8px;
  background: #FFFFFF;
  border: 1px solid #EFE6F2;
  border-radius: 10px;
}
.hvad-stat-num {
  font-family: var(--font-en);
  font-size: 20px; font-weight: 800;
  background: var(--brand-gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.hvad-stat-lbl { font-size: 11px; color: #6B6377; margin-top: 4px; }

/* ---- 10 Mall ---- */
.hvmall {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 14px;
  height: 100%; align-items: center;
  justify-content: center;
}
.hvmall-mock {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 10px;
  display: flex; flex-direction: column; gap: 8px;
  backdrop-filter: blur(10px);
  min-width: 0;
}
.hvmall-mock-2 { transform: scale(1.06); border: 1px solid rgba(255,159,28,0.5); box-shadow: 0 16px 40px -16px rgba(255,159,28,0.5); z-index: 2; }
.hvmall-bar { height: 8px; background: rgba(255,255,255,0.18); border-radius: 4px; }
.hvmall-hero {
  height: 80px;
  background: linear-gradient(135deg, #EC0677, #FF9F1C);
  border-radius: 8px;
}
.hvmall-hero-2 { background: linear-gradient(135deg, #8A2BE2, #FF2D87); }
.hvmall-hero-3 { background: linear-gradient(135deg, #2BA8E2, #8A2BE2); }
.hvmall-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.hvmall-grid span {
  aspect-ratio: 1;
  background: rgba(255,255,255,0.12);
  border-radius: 6px;
}

/* ============================================================
   INTEGRATIONS
   ============================================================ */
.integrations-section { padding: 120px 0; }
.integ-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 64px; }
.integ-block {
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: all .3s var(--ease);
}
.integ-block:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-4px); }
.integ-block-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.integ-block-num { font-family: var(--font-en); font-size: 28px; font-weight: 900; background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.integ-block-name { font-size: 15px; font-weight: 700; color: #fff; }
.integ-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.integ-chip {
  padding: 8px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-size: 12.5px; font-weight: 600;
  color: #EAE6F0;
}

.integ-meta-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
}
.integ-meta { text-align: center; }
.integ-meta-num {
  font-family: var(--font-en);
  font-size: 36px; font-weight: 900;
  background: var(--brand-gradient);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1;
}
.integ-meta-num span { font-size: 24px; }
.integ-meta-lbl { font-size: 13px; color: #B5ADC2; margin-top: 8px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* iPad landscape (1024) needs helper-row to stack so the 09 商城 3-phone
   mockup gets full width instead of cramming into a 480px column. */
@media (max-width: 1100px) {
  .helper-row { grid-template-columns: 1fr !important; gap: 32px; padding: 48px 0; }
  /* Force ALL helper rows to stack as text-then-visual on mobile,
     regardless of .helper-row-alt's desktop zig-zag order. */
  .helper-row .helper-copy   { order: 1; }
  .helper-row .helper-visual { order: 2; }
}

@media (max-width: 960px) {
  .prod-hero-helpers { grid-template-columns: repeat(3, 1fr); }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .value-card.v-04, .value-card.v-07 { grid-column: span 1; }
  .integ-grid, .integ-meta-row { grid-template-columns: 1fr 1fr; }

  .hvmall-hero { height: 80px; }
}

/* 09 商城 RWD:
   ALWAYS keep the 3-up horizontal composition (with the middle phone scaled
   up + orange glow). Just shrink proportionally as the viewport narrows —
   never stack vertically. */
@media (max-width: 1100px) {
  .helpers-section .hvmall {
    display: grid !important;
    grid-template-columns: 1fr 1.1fr 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    height: 100% !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .helpers-section .hvmall-mock {
    max-width: none !important;
    padding: 8px !important;
  }
  .helpers-section .hvmall-mock-2 {
    transform: scale(1.06) !important;
  }
  .helpers-section .hvmall-hero { height: 60px !important; }
}

@media (max-width: 600px) {
  .helpers-section .hvmall {
    gap: 6px !important;
  }
  .helpers-section .hvmall-mock {
    padding: 5px !important;
    border-radius: 8px !important;
  }
  .helpers-section .hvmall-bar { height: 5px !important; }
  .helpers-section .hvmall-hero { height: 36px !important; border-radius: 5px !important; }
  .helpers-section .hvmall-grid { gap: 3px !important; }
}
@media (max-width: 600px) {
  .prod-hero-helpers { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: 1fr; }
  .integ-grid, .integ-meta-row { grid-template-columns: 1fr; }
  .helper-visual { padding: 18px; min-height: 0; }
  .hvf { grid-template-columns: 1fr; }
  .hvmall { max-width: 280px; }
  .hvmall-hero { height: 60px; }
}

/* Products-page CTA: keep the one-liner on a single line on desktop;
   fall back to natural wrapping on tablets/phones where it would overflow. */
.cta-section .cta-sub {
  max-width: 880px;
}
@media (min-width: 860px) {
  .cta-section .cta-sub {
    white-space: nowrap;
    max-width: none;
  }
}

/* ============================================================
   MOBILE — hero card layout cleanup
   ============================================================ */
@media (max-width: 640px) {
  /* Move the floating chat chips to the outer edges so they don't cover the 3 cards */
  .phv-cmt-1 {
    top: 2% !important;
    right: -10px !important;
    left: auto !important;
  }
  .phv-cmt-2 {
    top: auto !important;
    bottom: 16% !important;
    right: -14px !important;
    left: auto !important;
  }
  .phv-cmt-3 {
    bottom: -4% !important;
    left: 8% !important;
    right: auto !important;
  }

  /* Nudge the 即時訂單 card to the right so it doesn't crash into 多平台 above */
  .phv-card-orders {
    right: -4% !important;
  }
}

/* ============================================================
   STRATEGIC PARTNERS — Malaysia logistics & payment logos
   ============================================================ */
.partners-strategic {
  background: #FAF7FB;
  padding: 88px 0;
  text-align: center;
}
.partners-strategic-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: #14111C;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}
.partners-strategic-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.partner-logo-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(20,17,28,0.08);
  box-shadow: 0 4px 14px -6px rgba(20,17,28,0.10);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
}
.partner-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (max-width: 900px) {
  .partners-strategic-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .partners-strategic { padding: 56px 0; }
  .partners-strategic-title { margin-bottom: 28px; }
  .partners-strategic-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* ============================================================
   PRODUCTS — Mobile spacing compression (≤ 640px)
   Removes large white gaps between sections/helpers
   ============================================================ */
@media (max-width: 640px) {
  /* Section header → first helper row: kill the giant top gap */
  .helpers-section .sec-head,
  .helpers-section .container > .reveal:first-child {
    margin-bottom: 0 !important;
  }
  .helper-row {
    padding: 28px 0 !important;
    gap: 24px !important;
  }
  .helper-row:first-of-type { padding-top: 16px !important; }

  /* Integration → CTA gap: tighten the empty space before 「擔心功能太多」 */
  .integ-section { padding-bottom: 32px !important; }
  .integ-grid { margin-bottom: 24px !important; }
  .cta-section { padding-top: 32px !important; padding-bottom: 56px !important; }

  /* Section heads inside helpers (sec-eyebrow + sec-title + sec-sub) */
  .helpers-section .sec-sub { margin-bottom: 0 !important; }

  /* Prod-stack section (11 helpers section) — reduce top/bottom whitespace */
  .prod-stack { padding: 40px 0 16px !important; }
  .prod-stack .sec-sub { margin-bottom: 24px !important; }
}
