/* ===== 页面专属样式 ===== */

/* WhatsApp风格卡片 - 绿白主题 */
.wa-card {
  background: white;
  border-radius: 20px;
  padding: 28px 24px 24px;
  border: 1px solid #d7e1ed;
  transition: all 0.3s;
  text-align: center;
  position: relative;
}
.wa-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-6px);
  border-color: #25d366;
}
.wa-card .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #e8f5e9;
  border-radius: 16px;
  font-size: 28px;
  margin-bottom: 12px;
  transition: all 0.3s;
}
.wa-card:hover .icon-wrap {
  background: #25d366;
  color: white;
}
.wa-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1a2a3a;
}
.wa-card p {
  font-size: 13px;
  color: #4a5f7a;
  line-height: 1.7;
  margin-top: 4px;
}
.wa-card .tag-green {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #25d366;
  background: #e8f5e9;
  padding: 2px 14px;
  border-radius: 20px;
  margin-top: 8px;
  letter-spacing: 0.3px;
}

/* 价值矩阵卡片 - 左右布局 */
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: white;
  border-radius: 16px;
  border: 1px solid #d7e1ed;
  transition: all 0.25s;
}
.value-item:hover {
  border-color: #25d366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.06);
  transform: translateX(4px);
}
.value-item .v-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #e8f5e9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #25d366;
}
.value-item .v-content h5 {
  font-size: 16px;
  font-weight: 700;
  color: #1a2a3a;
}
.value-item .v-content p {
  font-size: 13px;
  color: #4a5f7a;
  line-height: 1.6;
  margin-top: 2px;
}

/* 客户成功卡片 */
.success-card {
  background: white;
  border-radius: 20px;
  padding: 24px 20px;
  border: 1px solid #d7e1ed;
  transition: all 0.3s;
  text-align: center;
}
.success-card:hover {
  border-color: #25d366;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.06);
  transform: translateY(-4px);
}
.success-card .s-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 8px;
}
.success-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: #1a2a3a;
}
.success-card ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.success-card ul li {
  font-size: 13px;
  color: #4a5f7a;
  padding: 3px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.success-card ul li::before {
  content: "✓";
  color: #25d366;
  font-weight: 700;
}

/* ===== Banner 全新布局：居中 + 聊天气泡装饰 ===== */
.banner-wrapper {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #f0faf3 0%, #d8f0e0 50%, #c0e8d0 100%);
  overflow: hidden;
}
.banner-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(37, 211, 102, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(37, 211, 102, 0.04) 0%, transparent 40%);
  z-index: 1;
}
/* 装饰 - 聊天气泡 */
.banner-wrapper .deco-bubble {
  position: absolute;
  z-index: 1;
  opacity: 0.05;
  font-size: 100px;
  color: #25d366;
  line-height: 1;
}
.banner-wrapper .deco-bubble:nth-child(1) {
  top: 10%;
  right: 8%;
  font-size: 140px;
  transform: rotate(10deg);
}
.banner-wrapper .deco-bubble:nth-child(2) {
  bottom: 15%;
  left: 5%;
  font-size: 110px;
  transform: rotate(-15deg);
}
.banner-wrapper .deco-bubble:nth-child(3) {
  top: 50%;
  left: 45%;
  font-size: 80px;
  transform: rotate(5deg);
}

.banner-wrapper .banner-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 30px 0 20px;
}
.banner-wrapper .banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.08);
  color: #25d366;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 20px 6px 16px;
  border-radius: 100px;
}
.banner-wrapper .banner-badge .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #25d366;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}
.banner-wrapper h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  color: #1a2a3a;
  margin: 14px 0 12px;
}
.banner-wrapper h1 .highlight {
  color: #25d366;
  background: none;
  -webkit-text-fill-color: #25d366;
}
.banner-wrapper .banner-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a5f7a;
  max-width: 580px;
  margin: 0 auto;
}
.banner-wrapper .banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 22px;
}
.banner-wrapper .btn-primary-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  padding: 14px 38px;
  border-radius: 60px;
  font-size: 0.95rem;
  transition: all 0.25s;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
  text-decoration: none;
}
.banner-wrapper .btn-primary-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.4);
  background: #1daa54;
}
.banner-wrapper .btn-outline-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #1a2a3a;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 60px;
  font-size: 0.95rem;
  border: 1.5px solid #d7e1ed;
  transition: all 0.25s;
  text-decoration: none;
}
.banner-wrapper .btn-outline-banner:hover {
  background: rgba(37, 211, 102, 0.04);
  border-color: #25d366;
  transform: translateY(-2px);
}

/* 聊天模拟 */
.banner-wrapper .chat-mock {
  display: inline-flex;
  align-items: center;
  background: white;
  border-radius: 60px;
  padding: 6px 6px 6px 20px;
  margin-top: 18px;
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.1);
  max-width: 480px;
  width: 100%;
}
.banner-wrapper .chat-mock .avatar {
  width: 36px;
  height: 36px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.banner-wrapper .chat-mock .msg {
  flex: 1;
  font-size: 14px;
  color: #1a2a3a;
  padding: 8px 14px;
  text-align: left;
}
.banner-wrapper .chat-mock .msg .highlight-text {
  color: #25d366;
  font-weight: 600;
}
.banner-wrapper .chat-mock .badge-new {
  background: #25d366;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  flex-shrink: 0;
}

/* 数据统计 */
.banner-wrapper .stats-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px 50px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(37, 211, 102, 0.08);
}
.banner-wrapper .stats-row .stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4a5f7a;
  font-size: 14px;
}
.banner-wrapper .stats-row .stat-item .num {
  font-weight: 700;
  color: #1a2a3a;
  font-size: 18px;
}
.banner-wrapper .stats-row .stat-item .green {
  color: #25d366;
}

@media (max-width: 1024px) {
  .banner-wrapper .chat-mock {
    max-width: 420px;
  }
}
@media (max-width: 768px) {
  .banner-wrapper {
    min-height: auto;
    padding: 30px 0 20px;
  }
  .banner-wrapper .banner-desc {
    max-width: 100%;
  }
  .banner-wrapper .chat-mock {
    flex-wrap: wrap;
    padding: 12px 16px;
    border-radius: 24px;
    justify-content: center;
    gap: 8px;
  }
  .banner-wrapper .chat-mock .msg {
    width: 100%;
    text-align: center;
    padding: 4px 0;
    font-size: 13px;
  }
  .banner-wrapper .chat-mock .badge-new {
    font-size: 9px;
    padding: 3px 10px;
  }
  .banner-wrapper .stats-row {
    gap: 16px 24px;
  }
  .banner-wrapper .stats-row .stat-item {
    font-size: 12px;
  }
  .banner-wrapper .stats-row .stat-item .num {
    font-size: 15px;
  }
  .banner-wrapper .deco-bubble {
    display: none;
  }
  .value-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .banner-wrapper h1 {
    font-size: 1.8rem;
  }
  .banner-wrapper .btn-primary-banner,
  .banner-wrapper .btn-outline-banner {
    padding: 12px 24px;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
  }
  .banner-wrapper .banner-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .banner-wrapper .chat-mock .msg {
    font-size: 12px;
  }
}
