:root {
  --bg: #1b151d;
  --bg-2: #26202a;
  --bg-3: #342d37;
  --panel: rgba(38, 32, 42, 0.88);
  --line: #514652;
  --line-2: #675b68;
  --txt: #f2e9ed;
  --txt-d: #cfbfc7;
  --txt-dd: #9f9098;
  --acc: #ce9db2;
  --acc-2: #efe1e7;
  --hot: #8a667f;
  --good: #b08d79;
  --good-2: #8f6d5f;
  --good-3: #5a433f;
  --shadow: rgba(0, 0, 0, 0.34);
  --r: 18px;
  --r-s: 12px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font: 16px/1.68 "Golos Text", "Segoe UI", Arial, sans-serif;
  color: var(--txt);
  background:
    radial-gradient(780px 460px at 8% 8%, rgba(138, 102, 127, 0.2), transparent 62%),
    radial-gradient(860px 520px at 100% 0%, rgba(206, 157, 178, 0.14), transparent 64%),
    linear-gradient(180deg, #19131b 0%, #211a23 52%, #141016 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--acc); text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin: 0 0 14px; }
.hl { color: var(--acc-2); }
.b { color: var(--acc-2); font-weight: 600; }

.skip {
  position: absolute;
  left: 10px;
  top: -44px;
  padding: 8px 12px;
  background: var(--acc-2);
  color: #131510;
  border-radius: 8px;
  font-weight: 700;
  z-index: 100;
}
.skip:focus { top: 10px; }

.bar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(233, 220, 203, 0.08);
  background: rgba(20, 18, 16, 0.84);
  backdrop-filter: blur(12px);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--txt);
}
.logo:hover { text-decoration: none; }
.logo__svg {
  width: 34px;
  height: 34px;
  flex: none;
  filter: drop-shadow(0 10px 18px rgba(110, 31, 27, 0.35));
}
.logo__t {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 26px;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.logo__sub {
  display: block;
  margin-top: 6px;
  font: 600 10px/1.2 "Golos Text", sans-serif;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--txt-dd);
}
.nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.nav a {
  color: var(--txt-d);
  font-size: 14px;
  letter-spacing: 0.03em;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}
