
/* 整体背景（区别前面模块） */
.why-us-pro {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f5f7fa 0%, #eef2f7 100%);
}

/* 标题 */
.why-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 15px;
  color: #222;
}

.why-subtitle {
  text-align: center;
  font-size: 18px;
  margin-bottom: 60px;
  color: #666;
}

/* 网格 */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* 卡片 */
.why-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* 图片区域 */
.img-box {
  overflow: hidden;
}

.img-box img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

/* 文字 */
.text-box {
  padding: 20px;
}

.text-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.text-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 悬停效果 */
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.why-card:hover img {
  transform: scale(1.08);
}

/* 平板 */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 手机 */
@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-title {
    font-size: 26px;
  }

  .why-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
