/**
 * 首页样式 - Home Page Styles
 * 区块顺序：Hero → Agent Matrix → 数据智能底座 → Pain Points → Industries → Resources → Live Demo → CTA/Form
 */

/* ================================================================
   1. Hero Section
   ================================================================ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  /* padding-top: 40px; */
  overflow: hidden;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.05); */
}

.hero-background {
  position: absolute;
  inset: 0;
  background: #0a0a12 url("../img/bg01.png") center no-repeat;
  width: 100%;
  height: 100%;
  background-size: cover;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.3) 0%,
    transparent 70%
  );
  top: -200px;
  right: -100px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(167, 139, 250, 0.2) 0%,
    transparent 70%
  );
  bottom: -100px;
  left: -100px;
}

.hero-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 127px 60px 127px 60px;
  /* height: 30rem; */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #8b5cf6;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
}

.title-gradient {
  background: linear-gradient(97deg, #8847ff 25%, #6511ff 61%), #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-white {
  color: #fff;
  margin-top: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: #94a3b8;
  line-height: 1.8;
  margin: 0 0 40px;
  white-space: nowrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 28px;
  font-weight: 400;
  color: #fff;
}

.stat-plus {
  color: #fff;
}

.stat-unit {
  font-size: 25px;
  font-weight: 400;
}

.stat-label {
  font-size: 13px;
  color: #8b5cf6;
}

.stat-divider {
  width: 2px;
  height: 15px;
  background: rgba(255, 255, 255, 0.1);
}

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

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary.hero-btn {
  background: linear-gradient(101deg, #8847ff 25%, #6511ff 61%), #ffffff;
  color: #fff;
  border: none;
  box-shadow: 0 4px 30px rgba(139, 92, 246, 0.4);
}

.btn-primary.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(139, 92, 246, 0.5);
}

.btn-secondary.hero-btn {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary.hero-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-visual {
  position: relative;
  height: 500px;
}

.visual-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.center-node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
}

.node-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.ring-1 {
  inset: 0;
  animation: ringPulse 3s ease-in-out infinite;
}

.ring-2 {
  inset: -20px;
  animation: ringPulse 3s ease-in-out infinite 1.5s;
}

@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

.node-core {
  position: absolute;
  inset: 20px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.2) 0%,
    rgba(124, 58, 237, 0.1) 100%
  );
  border: 2px solid rgba(139, 92, 246, 0.4);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.core-icon {
  width: 48px;
  height: 48px;
}

.core-icon svg {
  width: 100%;
  height: 100%;
}

.core-label {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.agent-nodes {
  position: absolute;
  inset: 0;
}

.agent-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(17, 17, 26, 0.8);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.agent-node:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

.agent-node .agent-icon {
  font-size: 24px;
}

.agent-node .agent-name {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}

.connection-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ================================================================
   2. Agent Matrix（智能体应用矩阵）
   ================================================================ */
.agent-matrix {
  padding: 140px 0;
  background: #0f172a;
}

.agent-matrix .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  text-align: left;
}

.header-left .tag {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 16px;
}

.hub-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hub-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6 25%, #6b46c1 75%);
  box-shadow: 0px 0px 40px 0px rgba(139, 92, 246, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.35);
  margin-bottom: 16px;
}

.hub-text {
  text-align: right;
  /* display: flex; */
  /* align-items: baseline; */
  /* gap: 8px; */
  /* flex-wrap: nowrap; */
}

.hub-text strong {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.hub-sub {
  font-size: 14px;
  color: #a78bfa;
  font-weight: 500;
  margin-left: 10px;
}

.hub-text p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin: 8px 0 0;
  line-height: 1.6;
  max-width: 640px;
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.agent-card {
  padding: 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 24px;
  transition:
    transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2),
    border-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2),
    box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
}

.agent-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.08);
}

.agent-icon-wrapper {
  width: 56px;
  height: 56px;
  /* padding: 14px; */
  /* background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px; */
  margin-bottom: 24px;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.mt1 {
  margin-bottom: 20px !important;
}

.agent-card:hover .agent-icon-wrapper {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.12);
}

.agent-icon-wrapper .agent-icon {
  width: 32px;
  height: 32px;
  color: #8b5cf6;
}