.nav a:hover {
  color: var(--acc-2);
  border-bottom-color: var(--acc);
  text-decoration: none;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: 700 14px/1 "Golos Text", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.16s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.cta:hover {
  text-decoration: none;
  transform: translateY(-1px);
}
.cta--small {
  background: rgba(233, 220, 203, 0.06);
  border-color: rgba(233, 220, 203, 0.14);
  color: var(--txt);
}
.cta--small:hover {
  border-color: rgba(196, 138, 90, 0.4);
  background: rgba(233, 220, 203, 0.1);
}
.cta--big {
  padding: 15px 28px;
  font-size: 13px;
}
.cta--hot {
  padding: 14px 31px;
  background: linear-gradient(135deg, #6d4f65 0%, #9d7288 100%);
  color: #fff5f8;
  box-shadow: 0 18px 40px -18px rgba(88, 61, 82, 0.88);
}
.cta--big.cta--hot {
  padding: 22px 42px;
  font-size: 14px;
}
.cta--hot:hover {
  background: linear-gradient(135deg, #62485d 0%, #91687e 100%);
  box-shadow: 0 22px 48px -16px rgba(88, 61, 82, 0.96);
}
.cta--ghost {
  background: transparent;
  border-color: rgba(233, 220, 203, 0.14);
  color: var(--txt);
}
.cta--ghost:hover {
  border-color: rgba(196, 138, 90, 0.4);
  color: var(--acc-2);
}

.metr {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 22px 0;
}
.metr__cell {
  padding: 14px 16px;
  border: 1px solid rgba(233, 220, 203, 0.08);
  border-radius: 16px;
  background: rgba(36, 33, 30, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}
.metr__num {
  display: block;
  margin-bottom: 4px;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--acc-2);
}
.metr__lbl {
  display: block;
  color: var(--txt-dd);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

main { overflow: hidden; }
section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 22px 0;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
  padding-top: 42px;
}
.hero__chip,
.ovrline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 7px 12px;
  border: 1px solid rgba(196, 138, 90, 0.24);
  border-radius: 999px;
  background: rgba(110, 31, 27, 0.12);
  color: var(--acc-2);
  font: 700 11px/1 "Golos Text", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1,
h2,
h3,
.logo__t,
.metr__num,
.kpi__num,
.wbox__pct,
.ladder__name,
.tour__kpi span,
.pay__times .b {
  font-family: "Bodoni Moda", Georgia, serif;
}
h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.3vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3.3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
h3 {
  margin: 30px 0 10px;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--acc-2);
}
.lead {
  max-width: 790px;
  color: var(--txt-d);
  font-size: 17px;
}
.acc { color: var(--acc); }
.hero__sub {
  color: var(--txt-d);
  font-size: 16px;
}
.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 30px;
}
.hero__pic { margin: 0; }
.hero__pic-svg {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 11;
  border-radius: 28px;
  border: 1px solid rgba(233, 220, 203, 0.08);
  background:
    radial-gradient(380px 280px at 18% 20%, rgba(110, 31, 27, 0.26), transparent 68%),
    radial-gradient(360px 260px at 88% 18%, rgba(196, 138, 90, 0.12), transparent 66%),
    linear-gradient(145deg, #211d1a 0%, #151210 100%);
  box-shadow: 0 42px 80px -42px rgba(0, 0, 0, 0.8);
}
.hero__pic figcaption {
  margin-top: 14px;
  color: var(--txt-dd);
  font-size: 12px;
  text-align: right;
}
.kpi {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(233, 220, 203, 0.08);
}
.kpi__item {
  padding: 12px 12px 10px;
  border-radius: 14px;
  background: rgba(36, 33, 30, 0.54);
  border: 1px solid rgba(233, 220, 203, 0.06);
}
.kpi__num {
  display: block;
  margin-bottom: 4px;
  font-size: 29px;
  color: var(--acc-2);
}
.kpi__lbl {
  display: block;
  font-size: 11px;
  color: var(--txt-dd);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.welcome,
.tour,
.final {
  margin: 34px 22px 0;
  max-width: none;
  padding: 42px 36px;
  border: 1px solid rgba(233, 220, 203, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(580px 260px at 12% 0%, rgba(176, 141, 121, 0.12), transparent 72%),
    linear-gradient(180deg, rgba(46, 38, 39, 0.94) 0%, rgba(33, 27, 31, 0.94) 100%);
  box-shadow: 0 22px 70px -48px var(--shadow);
}
.welcome__grid,
.steps3__grid,
.loy__grid,
.rev__grid,
.pay__grid,
.pay__times,
.tour__kpi {
  display: grid;
  gap: 16px;
}
.welcome__grid { grid-template-columns: repeat(3, 1fr); margin: 26px 0 24px; }
.steps3__grid { grid-template-columns: repeat(3, 1fr); margin-top: 22px; }
.loy__grid { grid-template-columns: repeat(2, 1fr); margin-top: 22px; }
.rev__grid { grid-template-columns: repeat(3, 1fr); margin-top: 22px; }
.pay__grid { grid-template-columns: repeat(6, 1fr); margin: 22px 0; }
.pay__times { grid-template-columns: repeat(3, 1fr); }
.tour__kpi { grid-template-columns: repeat(4, 1fr); margin-top: 22px; }

.wbox,
.sbox,
.card,
.lbox,
.lvbox,
.rbox,
.pbox,
.pay__times > div,
.tour__kpi > div,
details {
  background: linear-gradient(155deg, rgba(176, 141, 121, 0.16) 0%, rgba(90, 67, 63, 0.58) 44%, rgba(46, 40, 35, 0.92) 100%);
  border: 1px solid rgba(233, 220, 203, 0.08);
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}
.wbox,
.sbox,
.lbox,
.rbox,
.pbox,
.pay__times > div,
.tour__kpi > div,
details {
  padding: 22px;
}
.pbox,
.pay__times > div {
  position: relative;
  overflow: hidden;
}
.pbox::before,
.pay__times > div::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(239, 225, 231, 0.12) 0%, transparent 38%),
    radial-gradient(220px 90px at 100% 0%, rgba(176, 141, 121, 0.18), transparent 62%);
  pointer-events: none;
}
.wbox {
  position: relative;
  overflow: hidden;
}
.wbox::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(110, 31, 27, 0.16), transparent 60%);
  pointer-events: none;
}
.wbox__step,
.prov__title {
  margin-bottom: 10px;
  color: var(--acc-2);
  font: 700 11px/1 "Golos Text", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.wbox__pct {
  margin-bottom: 10px;
  font-size: 38px;
  line-height: 1;
  color: var(--acc);
}
.wbox__title { font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.wbox__sub,
.sbox p,
.lbox p,
.card p,
.lvbox__s,
.lvbox__p,
.tour .lead,
.rbox__q,
.pay .lead,
details p,
.foot__legal {
  color: var(--txt-d);
}

.sbox {
  position: relative;
  overflow: hidden;
}
.sbox__num {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 64px;
  line-height: 1;
  color: rgba(233, 220, 203, 0.06);
}
.sbox__head,
.lbox__h {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--acc-2);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.16s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.card:hover,
.lvbox:hover,
.wbox:hover,
.lbox:hover,
details[open] {
  transform: translateY(-2px);
  border-color: rgba(196, 138, 90, 0.28);
  box-shadow: 0 28px 42px -26px rgba(0, 0, 0, 0.72);
}
.card__cover,
.lvbox__cover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff3e4;
}
.card__cover {
  aspect-ratio: 4 / 3;
  padding: 16px;
  font-size: 22px;
  line-height: 1.12;
}
.card__cover::after,
.lvbox__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 45%, rgba(0, 0, 0, 0.34) 100%);
}
.cv-1 { background: linear-gradient(135deg, #3a2633 0%, #8f7085 100%); }
.cv-2 { background: linear-gradient(135deg, #302628 0%, #b69683 100%); }
.cv-3 { background: linear-gradient(135deg, #1d1620 0%, #73606e 100%); }
.cv-4 { background: linear-gradient(135deg, #4a3343 0%, #ce9db2 100%); }
.cv-5 { background: linear-gradient(135deg, #432833 0%, #ae7f91 100%); }
.cv-6 { background: linear-gradient(135deg, #32292d 0%, #a38780 100%); }
.cv-7 { background: linear-gradient(135deg, #5b3344 0%, #c69aab 100%); }
.cv-8 { background: linear-gradient(135deg, #3a2d39 0%, #846f7d 100%); }
.cv-9 { background: linear-gradient(135deg, #2d1d27 0%, #94677d 100%); }
.cv-10 { background: linear-gradient(135deg, #573141 0%, #d6abb0 100%); }
.cv-11 { background: linear-gradient(135deg, #2b2129 0%, #a68876 100%); }
.cv-12 { background: linear-gradient(135deg, #3f2230 0%, #947084 100%); }
.card h3 {
  margin: 14px 14px 4px;
  font-size: 19px;
  color: var(--txt);
}
.card p {
  margin: 0 14px 12px;
  font-size: 13px;
  line-height: 1.45;
}
.card__btn {
  display: block;
  margin: auto 14px 14px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(233, 220, 203, 0.12);
  background: rgba(233, 220, 203, 0.06);
  color: var(--txt);
  font: 700 12px/1 "Golos Text", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}
.card__btn:hover {
  background: linear-gradient(135deg, var(--hot), var(--acc));
  border-color: transparent;
  color: #fff3e4;
  text-decoration: none;
}

.prov { margin-top: 22px; }
.prov__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.prov__list span,
.bdg {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(233, 220, 203, 0.08);
  background: linear-gradient(135deg, rgba(176, 141, 121, 0.16) 0%, rgba(90, 67, 63, 0.24) 100%);
  font-size: 12px;
  color: var(--txt-d);
}

.ladder {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 18px;
}
.ladder__step {
  padding: 12px 8px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid rgba(233, 220, 203, 0.08);
  background: rgba(233, 220, 203, 0.04);
}
.ladder__step:nth-child(2) { transform: translateY(-6px); }
.ladder__step:nth-child(3) { transform: translateY(-12px); }
.ladder__step:nth-child(4) { transform: translateY(-18px); }
.ladder__step:nth-child(5) { transform: translateY(-24px); }
.ladder__step:nth-child(6) {
  transform: translateY(-30px);
  background: linear-gradient(145deg, rgba(110, 31, 27, 0.24), rgba(196, 138, 90, 0.16));
  border-color: rgba(196, 138, 90, 0.3);
}
.ladder__name {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  color: var(--acc-2);
}
.ladder__cb {
  font-size: 11px;
  color: var(--txt-dd);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour {
  text-align: center;
  background:
    radial-gradient(540px 300px at 50% 30%, rgba(176, 141, 121, 0.22), transparent 72%),
    linear-gradient(180deg, rgba(53, 41, 44, 0.94) 0%, rgba(31, 25, 29, 0.94) 100%);
}
.tour .lead {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.tour__btns { margin: 24px 0 28px; }
.tour__kpi > div { text-align: center; }
.tour__kpi span {
  display: block;
  margin-bottom: 6px;
  font-size: 28px;
  color: var(--acc-2);
}
.tour__kpi .b {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--txt);
}
.tour__kpi i {
  font-size: 12px;
  color: var(--txt-dd);
  font-style: normal;
}

.live__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 22px;
}
.lvbox {
  overflow: hidden;
  position: relative;
}
.lvbox__cover {
  aspect-ratio: 16 / 9;
  padding: 14px;
  font-size: 20px;
  line-height: 1.14;
}
.lv-1 { background: linear-gradient(135deg, #5a364a 0%, #ce9db2 100%); }
.lv-2 { background: linear-gradient(135deg, #352730 0%, #967388 100%); }
.lv-3 { background: linear-gradient(135deg, #261b25 0%, #8a667f 100%); }
.lv-4 { background: linear-gradient(135deg, #49323d 0%, #cba58d 100%); }
.lv-5 { background: linear-gradient(135deg, #2f1d26 0%, #a17386 100%); }
.lv-6 { background: linear-gradient(135deg, #412d33 0%, #bb9285 100%); }
.lvbox__b { position: relative; padding: 16px 18px 18px; }
.lvbox__t {
  margin-bottom: 4px;
  font-size: 20px;
  color: var(--txt);
}
.lvbox__m {
  margin-bottom: 4px;
  font-size: 13px;
  color: var(--acc-2);
  font-weight: 600;
}
.lvbox__live {
  position: absolute;
  top: 14px;
  right: 18px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(233, 220, 203, 0.14);
  color: #fff3e4;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand h3 {
  padding-left: 16px;
  border-left: 3px solid var(--acc);
}
.brand p { line-height: 1.72; }
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(233, 220, 203, 0.08);
}
.bdg { color: var(--txt); }

.rbox {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rbox__stars {
  color: var(--acc-2);
  font-size: 16px;
  letter-spacing: 0.26em;
}
.rbox__stars--four .star-off { color: rgba(233, 220, 203, 0.18); }
.rbox__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(233, 220, 203, 0.08);
  color: var(--txt-dd);
  font-size: 12px;
}
.rbox__a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hot), var(--acc));
  color: #fff3e4;
  font-weight: 700;
  flex: none;
}

.pbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  text-align: center;
  gap: 6px;
}
.pbox .b {
  display: block;
  font-size: 16px;
  line-height: 1.2;
  color: var(--txt);
  text-wrap: balance;
}
.pbox i {
  display: block;
  max-width: 100%;
  color: var(--txt-dd);
  font-style: normal;
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-wrap: balance;
}
.pay__times > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pay__times .b {
  font-size: 21px;
  color: var(--acc-2);
}
.pay__times span:last-child {
  color: var(--txt-dd);
  font-size: 12px;
}

.final {
  text-align: center;
  background:
    radial-gradient(560px 300px at 50% 22%, rgba(176, 141, 121, 0.2), transparent 72%),
    linear-gradient(180deg, rgba(56, 43, 46, 0.94) 0%, rgba(28, 22, 27, 0.94) 100%);
}
.final p {
  max-width: 700px;
  margin: 0 auto 24px;
  color: var(--txt-d);
}

.faq h2 { margin-bottom: 22px; }
details {
  margin-bottom: 10px;
}
summary {
  cursor: pointer;
  position: relative;
  padding-right: 28px;
  list-style: none;
  font-weight: 700;
  color: var(--txt);
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  color: var(--acc);
  font-size: 22px;
  line-height: 1;
}
details[open] summary::after { content: "−"; }
details p {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.64;
}

.author {
  padding-bottom: 48px;
}
.author p {
  color: var(--txt-d);
  line-height: 1.72;
}

.foot {
  margin-top: 44px;
  border-top: 1px solid rgba(233, 220, 203, 0.08);
  background:
    radial-gradient(520px 300px at 86% 10%, rgba(138, 74, 47, 0.14), transparent 72%),
    linear-gradient(180deg, #131510 0%, #0f110d 100%);
}
.foot__top,
.foot__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}
.foot__top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  padding-top: 42px;
  padding-bottom: 28px;
}
.foot__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--txt);
}
.foot__logo span {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}
.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.foot__col h4 {
  margin: 0 0 14px;
  font: 700 14px/1 "Golos Text", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.foot__col h4 a,
.foot__col li a {
  color: var(--txt);
}
.foot__col h4 a:hover,
.foot__col li a:hover {
  color: var(--acc-2);
  text-decoration: none;
}
.foot__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.foot__col li {
  margin: 0 0 10px;
  color: var(--txt-d);
  font-size: 14px;
}
.foot__bottom {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(233, 220, 203, 0.08);
  color: var(--txt-dd);
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero__pic { order: -1; }
  .metr { grid-template-columns: repeat(3, 1fr); }
  .pay__grid { grid-template-columns: repeat(3, 1fr); }
  .rev__grid { grid-template-columns: 1fr; }
  .foot__top { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .bar {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    padding-top: 4px;
  }
  .metr { grid-template-columns: repeat(2, 1fr); }
  .welcome__grid,
  .steps3__grid,
  .loy__grid,
  .pay__times,
  .tour__kpi,
  .foot__cols {
    grid-template-columns: 1fr;
  }
  .ladder {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 14px;
  }
  .ladder__step:nth-child(4),
  .ladder__step:nth-child(5),
  .ladder__step:nth-child(6) {
    transform: none;
  }
  .pay__grid { grid-template-columns: repeat(2, 1fr); }
  .foot__bottom { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .bar,
  section,
  .foot__top,
  .foot__bottom {
    padding-left: 16px;
    padding-right: 16px;
  }
  .welcome,
  .tour,
  .final {
    margin-left: 16px;
    margin-right: 16px;
    padding: 28px 20px;
  }
  .metr {
    padding-left: 16px;
    padding-right: 16px;
    grid-template-columns: 1fr;
  }
  .nav { gap: 14px; }
  .logo__t { font-size: 22px; }
  h1 { font-size: 34px; }
  h2 { font-size: 30px; }
  .kpi,
  .pay__grid {
    grid-template-columns: 1fr 1fr;
  }
  .grid,
  .live__grid {
    grid-template-columns: 1fr;
  }
}
