/* ====== Product Page Hero ====== */
.product-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.product-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.product-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.product-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
}
.product-hero-badge {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-cyan);
  background: rgba(6,182,212,0.12);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}
.product-hero h1 {
  font-size: var(--text-6xl);
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
  line-height: 1.1;
}
.product-hero-desc {
  font-size: var(--text-lg);
  color: var(--color-text-light-muted);
  line-height: 1.8;
  margin-bottom: var(--space-8);
  max-width: 540px;
}
.product-hero-btns {
  display: flex;
  gap: var(--space-4);
}
.product-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-hero-mockup {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,0.04);
  border: var(--border-glass);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-hero-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(6,182,212,0.05));
}
.mockup-placeholder {
  position: relative;
  z-index: 1;
  text-align: center;
  color: rgba(255,255,255,0.4);
}
.mockup-placeholder .mockup-icon {
  font-size: 4rem;
  margin-bottom: var(--space-4);
  display: block;
}

/* ====== Dashboard Mockup UI ====== */
.mockup-dash {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'SF Mono', 'Fira Code', monospace;
}
.mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mockup-topbar-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}
.mockup-topbar-dots {
  display: flex;
  gap: 5px;
}
.mockup-topbar-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.mockup-topbar-dots span:nth-child(1) { background: #EF4444; }
.mockup-topbar-dots span:nth-child(2) { background: #F59E0B; }
.mockup-topbar-dots span:nth-child(3) { background: #10B981; }

/* Row of stat cards */
.mockup-stat-row {
  display: flex;
  gap: 8px;
}
.mockup-stat-card {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}
.mockup-stat-val {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}
.mockup-stat-val--blue { color: #3B82F6; }
.mockup-stat-val--cyan { color: #06B6D4; }
.mockup-stat-val--emerald { color: #10B981; }
.mockup-stat-val--violet { color: #7C3AED; }
.mockup-stat-val--warning { color: #F59E0B; }
.mockup-stat-val--red { color: #EF4444; }
.mockup-stat-lbl {
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Progress bars */
.mockup-progress {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mockup-progress-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-progress-label {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  width: 48px;
  text-align: right;
  flex-shrink: 0;
}
.mockup-progress-track {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.mockup-progress-fill {
  height: 100%;
  border-radius: 3px;
  animation: progressGrow 1.5s ease-out forwards;
  transform-origin: left;
}
@keyframes progressGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.mockup-progress-fill--blue { background: linear-gradient(90deg, #2563EB, #3B82F6); }
.mockup-progress-fill--cyan { background: linear-gradient(90deg, #0891B2, #06B6D4); }
.mockup-progress-fill--emerald { background: linear-gradient(90deg, #059669, #10B981); }
.mockup-progress-fill--violet { background: linear-gradient(90deg, #6D28D9, #7C3AED); }
.mockup-progress-fill--warning { background: linear-gradient(90deg, #D97706, #F59E0B); }
.mockup-progress-pct {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  width: 28px;
  flex-shrink: 0;
}

/* Animated waveform */
.mockup-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 40px;
  padding: 0 4px;
}
.mockup-wave-bar {
  flex: 1;
  border-radius: 2px;
  animation: waveAnim 1.8s ease-in-out infinite alternate;
}
@keyframes waveAnim {
  0% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
  100% { transform: scaleY(0.5); }
}

/* Status dots grid */
.mockup-status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
  gap: 6px;
}
.mockup-status-dot {
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-status-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.mockup-status-dot--ok::before { background: #10B981; box-shadow: 0 0 6px rgba(16,185,129,0.5); }
.mockup-status-dot--warn::before { background: #F59E0B; box-shadow: 0 0 6px rgba(245,158,11,0.5); }
.mockup-status-dot--err::before { background: #EF4444; box-shadow: 0 0 6px rgba(239,68,68,0.5); animation: pulseErr 1.5s infinite; }
@keyframes pulseErr {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Mini chart bars */
.mockup-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
  padding: 0 2px;
}
.mockup-chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  opacity: 0;
  animation: chartBarGrow 0.6s ease-out forwards;
}
.mockup-chart-bar:nth-child(odd) { background: rgba(37,99,235,0.55); }
.mockup-chart-bar:nth-child(even) { background: rgba(6,182,212,0.55); }

/* Detection viewport (for vision) */
.mockup-viewport {
  position: relative;
  flex: 1;
  background: rgba(0,0,0,0.3);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  min-height: 120px;
}
.mockup-viewport-crosshair {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.mockup-viewport-crosshair::before,
.mockup-viewport-crosshair::after {
  content: '';
  position: absolute;
  background: rgba(6,182,212,0.15);
}
.mockup-viewport-crosshair::before {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
}
.mockup-viewport-crosshair::after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}
.mockup-bbox {
  position: absolute;
  border: 2px solid;
  border-radius: 4px;
  animation: bboxAppear 0.5s ease-out forwards;
  opacity: 0;
}
@keyframes bboxAppear {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
.mockup-bbox-label {
  position: absolute;
  top: -16px;
  left: -2px;
  font-size: 8px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  white-space: nowrap;
}
.mockup-bbox--ok {
  border-color: #10B981;
}
.mockup-bbox--ok .mockup-bbox-label {
  background: #10B981;
  color: white;
}
.mockup-bbox--err {
  border-color: #EF4444;
}
.mockup-bbox--err .mockup-bbox-label {
  background: #EF4444;
  color: white;
}
.mockup-bbox--warn {
  border-color: #F59E0B;
}
.mockup-bbox--warn .mockup-bbox-label {
  background: #F59E0B;
  color: white;
}

/* Chat mockup (for Smart CE) */
.mockup-chat {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.mockup-chat-msg {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 10px;
  line-height: 1.5;
  max-width: 85%;
  animation: msgSlide 0.4s ease-out forwards;
  opacity: 0;
}
@keyframes msgSlide {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.mockup-chat-user {
  align-self: flex-end;
  background: rgba(37,99,235,0.3);
  color: rgba(255,255,255,0.85);
  border-bottom-right-radius: 3px;
}
.mockup-chat-bot {
  align-self: flex-start;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65);
  border-bottom-left-radius: 3px;
}
.mockup-chat-input {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 9px;
  color: rgba(255,255,255,0.25);
  margin-top: auto;
}

/* Section label for mockup areas */
.mockup-section-lbl {
  font-size: 8px;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

/* ====== Key Metrics Bar ====== */
.product-metrics {
  padding: var(--space-16) 0;
  background: var(--color-light-2);
  border-bottom: var(--border-light);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}
.metric-item {
  text-align: center;
}
.metric-value {
  font-size: var(--text-4xl);
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-2);
}
.metric-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ====== Feature Grid ====== */
.features-section {
  padding: var(--space-24) 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.feature-card {
  background: var(--color-light-1);
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37,99,235,0.2);
}
.feature-card:hover::after {
  opacity: 1;
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--space-5);
}
.feature-icon--blue {
  background: rgba(37,99,235,0.1);
}
.feature-icon--cyan {
  background: rgba(6,182,212,0.1);
}
.feature-icon--violet {
  background: rgba(124,58,237,0.1);
}
.feature-icon--emerald {
  background: rgba(16,185,129,0.1);
}
.feature-icon--warning {
  background: rgba(245,158,11,0.1);
}
.feature-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.feature-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ====== How It Works / Architecture ====== */
.architecture-section {
  padding: var(--space-24) 0;
  background: var(--color-light-2);
}
.arch-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-top: var(--space-12);
}
.arch-step {
  text-align: center;
  flex: 0 0 160px;
}
.arch-step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto var(--space-4);
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 20px rgba(37,99,235,0.3);
}
.arch-step h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.arch-step p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.arch-arrow {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ====== Advantage / Why Us ====== */
.advantage-section {
  padding: var(--space-24) 0;
}
.advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}
.advantage-card {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: var(--border-light);
  transition: all var(--transition-base);
}
.advantage-card:hover {
  background: var(--color-light-2);
  box-shadow: var(--shadow-md);
}
.advantage-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  font-size: var(--text-xl);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantage-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.advantage-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ====== Product CTA Section ====== */
.product-cta {
  padding: var(--space-20) 0;
  background: var(--gradient-hero);
  text-align: center;
  color: white;
}
.product-cta h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-4);
}
.product-cta p {
  font-size: var(--text-lg);
  color: var(--color-text-light-muted);
  margin-bottom: var(--space-8);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.product-cta-btns {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
}

/* ====== Smart Ce Chat Demo (product page) ====== */
.smartce-demo {
  padding: var(--space-24) 0;
  background: var(--color-dark-2);
}
.smartce-demo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.smartce-chat-window {
  background: rgba(255,255,255,0.04);
  border: var(--border-glass);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.smartce-chat-header {
  padding: var(--space-4) var(--space-6);
  border-bottom: var(--border-dark);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: white;
  font-weight: 600;
}
.smartce-chat-body {
  padding: var(--space-6);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.smartce-msg {
  max-width: 85%;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  line-height: 1.7;
}
.smartce-msg--user {
  align-self: flex-end;
  background: var(--color-primary);
  color: white;
  border-bottom-right-radius: 4px;
}
.smartce-msg--bot {
  align-self: flex-start;
  background: rgba(255,255,255,0.08);
  color: var(--color-text-light-muted);
  border-bottom-left-radius: 4px;
}

/* ====== Responsive: Product Pages ====== */
@media (max-width: 1024px) {
  .product-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .product-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .product-hero-btns {
    justify-content: center;
    flex-wrap: wrap;
  }
  .product-hero-visual {
    display: none;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantage-grid {
    grid-template-columns: 1fr;
  }
  .smartce-demo-inner {
    grid-template-columns: 1fr;
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .product-hero {
    min-height: auto;
    padding: 120px 0 60px;
  }
  .product-hero h1 {
    font-size: var(--text-4xl);
  }
  .product-hero-desc {
    font-size: var(--text-base);
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    padding: var(--space-6);
  }
  .arch-flow {
    flex-direction: column;
  }
  .arch-arrow {
    transform: rotate(90deg);
  }
  .arch-step {
    flex: 0 0 auto;
  }
  .product-cta h2 {
    font-size: var(--text-3xl);
  }
  .product-cta p {
    font-size: var(--text-base);
  }
  .smartce-chat-body {
    min-height: 220px;
  }
  .advantage-card {
    flex-direction: column;
    text-align: center;
  }
  .advantage-num {
    margin: 0 auto;
  }
  /* Screenshot gallery */
  .sg-slides {
    height: 200px;
  }
  .sg-tab {
    font-size: 11px;
    padding: 6px 6px;
    min-height: 40px;
  }
}
@media (max-width: 480px) {
  .product-hero {
    padding: 100px 0 40px;
  }
  .product-hero h1 {
    font-size: var(--text-3xl);
  }
  .metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
  .metric-value {
    font-size: var(--text-3xl);
  }
  .sg-slides {
    height: 170px;
  }
  .sg-tab {
    font-size: 10px;
    padding: 5px 4px;
  }
}

/* ====== Screenshot Gallery (Hero) ====== */
.screenshot-gallery {
  width: 100%;
  max-width: 580px;
}
.sg-tabs {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
  flex-wrap: nowrap;
}
.sg-tab {
  flex: 1;
  min-width: 0;
  padding: 7px 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}
.sg-tab:hover {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
}
.sg-tab.active {
  color: #fff;
  background: rgba(37,99,235,0.45);
  border-color: rgba(37,99,235,0.7);
}
.sg-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 28px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
}
.sg-frame-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 16px;
  background: rgba(10,15,35,0.97);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sg-frame-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.sg-frame-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.sg-frame-dots span:nth-child(1) { background: #ff5f57; }
.sg-frame-dots span:nth-child(2) { background: #febc2e; }
.sg-frame-dots span:nth-child(3) { background: #28c840; }
.sg-slides {
  position: relative;
  background: #0a0e1f;
  line-height: 0;
  overflow: hidden;
  height: 300px;
}
.sg-slide {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  /* 防截图：轻微模糊 */
  filter: brightness(0.94);
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}
.sg-slide.active {
  display: block;
  animation: sgFadeIn 0.4s ease;
}
/* 文字类截图（AI对话 / AI诊断）额外加强模糊 */
.sg-slide--text {
  filter: blur(0.5px) brightness(0.95) !important;
}
/* 放大时完全遮挡 */
.sg-zoomed .sg-slides {
  position: relative;
}
.sg-zoomed .sg-slides::before {
  content: '🔍请缩小页面查看演示';
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(5,10,28,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  backdrop-filter: blur(12px);
}
.sg-zoomed .sg-slide {
  filter: blur(20px) brightness(0.3) !important;
}
.sg-slides::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(5,10,28,0.55) 100%),
    linear-gradient(to bottom, rgba(5,10,28,0.25) 0%, transparent 20%, transparent 75%, rgba(5,10,28,0.40) 100%);
  pointer-events: none;
  z-index: 2;
}
.sg-watermark {
  position: absolute;
  bottom: 12px;
  right: 14px;
  z-index: 5;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.28);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  pointer-events: none;
  user-select: none;
}
@keyframes sgFadeIn {
  from { opacity: 0; transform: scale(1.01); }
  to   { opacity: 1; transform: scale(1); }
}
.sg-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.sg-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.2s;
}
.sg-dot.active {
  background: rgba(37,99,235,0.9);
  width: 20px;
  border-radius: 3px;
}
@media (max-width: 768px) {
  .screenshot-gallery { max-width: 100%; }
  .sg-tab { font-size: 11px; padding: 6px 6px; }
  .sg-slide { max-height: 220px; }
}

/* ====== Video Hero ====== */
.sg-video-wrap {
  position: relative;
  background: #0a0e1f;
  line-height: 0;
  overflow: hidden;
  height: 300px;
}
.sg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}
.sg-video-wrap .sg-watermark {
  position: absolute;
  bottom: 12px;
  right: 14px;
  z-index: 5;
}