.agent-icon-wrapper .agent-icon svg {
  width: 100%;
  height: 100%;
}

.agent-name-en {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.agent-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: #8b5cf6;
  margin-bottom: 24px;
}

.agent-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
  border-top: 1px solid rgba(139, 92, 246, 0.08);
}

.agent-features li {
  font-size: 14px;
  color: #94a3b8;
  padding-left: 15px;
  position: relative;
  line-height: 1.5;
}

.agent-features li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 4px;
  height: 4px;
  background: #94a3b8;
  border-radius: 50%;
  /* box-shadow: 0 0 8px rgba(139, 92, 246, 0.3); */
}

/* ================================================================
   3. 数据智能底座（Data Intelligence Foundation）
   ================================================================ */
.data-foundation {
  padding: 90px 0;
  background: linear-gradient(to right, #0f172a 0%, #1e1b4b 100%);
}

.df-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.df-left .tag {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}

.df-left .section-title {
  font-size: 42px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
  text-align: left;
  margin-top: 10px !important;
}

.df-left .section-subtitle {
  font-size: 24px;
  color: #94a3b8;
  text-align: left;
  margin-bottom: 48px;
  margin-top: 8px !important;
}

.df-block {
  margin-bottom: 32px;
}

.df-block-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
}

.df-block-desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 14px;
}

.df-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #a78bfa;
}

.df-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #a78bfa;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 8px;
}

.df-btn:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: #8b5cf6;
}

.df-visual {
  position: relative;
  width: 100%;
  background: rgba(17, 17, 26, 0.8);
  /* border: 1px solid rgba(139, 92, 246, 0.2); */
  /* border-radius: 28px; */
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.1);
}

.df-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* ================================================================
   4. Pain Points（营·销·服）
   ================================================================ */
.pain-points {
  padding: 90px 0;
  background: #0f172a;
}

/* Shared Section Styles */
.section-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .tag {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}

.section-title {
  font-size: 48px !important;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
  margin-top: 10px !important;
}

.section-subtitle {
  font-size: 26px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px !important;
}

.cards-grid {
  display: flex;
  gap: 32px;
}

.card-col {
  flex: 1;
  min-width: 0;
}

.pain-card {
  position: relative;
  padding: 48px 32px;
  background: rgba(17, 17, 26, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2),
    border-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2),
    box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
  flex: 1;
}

.pain-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.06);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pain-card:hover .card-glow {
  opacity: 1;
}

.card-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pain-card-title {
  font-size: 40px !important;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 2px;
  margin: 0 0 -15px 27px;
  position: relative;
  z-index: 100;
}

.pain-heading {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 20px;
}

.pain-list {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  margin-top: 30px;
}

.pain-list li {
  position: relative;
  /* padding-left: 18px; */
  font-size: 13px;
  line-height: 1.75;
  color: #94a3b8;
  margin-bottom: 10px;
}

/* .pain-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
} */
.color01 {
  color: #8b5cf6;
}
.color02 {
  color: #3b82f6;
}
.color03 {
  color: #6b46c1;
}
.card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 55px 0 30px 0;
}
.card-divider2 {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 32px 0 30px 0;
}

.solution-text {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.75;
}

/* ================================================================
   5. Industries（行业落地方案）
   ================================================================ */
