@charset "UTF-8";
.bc {
  padding: 6rem 0;
  background: linear-gradient(0deg, #d5d9eb 0%, #eaecf5 100%);
  font-family: "Inter", sans-serif;
}
.bc .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.bc-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.bc-title {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #111325;
  margin-bottom: 1rem;
}

.bc-lead {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #535862;
  margin: 0;
}

.bc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 950px;
  margin: 0 auto 2rem;
}

.bc-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 1.75rem;
  text-align: center;
  box-shadow: 0 6px 18px -8px rgba(17, 19, 37, 0.18);
  transition: transform 0.2s, border-color 0.2s;
}

.bc-card.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.bc-card.reveal:nth-child(2) {
  transition-delay: 0.25s;
}

.bc-card.reveal:nth-child(3) {
  transition-delay: 0.5s;
}

.bc-card.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .bc-card.reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.bc-icon-line {
  width: 36px;
  height: 4px;
  background: #AC90F0;
  border-radius: 2px;
  margin: 0 auto 1rem;
}

.bc-name {
  font-size: 1rem;
  color: #535862;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.bc-price {
  font-size: 2.25rem;
  font-weight: 500;
  color: #111325;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.bc-unit {
  font-size: 0.75rem;
  color: #535862;
  margin-bottom: 1rem;
}

.bc-desc {
  font-size: 0.875rem;
  color: #535862;
  line-height: 1.5;
}

.bc-cta {
  text-align: center;
}

.bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  border: 1px solid transparent;
  background: #8259E8;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s, transform 0.05s;
}
.bc-btn::after {
  content: "→";
  transition: transform 0.15s;
}
.bc-btn:hover {
  background: #6B46C1;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(130, 89, 232, 0.25);
}
.bc-btn:hover::after {
  transform: translateX(2px);
}
.bc-btn:active {
  transform: translateY(1px);
}

@media (max-width: 768px) {
  .bc {
    padding: 4rem 0;
  }
  .bc .container {
    padding: 0 1.25rem;
  }
  .bc-head {
    margin-bottom: 2.5rem;
  }
}

/*# sourceMappingURL=billing-callout-new.css.map */
