* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
:root {
  --primary: #165DFF;
  --secondary: #7B61FF;
  --third: #00CFFB;
  --bg-dark: #0A0E17;
  --bg-card: #141925;
  --text: #E5E9F2;
  --text-secondary: #86909C;
  --border: #252F48;
}
body {
  font-family: "Microsoft YaHei", sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 45px;
  line-height: 1.4;
}
.section-title span {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-desc {
  text-align: center;
  color: var(--text-secondary);
  max-width: 900px;
  margin: -30px auto 40px;
  font-size: 15px;
}
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-size: 15px;
}
.btn-primary {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(123,97,255,0.3);
}

/* 导航 */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(20,25,37,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.logo {
  font-size: 22px;
  font-weight: bold;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}
.nav-menu a {
  color: var(--text-secondary);
  transition: 0.3s;
}
.nav-menu a:hover {
  color: var(--primary);
}

/* 面包屑 */
.breadcrumb {
  padding: 100px 0 15px;
  color: var(--text-secondary);
  font-size: 14px;
}
.breadcrumb a {
  color: var(--text-secondary);
}

/* 首屏 */
.hero {
  padding: 80px 0 100px;
  background: radial-gradient(circle at 50% 30%, rgba(123,97,255,0.1), transparent 70%);
  text-align: center;
}
.hero h1 {
  font-size: 44px;
  margin-bottom: 20px;
  line-height: 1.3;
}
.hero h1 span {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 30px;
}
.test-info {
  display: inline-block;
  background: var(--bg-card);
  padding: 10px 25px;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
  color: var(--third);
  font-size: 16px;
}

/* 套餐 移动端优化 */
.packages {
  padding: 80px 0;
  background: var(--bg-card);
}
.pack-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: 12px;
}
.pack-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  background: var(--bg-dark);
  border-radius: 12px;
  overflow: hidden;
}
.pack-table th {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 16px;
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
}
.pack-table td {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  white-space: nowrap;
}
.pack-table tr:hover {
  background: rgba(22,93,255,0.05);
}
.price {
  color: var(--third);
  font-weight: bold;
  font-size: 16px;
}
.buy-btn {
  padding: 8px 16px;
  background: var(--primary);
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
}

/* 优势 */
.advantages {
  padding: 80px 0;
}
.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.adv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 35px 25px;
  transition: 0.3s;
}
.adv-card:hover {
  border-color: var(--secondary);
  transform: translateY(-5px);
}
.adv-card h3 {
  margin-bottom: 12px;
  font-size: 19px;
  color: var(--text);
}
.adv-card p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* 产品详情 */
.info {
  padding: 80px 0;
  background: var(--bg-card);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.info-item {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
}
.info-item h3 {
  margin-bottom: 15px;
  color: var(--primary);
}
.info-item p {
  color: var(--text-secondary);
  line-height: 1.9;
}

/* 防御优势 */
.defense {
  padding: 80px 0;
}
.defense-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.defense-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
}
.defense-box h3 {
  margin-bottom: 15px;
  color: var(--third);
}
.defense-box p {
  color: var(--text-secondary);
}

/* 场景 */
.scene {
  padding: 80px 0;
  background: var(--bg-card);
}
.scene-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.scene-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
}
.scene-card h3 {
  margin-bottom: 10px;
  color: var(--primary);
}
.scene-card p {
  color: var(--text-secondary);
}

/* 常见问题 */
.faq {
  padding: 80px 0;
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 15px;
}
.faq-item h3 {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 8px;
}
.faq-item p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* 文章列表 */
.news {
  padding: 80px 0;
  background: var(--bg-card);
}
.news-list {
  max-width: 900px;
  margin: 0 auto;
}
.news-item {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 15px;
  transition: 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-item:hover {
  border-color: var(--primary);
  transform: translateX(4px);
}
.news-title {
  font-size: 16px;
  color: var(--text);
}
.news-time {
  font-size: 14px;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* 售后 */
.service {
  padding: 80px 0;
  text-align: center;
}
.service p {
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 2;
}

/* 页脚 */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
}

/* 移动端 */
@media (max-width:900px) {
  .adv-grid, .info-grid, .defense-grid, .scene-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 28px;
  }
  .nav-menu {
    display: none;
  }
  .news-item, .faq-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
/* 售后服务美化 */
.service {
  padding: 70px 0;
  background: radial-gradient(circle at 50% 20%, rgba(0,102,255,0.06), transparent 70%);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 25px 20px;
  transition: all 0.3s ease;
}
.service-card:hover {
  border-color: var(--secondary);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,180,255,0.1);
}
.service-card h4 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--primary);
}
.service-card h4::before {
  margin-right: 8px;
  font-style: normal;
}
.service-card:nth-child(1) h4::before { content: "🔔"; }
.service-card:nth-child(2) h4::before { content: "⚙️"; }
.service-card:nth-child(3) h4::before { content: "🛡️"; }
.service-card:nth-child(4) h4::before { content: "🔧"; }
.service-card:nth-child(5) h4::before { content: "📋"; }
.service-card:nth-child(6) h4::before { content: "🚀"; }
.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.service-btn-wrap {
  text-align: center;
  margin-top: 20px;
}

@media (max-width:900px) {
  .service-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:500px) {
  .service-grid { grid-template-columns: 1fr; }
}