.tariffs-page {
  max-width: 1120px;
  margin: 42px auto 64px;
  padding: 0 24px;
}

.tariffs-page__hero {
  position: relative;
  overflow: hidden;
  max-width: 680px;
  margin: 0 auto 34px;
  padding: 38px 48px;
  border: 1px solid #dcecf8;
  border-radius: 24px;
  background: linear-gradient(135deg, #f5fbff 0%, #fff 58%, #eef8ff 100%);
  box-shadow: 0 18px 40px rgba(25, 89, 143, .09);
  text-align: center;
}

.tariffs-page__hero::before,
.tariffs-page__hero::after {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(0, 141, 237, .08);
  content: '';
}

.tariffs-page__hero::before { top: -92px; left: -52px; }
.tariffs-page__hero::after { right: -68px; bottom: -105px; width: 190px; height: 190px; }

.tariffs-page__hero > * { position: relative; z-index: 1; }

.tariffs-page__eyebrow {
  color: #008ded;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.tariffs-page__hero h2 {
  margin: 10px 0 12px;
  color: #12294a;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

.tariffs-page__hero p,
.tariffs-page__note {
  color: #65758b;
  font-size: 17px;
  line-height: 1.55;
}

.tariffs-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.tariff-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid #e1eaf3;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(32, 72, 111, .06);
}

.tariff-card--featured {
  border: 2px solid #0c92ed;
  background: linear-gradient(155deg, #f1f9ff, #fff 55%);
  box-shadow: 0 16px 38px rgba(0, 141, 237, .16);
  transform: translateY(-8px);
}

.tariff-card__badge {
  position: absolute;
  top: -12px;
  left: 22px;
  padding: 5px 10px;
  border-radius: 99px;
  color: #fff;
  background: #0c92ed;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.tariff-card__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  color: #0785dc;
  background: #dff1ff;
  font-size: 25px;
  font-weight: 800;
}

.tariff-card h3 {
  margin: 18px 0 8px;
  color: #12294a;
  font-size: 23px;
}

.tariff-card__lead {
  min-height: 52px;
  margin: 0;
  color: #65758b;
  line-height: 1.45;
}

.tariff-card ul {
  display: grid;
  gap: 11px;
  margin: 24px 0;
  padding: 0;
  color: #40536b;
  line-height: 1.35;
  list-style: none;
}

.tariff-card li::before {
  content: '✓';
  margin-right: 9px;
  color: #008ded;
  font-weight: 800;
}

.tariff-card__button {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border-radius: 10px;
  color: #fff;
  background: #008ded;
  font-weight: 700;
  text-decoration: none;
}

.tariff-card__button:hover { color: #fff; background: #0075c7; }

.tariff-card__button--secondary {
  border: 1px solid #b9d8ef;
  color: #0874bd;
  background: #fff;
}

.tariff-card__button--secondary:hover { color: #075e9e; background: #edf8ff; }

.tariffs-page__note {
  margin: 28px 0 0;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 800px) {
  .tariffs-page__grid { grid-template-columns: 1fr; max-width: 480px; margin: auto; }
  .tariff-card--featured { transform: none; }
  .tariff-card__lead { min-height: 0; }
  .tariffs-page__hero { padding: 30px 24px; }
}
