/* ===== Pricing Page ===== */

/* Hero */
.pricing-hero {
  padding: 60px 0 80px 0;
}
.pricing-hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
}
.pricing-hero__content {
  flex: 1;
}
.pricing-hero__title {
  font-weight: 800;
  font-size: 42px;
  line-height: 115%;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.pricing-hero__title span {
  color: #1a89f9;
}
.pricing-hero__desc {
  font-size: 16px;
  line-height: 160%;
  color: #64748b;
  max-width: 540px;
  margin-bottom: 32px;
}
.pricing-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-hero__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f2f7fd;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  transition: all 0.2s ease;
}
.pricing-hero__badge:hover {
  background: #e8f3fe;
  transform: translateY(-2px);
}
.pricing-hero__badge svg {
  width: 20px;
  height: 20px;
  color: #1a89f9;
  flex-shrink: 0;
}
.pricing-hero__btn {
  height: 56px;
  padding: 0 40px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Hero Graphic */
.pricing-hero__graphic {
  position: relative;
  width: 420px;
  min-width: 420px;
  height: 380px;
}
.pricing-hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(26, 137, 249, 0.08);
}
.pricing-hero__ring--1 {
  width: 320px;
  height: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pricingPulse 4s ease-in-out infinite;
}
.pricing-hero__ring--2 {
  width: 220px;
  height: 220px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(26, 137, 249, 0.15);
  animation: pricingPulse 4s ease-in-out 1s infinite;
}
.pricing-hero__center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(100% 100% at 50% 0%, rgba(26, 137, 249, 0.7) 0%, #1a89f9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(26, 137, 249, 0.3);
}
.pricing-hero__center-icon svg {
  width: 36px;
  height: 36px;
}
.pricing-hero__card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  animation: pricingFloat 5s ease-in-out infinite;
  z-index: 2;
}
.pricing-hero__card--1 {
  top: 30px;
  right: 0;
}
.pricing-hero__card--2 {
  bottom: 40px;
  left: 10px;
  animation-delay: 2s;
}
.pricing-hero__card-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #f2f7fd;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-hero__card-icon svg {
  width: 22px;
  height: 22px;
}
.pricing-hero__card-text {
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
}
.pricing-hero__card-text span {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 2px;
}

@keyframes pricingPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.6; }
}
@keyframes pricingFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing-hero .container {
    flex-direction: column;
    text-align: center;
  }
  .pricing-hero__desc {
    max-width: 100%;
  }
  .pricing-hero__badges {
    justify-content: center;
  }
  .pricing-hero__graphic {
    width: 340px;
    min-width: auto;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .pricing-hero {
    padding: 40px 0 60px 0;
  }
  .pricing-hero__title {
    font-size: 30px;
  }
  .pricing-hero__graphic {
    display: none;
  }
  .pricing-hero__badges {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .pricing-hero__title {
    font-size: 26px;
  }
  .pricing-hero__btn {
    width: 100%;
  }
}
