.hub-hero {
  padding: 2rem 0 4rem;
  background: linear-gradient(165deg, #eef4fc 0%, #f8fafc 42%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.hub-hero__orb {
  position: absolute;
  top: -8rem;
  right: -10%;
  width: 44rem;
  height: 44rem;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
  animation: hub-orb-float 8s ease-in-out infinite;
}

@keyframes hub-orb-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1.2rem);
  }
}

.hub-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

main:has(> .hub-hero) {
  background: linear-gradient(180deg, #eef4fc 0%, #f8fafc 20%, #fff 100%);
}

@media screen and (max-width: 768px) {
  .hub-hero__orb {
    display: none;
  }
}

@media screen and (max-width: 900px) {
  .hub-hero__inner {
    grid-template-columns: 1fr;
  }
}

.hub-hero__title {
  font-size: clamp(3.2rem, 4vw, 5.2rem);
  line-height: 1.12;
  font-weight: 600;
  color: #082d7c;
  margin: 0 0 1.6rem;
}

.hub-hero__text {
  font-size: 1.8rem;
  line-height: 1.5;
  color: #444651;
  margin: 0 0 2rem;
  max-width: 56rem;
}

.hub-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
  align-items: center;
}

.hub-hero__media {
  border-radius: 2rem;
  overflow: hidden;
  border: 0.1rem solid rgba(8, 45, 124, 0.12);
  box-shadow: 0 2rem 4rem rgba(8, 45, 124, 0.1);
}

.hub-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hub-hero__link {
  font-size: 1.6rem;
  font-weight: 600;
}

.hub-pillars {
  padding: 4rem 0;
}

.hub-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 900px) {
  .hub-pillars__grid {
    grid-template-columns: 1fr;
  }
}

.hub-pillar {
  padding: 2rem;
  border-radius: 1.6rem;
  background: #fff;
  border: 0.1rem solid #ced9f2;
}

.hub-pillar__title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #082d7c;
  margin: 0 0 0.8rem;
}

.hub-pillar__text {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #444;
  margin: 0;
}

main:has(> .hub-hero) .section-price__list {
  gap: 1.6rem;
}

main:has(> .hub-hero) .price-item {
  border-radius: 1.6rem;
  border: 0.1rem solid #ced9f2;
  background: #fff;
  box-shadow: 0 1.2rem 3rem rgba(8, 45, 124, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

main:has(> .hub-hero) .price-item:hover {
  border-color: rgba(8, 45, 124, 0.32);
  box-shadow: 0 1.6rem 4rem rgba(8, 45, 124, 0.1);
}

main:has(> .hub-hero) .price-item__action {
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  main:has(> .hub-hero) .price-item__bot {
    flex-wrap: wrap;
    gap: 1.2rem 1.6rem;
  }

  main:has(> .hub-hero) .price-item__aside {
    flex: 1 1 auto;
  }
}

@media screen and (max-width: 550px) {
  main:has(> .hub-hero) .price-item__bot {
    flex-direction: column;
    align-items: stretch;
  }

  main:has(> .hub-hero) .price-item__action {
    width: 100%;
    text-align: center;
  }
}
