/* —— Boost views landing —— */
.main--boost-views {
  padding-top: 8px;
  padding-bottom: 48px;
  overflow: hidden;
}

.boost-page {
  --boost-vip: #7acf26;
  --boost-gold: #FFCB46;
  --boost-platinum: #9C66F6;
  --boost-ink: #1a1d24;
  --boost-muted: #5a6270;
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 0 40px;
  color: var(--boost-ink);
}

.boost-page__glow {
  pointer-events: none;
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  z-index: 0;
}
.boost-page__glow--a {
  width: 340px;
  height: 340px;
  top: -40px;
  right: -80px;
  background: rgba(156, 102, 246, 0.35);
}
.boost-page__glow--b {
  width: 280px;
  height: 280px;
  top: 220px;
  left: -100px;
  background: rgba(122, 207, 38, 0.28);
}

.boost-page > *:not(.boost-page__glow) {
  position: relative;
  z-index: 1;
}

.boost-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.boost-reveal.is-in {
  opacity: 1;
  transform: none;
}

.boost-hero {
  text-align: center;
  padding: 28px 16px 20px;
  margin-bottom: 8px;
}
.boost-hero__eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--boost-muted);
}
.boost-hero__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.boost-hero__lead {
  margin: 0 auto 18px;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--boost-muted);
}
.boost-hero .boost-mults {
  margin-top: 0;
  text-align: left;
}
.boost-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 12px;
  background: var(--red, #f2394d);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}
.boost-hero__cta:hover {
  background: #d92d40;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.boost-tier-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 8px;
}
.boost-tier-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 110px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease, background 0.15s ease;
}
.boost-tier-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  color: #fff;
  text-decoration: none;
}
a.boost-tier-btn--gold:hover {
  color: #333;
}
.boost-tier-btn--vip {
  background: var(--boost-vip);
  box-shadow: 0 8px 20px rgba(122, 207, 38, 0.35);
}
.boost-tier-btn--gold {
  background: var(--boost-gold);
  color: #333;
  box-shadow: 0 8px 20px rgba(255, 203, 70, 0.4);
}
.boost-tier-btn--platinum {
  background: var(--boost-platinum);
  box-shadow: 0 8px 20px rgba(156, 102, 246, 0.4);
}
.boost-page[data-boost-active="vip"] .boost-tier-btn--vip,
.boost-page[data-boost-active="gold"] .boost-tier-btn--gold,
.boost-page[data-boost-active="platinum"] .boost-tier-btn--platinum {
  outline: 3px solid var(--red, #f2394d);
  outline-offset: 2px;
}

.boost-section {
  margin: 36px 0;
  padding: 8px 8px 0;
}
.boost-section__title {
  margin: 0 0 8px;
  text-align: center;
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.boost-section__lead {
  margin: 0 auto 22px;
  max-width: 560px;
  text-align: center;
  color: var(--boost-muted);
  font-size: 15px;
  line-height: 1.5;
}
.boost-section__lead + .boost-section__lead--tight {
  margin-top: -14px;
  margin-bottom: 22px;
}

.boost-mults {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.boost-mult {
  appearance: none;
  border: 1px solid #e8ecf2;
  background: #fff;
  border-radius: 16px;
  padding: 20px 16px 18px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(18, 21, 28, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.boost-mult:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(18, 21, 28, 0.1);
}
.boost-mult__label {
  display: block;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.boost-mult--vip .boost-mult__label { color: #5a9e1c; }
.boost-mult--gold .boost-mult__label { color: #b8860b; }
.boost-mult--platinum .boost-mult__label { color: #6c47ff; }
.boost-mult__x {
  display: block;
  font-size: clamp(36px, 6vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 4px 0 8px;
}
.boost-mult--vip .boost-mult__x { color: var(--boost-vip); }
.boost-mult--gold .boost-mult__x { color: #d4a017; }
.boost-mult--platinum .boost-mult__x { color: var(--boost-platinum); }
.boost-mult__note {
  display: block;
  font-size: 13px;
  color: var(--boost-muted);
  margin-bottom: 14px;
}
.boost-mult__bar {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #eef1f6;
  overflow: hidden;
}
.boost-mult__fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.boost-mult--vip .boost-mult__fill { background: linear-gradient(90deg, #8BCE48, #7acf26); }
.boost-mult--gold .boost-mult__fill { background: linear-gradient(90deg, #F4D487, #FFCB46); }
.boost-mult--platinum .boost-mult__fill { background: linear-gradient(90deg, #b48df8, #9C66F6); }
.boost-mult.is-animated.boost-mult--vip .boost-mult__fill { width: 35%; }
.boost-mult.is-animated.boost-mult--gold .boost-mult__fill { width: 62%; }
.boost-mult.is-animated.boost-mult--platinum .boost-mult__fill { width: 100%; }

.boost-feats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.boost-feat {
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 8px 24px rgba(18, 21, 28, 0.05);
}
.boost-feat__ico {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f4f7fb;
  color: var(--red, #f2394d);
  margin-bottom: 12px;
}
.boost-feat__ico svg { width: 22px; height: 22px; }
.boost-feat__title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
}
.boost-feat__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--boost-muted);
}

.boost-map {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 18px;
  align-items: center;
}
.boost-map__canvas {
  position: relative;
  min-height: 280px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #dde3ee;
  background:
    linear-gradient(160deg, #e8f0e4 0%, #dfe8f5 45%, #e9eef6 100%);
  box-shadow: 0 14px 40px rgba(18, 21, 28, 0.08);
}
.boost-map__roads {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 18%, #ffd02e 18.5%, #ffd02e 21%, transparent 21.5%),
    linear-gradient(0deg, transparent 42%, #ffd02e 42.5%, #ffd02e 45%, transparent 45.5%),
    linear-gradient(115deg, transparent 55%, #d4ae1f 55.4%, #d4ae1f 57%, transparent 57.4%),
    linear-gradient(25deg, transparent 30%, rgba(255, 255, 255, 0.55) 30.5%, rgba(255, 255, 255, 0.55) 33%, transparent 33.5%);
  opacity: 0.85;
}
.boost-map__park {
  position: absolute;
  left: 12%;
  top: 18%;
  width: 22%;
  height: 28%;
  border-radius: 40% 60% 50% 50%;
  background: rgba(122, 207, 38, 0.22);
}
.boost-map__pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: boost-pin-bob 2.4s ease-in-out infinite;
}
.boost-map__pin--vip { animation-delay: 0.4s; }
.boost-map__pin img { display: block; filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25)); }
.boost-map__pin span {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #333;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
@keyframes boost-pin-bob {
  0%, 100% { transform: translate(-50%, -100%); }
  50% { transform: translate(-50%, calc(-100% - 6px)); }
}
.boost-map__legend {
  list-style: none;
  margin: 0;
  padding: 16px;
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.boost-map__legend li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.boost-map__legend img { display: block; }

.boost-catalog {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding: 14px;
  background: #f5f7fb;
  border-radius: 16px;
  border: 1px solid #e8ecf2;
}
.boost-demo-card {
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(18, 21, 28, 0.05);
}
.boost-demo-card .org-card__title {
  font-size: 16px;
  margin: 0;
}
.boost-demo-card .org-card__go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.boost-panels {
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 20px;
  padding: 22px 18px 26px;
  box-shadow: 0 12px 36px rgba(18, 21, 28, 0.06);
}
.boost-panel[hidden] { display: none !important; }
.boost-panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin: 18px 0 14px;
}
.boost-panel__mult {
  display: inline-flex;
  align-items: center;
  margin: 0;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  background: var(--boost-vip);
}
.boost-panel--vip .boost-panel__mult {
  background: var(--boost-vip);
  color: #fff;
}
.boost-panel--gold .boost-panel__mult {
  background: var(--boost-gold);
  color: #333;
}
.boost-panel--platinum .boost-panel__mult {
  background: var(--boost-platinum);
  color: #fff;
}
.boost-panel__preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  padding: 12px;
  background: #f7f9fc;
  border-radius: 14px;
}
.boost-panel__sub {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
}
.boost-benefits {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: stretch;
  gap: 10px;
}
.boost-benefits__item {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f7f9fc;
  border: 1px solid #eef1f6;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition-delay: calc(var(--i, 0) * 60ms);
}
.boost-panel.is-shown .boost-benefits__item {
  opacity: 1;
  transform: none;
}
.boost-benefits__check {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: var(--boost-vip);
}
.boost-panel--vip .boost-benefits__item {
  background: rgba(122, 207, 38, 0.12);
  border-color: rgba(122, 207, 38, 0.28);
}
.boost-panel--gold .boost-benefits__item {
  background: rgba(255, 203, 70, 0.16);
  border-color: rgba(212, 160, 23, 0.28);
}
.boost-panel--platinum .boost-benefits__item {
  background: rgba(156, 102, 246, 0.12);
  border-color: rgba(156, 102, 246, 0.28);
}
.boost-benefits__item--mult {
  font-weight: 800;
}
.boost-panel--vip .boost-benefits__item--mult {
  background: var(--boost-vip);
  border-color: var(--boost-vip);
  color: #fff;
}
.boost-panel--gold .boost-benefits__item--mult {
  background: var(--boost-gold);
  border-color: var(--boost-gold);
  color: #333;
}
.boost-panel--platinum .boost-benefits__item--mult {
  background: var(--boost-platinum);
  border-color: var(--boost-platinum);
  color: #fff;
}
.boost-panel--vip .boost-benefits__item--mult .boost-benefits__check,
.boost-panel--gold .boost-benefits__item--mult .boost-benefits__check,
.boost-panel--platinum .boost-benefits__item--mult .boost-benefits__check {
  background: rgba(255, 255, 255, 0.28);
  color: inherit;
}
.boost-panel--gold .boost-benefits__item--mult .boost-benefits__check {
  background: rgba(0, 0, 0, 0.12);
  color: #333;
}
.boost-panel--gold .boost-benefits__check { background: #d4a017; }
.boost-panel--platinum .boost-benefits__check { background: var(--boost-platinum); }

.boost-panel__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 18px;
  transition: filter 0.15s ease, transform 0.15s ease;
}
.boost-panel__cta:hover {
  filter: brightness(1.05);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.boost-panel__cta--vip { background: var(--boost-vip); }
.boost-panel__cta--gold { background: var(--boost-gold); color: #333; }
.boost-panel__cta--gold:hover { color: #333; }
.boost-panel__cta--platinum { background: var(--boost-platinum); }

.boost-panel__more {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--boost-muted);
}

.boost-choose-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 14px 0 6px;
}
.boost-choose-row--mult { margin-top: 18px; }
.boost-choose-row--alt { margin-top: 8px; margin-bottom: 4px; }
.boost-panel__actions {
  margin: 4px 0 18px;
}
.boost-choose-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 12px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease, filter 0.15s ease;
}
.boost-choose-btn--lg {
  min-height: 48px;
  padding: 12px 22px;
  font-size: 15px;
}
.boost-choose-btn--vip { background: var(--boost-vip); }
.boost-choose-btn--gold { background: var(--boost-gold); color: #333; }
.boost-choose-btn--platinum { background: var(--boost-platinum); }
.boost-choose-btn:hover,
.boost-choose-btn:focus-visible {
  background: var(--red, #f2394d);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  outline: none;
}

body.boost-modal-open { overflow: hidden; }
.boost-modal[hidden] { display: none !important; }
.boost-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.boost-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 21, 28, 0.55);
  backdrop-filter: blur(2px);
}
.boost-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  max-height: min(84vh, 640px);
  overflow: auto;
  background: #fff;
  border-radius: 18px;
  padding: 22px 20px 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}
.boost-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #f3f5f8;
  color: #5a6270;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.boost-modal__close:hover { background: #e8ecf2; color: #222; }
.boost-modal__title {
  margin: 0 28px 8px 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.boost-modal__lead {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--boost-muted);
}
.boost-modal__countries {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.boost-modal__country {
  width: 100%;
  appearance: none;
  border: 1px solid #e2e7ef;
  background: #f7f9fc;
  border-radius: 12px;
  min-height: 48px;
  padding: 10px 14px;
  text-align: left;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #1a1d24;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.boost-modal__country:hover,
.boost-modal__country:focus-visible {
  background: var(--red, #f2394d);
  border-color: var(--red, #f2394d);
  color: #fff;
  outline: none;
}
.boost-modal__pay {
  padding: 16px;
  border-radius: 14px;
  background: #f7f9fc;
  border: 1px dashed #cfd7e4;
  margin-bottom: 14px;
}
.boost-modal__pay-placeholder {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.45;
  color: #3a4150;
}
.boost-modal__pay-hint:empty { display: none; }
.boost-modal__back {
  appearance: none;
  border: 0;
  background: transparent;
  color: #5a6270;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 0;
}
.boost-modal__back:hover { color: var(--red, #f2394d); }

.boost-final {
  text-align: center;
  padding-bottom: 12px;
}

.boost-back-stats {
  margin: 28px 0 0;
  padding: 8px 0 0;
  text-align: center;
}
.boost-back-stats__link {
  color: #5a6270;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.boost-back-stats__link:hover {
  color: var(--red, #f2394d);
  text-decoration: none;
}

/* —— Country / payment page —— */
body.body--boost-country,
body.body--boost-country .page {
  background: #fff;
}
.main--boost-country {
  padding-top: 8px;
  padding-bottom: 48px;
  background: #fff;
  overflow: visible;
}
.boost-country {
  max-width: 560px;
  margin: 0 auto;
  padding: 12px 8px 48px;
  background: #fff;
}
.boost-country__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}
.boost-country__back,
.boost-country__back-link {
  color: #5a6270;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.boost-country__back:hover,
.boost-country__back-link:hover {
  color: var(--red, #f2394d);
  text-decoration: none;
}
.boost-country__tier {
  margin: 0;
  font-size: 14px;
  color: #5a6270;
}
.boost-country__tier strong { color: #1a1d24; }
.boost-country__tier--vip strong { color: #7acf26; }
.boost-country__tier--gold strong { color: #b8860b; }
.boost-country__tier--platinum strong { color: #9C66F6; }
.boost-country__title {
  margin: 0 0 8px;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.boost-country__lead {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.45;
  color: #5a6270;
}
.boost-country__lead strong { color: #1a1d24; }
.boost-country__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.boost-country__item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 10px 14px;
  border: 1px solid #e8ecf2;
  border-radius: 12px;
  background: #fff;
  color: #1a1d24;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.boost-country__item:hover {
  border-color: var(--red, #f2394d);
  background: #fff5f6;
  color: #1a1d24;
  text-decoration: none;
}
.boost-country__flag {
  flex: 0 0 auto;
  width: 1.45em;
  font-size: 22px;
  line-height: 1;
  text-align: center;
}
.boost-country__flag--inline {
  display: inline;
  width: auto;
  font-size: 1.15em;
  vertical-align: -0.05em;
  margin: 0 4px 0 2px;
}
.boost-country__name {
  flex: 1 1 auto;
  min-width: 0;
}
.boost-country__pay {
  padding: 18px;
  border: 1px solid #e8ecf2;
  border-radius: 14px;
  background: #fff;
  margin-bottom: 16px;
}
.boost-country__pay-placeholder {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: #3a4150;
}

@media (max-width: 860px) {
  .boost-mults,
  .boost-feats,
  .boost-map {
    grid-template-columns: 1fr;
  }
  .boost-map__canvas { min-height: 240px; }
}

@media (prefers-reduced-motion: reduce) {
  .boost-reveal,
  .boost-benefits__item,
  .boost-mult__fill,
  .boost-map__pin {
    transition: none !important;
    animation: none !important;
  }
  .boost-reveal { opacity: 1; transform: none; }
  .boost-benefits__item { opacity: 1; transform: none; }
}