.industries {
  padding: 90px 0 100px;
  /* background: #0d0e1a; */
  background: linear-gradient(90deg, #1e1b4b 0%, #0f172a 100%);
}

.industries .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.header-img {
  text-align: right;
  /* display: flex;
    align-items: flex-start;
    gap: 14px; */
}

.header-img img {
  width: 64px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.header-img-text {
  background: rgba(255, 255, 255, 0.03);

  box-sizing: border-box;
  /* HTML to MasterGo - Refore 网页转设计/白色/白色 10% */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  padding: 36px 24px 8px 24px;
  border-radius: 16px;

  margin-top: -30px;
}

.header-img-text strong {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.header-img-text p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.55;
  margin-top: 10px;
}

/* 行业行：左右布局 */
.industry-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 20px;
  position: relative;
}

.industry-info {
  flex: 1;
  /* background: rgba(15, 15, 26, 0.7); */
  background: rgba(59, 130, 246, 0.05);
  /* border: 1px solid rgba(255, 255, 255, 0.06); */
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-right: none;
  border-radius: 20px 0 0 20px;
  padding: 36px 60px 36px 40px;
  position: relative;
  /* display: flex; */
  /* flex-direction: column; */
  /* justify-content: space-between; */
}

.industry-image {
  /* flex: 1; */
  width: 45%;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: none;
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.industry-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 22px;
}

.industry-name {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.industry-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.industry-stat .stat-value {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.industry-stat .stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

.industry-pains {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.industry-pains li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 2;
}

.pain-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.industry-badge-v {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #8b5cf6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  margin-top: auto;
}

/* 悬浮按钮 */
.industry-row {
  position: relative;
}

.industry-hover-btn {
  text-align: center;
  width: 95%;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  padding: 10px 28px;
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1.2);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
  white-space: nowrap;
  z-index: 5;
}

.industry-row:hover .industry-hover-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.industry-hover-btn:hover {
  box-shadow: 0 6px 28px rgba(124, 58, 237, 0.5);
  transform: translateX(-50%) translateY(-2px) !important;
}
.industry-row:hover .industry-info {
background:#E6E9EF;
}
.industry-row:hover .industry-name{
    color: #111;
}
.industry-row:hover .industry-pains li{
    color: #111;
}
.industry-row:hover .industry-stat .stat-label{
    color: #111;
}
/* ================================================================
   6. Resources（Agentic Marketing实战指南）
   ================================================================ */
.resources {
  padding: 100px 0 100px;
  background: #0f172a;
}

.resources .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.resources .section-title {
  font-size: 42px;
  font-weight: 400;
  color: #fff;
  margin-top: 0 !important;
  margin-bottom: 14px;
}

.resources .section-subtitle {
  font-size: 24px;
  color: #94a3b8;
}

/* 顶部两栏 */
.resource-top {
  display: flex;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
  margin-bottom: 16px;
}

.res-card {
  background: rgba(15, 15, 26, 0.7);
  border: 1px dashed rgba(139, 92, 246, 0.18);
  border-radius: 20px;
  overflow: hidden;
}

.res-report {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px;
  flex: 1;
  border-radius: 16px;
  background: rgba(107, 70, 193, 0.1);

  box-sizing: border-box;
  /* HTML to MasterGo - Refore 网页转设计/蓝色/中紫 69 30% */
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.res-img {
  flex-shrink: 0;
  width: 270px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(59, 130, 246, 0.3);
}

.res-img img {
  width: 100%;
  height: auto;
  display: block;
}

.res-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.res-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 14px;
}

.res-badge.hot {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.res-badge.event {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.res-title {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.45;
}

.res-desc {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.75;
  margin: 0 0 20px;
  flex: 1;
}

.res-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  width: fit-content;
}
.mainBox2 {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  box-sizing: border-box;
  /* HTML to MasterGo - Refore 网页转设计/白色/白色 10% */
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 40px 20px 40px;
}
.res-btn.primary {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
}

.res-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.5);
}

.res-event {
  display: flex;
  flex-direction: column;
  width: 30%;
  background: rgba(255, 255, 255, 0.03);

  box-sizing: border-box;
  /* HTML to MasterGo - Refore 网页转设计/白色/白色 10% */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.res-event .res-img {
  width: 100%;
  /* aspect-ratio: 16/9; */
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  padding: 24px 28px;
}

.res-event .res-img img {
  width: 100%;
}

.res-event .res-body {
  padding: 24px 28px 0 28px;
}

.res-event .res-title {
  font-size: 15px;
  line-height: 1.55;
}

/* 内容精选标签行 */
.content-label-row {
  margin-bottom: 25px;
}

.cl-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(167, 139, 250, 0.85);
}

/* 三栏内容卡片 */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.res-item {
  /* background: rgba(15, 15, 26, 0.7); */
  /* border: 1px dashed rgba(139, 92, 246, 0.15); */
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.ri-img {
  width: 100%;
  aspect-ratio: 16/10;
  position: relative;
}

.ri-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ri-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.ri-overlay h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}

.ri-list {
  list-style: none;
  padding: 16px 0px 8px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ri-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 2.55;
  box-sizing: border-box;
  padding-right: 10px;
}

.ri-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8b5cf6;
  flex-shrink: 0;
  margin-top: 11px;
}

