.product-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://via.placeholder.com/1920x600/1a3a5f/ffffff?text=护理管理与质控系统') center/cover;
  color: white;
  text-align: center;
  padding: 120px 20px 80px;
}

.product-hero h1 {
  font-size: 3.8rem;
  margin-bottom: 1rem;
}

.product-hero p {
  font-size: 1.4rem;
  max-width: 900px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: #0d7cba;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  box-shadow: 0 10px 20px rgba(13,124,186,0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(13,124,186,0.4);
}

.product-container {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #0d1b2a;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin: 4rem 0;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: #e3f2fd;
  color: #0d7cba;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: #0d1b2a;
  margin-bottom: 1rem;
}

.metrics {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 4rem 0;
  text-align: center;
}

.metric-item {
  flex: 1;
  min-width: 200px;
}

.metric-number {
  font-size: 3rem;
  font-weight: 700;
  color: #0d7cba;
}

.metric-label {
  font-size: 1.2rem;
  color: #555;
}

.workflow {
  margin: 5rem 0;
  text-align: center;
}

.workflow img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonials {
  background: #f8f9fa;
  padding: 5rem 2rem;
  text-align: center;
  margin: 6rem 0;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  max-width: 800px;
  margin: 2rem auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: left;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0d7cba;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
}

.reviewer {
  font-weight: 600;
  color: #0d1b2a;
}

.position {
  color: #666;
  font-size: 0.9rem;
}

.testimonial-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

/* 侧边申请试用栏 */
.sidebar-cta {
  position: fixed;
  right: 30px;
  top: 120px;
  width: 300px;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 100;
}

.sidebar-cta h3 {
  margin-bottom: 1rem;
  color: #0d1b2a;
}

.sidebar-cta form input, .sidebar-cta form button {
  width: 100%;
  padding: 12px;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-sizing: border-box;
}

.sidebar-cta form button {
  background: #0d7cba;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.sidebar-cta form button:hover {
  background: #0c6ca1;
}

@media (max-width: 992px) {
  .sidebar-cta {
    position: static;
    width: auto;
    margin: 0 20px;
  }
}
