.product-hero .hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}

.product-hero .hero-metric {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.product-hero .hero-metric span {
  font-weight: 600;
  color: #ffffff;
}

.icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(47, 156, 234, 0.16);
  color: var(--secondary);
  font-size: 1.2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow);
  height: 100%;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.stat-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: var(--shadow);
  text-align: center;
}

.stat-card h3 {
  font-size: 2rem;
  margin-bottom: 8px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.journey-step {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--secondary);
}

.journey-step span {
  display: inline-block;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
  height: 100%;
}

.testimonial-card p {
  color: #475569;
}

.contact-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

@media (max-width: 767px) {
  .product-hero .hero-card {
    padding: 22px;
  }
}