.ri-more {
  display: inline-flex;
  padding: 10px 20px 16px;
  font-size: 12px;
  color: #a78bfa;
  text-decoration: none;
  transition: color 0.2s;
}

.ri-more:hover {
  color: #c4b5fd;
}

/* 底部行动区 */
.action-bar {
  text-align: center;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 10px;
}

.action-text {
  font-size: 18px;
  color: #94a3b8;
  margin-top: 40px;
}

.btn-resource-center {
  padding: 12px 36px;
  background: transparent;
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 30px;
}

.btn-resource-center:hover {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.55);
}

.btn-resource:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: #8b5cf6;
}

/* ================================================================
   7. Live Demo（实时工作）
   ================================================================ */
.live-demo {
  padding: 90px 0;
  background: linear-gradient(90deg, #1e1b4b 0%, #0f172a 100%);
}

.live-demo .section-header {
  text-align: center;
}

.terminal {
  max-width: 900px;
  margin: 0 auto 60px;
  background: rgba(10, 10, 18, 0.8);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  overflow: hidden;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red {
  background: #ef4444;
}

.dot.yellow {
  background: #f59e0b;
}

.dot.green {
  background: #10b981;
}

.terminal-title {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.terminal-body {
  padding: 24px;
  min-height: 300px;
}

.log-entry {
  display: flex;
  gap: 16px;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.log-time {
  font-family: Monaco, Menlo, monospace;
  font-size: 13px;
  color: #64748b !important;
  min-width: 80px;
}

.log-agent {
  font-family: Monaco, Menlo, monospace;
  font-size: 13px;
  font-weight: 600;
  min-width: 120px;
  color: #8b5cf6;
}

.log-content {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  flex: 1;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 60px;
}

.stat-box {
  text-align: center;
}

.live-demo .stat-value {
  font-size: 56px;
  font-weight: 400;
  color: #fff;
  /* background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
  margin-bottom: 8px;
}

.live-demo .stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.brands-section {
  text-align: center;
}

.brands-label {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 32px;
}

.brands-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.brand-item {
  padding: 16px 32px;
  /* background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08); */
  border-radius: 12px;
  transition: all 0.3s ease;
}

.brand-item:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.2);
}

.brand-name {
  font-size: 16px;
  font-weight: 500;
  color: #475569;
}

/* ================================================================
   8. CTA + Form
   ================================================================ */
.cta-section {
  background: #0a0a12;
}

.cta-banner {
  padding: 80px 0;
  background: #0f172a;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 20px;
}

.btn-demo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 30px rgba(139, 92, 246, 0.4);
  text-decoration: none;
}

.btn-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(139, 92, 246, 0.5);
}

