/* GPU page styling */
.gpu-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(139, 92, 246, .22), transparent 28%),
    radial-gradient(circle at bottom left, rgba(6, 182, 212, .18), transparent 30%),
    linear-gradient(135deg, #0f172a 0%, #111827 45%, #1e293b 100%);
  color: #fff;
  border-radius: 1.75rem;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.22);
}

.gpu-hero::before {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(59, 130, 246, .25), transparent 65%);
  pointer-events: none;
}

.gpu-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #cbd5e1;
}

.gpu-badge-dot {
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #22d3ee, #8b5cf6);
  box-shadow: 0 0 12px rgba(34, 211, 238, .6);
}

.gpu-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .88);
}

.gpu-muted {
  color: rgba(255, 255, 255, .72);
}

.gpu-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gpu-stat {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 1.25rem;
  padding: 1rem 1rem;
  backdrop-filter: blur(8px);
}

.gpu-stat strong {
  display: block;
  font-size: 1.1rem;
  color: #fff;
}

.gpu-stat span {
  font-size: .92rem;
  color: rgba(255, 255, 255, .72);
}

.gpu-section-soft {
  background: linear-gradient(180deg, rgba(248, 250, 252, 1) 0%, rgba(241, 245, 249, 1) 100%);
  border-radius: 1.75rem;
}

.gpu-info-card {
  height: 100%;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.gpu-info-card h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.gpu-list {
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.gpu-list li {
  margin-bottom: .55rem;
}

.gpu-service-card {
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 1.4rem;
  padding: 1.75rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.gpu-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.10);
}

.gpu-service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
}

.gpu-icon {
  width: 52px;
  height: 52px;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  box-shadow: 0 12px 24px rgba(139, 92, 246, 0.22);
}

.gpu-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at left top, rgba(34, 211, 238, .16), transparent 25%),
    radial-gradient(circle at right bottom, rgba(139, 92, 246, .18), transparent 30%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 1.75rem;
  color: #fff;
  padding: 3rem 2rem;
}

.gpu-btn {
  border: 0;
  color: #fff;
  background: linear-gradient(90deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
  box-shadow: 0 14px 30px rgba(59, 130, 246, 0.22);
}

.gpu-btn:hover,
.gpu-btn:focus {
  color: #fff;
  opacity: .96;
}

@media (max-width: 991.98px) {
  .gpu-hero {
    padding: 2rem 1.5rem;
  }

  .gpu-stat-grid {
    grid-template-columns: 1fr;
  }

  .gpu-info-card h2 {
    font-size: 1.8rem;
  }
}
