.hero {
  min-height: 82vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem 1rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(98, 216, 255, 0.35), transparent 28%),
    radial-gradient(circle at 15% 80%, rgba(167, 139, 250, 0.28), transparent 34%),
    linear-gradient(rgba(8, 18, 40, 0.66), rgba(8, 18, 40, 0.66)),
    url("../assets/logo-proking-hero.png") center/cover no-repeat;
  color: #fff;
}

.hero-content {
  max-width: 850px;
  background: rgba(9, 20, 45, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-glow);
  padding: 2rem 1.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
  text-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.95;
  margin-bottom: 1.4rem;
}

.sections-wrap {
  display: grid;
  gap: 1.4rem;
  margin-top: 2rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 1rem;
}

.info-card {
  padding: 1.4rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card h3 {
  color: var(--color-primary);
  margin-bottom: 0.45rem;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.info-card i {
  color: var(--color-primary);
  font-size: 1.4rem;
  margin-bottom: 0.55rem;
}

.prices-wrap {
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
}

.prices-wrap::before {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.24), transparent 70%);
  pointer-events: none;
}

.prices-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.prices-table th {
  text-align: left;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
  color: white;
  padding: 0.9rem;
}

.prices-table td {
  background: white;
  border-bottom: 1px solid #eef2f7;
  padding: 0.9rem;
}

.prices-table tr:hover td {
  background: #f8fbff;
}
