.product-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top left, rgba(0,209,255,0.15), transparent 40%), radial-gradient(circle at bottom right, rgba(0,150,255,0.1), transparent 40%), #0f1115;
  padding: 60px 20px;
}

.product-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(0,209,255,0.15);
}

.product-content h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #ffffff;
}

.badges {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.badge {
  padding: 8px 14px;
  font-size: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #c7c9d1;
}

.badge.highlight {
  background: linear-gradient(135deg, #00d1ff, #008cff);
  color: #0f1115;
  font-weight: bold;
}

.b2b-note {
  font-size: 15px;
  color: #c7c9d1;
  margin-bottom: 40px;
}

.cta-btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: bold;
  color: #0f1115;
  background: linear-gradient(135deg, #00d1ff, #008cff);
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(0,209,255,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 60px rgba(0,209,255,0.45);
}

/* Responsive */

@media (max-width: 900px) {
  .product-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .badges {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .product-content h1 {
    font-size: 32px;
  }
}