.btn-pricing {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-pricing:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ================================================================
   9. Responsive Styles
   ================================================================ */
@media (max-width: 1100px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 32px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-stats,
  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 40px;
  }

  .cards-grid {
    flex-direction: column;
  }

  .agents-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .df-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .industry-row {
    flex-direction: column;
    margin-bottom: 16px;
  }

  .industry-info {
    flex: none;
    border-radius: 20px 20px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: none;
    padding: 28px 28px 24px;
  }

  .industry-image {
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    border-top: none;
    border-radius: 0 0 20px 20px;
    min-height: 180px;
  }

  .resource-top {
    grid-template-columns: 1fr;
  }

  .res-report {
    flex-direction: column;
  }

  .res-report .res-img {
    width: 100%;
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }

  .cta-container {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .agent-matrix .section-header {
    flex-direction: column;
    gap: 24px;
  }

  .industries .section-header {
    flex-direction: column;
    gap: 24px;
  }

  .pain-card .card-header .card-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 40px;
  }

  .hero-container {
    padding: 60px 20px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-stats {
    /* flex-direction: column; */
    gap: 20px;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }

  .hero-visual {
    height: 420px;
    transform: scale(0.86);
  }

  .section-title {
    font-size: 28px;
  }

  .section-container {
    padding: 0 24px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .agents-grid {
    grid-template-columns: 1fr;
  }

  .industry-row {
    flex-direction: column;
    margin-bottom: 16px;
  }

  .industry-info {
    flex: none;
    border-radius: 20px 20px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: none;
    padding: 24px 20px 20px;
  }

  .industry-image {
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    border-top: none;
    border-radius: 0 0 20px 20px;
    min-height: 160px;
  }

  .industry-top {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
  }

  .industry-stat {
    align-items: flex-end;
  }

  .stats-row {
    flex-direction: column;
    gap: 45px;
  }

  .brands-grid {
    gap: 12px;
  }

  .brand-item {
    padding: 12px 20px;
  }

  .pain-card .card-header .card-title {
    font-size: 32px;
  }

  .pain-card .card-header .card-icon {
    font-size: 28px;
    width: 44px;
    height: 44px;
  }

  .industry-header .industry-icon {
    font-size: 26px;
    width: 40px;
    height: 40px;
  }

  .industry-name {
    font-size: 18px;
  }

  .industry-content {
    padding: 24px;
  }

  .industry-visual {
    padding: 16px 24px;
  }

  .df-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-title {
    font-size: 24px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-demo,
  .btn-pricing {
    width: 100%;
    justify-content: center;
  }

  .agent-actions {
    flex-wrap: wrap;
  }
}
.tleft {
  text-align: left !important;
}

/* ================================================================
   品牌列表 - 横向滚动
   ================================================================ */
.brands-section {
  margin-top: 40px;
  /*display: none;*/
}

.brands-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  /* 隐藏滚动条但保留滚动功能 */
  flex-wrap: nowrap;
  scrollbar-width: thin;
  scrollbar-color: rgba(59, 130, 246, 0.3) transparent;
}

/* Webkit 浏览器滚动条美化 */
.brands-grid::-webkit-scrollbar {
  height: 4px;
}
.brands-grid::-webkit-scrollbar-track {
  background: transparent;
}
.brands-grid::-webkit-scrollbar-thumb {
  background: rgba(59, 130, 246, 0.4);
  border-radius: 2px;
}
.brands-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(59, 130, 246, 0.7);
}

.brand-item {
  flex-shrink: 0;
  scroll-snap-align: start;
}

/* ================================================================
   移动端完整适配 (参照 mobile.jpg 设计稿)
   ================================================================ */
@media (max-width: 768px) {
  /* ---- Hero Section ---- */
  .hero {
    padding-top: 0;
    min-height: auto;
    /* background: #0F172A; */
    background: linear-gradient(90deg, #0f172a 0%, #1e1b4b 100%);
  }
  .hero-background {
    display: none;
    background: #0f172a;
  }

  .hero-container {
    height: auto;
    padding: 100px 20px 60px;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .hero-content {
    max-width: 100%;
    order: 1;
    text-align: left !important;
  }

  .hero-title {
    font-size: 32px !important;
    margin-bottom: 12px;
  }
  .stat-number {
    color: #8b5cf6 !important;
  }
  .stat-plus {
    color: #8b5cf6 !important;
  }
  .stat-label {
    color: #fff !important;
  }

  .title-white {
    margin-top: 14px;
  }

  .hero-subtitle {
    font-size: 15px;
    white-space: normal;
    line-height: 1.75;
    color: #94a3b8;
    margin-bottom: 28px;
  }

  .hero-stats {
    display: flex;
    justify-content: center;
    gap: 24px !important;
    margin-bottom: 32px;
  }

  .stat-item {
    align-items: center;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-unit {
    font-size: 20px;
  }

  .stat-label {
    font-size: 12px;
  }

  .stat-divider {
    width: 1px;
    height: 30px;
  }

  .hero-actions {
    display: flex;
    /* flex-direction: column; */
    width: 100%;
    gap: 12px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap !important;
  }

  .hero-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
    justify-content: center;
    border-radius: 10px;
  }
  .b01 {
    width: 65% !important;
    padding: 15px 8px !important;
  }
  .b02 {
    width: 30% !important;
    padding: 8px !important;
  }

  /* 背景装饰缩小 */
  .orb-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -80px;
    opacity: 0.25;
  }
  .orb-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    opacity: 0.25;
  }

  /* ---- Pain Points（营·销·服）---- */
  .pain-points {
    padding: 56px 0;
  }

  .section-container {
    padding: 0 16px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: 24px !important;
  }

  .section-subtitle {
    font-size: 14px;
    color: #94a3b8;
  }

  .cards-grid {
    flex-direction: column;
    gap: 20px;
  }

  .pain-card {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .pain-card-title {
    font-size: 28px !important;
    letter-spacing: 1.5px;
    margin: 0 0 -15px 18px;
  }

  .pain-heading {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .pain-list {
    margin-top: 20px;
    gap: 6px;
  }

  .pain-list li {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 6px;
  }

  .card-divider,
  .card-divider2 {
    margin: 40px 0 20px;
  }

  .solution-text {
    font-size: 13px;
    line-height: 1.7;
  }

  /* ---- 数据智能底座 ---- */
  .data-foundation {
    padding: 56px 0;
  }

  .df-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .df-left .tag {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .df-left .section-title {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .df-left .section-subtitle {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .df-block {
    margin-bottom: 22px;
  }

  .df-block-title {
    font-size: 16px;
  }

  .df-block-desc {
    font-size: 13px;
    line-height: 1.7;
  }

  .df-badge {
    font-size: 12px;
    padding: 5px 14px;
    color: #8b5cf6 !important;
    background: rgba(139, 92, 246, 0.2) !important;
  }

  .df-btn {
    padding: 11px 24px;
    font-size: 14px;
  }

  .df-visual img {
    border-radius: 16px;
  }

  /* ---- Agent Matrix（智能体应用矩阵）---- */
  .header-content .tag {
    margin-bottom: 0px !important;
  }
  .agent-matrix {
    padding: 56px 0;
  }

  .agent-matrix .section-header {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
    text-align: center;
  }

  .header-content {
    text-align: left;
    /* text-align: center; */
  }

  .hub-badge {
    display: none;
    align-items: center;
    text-align: center;
  }

  .hub-text {
    text-align: center;
  }

  .hub-circle {
    width: 64px;
    height: 64px;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .hub-text strong {
    font-size: 16px;
  }

  .hub-text p {
    font-size: 11px;
  }

  .agents-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .agent-card {
    padding: 28px 24px;
    border-radius: 18px;
  }

  .agent-icon-wrapper {
    margin-bottom: 18px;
    width: 48px;
    height: 48px;
  }

  .agent-name-en {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .agent-tag {
    font-size: 11px;
    padding: 5px 14px;
    margin-bottom: 18px;
  }

  .agent-features {
    gap: 10px;
    padding-top: 14px;
  }

  .agent-features li {
    font-size: 13px;
    padding-left: 20px;
    line-height: 1.55;
  }

  .agent-features li::before {
    width: 6px;
    height: 6px;
    top: 7px;
    left: 3px;
  }

  /* ---- Industries（行业落地方案）---- */
  .industries {
    padding: 56px 0 72px;
  }

  .industries .section-header {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
  }

  .header-img {
    text-align: center;
    display: none;
  }

  .header-img img {
    width: 52px;
  }

  .header-img-text {
    padding: 28px 18px 0;
    margin-top: -24px;
    border-radius: 14px;
  }

  .header-img-text strong {
    font-size: 12px;
  }

  .industry-row {
    flex-direction: column;
    margin-bottom: 14px;
  }

  .industry-info {
    border-radius: 16px 16px 0 0;
    padding: 24px 20px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: none;
  }

  .industry-image {
    display: none;
    width: 100%;
    min-height: 150px;
    border-radius: 0 0 16px 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    border-top: none;
  }

  .industry-name {
    font-size: 19px;
  }

  .industry-stat .stat-value {
    font-size: 26px;
  }

  .industry-top {
    flex-direction: row;
    gap: 8px;
    margin-bottom: 16px;
  }

  .industry-pains {
    gap: 8px;
  }

  .industry-pains li {
    font-size: 13px;
    line-height: 1.8;
  }

  /* 悬浮按钮在移动端始终显示 */
  .industry-hover-btn {
    display: none;
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    margin: 12px 0 0;
    transform: translateX(-50%);
    left: 50%;
    width: calc(100% - 40px);
    bottom: auto;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
  }

  /* ---- Resources（资源中心）---- */
  .resources {
    display: none;
    padding: 56px 0 72px;
  }

  .resource-top {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .res-report {
    flex-direction: column;
    padding: 24px;
    gap: 20px;
  }

  .res-report .res-img {
    width: 100%;
    border-radius: 10px;
  }

  .res-event {
    width: 100%;
  }

  .res-body {
    padding: 20px 20px 0;
  }

  .res-title {
    font-size: 17px;
  }

  .res-desc {
    font-size: 13px;
  }

  .mainBox {
    padding: 16px 20px;
    border-radius: 14px;
  }

  .content-label-row {
    margin-bottom: 18px;
  }

  .cl-tag {
    font-size: 11px;
  }

  .resource-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .ri-img {
    aspect-ratio: 16/9;
  }

  .ri-list {
    padding: 12px 0 4px;
  }

  .ri-list li {
    font-size: 12px;
    line-height: 2.2;
  }

  .action-bar {
    padding-top: 0;
  }

  .action-text {
    font-size: 13px;
    margin-top: 28px;
  }

  .btn-resource-center {
    padding: 11px 28px;
    font-size: 13px;
    margin-top: 20px;
  }

  /* ---- Live Demo（实时工作）---- */
  .live-demo {
    padding: 56px 0;
    display: none;
  }

  .terminal {
    margin: 0 0 40px;
    border-radius: 12px;
    overflow-x: hidden;
    display: none;
  }

  .terminal-header {
    padding: 12px 16px;
  }

  .terminal-dots {
    gap: 6px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .terminal-body {
    padding: 16px;
    min-height: auto;
    max-height: 260px;
    overflow-y: auto;
  }

  .log-entry {
    padding: 8px 10px;
    gap: 10px;
    flex-wrap: wrap;
  }

  .log-time {
    font-size: 11px;
    min-width: 70px;
  }

  .log-agent {
    font-size: 11px;
    min-width: 90px;
  }

  .log-content {
    font-size: 12px;
    width: 100%;
    min-width: unset;
  }

  .stats-row {
    display: none;
    flex-direction: column;
    gap: 36px;
    margin-bottom: 44px;
  }

  .live-demo .stat-value {
    font-size: 42px;
  }

  .live-demo .stat-label {
    font-size: 14px;
  }

  .brands-section {
    margin-top: 32px;
  }

  .brands-label {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .brands-grid {
    gap: 10px;
    padding-bottom: 12px;
  }

  .brand-item {
    padding: 10px 18px;
    border-radius: 8px;
  }

  .brand-name {
    font-size: 14px;
  }

  /* ---- CTA Section ---- */
  .cta-banner {
    padding: 48px 0;
    display: none !important;
  }

  .cta-container {
    padding: 0 20px;
  }

  .cta-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .cta-subtitle {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-demo,
  .btn-pricing {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    justify-content: center;
    border-radius: 10px;
  }
}

/* 超小屏幕 (< 480px) 补充适配 */
@media (max-width: 480px) {
  .hero-container {
    padding: 90px 16px 50px;
  }

  .hero-title {
    font-size: 27px !important;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-stats {
    gap: 18px !important;
    /* flex-wrap: wrap; */
    display: flex !important;
  }

  .stat-number {
    font-size: 21px;
  }

  .section-title {
    font-size: 22px !important;
  }

  .agents-grid {
    gap: 14px;
  }

  .agent-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .agent-name-en {
    font-size: 18px;
  }

  .pain-card {
    padding: 24px 18px;
  }

  .pain-card-title {
    font-size: 50px !important;
  }

  .industry-info {
    padding: 20px 16px 16px;
  }

  .industry-name {
    font-size: 17px;
  }

  .industry-stat .stat-value {
    font-size: 23px;
  }

  .industry-pains li {
    font-size: 12px;
  }

  .res-report {
    padding: 20px 18px;
  }

  .res-title {
    font-size: 16px;
  }

  .res-desc {
    font-size: 12px;
  }

  .mainBox {
    padding: 14px 16px;
  }

  .cta-title {
    font-size: 22px;
  }

  .stats-row {
    gap: 30px;
  }

  .live-demo .stat-value {
    font-size: 36px;
  }

  .brands-grid {
    gap: 8px;
  }

  .brand-item {
    padding: 10px 14px;
    border-radius: 6px;
  }

  .brand-name {
    font-size: 13px;
  }
}
