.sales-pricing {
  background: #ffffff;
  padding: clamp(48px, 8vw, 100px) clamp(20px, 6.67vw, 96px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sales-pricing__wrapper {
  max-width: 1168px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 2.5vw, 28px);
  text-align: center;
}

.sales-pricing__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.3;
  color: #21254a;
  margin: 0;
  text-transform: uppercase;
}

/* ── Two-column price layout ── */
.sales-pricing__price-columns {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(48px, 8vw, 128px);
  width: 100%;
}

.sales-pricing__price-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.sales-pricing__price-label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 36px);
  line-height: 1.2;
  color: #21254a;
}

.sales-pricing__original {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  color: #21254a;
  text-decoration: line-through;
}

.sales-pricing__current {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  color: #21254a;
}

.sales-pricing__tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2.5vw, 32px);
  color: #000000;
  line-height: 1.3;
  text-align: center;
  margin: 0;
  max-width: 860px;
}

.sales-pricing__cta {
  display: inline-block;
  background: #21254a;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: normal;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.sales-pricing__cta:hover {
  opacity: 0.88;
  color: #ffffff;
  text-decoration: none;
}

.sales-pricing__footnote {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.25vw, 18px);
  color: #666666;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

/* ── Mobile ── */
@media (max-width: 599px) {
  .sales-pricing {
    padding: 48px 20px;
  }

  .sales-pricing__price-columns {
    gap: 32px;
  }

  .sales-pricing__cta {
    width: 100%;
    display: block;
    white-space: normal;
  }
}
