.page-hero p {
  font-size: 1.05rem;
  max-width: 720px;
}

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(45, 91, 255, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(0, 184, 217, 0.12), transparent 24%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.services-intro {
  margin-bottom: 30px;
  padding: 26px 28px;
  border: 1px solid rgba(45, 91, 255, 0.12);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(29, 78, 216, 0.92));
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.16);
}

.services-intro p,
.services-intro h2 {
  color: #ffffff;
}

.services-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-item {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(221, 227, 238, 0.9);
}

.service-item::after {
  content: "";
  position: absolute;
  inset: auto -40px -50px auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(45, 91, 255, 0.14), transparent 68%);
  pointer-events: none;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #e9f0ff, #eefbff);
  color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(45, 91, 255, 0.08);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}

.service-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-item h2 {
  margin-bottom: 10px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-item {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(221, 227, 238, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.98));
}

.product-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #2d5bff, #00b8d9);
}

.product-icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, #13213d, #2454be);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(36, 84, 190, 0.2);
}

.product-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(45, 91, 255, 0.08);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-item p {
  max-width: 32ch;
}

.content-grid article p + p,
.service-item p + p {
  margin-top: 12px;
}

.panel ul {
  padding-left: 18px;
}

.panel ul li {
  list-style: disc;
  color: var(--muted);
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .services-layout,
  .products-grid {
    grid-template-columns: 1fr;
  }
}
