.offer-pricing {
  padding: 3rem 1rem;
  background: var(--color-blue-grey-900);
}

.offer-pricing__header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.offer-pricing__header h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--color-dark-blue);
  margin-bottom: 0.6rem;
}

.offer-pricing__subtitle {
  opacity: 0.85;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-white);
}

/* GRID */
.offer-pricing__grid {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* CARD */
.pricing-box {
  background: var(--color-white);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.pricing-box__label {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-blue-grey-900);
  margin-bottom: 0.6rem;
}

.pricing-box__price {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-dark-blue);
  margin-bottom: 1rem;
}

.pricing-box__desc {
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.85;
}

/* CTA */
.offer-pricing__cta {
  text-align: center;
  margin-top: 2.4rem;
}
