.product-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://via.placeholder.com/1920x600/1a5d98/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;
}

.specs {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 15px;
  margin: 4rem 0;
}

.specs table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.specs th, .specs td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.specs th {
  background: #0d7cba;
  color: white;
}

.specs tr:nth-child(even) {
  background: #f0f7ff;
}

.gallery {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
  margin: 3rem 0;
}

.gallery img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.integration {
  margin: 5rem 0;
  text-align: center;
}

.integration p {
  font-size: 1.2rem;
  color: #555;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.logo-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.logo-grid img {
  height: 50px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.logo-grid img:hover {
  opacity: 1;
}

/* 侧边申请试用栏 */
.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;
  }
}
