.pricing-section {
  position: relative;
}

.emblem-campaign-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: center;
  padding: 28px 30px;
  margin-bottom: 32px;
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.16), transparent 42%),
    linear-gradient(135deg, rgba(239, 246, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.emblem-campaign-banner__eyebrow,
.emblem-campaign-badge,
.emblem-campaign-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.08);
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.emblem-campaign-banner__eyebrow {
  margin-bottom: 12px;
}

.emblem-campaign-banner__title {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  color: #0f172a;
}

.emblem-campaign-banner__text {
  margin: 0;
  max-width: 700px;
  color: #475569;
  font-size: 15px;
}

.emblem-campaign-banner__aside {
  display: grid;
  gap: 14px;
  justify-items: start;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.emblem-campaign-countdown,
.emblem-campaign-card-timer {
  display: grid;
  gap: 6px;
}

.emblem-campaign-countdown-label {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.emblem-campaign-countdown-value {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.03em;
}

.emblem-campaign-countdown.is-ended .emblem-campaign-countdown-value,
.emblem-campaign-card-timer.is-ended .emblem-campaign-countdown-value {
  color: #b91c1c;
}

.emblem-campaign-banner .btn,
.emblem-campaign-actions .btn,
.emblem-campaign-sticky .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.emblem-campaign-price-block {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.emblem-campaign-card-badge {
  margin-bottom: 2px;
}

.emblem-campaign-old-price {
  color: #94a3b8;
  font-size: 15px;
  font-weight: 700;
  text-decoration: line-through;
}

.emblem-campaign-new-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  color: #1d4ed8;
}

.emblem-campaign-new-price-num {
  font-size: clamp(46px, 4.2vw, 60px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.emblem-campaign-new-price-cur {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 800;
}

.emblem-campaign-price-note {
  font-size: 12px;
  color: #475569;
}

.emblem-campaign-card-note {
  margin: 0 0 20px;
  padding: 14px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  text-align: left;
}

.emblem-campaign-card-note p {
  margin: 0;
  color: #475569;
  font-size: 12px;
  line-height: 1.55;
}

.emblem-campaign-card-note p + p {
  margin-top: 6px;
}

.emblem-campaign-card-timer {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(29, 78, 216, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.14);
}

.emblem-campaign-card-timer .emblem-campaign-countdown-label {
  font-size: 12px;
}

.emblem-campaign-card-timer .emblem-campaign-countdown-value {
  font-size: 17px;
}

.pricing-card .btn.emblem-campaign-card-cta {
  margin-top: auto;
}

.pricing-card-actions {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.pricing-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.pricing-card-link:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  transform: translateY(-1px);
}

.emblem-campaign-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
}

.emblem-campaign-modal.is-active {
  display: block;
}

.emblem-campaign-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(8px);
}

.emblem-campaign-dialog {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  margin: 20px auto;
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.24);
}

.emblem-campaign-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.emblem-campaign-close:hover {
  transform: translateY(-1px);
  background: #dbeafe;
}

.emblem-campaign-title {
  margin: 16px 0 12px;
  max-width: 600px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  color: #0f172a;
}

.emblem-campaign-text {
  margin: 0 0 20px;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
}

.emblem-campaign-prices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.emblem-campaign-price-item {
  padding: 16px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.emblem-campaign-price-item-title {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 15px;
  font-weight: 700;
}

.emblem-campaign-price-item .emblem-campaign-old-price {
  display: inline-block;
  margin-bottom: 6px;
}

.emblem-campaign-price-item .emblem-campaign-new-price {
  justify-content: flex-start;
}

.emblem-campaign-price-item .emblem-campaign-new-price-num {
  font-size: 34px;
}

.emblem-campaign-notes {
  display: grid;
  gap: 8px;
  margin: 20px 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.9), rgba(248, 250, 252, 0.95));
  border: 1px solid rgba(191, 219, 254, 0.9);
}

.emblem-campaign-notes p {
  margin: 0;
  color: #334155;
  font-size: 13px;
}

.emblem-campaign-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.emblem-campaign-actions .btn {
  flex: 1 1 180px;
  min-height: 50px;
}

.emblem-campaign-email.btn {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.emblem-campaign-email.btn:hover {
  background: #dbeafe;
  box-shadow: none;
  filter: none;
}

.emblem-campaign-view-packages.btn {
  background: transparent;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

.emblem-campaign-view-packages.btn:hover {
  background: #f8fafc;
  box-shadow: none;
  filter: none;
}

.emblem-campaign-lock {
  overflow: hidden;
}

.emblem-campaign-sticky {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.92);
  color: #ffffff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.28);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.emblem-campaign-sticky.is-hidden-near-footer,
.emblem-campaign-sticky.is-dismissed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px);
}

.emblem-campaign-sticky__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.emblem-campaign-sticky__text strong {
  display: block;
  font-size: 13px;
  line-height: 1.3;
}

.emblem-campaign-sticky__text span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.emblem-campaign-sticky__actions {
  display: flex;
  gap: 10px;
}

.emblem-campaign-sticky .btn {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 12px;
}

@media (max-width: 980px) {
  .emblem-campaign-banner,
  .emblem-campaign-prices {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .emblem-campaign-banner {
    padding: 22px 20px;
  }

  .emblem-campaign-dialog {
    width: min(100% - 20px, 720px);
    margin: 10px auto;
    padding: 22px 18px 18px;
    border-radius: 24px;
  }

  .emblem-campaign-title {
    margin-top: 20px;
    font-size: 28px;
  }

  .emblem-campaign-actions .btn {
    flex-basis: 100%;
  }

  .emblem-campaign-sticky {
    display: flex;
    padding-top: 18px;
  }

  body.emblem-campaign-has-sticky {
    padding-bottom: 92px;
  }
}

@media (max-width: 520px) {
  .emblem-campaign-sticky {
    flex-direction: column;
    align-items: stretch;
    padding-top: 20px;
  }

  .emblem-campaign-sticky__actions {
    width: 100%;
  }

  .emblem-campaign-sticky .btn {
    flex: 1 1 0;
  }

  .emblem-campaign-close {
    top: 12px;
    right: 12px;
  }

  .pricing-card-actions {
    gap: 10px;
  }
}
