/* ── Self-hosted fonts ── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('assets/fonts/Inter-cyrillic-ext.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('assets/fonts/Inter-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('assets/fonts/Inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('assets/fonts/Inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Neue Machina';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('assets/fonts/NeueMachina-Light.woff2') format('woff2'),
       url('assets/fonts/NeueMachina-Light.woff') format('woff');
}
@font-face {
  font-family: 'Neue Machina';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/NeueMachina-Bold.woff2') format('woff2'),
       url('assets/fonts/NeueMachina-Bold.woff') format('woff');
}

@font-face {
  font-family: 'Clash Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/ClashDisplay-Bold.woff2') format('woff2'),
       url('assets/fonts/ClashDisplay-Bold.woff') format('woff');
}

picture {
  display: contents;
}

img {
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
  overflow-x: hidden;
}

/* 1400→1500px: ×1.0 → ×1.1  (10→11px) */
@media (min-width: 1401px) and (max-width: 1500px) {
  html { font-size: calc(10px + (100vw - 1400px) / 100); }
}
/* 1500→1600px: ×1.1 → ×1.15  (11→11.5px) */
@media (min-width: 1501px) and (max-width: 1600px) {
  html { font-size: calc(11px + (100vw - 1500px) / 200); }
}
/* 1600px+: ×1.15 → ×1.25 at 1920px  (11.5→12.5px) */
@media (min-width: 1601px) {
  html { font-size: calc(11.5px + (100vw - 1600px) / 320); }
}

/* ── Dev grid toggle ──────────────────────────────────────────────────────
   Comment out the line below to hide column grid in production.
   16 cols, 24px gutter @1280px design width. ──────────────────────────── */
/* :root {
  --dev-grid: transparent;
} */

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
  min-width: 320px;
  max-width: 2200px;
  margin: 0 auto;
  /* background-image: repeating-linear-gradient(
    to right,
    var(--dev-grid, transparent) 0,
    var(--dev-grid, transparent) 4.4921875vw,
    transparent                  4.4921875vw,
    transparent                  6.3671875vw
  ); */
}

/* ── Hero ── */
.hero {
  position: relative;
  padding-left: calc(2 * 6.3671875vw);
  padding-top: calc(135px - 14px);
  padding-bottom: 100px;
}

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  column-gap: 48px;
  row-gap: 24px;
  margin-top: 72px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.fi {
  flex-shrink: 0;
  align-self: center;
}

.fi-percentage    { width: 16px; height: 16px; }
.fi-ruler         { width: 17px; height: 18px; }
.fi-ticket        { width: 20px; height: 16px; }
.fi-chart-dots    { width: 19px; height: 20px; }
.fi-chart-arrows  { width: 19px; height: 19px; }
.fi-diamond       { width: 20px; height: 17px; }

.hero-cta {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.download-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #646464;
  display: flex;
  align-items: center;
  gap: 6px;
}

.download-link {
  color: #0057FF;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.download-link:hover {
  text-decoration: underline;
}

.download-link--android {
  color: #3DDC84;
}

.brand-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 25px;
  background-color: #0057FF;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  border-radius: 100px;
  transition: background-color 0.2s;
  position: relative;
}

.btn-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(0, 87, 255, 0.5);
  opacity: 0;
}

.btn-cta:hover {
  background-color: #0046cc;
}

.btn-cta:hover::after,
.btn-cta--pulse::after {
  animation: btn-cta-pulse 0.7s ease-out forwards;
}

@keyframes btn-cta-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 87, 255, 0.45); opacity: 1; }
  100% { box-shadow: 0 0 0 14px rgba(0, 87, 255, 0); opacity: 0; }
}

.btn-cta__mobile {
  display: none;
}

.feature-text--mobile {
  display: none;
}

.btn-cta__platform-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  margin-top: -2px;
  width: 16px;
  height: auto;
  filter: brightness(0) invert(1);
}

.feature-text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  color: #1a1a1a;
}

.hero-slogan {
  margin-top: 31px;
  font-family: 'Neue Machina', sans-serif;
  font-weight: 300;
  font-size: 2.6rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #000000;
  white-space: nowrap;
  min-height: 1.1em;
  overflow-anchor: none;
}

.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 34px;
  background-color: rgba(0, 0, 0, 0.5);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero-title {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 5.4rem;
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: #150800;
  text-transform: uppercase;
}

/* ── Calculator card ── */
.card--calc {
  display: flex;
  flex-direction: column;
}

.calc-layout {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex: 1;
  align-items: center;
}

.calc-sliders {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 6%;
}

.calc-label {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #1a1a1a;
  white-space: nowrap;
  width: 120px;
  flex-shrink: 0;
}

.calc-label--info {
  cursor: pointer;
  text-decoration: underline dotted currentColor;
  text-underline-offset: 3px;
}

/* ── Info modal ── */
.info-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.info-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.info-modal-overlay[hidden] { display: none; }
[hidden] { display: none !important; }

.info-modal {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.14);
  width: 320px;
  overflow: hidden;
  transform: translateY(10px);
  transition: transform 0.2s ease;
}

.is-open .info-modal {
  transform: translateY(0);
}

.info-modal__body {
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-modal__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
}

.info-modal__text {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.4;
  color: #1a1a1a;
}

.info-modal__footer {
  border-top: 1px solid #e0e3ec;
  padding: 14px 20px;
  text-align: center;
}

.info-modal__link {
  color: #0057FF;
  text-decoration: underline;
}

.info-modal__close {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #1a1a1a;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
}

.calc-range {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: #e0e3ec;
  outline: none;
  cursor: pointer;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0057FF;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 87, 255, 0.35);
}

.calc-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0057FF;
  cursor: pointer;
  border: none;
  box-shadow: 0 1px 4px rgba(0, 87, 255, 0.35);
}

.calc-badge {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  background: #1a1a1a;
  border-radius: 6px;
  padding: 3px 6px;
  white-space: nowrap;
  min-width: 52px;
  text-align: center;
  flex-shrink: 0;
  width: 64px;
}

.calc-result {
  background: #f0f1f5;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 220px;
  flex-shrink: 0;
}

.calc-result-top {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.calc-result-num {
  font-family: 'Neue Machina', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #000000;
}

.calc-result-pct {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #22c55e;
}

.calc-range--flat {
  width: 100%;
  flex: unset;
}

.calc-result-hint {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #8a8fa8;
  display: block;
  text-align: center;
}

.calc-brand {
  font-weight: 600;
  color: #8a8fa8;
}

.calc-edit-btn {
  display: none;
}

/* ── Tickets section ── */
.tickets {
  position: relative;
  padding: 80px calc(2 * 6.3671875vw);
}

.tickets-title,
.tickets-grid,
.tickets-more,
.tickets-extra {
  position: relative;
  z-index: 1;
}

.tickets-title {
  font-family: 'Neue Machina', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #000000;
  text-align: center;
  margin-bottom: 32px;
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 180px);
  gap: 24px;
}

.card {
  box-shadow: inset 0 0 0 0.7px #BCC3D8;
  border-radius: 16px;
  padding: 18px 28px 28px 18px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@keyframes card-stagger-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.card--stagger-in {
  animation: card-stagger-in 0.4s ease both;
}

.card--online {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}

.card--online .card-body {
  max-width: 57%;
}

.card-body {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.27;
  color: #1a1a1a;
  margin-top: 26px;
  max-width: 58%;
}

.card-img--terminal {
  position: absolute;
  right: -12%;
  bottom: -13%;
  width: 65%;
  pointer-events: none;
}

.card--service-fee {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card--service-fee .card-body {
  max-width: 30%;
}

.card-img--service-fee {
  position: absolute;
  right: 0%;
  bottom: 0%;
  width: 68%;
  border-radius: 8px 0px;
  pointer-events: none;
}

.card--for-all {
  position: relative;
  overflow: hidden;
}

.card--for-all .card-title,
.card--for-all .card-body {
  position: relative;
  z-index: 1;
}

.card-img--users {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 144px;
  pointer-events: none;
}

.card--withdrawal {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card--withdrawal .card-body {
  max-width: 55%;
}

.card-img--withdrawal {
  position: absolute;
  right: -17%;
  bottom: 0%;
  width: 60%;
  pointer-events: none;
}

.tickets-grid > .card:nth-child(1) { grid-column: span 8; }
.tickets-grid > .card:nth-child(2) { grid-column: span 4; }
.tickets-grid > .card:nth-child(3) { grid-column: span 4; }
.tickets-grid > .card:nth-child(4) { grid-column: span 8; }

.card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #000000;
}

.tickets-extra {
  position: relative;
  margin-top: 24px;
  animation: fadeInUp 0.35s ease;
}

.tickets-grid--widget-promo {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 180px;
  gap: 24px;
  margin-top: 24px;
}

.tickets-grid--widget-promo .card--widget { grid-column: span 8; }
.tickets-grid--widget-promo .card--promo  { grid-column: span 4; }

.widget-badges {
  position: absolute;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.card--widget {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card--widget .card-body {
  max-width: 175px;
}

.card-img--imac {
  position: absolute;
  left: 26%;
  bottom: -17%;
  width: 38%;
  pointer-events: none;
}

.card--badges {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  white-space: nowrap;
}

.badge-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.feature-badge--blue   { background: #EEF3FF; color: #0049A8; }
.feature-badge--green  { background: #ECFFF2; color: #008A23; }
.feature-badge--purple { background: #FFF0FF; color: #63008A; }

.card--promo {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card--promo .card-title,
.card--promo .card-body {
  position: relative;
  z-index: 1;
}

.card--promo .card-body {
  max-width: 52%;
}

.card-img--promo {
  position: absolute;
  right: -13%;
  top: -5%;
  width: 60%;
  pointer-events: none;
  z-index: 0;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tickets-grid--extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 180px;
  align-items: stretch;
  gap: 24px;
}

.tickets-grid--extra > .card {
  min-height: 0;
  height: 180px;
}

.tickets-grid--features2 {
  margin-top: 24px;
  grid-template-rows: repeat(2, 180px);
}

/* ── Cards with large background icon ── */
.card--closed-sales,
.card--entry-control,
.card--tg-bot,
.card--vk-bot,
.card--onboarding {
  position: relative;
  overflow: hidden;
  clip-path: inset(0 round 16px);
  display: flex;
  flex-direction: column;
}

.card--closed-sales .card-title,
.card--closed-sales .card-body,
.card--entry-control .card-title,
.card--entry-control .card-body,
.card--tg-bot .card-title,
.card--tg-bot .card-body,
.card--vk-bot .card-title,
.card--vk-bot .card-body,
.card--onboarding .card-title,
.card--onboarding .card-body {
  position: relative;
  z-index: 1;
}

.card--vk-bot .card-body {
  max-width: 38%;
}

.card--fine-tuning {
  position: relative;
  overflow: hidden;
  clip-path: inset(0 round 16px);
  display: flex;
  flex-direction: column;
}

.card-img--icon-bg {
  margin-top: auto;
  align-self: flex-end;
  width: 80px;
  height: 80px;
  pointer-events: none;
}

.card--entry-control .card-body {
  max-width: 70%;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  vertical-align: middle;
  line-height: 1.4;
  margin: 0px 1px;
}

.badge--soon {
  background: #ECFFF2;
  color: #16A34A;
}

/* Individual icon overrides */
.card-img--lock {
  position: absolute;
  right: 0px;
  top: 28%;
  width: 36%;
  height: auto;
}

.card-img--scan {
  position: absolute;
  right: 1px;
  top: 0;
  width: 42%;
  height: auto;
}

.card-img--telegram {
  position: absolute;
  right: 9px;
  bottom: -4px;
  width: 40%;
  height: auto;
}

.card-img--vk {
  position: absolute;
  right: 14px;
  top: 0;
  width: 45%;
  height: auto;
}

.card-img--clock {
  position: absolute;
  right: 1px;
  top: 30%;
  width: 41%;
  height: auto;
}

.card-img--settings-tuning {
  position: absolute;
  right: -6%;
  top: -1%;
  width: 48%;
  pointer-events: none;
}

.card-img--refunds {
  position: absolute;
  right: -6%;
  bottom: 0%;
  width: 46%;
  pointer-events: none;
}

.card-img--stats {
  position: absolute;
  right: -6%;
  bottom: 0%;
  width: 53%;
  pointer-events: none;
}

.card--refunds,
.card--stats {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tickets-more {
  margin-top: 24px;
}

.tickets-more-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  border: none;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='12' ry='12' stroke='%23BCC3D8' stroke-width='1' stroke-dasharray='5%2c 6' stroke-linecap='square'/%3e%3c%2fsvg%3e");
  background-color: rgba(255, 255, 255, 0.10);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #0057FF;
  text-decoration: underline dotted #0057FF;
  text-underline-offset: 3px;
  transition: background-color 0.2s;
}

.tickets-more-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

@supports (-webkit-appearance: none) and (not (-webkit-touch-callout: none)) {
  .tickets-more-link {
    padding: 19px;
  }
}

/* ── App promo blocks ── */
.tickets-grid--app {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.tickets-grid--app .card--offline   { grid-column: span 4; }
.tickets-grid--app .card--app-promo { grid-column: span 8; }

.card-title--flex {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-body--second {
  margin-top: 12px;
}

.card--offline {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card--offline .card-title,
.card--offline .card-body {
  position: relative;
  z-index: 1;
}

.card--offline .card-body {
  max-width: 82%;
}

.card-img--wifi-off {
  position: absolute;
  right: -8px;
  top: 0%;
  width: 44%;
  height: auto;
  pointer-events: none;
}

.card--app-promo {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card--app-promo .card-title,
.card--app-promo .card-body,
.card--app-promo .card-platforms {
  position: relative;
  z-index: 1;
}

.card--app-promo .card-body {
  max-width: 68%;
}

.card-img--phones-isometric {
  position: absolute;
  right: -35%;
  bottom: -47px;
  width: 94%;
  pointer-events: none;
}

.card-platforms {
  margin-top: auto;
  padding-top: 16px;
}

.card-platforms__label {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #8C93A4;
  margin-bottom: 4px;
}

.card-platforms__links {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #000000;
}

.platform-link {
  color: #0057FF;
  text-decoration: none;
}

.platform-link:hover {
  text-decoration: underline;
}

.deco-tickets-left {
  position: absolute;
  left: -150px;
  top: 15%;
  width: 113px;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.deco-tickets-left2 {
  position: absolute;
  left: -195px;
  top: 62%;
  width: 112px;
  pointer-events: none;
  z-index: -1;
  will-change: transform;
  filter: blur(6px);
}

.deco-tickets-right2 {
  display: none;
  position: absolute;
  left: 30%;
  bottom: -110px;
  width: 138px;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.tickets-extra:not([hidden]) ~ .deco-tickets-right2 {
  display: block;
}

.deco-tickets-mid {
  position: absolute;
  right: -175px;
  top: 33%;
  width: 91px;
  pointer-events: none;
  z-index: -1;
  will-change: transform;
}

.deco-tickets-right {
  position: absolute;
  right: -47px;
  top: 65%;
  width: 93px;
  pointer-events: none;
  z-index: -1;
  will-change: transform;
}

/* ── Social / chat / reviews blocks ── */
.tickets-grid--social {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.tickets-grid--social .card--chat    { grid-column: span 8; }
.tickets-grid--social .card--reviews { grid-column: span 4; }

.card--chat {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card--chat .card-title,
.card--chat .card-body {
  position: relative;
  z-index: 1;
  max-width: 50%;
}

.card-img--chats {
  position: absolute;
  right: 0;
  bottom: -37px;
  width: 48%;
  pointer-events: none;
}

.card--reg-link {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.reg-link-inner {
  background: #0D2B1A;
  border-radius: 16px 16px 0 0;
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.reg-link-label {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}

.reg-link-url {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 7px 10px;
}

.reg-link-url__text {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reg-link-copy {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  padding: 0;
  display: flex;
  flex-shrink: 0;
}

.reg-link-copy:hover { color: rgba(255,255,255,0.9); }

.reg-link-qr {
  background: #0057FF;
  border: none;
  border-radius: 8px;
  padding: 9px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  text-align: center;
}

.reg-link-qr:hover { background: #0046cc; }

.reg-link-stats {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reg-link-stats__label {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #8C93A4;
}

.reg-link-stats__row {
  display: flex;
  gap: 24px;
}

.reg-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reg-stat__num {
  font-family: 'Neue Machina', sans-serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: #000000;
  letter-spacing: -0.02em;
}

.reg-stat__delta {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #16A34A;
  margin-left: 4px;
}

.reg-stat__sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #8C93A4;
}

.card--reviews {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card--reviews .card-title,
.card--reviews .card-body {
  position: relative;
  z-index: 1;
}

.card--reviews .card-body {
  max-width: 100%;
}

.card-img--carambola {
  position: absolute;
  right: 0px;
  bottom: 1px;
  width: 42%;
  height: auto;
  pointer-events: none;
}

/* ── Reviews section ── */
.reviews {
  padding: 80px 0;
  position: relative;
  display: grid;
  grid-template-areas:
    "header"
    "viewport"
    "nav";
}

.deco-reviews-ball {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

/* card 1 — DJ Харизма */
.deco-ball-1 {
  top: -39px;
  left: 29%;
  transform: translateX(-50%);
  width: 28%;
}

/* card 2 — Mike Spirit */
.deco-ball-2 {
  width: 79px;
  top: -29px;
  right: 140px;
  rotate: 20deg;
}

/* card Bu.Di */
.deco-ball-budi {
  width: 47px;
  bottom: -29px;
  right: 46px;
  rotate: -6deg;
}

/* card 3 — Marcello */
.deco-ball-3 {
  top: -39px;
  left: 29%;
  transform: translateX(-50%);
  width: 28%;
}

/* card 4 — Мария SOUL SIS */
.deco-ball-4 {
  width: 67px;
  bottom: -38px;
  right: 89px;
  rotate: -6deg;
}

/* card 5 — Jeny Power */
.deco-ball-5 {
  top: -39px;
  left: 29%;
  transform: translateX(-50%);
  width: 28%;
}

/* card 6 — Анна Постаногова */
.deco-ball-6 {
  width: 73px;
  bottom: -59px;
  right: 46px;
  rotate: -6deg;
}

/* card KRD — Вадим Matt */
.deco-ball-krd {
  position: absolute;
  width: 74px;
  top: -35px;
  left: 69px;
  pointer-events: none;
  z-index: -1;
}

/* card SPB — Георгий Робакидзе */
.deco-ball-spb {
  position: absolute;
  width: 72px;
  bottom: -61px;
  left: 66px;
  pointer-events: none;
}

/* card 7 — Никита Пикуль */
.deco-ball-7 {
  width: 70px;
  top: -42px;
  left: 46px;
  rotate: -6deg;
}

/* card 9 — Вахтанг Innerlight */
.deco-ball-9 {
  width: 70px;
  top: -38px;
  right: 46px;
  rotate: 10deg;
}

/* card PRM — Даниэль Трегубов */
.deco-ball-prm {
  position: absolute;
  width: 72px;
  bottom: -40px;
  right: 190px;
  pointer-events: none;
}

.reviews-header {
  grid-area: header;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 calc(2 * 6.3671875vw);
  text-align: center;
  margin-bottom: 24px;
}

.reviews-title {
  font-family: 'Neue Machina', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #000000;
  text-align: center;
  width: 100%;
}

.reviews-nav {
  grid-area: nav;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  justify-self: center;
  padding-left: 0;
  margin-top: 48px;
}

#reviews-counter { min-width: 28px; text-align: center; }

.reviews-counter {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #8C93A4;
  min-width: 36px;
  text-align: right;
}

.reviews-btn {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  border: none;
  box-shadow: inset 0 0 0 0.7px #BCC3D8;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  transition: background 0.2s;
}

.reviews-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.reviews-btn + .reviews-btn {
  margin-left: -12px;
}

.reviews-viewport {
  grid-area: viewport;
  overflow: hidden;
  cursor: grab;
  padding-top: 50px;
  margin-top: 0;
  padding-bottom: 70px;
  margin-bottom: -70px;
  width: 100%;
}

.reviews-viewport:active {
  cursor: grabbing;
}

.reviews-track {
  display: flex;
  align-items: flex-start;
  gap: 1.875vw;
  padding-left: calc(2 * 6.3671875vw);
  width: max-content;
  user-select: none;
}

.review-card {
  flex-shrink: 0;
  width: 23.59375vw;
  border-radius: 16px;
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
}

.review-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 0.7px #BCC3D8;
  z-index: 0;
  pointer-events: none;
}

.review-card__city {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #000000;
  position: relative;
  z-index: 1;
}

.review-pin {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.review-card__text {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.4;
  color: #000;
  margin-top: 20px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.review-text-rest {
  display: none;
}

.review-card__text.review-expanded .review-text-rest {
  display: inline;
}

.review-card__text.review-expanded .review-expand-link {
  display: none;
}

.review-expand-link {
  display: block;
  margin-top: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #0057FF;
  text-decoration: none;
}

.review-expand-link:hover {
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 3px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}


.deco-post-reviews {
  position: relative;
  height: 0;
  overflow: visible;
  pointer-events: none;
}

.deco-post-reviews img {
  position: absolute;
  right: -2.633vw;
  top: 30px;
  width: 103px;
  rotate: 6deg;
}

.deco-pre-hiw {
  position: relative;
  height: 0;
  overflow: visible;
  pointer-events: none;
}

.deco-pre-hiw img {
  position: absolute;
  right: 116px;
  top: -18px;
  width: 104px;
}

.review-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* ========================
   Lists section
   ======================== */

.lists {
  padding: 80px calc(2 * 6.3671875vw) 0;
}

.lists-title {
  font-family: 'Neue Machina', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #000000;
  text-align: center;
  margin-bottom: 32px;
}

.lists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875vw;
  align-items: start;
}

.hiw-grid .lists-review-card { display: none; }

.lists-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lists-feature-text,
.lists-feature-highlight {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: #000000;
  line-height: 1.45;
}

.btn-primary.lists-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px 9px 20px;
  background-color: #0057FF;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 100px;
  white-space: nowrap;
  transition: background-color 0.2s;
  align-self: flex-start;
}

.lists-btn .btn-icon {
  width: 15px;
  height: 15px;
  filter: brightness(0) invert(1);
}

.lists-more-btn,
.hiw-steps-btn,
.mob-lists-cta {
  display: none;
}

.lists-invite-headline {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: #000000;
  line-height: 1.45;
}

.lists-invite-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: #000000;
  line-height: 1.45;
}

.lists-invite-form {
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 6px;
  padding: 8px 11px 8px 14px;
  background: rgba(255, 255, 255, 0.80);
  box-shadow: inset 0 0 0 0.7px #BCC3D8;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lists-invite-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: #000000;
  outline: none;
}

.lists-invite-input::placeholder {
  color: #9aa0b2;
}

.lists-invite-form--error {
  box-shadow: inset 0 0 0 1.5px #FF2F41;
  animation: shake 0.35s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-5px); }
  40%       { transform: translateX(5px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(3px); }
}

@keyframes invite-spin {
  to { transform: rotate(360deg); }
}

.lists-invite-submit--loading {
  pointer-events: none;
  opacity: 0.7;
  color: transparent;
  position: relative;
}

.lists-invite-submit--loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: invite-spin 0.6s linear infinite;
}

/* ========================
   How it works section
   ======================== */

.how-it-works {
  padding: 24px calc(2 * 6.3671875vw) 80px;
  position: relative;
}

.deco-hiw-right {
  position: absolute;
  left: -28px;
  top: 36%;
  width: 78px;
  pointer-events: none;
  will-change: transform;
  z-index: 0;
}

.hiw-more {
  margin-top: 24px;
}

.hiw-extra {
  margin-top: 24px;
  position: relative;
  animation: fadeInUp 0.35s ease;
}

.deco-hiw-right-mob,
.deco-hiw-14,
.mob-br {
  display: none;
}

.deco-hiw-extra-ball {
  position: absolute;
  right: -39px;
  top: 154%;
  width: 85px;
  pointer-events: none;
  will-change: transform;
  z-index: 0;
}

.hiw-grid--extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 180px);
  gap: 24px;
}

.card--hiw-extra {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hiw-icon-bg {
  position: absolute;
  width: 40%;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.card--hiw-extra .card-title,
.card--hiw-extra .card-body {
  position: relative;
  z-index: 1;
}

/* ── Per-icon positions ── */
.hiw-icon-bg--link {
  right: 0;
  bottom: 0;
  width: 38%;
}

.hiw-icon-bg--list-check {
  right: 0;
  top: 0;
  width: 33%;
}

.hiw-icon-bg--plus {
  right: 0;
  top: 0;
  width: 31%;
}

.hiw-icon-bg--spy {
  right: 1px;
  bottom: 1px;
  width: 39%;
}

.hiw-icon-bg--credit-card {
  right: 0px;
  top: 0;
  width: 32%;
}

.hiw-icon-bg--chart-dots {
  right: 0;
  top: 0;
  width: 31%;
}

/* ── Per-card body overrides ── */
.card-body--hiw-link        { max-width: 67%; }
.card-body--hiw-list-check  { max-width: 93%; }
.card-body--hiw-plus        { max-width: 100%; }
.card-body--hiw-spy         { max-width: 92%; }
.card-body--hiw-credit-card { max-width: 65%; }
.card-body--hiw-chart-dots  { max-width: 75%; }

.hiw-cta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.hiw-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 25px;
  border-radius: 100px;
  border: 1px solid #0057FF;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #0057FF;
  text-decoration: none;
  transition: color 0.25s ease;
  letter-spacing: -.1px;
  position: relative;
  overflow: hidden;
}

.hiw-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #0057FF;
  border-radius: inherit;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.hiw-cta-btn:hover {
  color: #ffffff;
}

.hiw-cta-btn:hover::before {
  transform: translateX(0);
}

.hiw-cta-btn--filled {
  background-color: #0057FF;
  border-color: #0057FF;
  color: #ffffff;
}

.hiw-cta-btn--filled:hover {
  background-color: #0046cc;
}

.hiw-cta-btn__icon {
  width: 16px;
  height: 16px;
  filter: invert(18%) sepia(97%) saturate(5000%) hue-rotate(218deg) brightness(102%) contrast(102%);
  transition: filter 0.25s ease;
}

.hiw-cta-btn:hover .hiw-cta-btn__icon {
  filter: brightness(0) invert(1);
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875vw;
  position: relative;
  align-items: stretch;
}

.hiw-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  box-shadow: inset 0 0 0 0.7px #BCC3D8;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.hiw-card__body {
  padding: 22px 22px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hiw-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #000000;
}

.hiw-card__text {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.27;
  color: #1a1a1a;
}

.hiw-card__img-wrap {
  flex: 1;
  min-height: 0;
  margin-top: 28px;
  padding: 0 31px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.25));
}

.hiw-card:nth-child(3) .hiw-card__img-wrap {
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.15));
}

.hiw-card:nth-child(4) .hiw-card__img-wrap {
  margin-top: 31px;
}

.hiw-card__img {
  display: block;
  width: 100%;
  border-radius: 6px 6px 0 0;
}

.lists-invite-submit {
  flex-shrink: 0;
  background: #0057FF;
  color: #ffffff;
  border: none;
  padding: 4px 10px 5px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 100px;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.lists-invite-submit:hover {
  background: #0046d4;
}

.lists-review-card {
  width: 100%;
  min-width: 0;
}

.lists-review-card .review-card__city {
  justify-content: flex-start;
}

.review-card__avatars {
  position: relative;
  width: 80px;
  height: 48px;
  flex-shrink: 0;
}

.review-card__avatars .review-card__avatar {
  position: absolute;
  top: 0;
}

.review-card__avatars .review-card__avatar:first-child {
  left: 0;
  z-index: 1;
}

.review-card__avatars .review-card__avatar:last-child {
  left: 32px;
  z-index: 0;
}

.review-card__avatar--outlined {
  box-shadow: 0 0 0 1.5px rgba(188, 195, 216, 0.5);
}

.review-card__name {
  font-family: 'Neue Machina', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #000000;
}

.review-card__role {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #666;
  margin-top: 6px;
}

/* ── Header ── */
.header {
  width: 100%;
  /* horizontal padding = 1 grid period (col + gutter) = 6.3671875vw ≈ 81.5px @1280 */
  padding: 14px 6.3671875vw;
  position: relative;
}

.deco-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 90%;
  width: auto;
  pointer-events: none;
}

.deco-blob {
  position: absolute;
  right: 254px;
  bottom: 62px;
  width: 120px;
  pointer-events: none;
  filter: blur(9px);
  z-index: -1;
}

.deco-above-hand {
  position: absolute;
  right: 6.3671875vw;
  top: 400px;
  width: 116px;
  pointer-events: none;
  z-index: 2;
}

.deco-phone {
  z-index: 1;
}

.deco-ring {
  position: absolute;
  left: calc(-1 * 6.3671875vw);
  bottom: 0;
  width: 163.56px;
  height: 132.54px;
  pointer-events: none;
}

.deco-cube {
  position: absolute;
  left: calc(8.5 * 6.3671875vw);
  top: -47px;
  width: 134px;
  height: 129.55px;
  transform: rotate(31.7deg);
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  /* gap pushes nav-links to column 3: 1 period − logo width (35px) */
  gap: calc(6.3671875vw - 35px);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.6;
}

/* Push actions to the right */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.nav-hamburger {
  display: none;
}

.deco-cube--mob {
  display: none;
}

.hero-phone-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.nav-hamburger__icon--close {
  color: #000;
  width: 20px;
  height: 20px;
  position: absolute;
  opacity: 0;
  transform: rotate(0deg) scale(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-hamburger__icon--open {
  position: absolute;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-menu {
  display: none;
}

body.menu-open .nav-hamburger__icon--open  { opacity: 0; transform: scale(0.6); }
body.menu-open .nav-hamburger__icon--close { opacity: 1; transform: rotate(45deg) scale(1); }
body.menu-open .mobile-menu               { display: block; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: #000000;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  border-radius: 100px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.btn-ghost:hover {
  opacity: 0.6;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 6px 20px;
  background-color: #0057FF;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  border-radius: 100px;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: #0046cc;
}

/* ========================
   Mailing section
   ======================== */

.mailing {
  padding: 140px calc(2 * 6.3671875vw) 100px;
  position: relative;
}

.mailing-deco {
  position: absolute;
  left: -19px;
  top: -30%;
  width: 61px;
  pointer-events: none;
}

.mailing-phones {
  position: absolute;
  right: calc(2 * 4.4921875vw + 1.875vw);
  top: 50%;
  transform: translateY(-50%);
  width: calc(5 * 6.3671875vw);
  pointer-events: none;
}

.mailing-text {
  width: calc(6 * 6.3671875vw - 1.875vw);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mailing-label {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #888;
}

.mailing-title {
  font-family: 'Neue Machina', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #000000;
  margin-top: -16px;
}

.mailing-lead {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.45;
  color: #000000;
}

.mailing-body {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.45;
  color: #1a1a1a;
}

.mailing-subscription {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  position: relative;
  isolation: isolate;
  cursor: pointer;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(45deg, #FF2F41 0%, #0D6AFF 26%, #3BD960 51%, #F400F4 100%) border-box;
  border: 1.5px solid transparent;
}

.mailing-subscription::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(45deg, #FF2F41 0%, #0D6AFF 26%, #3BD960 51%, #F400F4 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: -1;
}

.mailing-subscription:hover::before {
  opacity: 1;
}

.mailing-subscription:hover::after {
  opacity: 0;
}

.mailing-subscription:hover .mailing-subscription__text {
  color: #fff;
}

.mailing-subscription:hover .mailing-subscription__icon,
.mailing-subscription:hover .mailing-subscription__arrow {
  filter: brightness(0) invert(1);
}

.mailing-subscription__text,
.mailing-subscription__icon,
.mailing-subscription__arrow {
  transition: color 0.3s ease, filter 0.3s ease;
}

.mailing-subscription::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  border-radius: 10.5px;
  background: linear-gradient(45deg, #FF2F41 0%, #0D6AFF 26%, #3BD960 51%, #F400F4 100%);
  mix-blend-mode: screen;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mailing-subscription__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  filter: brightness(0);
}

.mailing-subscription__text {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.45;
  color: #000;
}

.mailing-subscription__arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  filter: brightness(0);
  margin-right: 8px;
}

.mailing-push-mob,
.mob-deco-20,
.mob-deco-22 {
  display: none;
}

.mailing-cta {
  align-self: flex-start;
  margin-top: 12px;
}

/* ========================
   Registration section
   ======================== */

.registration {
  padding: 160px calc(2 * 6.3671875vw);
  position: relative;
}

.registration-deco {
  position: absolute;
  right: -26px;
  width: 95px;
  pointer-events: none;
  top: -5%;
}

.registration-phones {
  position: absolute;
  left: calc(2 * 4.4921875vw + 1.875vw + 1.875vw);
  top: 50%;
  transform: translateY(-50%);
  width: calc(7 * 6.3671875vw);
  pointer-events: none;
}

.registration-text {
  width: calc(6 * 6.3671875vw - 1.875vw);
  margin-left: calc(6 * 6.3671875vw);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.registration-cta {
  align-self: flex-start;
  margin-top: 8px;
}

/* ========================
   Download section
   ======================== */

.download {
  padding: 100px calc(2 * 6.3671875vw) 60px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.download-card {
  padding-bottom: 18px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.download-card:not(.download-card--alt)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #FFFFFF 0%, #D3FFF0 100%);
  box-shadow: inset 0 0 0 0.7px #BCC3D8;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  border-radius: inherit;
  z-index: 0;
}

.download-card:not(.download-card--alt):hover::before {
  opacity: 1;
}

.download-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.download-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.10);
  border: none;
  box-shadow: inset 0 0 0 0.7px #BCC3D8;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #000000;
  font-size: 1.8rem;
  font-weight: 300;
}

.download-action-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

.download-action-btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  filter: brightness(0);
  transition: filter 0.2s ease;
}

.download-action-btn:hover .download-action-btn__icon {
  filter: brightness(0) invert(1);
}

.download-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.download-card .card-title {
  position: relative;
  z-index: 1;
}


.download-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  position: relative;
  z-index: 1;
}

.download-card__app {
  display: flex;
  align-items: center;
  gap: 14px;
}

.download-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: 0 14px 12px -12px rgba(0, 0, 0, 0.5);
}

.download-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.download-card__name {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
}

.download-card__version {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #8a8fa8;
}

.download-card__link {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #0057FF;
  text-decoration: none;
}

.download-card__info .download-card__link {
  margin-top: 3px;
}

.download-card__link:hover {
  text-decoration: underline;
}

.download-card__arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.download-card--alt {
  position: relative;
  overflow: hidden;
  padding-right: 18px;
  cursor: default;
}

.download-card__alt-deco {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 90px;
  height: 90px;
  pointer-events: none;
  z-index: 0;
}

.download-card--alt .card-title,
.download-card--alt .download-card__alt-links {
  position: relative;
  z-index: 1;
}

.download-card--alt .download-card__alt-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  margin-top: 4px;
}

.download-card--alt .download-card__alt-links p {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.download-card__dot {
  font-size: 1.2rem;
  color: #8a8fa8;
}

.pdf-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 38px;
}

.pdf-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 32px;
  border-radius: 16px;
  text-decoration: none;
  min-height: 120px;
  transition: opacity 0.18s ease;
}

.pdf-card:hover {
  opacity: 0.7;
}

.pdf-card__title {
  font-family: 'Neue Machina', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #000000;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
}

.pdf-card__meta {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #0057FF;
  margin-top: 6px;
  text-align: center;
}

/* ========================
   Footer
   ======================== */

.footer {
  padding: 0 calc(2 * 6.3671875vw) 82px;
  position: relative;
  overflow: hidden;
}

.footer-divider {
  border: none;
  border-top: 0.7px solid #BCC3D8;
  margin: 0;
}

.footer-inner {
  padding-top: 1.875vw;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: calc(2 * 6.3671875vw) auto auto 1fr;
  column-gap: calc(1 * 6.3671875vw);
  align-items: start;
}


.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col--brand {
  gap: 4px;
  padding-left: 1.875vw;
}

.footer-col--legal {
  padding-right: 1.875vw;
}

.footer-col--legal .footer-link {
  break-inside: avoid;
  display: block;
}

.footer-copyright {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: #8a8fa8;
}

.footer-brand {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1a1a;
  padding-left: 14px;
}

.footer-link {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #1a1a1a;
  text-decoration: none;
  line-height: 1.6;
}

.footer-link:hover {
  color: #0057FF;
}

.footer-deco {
  position: absolute;
  left: calc(3 * 6.3671875vw);
  bottom: -50px;
  width: 144px;
  filter: blur(10px);
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
  rotate: 12deg;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 890 px … 1180 px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1180px) {

  .nav-links li:nth-child(3),
  .nav-links li:nth-child(4) {
    display: none;
  }

  .deco-cube {
    left: calc(8.5 * 6.3671875vw);
    top: -51px;
    width: 114px;
    height: 117px;
  }

  .deco-phone {
    right: -58px;
    top: 50px;
    bottom: auto;
    height: 80%;
    width: auto;
  }

  .deco-above-hand {
    right: 1vw;
    top: 277px;
    width: 98px;
  }

  .deco-blob {
    right: 117px;
    bottom: 89px;
    width: 103px;
  }

  .hero {
    padding-left: calc(2 * 6.3671875vw);
    padding-top: calc(80px - 14px);
    padding-bottom: 80px;
  }

  .tickets {
    padding: 50px calc(2 * 6.3671875vw);
  }

  .tickets-title {
    font-size: 2.2rem;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .calc-label {
    font-size: 1.3rem;
  }

  .card--online .card-body {
    max-width: 51%;
  }

  .card--withdrawal .card-body {
    max-width: 54%;
  }

  .card--entry-control .card-body {
    max-width: 74%;
  }

  .card-img--service-fee {
    width: 65%;
    border-radius: 0;
  }

  .deco-tickets-left {
    left: -176px;
    top: 10%;
    width: 96px;
    rotate: 24deg;
  }

  .card-img--promo {
    right: -4%;
    top: -5%;
    width: 48%;
  }

  .deco-tickets-right {
    right: -23px;
    top: 88%;
    width: 88px;
  }

  .deco-tickets-left2 {
    left: -60px;
    top: 16%;
    width: 102px;
  }

  .card-img--chats {
    width: 49%;
  }

  .card--vk-bot .card-body {
    max-width: 45%;
  }

  .card--reviews .card-body {
    max-width: 70%;
  }

  .review-card {
    width: 36.328125vw;
  }

  .reviews {
    display: block;
  }

  .reviews-nav {
    margin-top: 24px;
    margin-bottom: 0;
  }

  .reviews-title {
    font-family: 'Neue Machina', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #000000;
    text-align: center;
    width: 100%;
  }

  .deco-post-reviews img {
    position: absolute;
    left: -3.633vw;
    top: 31px;
    width: 93px;
    rotate: 6deg;
  }

  .deco-pre-hiw img {
    position: absolute;
    right: -34px;
    top: 120px;
    width: 93px;
  }

  /* ── Гаттер 1.875vw для всех гридов и отступов между блоками ── */
  .tickets-grid          { gap: 1.875vw; }
  .tickets-extra         { gap: 1.875vw; margin-top: 1.875vw; }
  .tickets-more          { margin-top: 1.875vw; }
  .hiw-more              { margin-top: 1.875vw; }
  .download {
    padding: 120px calc(2 * 6.3671875vw) 120px;
  }

  .download-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 1.875vw;
  }
  .download-grid .download-card:nth-child(1) { grid-column: 1 / 7;  grid-row: 1; }
  .download-grid .download-card:nth-child(2) { grid-column: 7 / 13; grid-row: 1; }
  .download-grid .download-card--alt         { grid-column: 1 / 13; grid-row: 2; }
  .download-actions      { margin-top: calc(2 * 1.875vw); }

  .download-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.10);
    border: none;
    box-shadow: inset 0 0 0 0.7px #BCC3D8;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #000000;
    font-size: 1.6rem;
    font-weight: 300;
  }

  .footer-content {
    display: grid;
    grid-template-columns: calc(2 * 6.3671875vw) auto auto 1fr;
    column-gap: calc(0.5 * 6.3671875vw);
    align-items: start;
  }

  .footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #8a8fa8;
  }

  .footer-brand {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    padding-left: 14px;
  }

  /* ── Lists section адаптив ── */
  .lists-grid { grid-template-columns: repeat(2, 1fr); gap: 1.875vw; }
  .lists-grid .lists-review-card { display: none; }

  /* ── HIW мегагрид ── */
  .hiw-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.875vw;
  }
  .hiw-grid .hiw-card:nth-child(1) { grid-column: 1 / 7;  grid-row: 1; }
  .hiw-grid .hiw-card:nth-child(3) { grid-column: 7 / 13; grid-row: 1; }
  .hiw-grid .hiw-card:nth-child(4) { grid-column: 1 / 7;  grid-row: 2; }
  .hiw-grid .lists-review-card     { display: flex; grid-column: 7 / 13; grid-row: 2; }
  .hiw-card__img-wrap {
    flex: 1;
    min-height: 0;
    margin-top: 28px;
    padding: 0 31px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.25));
  }
  .hiw-grid .hiw-card:nth-child(4) .hiw-card__img-wrap {
    max-height: 244px;
  }

  /* ── HIW extra мегагрид ── */
  .hiw-extra:not([hidden]) {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.875vw;
    margin-top: 1.875vw;
  }
  .hiw-grid--extra { display: contents; }
  .hiw-grid--extra .card:nth-child(1) { grid-column: 1 / 7;  grid-row: 1; }
  .hiw-grid--extra .card:nth-child(2) { grid-column: 7 / 13; grid-row: 1; }
  .hiw-grid--extra .card:nth-child(4) { grid-column: 1 / 7;  grid-row: 2; }
  .hiw-grid--extra .card:nth-child(5) { grid-column: 7 / 13; grid-row: 2; }
  .hiw-grid--extra .card:nth-child(6) { grid-column: 1 / 7;  grid-row: 3; }
  .hiw-grid--extra .card:nth-child(8) { grid-column: 7 / 13; grid-row: 3; }

  .how-it-works {
    padding: 24px calc(2 * 6.3671875vw) 0px;
    position: relative;
  }

  .deco-hiw-right {
    position: absolute;
    left: -9px;
    top: 55%;
    width: 81px;
    pointer-events: none;
    will-change: transform;
    z-index: 0;
  }

  .deco-hiw-extra-ball {
    position: absolute;
    right: -42px;
    top: 47%;
    width: 85px;
    pointer-events: none;
    will-change: transform;
    z-index: 0;
    rotate: 1deg;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .hero-slogan {
    font-size: 2.1rem;
  }

  .feature-text {
    font-size: 1.3rem;
  }

  .deco-ring {
    width: 132.56px;
    height: auto;
  }

  .btn-cta {
    padding: 8px 22px;
    font-size: 1.6rem;
  }

  .download-text {
    font-size: 1.4rem;
  }

  .mailing-title {
    font-family: 'Neue Machina', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #000000;
    margin-top: -16px;
  }

  .mailing-lead {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.45;
    color: #000000;
  }

  .mailing-body {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.45;
    color: #1a1a1a;
  }

  .mailing-phones {
    position: absolute;
    right: calc(1 * 4.4921875vw + 1.875vw);
    top: 50%;
    transform: translateY(-50%);
    width: calc(5 * 6.3671875vw);
    pointer-events: none;
  }

  .mailing-text {
    width: calc(7 * 6.3671875vw - 1.875vw);
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .mailing-deco {
    position: absolute;
    left: -25px;
    top: -5%;
    width: 61px;
    pointer-events: none;
  }

  .mailing {
    padding: 140px calc(2 * 6.3671875vw) 0px;
    position: relative;
  }

  .registration-phones {
    position: absolute;
    left: calc(1 * 4.4921875vw + 1.875vw + 1.875vw);
    top: 62%;
    transform: translateY(-50%);
    width: calc(7 * 6.3671875vw);
    pointer-events: none;
  }

  .registration-text {
    width: calc(7 * 6.3671875vw - 1.875vw);
    margin-left: calc(5 * 6.3671875vw);
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .registration-deco {
    position: absolute;
    right: -26px;
    width: 95px;
    pointer-events: none;
    top: -106px;
  }

  .registration {
    padding: 130px calc(2 * 6.3671875vw) 0px;
    position: relative;
  }

  /* ── Tickets main grid ── */
  .tickets-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
  }
  .tickets-grid > .card:nth-child(1) { grid-column: span 12; }
  .tickets-grid > .card:nth-child(2) { grid-column: span 6; min-height: 180px; }
  .tickets-grid > .card:nth-child(3) { grid-column: span 6; min-height: 180px; }
  .tickets-grid > .card:nth-child(4) { grid-column: span 12; }

  /* ── Tickets extras: единый 12-кол мегагрид ── */
  .tickets-extra:not([hidden]) {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
  }
  .tickets-grid--extra,
  .tickets-grid--widget-promo,
  .tickets-grid--features2,
  .tickets-grid--app,
  .tickets-grid--social { display: contents; }

  /* Сброс фиксированной высоты из правил вложенных гридов */
  .tickets-grid--extra > .card { height: auto; min-height: 160px; }

  /* Карточки не из списка адаптации — скрыть */
  .card--stats,
  .card--fine-tuning,
  .card--app-promo { display: none; }

  /* Явное размещение карточек */
  .card--for-all                { grid-column: 1 / 7;  grid-row: 1; }
  .card--refunds                { grid-column: 7 / 13; grid-row: 1; }
  .tickets-extra .card--widget  { grid-column: 1 / 13; grid-row: 2; }
  .tickets-extra .card--promo   { grid-column: 1 / 7;  grid-row: 3; }
  .card--closed-sales           { grid-column: 7 / 13; grid-row: 3; }
  .card--entry-control          { grid-column: 1 / 7;  grid-row: 4; }
  .card--onboarding             { grid-column: 7 / 13; grid-row: 4; }
  .card--tg-bot                 { grid-column: 1 / 7;  grid-row: 5; }
  .card--vk-bot                 { grid-column: 7 / 13; grid-row: 5; }
  .tickets-extra .card--offline { grid-column: 1 / 7;  grid-row: 6; }
  .tickets-extra .card--reviews { grid-column: 7 / 13; grid-row: 6; }
  .tickets-extra .card--chat    { grid-column: 1 / 13; grid-row: 7; }

}

@media (max-width: 820px) {
  .deco-cube {
    left: calc(7 * 6.3671875vw);
    top: -35px;
    width: 94px;
    height: 97px;
  }

  .features-grid {
    grid-template-columns: repeat(2, max-content);
    column-gap: 40px;
    row-gap: 20px;
    margin-top: 32px;
  }
  .feature-item:nth-child(1) { grid-column: 1; grid-row: 1; }
  .feature-item:nth-child(2) { grid-column: 2; grid-row: 1; }
  .feature-item:nth-child(3) { grid-column: 1; grid-row: 3; }
  .feature-item:nth-child(4) { grid-column: 1; grid-row: 2; }
  .feature-item:nth-child(5) { grid-column: 2; grid-row: 2; }
  .feature-item:nth-child(6) { grid-column: 2; grid-row: 3; }

  .deco-ring {
    width: 125.56px;
  }

  .calc-label {
    font-size: 1.2rem;
  }

  .card-body {
    max-width: 68%;
  }

  .card--withdrawal .card-body {
    max-width: 58%;
  }

  .card--promo .card-body {
    max-width: 63%;
  }

  .card-img--promo {
    right: -15%;
    width: 51%;
  }

  .card--entry-control .card-body {
    max-width: 92%;
  }

  .card--vk-bot .card-body {
    max-width: 51%;
  }

  .card--reviews .card-body {
    max-width: 86%;
  }

  .card--offline .card-body {
    max-width: 100%;
  }

  .hiw-grid .hiw-card:nth-child(4) .hiw-card__img-wrap {
    justify-content: flex-end;
    max-height: none;
  }

  .deco-hiw-extra-ball {
    top: 61%;
  }

  .footer-link {
    line-height: 1.2;
  }

  .footer-col {
    gap: 16px;
  }

  .card-img--service-fee {
    right: -13%;
    width: 68%;
    border-radius: 8px 0px;
  }

  .card-img--refunds {
    right: -15%;
  }

  .calc-range {
    max-width: 150px;
  }

  .calc-badge {
    font-size: 1.05rem;
    width: 58px;
  }

  .calc-result {
    width: 210px;
  }
}

@media (min-width: 821px) and (max-width: 1179px) {
  .deco-tickets-mid {
    position: absolute;
    right: -152px;
    top: 26%;
    width: 91px;
    pointer-events: none;
    z-index: -1;
    will-change: transform;
  }

  .deco-tickets-right {
    right: -51px;
    top: 85%;
    width: 88px;
  }

  .card--online .card-body {
    max-width: 46%;
  }

  .card-img--lock {
    position: absolute;
    right: 0px;
    top: auto;
    width: 33%;
    height: auto;
    bottom: 0;
  }

  .card-img--clock {
    position: absolute;
    right: 1px;
    top: auto;
    width: 41%;
    height: auto;
    bottom: 0;
  }

  .deco-tickets-right2 {
    display: none;
    position: absolute;
    left: 30%;
    bottom: -150px;
    width: 138px;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
  }
}

@media (min-width: 760px) and (max-width: 850px) {
  .calc-result {
    width: 200px;
  }

  .calc-result-pct {
    display: none;
  }
}

@media (min-width: 1500px) {
  .tickets-grid {
    grid-template-rows: repeat(2, 210px);
  }

  .tickets-grid--extra {
    grid-template-rows: 220px;
  }

  .tickets-grid--extra > .card {
    height: 220px;
  }

  .tickets-grid--widget-promo {
    grid-template-rows: 220px;
  }

  .tickets-grid--features2 {
    grid-template-rows: repeat(2, 220px);
  }

  .hiw-grid--extra {
    grid-template-rows: repeat(2, 220px);
  }

  .mailing-phones {
    position: absolute;
    right: calc(2 * 4.4921875vw + 1.875vw);
    top: 50%;
    transform: translateY(-50%);
    width: calc(4 * 6.3671875vw);
    pointer-events: none;
  }

  .registration-phones {
    position: absolute;
    left: calc(2 * 4.4921875vw + 1.875vw + 1.875vw);
    top: 50%;
    transform: translateY(-50%);
    width: calc(5 * 6.3671875vw);
    pointer-events: none;
  }

  .mailing {
    padding: calc(1 * 6.3671875vw) calc(2 * 6.3671875vw) 100px;
    position: relative;
  }

  .registration {
    padding: calc(1 * 6.3671875vw) calc(2 * 6.3671875vw);
    position: relative;
  }

  .mailing-subscription__text .mob-hide {
    display: block;
  }

  .calc-result {
    width: 31%;
  }

  .calc-result-num {
    white-space: nowrap;
    font-size: 2.1rem;
  }

  .calc-label {
    width: 39%;
  }

  .calc-badge {
    padding: 5px 10px;
    width: 100px;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .card--online .card-body {
    max-width: 49%;
  }

  .card-img--service-fee {
    bottom: -6%;
  }

  .card-body {
    max-width: 52%;
  }

  .card--widget .card-body {
    max-width: 25%;
  }

  .card--promo .card-body {
    max-width: 50%;
  }

  .card--app-promo .card-body {
    max-width: 50%;
  }

  .card-body--hiw-spy {
    max-width: 88%;
  }

  .card--hiw-extra .card-body {
    position: relative;
    z-index: 1;
    max-width: 80%;
  }

  .hiw-icon-bg           { width: 32%; }
  .hiw-icon-bg--link     { width: 30.4%; }
  .hiw-icon-bg--list-check { width: 26.4%; }
  .hiw-icon-bg--plus     { width: 24.8%; }
  .hiw-icon-bg--spy      { width: 31.2%; }
  .hiw-icon-bg--credit-card { width: 25.6%; }
  .hiw-icon-bg--chart-dots  { width: 24.8%; }
}

/* ── Freeze vw-based values at 2200px (body max-width boundary) ── */
@media (min-width: 2200px) {
  html { font-size: 13.375px; }
  /* body is centered in wider viewport — allow deco elements to extend into margins */
  body { overflow-x: visible; }

  .header { padding: 14px 140px; }
  .nav { gap: 105px; }

  .hero { padding-left: 280px; }

  .deco-above-hand { right: 140px; }
  .deco-ring { left: -140px; }
  .deco-cube { left: 1190px; }

  .tickets { padding: 80px 280px; }

  .reviews-header { padding: 0 280px; }
  .reviews-track { gap: 41px; padding-left: 280px; }
  /* gradient fade at both edges — pseudo-elements preserve backdrop-filter on cards */
  .reviews-viewport {
    position: relative;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .reviews-viewport::before,
  .reviews-viewport::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 10;
    pointer-events: none;
  }
  .reviews-viewport::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0) 100%);
  }
  .reviews-viewport::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, rgba(255,255,255,0) 100%);
  }
  .review-card { width: 519px; padding: 32px; }
  .deco-post-reviews img { right: -58px; width: 118px; }

  .lists { padding: 80px 280px 0; }
  .lists-grid { gap: 24px; }
  /* override the slider review-card fixed width so it fills its grid column */
  .lists-review-card { width: 100%; }
  .lists-review-card .review-card__city { justify-content: flex-start; font-size: 19px; }

  .deco-pre-hiw img { position: absolute; right: 116px; top: -18px; width: 114px; }
  .deco-hiw-right { position: absolute; left: -46px; top: 36%; width: 103px; pointer-events: none; will-change: transform; z-index: 0; }

  .how-it-works { padding: 24px 280px 80px; }
  .hiw-grid { gap: 24px; }
  .hiw-card__body { padding: 24px 32px 0; }
  .hiw-card__title { font-size: 1.4rem; font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
  .hiw-card__text { margin-top: 14px; }
  .card-body--hiw-list-check br { display: none; }

  .mailing { padding: 190px 280px; }
  .mailing-deco { width: 70px; }
  .mailing-phones { right: 239px; width: 560px; }
  .mailing-text { width: 799px; }

  .registration { padding: 140px 280px; }
  .registration-deco { width: 109px; }
  .registration-phones { left: 280px; width: 700px; }
  .registration-text { width: 799px; margin-left: 840px; }

  .download { padding: 100px 280px 120px; }

  .footer { padding: 0 280px 82px; }
  .footer-inner { padding-top: 41px; }
  .footer-content { grid-template-columns: 280px auto auto 1fr; column-gap: 140px; }
  .footer-col--brand { padding-left: 41px; }
  .footer-col--legal { padding-right: 41px; }
  .footer-deco { left: 420px; }

  .card { padding: 24px 32px; }
  .card-img--chats { width: 345px; }
  .card-img--phones-isometric { right: -106px; bottom: -82px; width: 828px; }
  .card-img--imac { position: absolute; left: 257px; bottom: -152px; width: 488px; pointer-events: none; }
  .card-img--promo { position: absolute; right: 0px; top: -28px; width: 228px; pointer-events: none; z-index: 0; }
  .card-img--settings-tuning { position: absolute; right: 0; top: -10px; width: 240px; pointer-events: none; }

  .deco-tickets-mid { position: absolute; right: -187px; top: 33%; width: 124px; pointer-events: none; z-index: -1; will-change: transform; }
  .deco-tickets-left2 { position: absolute; left: -195px; top: 62%; width: 140px; pointer-events: none; z-index: -1; will-change: transform; filter: blur(6px); }
  .deco-tickets-right { position: absolute; right: -78px; top: 50%; width: 123px; pointer-events: none; z-index: -1; will-change: transform; }

  .card-img--lock { position: absolute; right: 0px; bottom: 0; width: 36%; height: auto; }
  .card-img--clock { position: absolute; right: 1px; bottom: 0; width: 41%; height: auto; }

  .deco-phone { position: absolute; right: 330px; bottom: 0; height: 90%; width: auto; pointer-events: none; }
  .deco-above-hand { right: 428px; top: 433px; }
  .deco-blob { position: absolute; right: 612px; bottom: 62px; width: 120px; pointer-events: none; filter: blur(9px); z-index: -1; }

  .card-img--terminal { position: absolute; right: -77px; bottom: -48px; width: 340px; pointer-events: none; }
  .card-img--withdrawal { position: absolute; right: -25px; bottom: 0; width: 248px; pointer-events: none; }
  .card-img--service-fee { bottom: 0; right: -32px; }
  .card-img--refunds { position: absolute; right: 0; top: -33px; width: 243px; pointer-events: none; }
  .card-img--stats { position: absolute; right: 0; top: -27px; width: 229px; pointer-events: none; }

  .card--app-promo .card-body { max-width: 408px; }

  .hero-cta { margin-top: 52px; }
  .hiw-cta { margin-top: 52px; }
  .mailing-cta { margin-top: 52px; }
  .registration-cta { margin-top: 52px; }

  .deco-ball-1 {
    top: -39px;
    left: 29%;
    transform: translateX(-50%);
    width: 96px;
  }

  .deco-ball-3 {
    top: -39px;
    left: 29%;
    transform: translateX(-50%);
    width: 115px;
  }

  .deco-ball-5 {
    top: -47px;
    left: 29%;
    transform: translateX(-50%);
    width: 104px;
  }

  .deco-ball-2 { width: 91px; }
  .deco-ball-budi { width: 54px; }
  .deco-ball-4 { width: 77px; }
  .deco-ball-6 { width: 84px; }
  .deco-ball-krd { width: 85px; }
  .deco-ball-spb { width: 83px; }
  .deco-ball-7 { width: 81px; }
  .deco-ball-prm { width: 83px; }
}

@media (min-width: 1180px) and (max-width: 1300px) {
  .calc-result {
    background: #f0f1f5;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 170px;
    flex-shrink: 0;
  }

  .calc-result-pct {
    display: none;
  }
}

@media (max-width: 744px) {
  .deco-cube {
    left: calc(8.2 * 6.3671875vw);
    top: -35px;
    width: 74px;
    height: 80px;
  }

  .calc-result-num {
    font-family: 'Neue Machina', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #000000;
  }

  .calc-result {
    width: 200px;
  }

  .calc-result-pct {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #22c55e;
  }

  .calc-range {
    max-width: 110px;
  }

  .calc-label {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #1a1a1a;
    white-space: nowrap;
    width: 110px;
    flex-shrink: 0;
  }

  .card--online .card-body {
    max-width: 58%;
  }

  .card-img--terminal {
    position: absolute;
    right: -19%;
    bottom: -3%;
    width: 65%;
    pointer-events: none;
  }

  .card--withdrawal .card-body {
    max-width: 62%;
  }

  .card-img--withdrawal {
    position: absolute;
    right: -24%;
    bottom: 0%;
    width: 60%;
    pointer-events: none;
  }

  .card-img--refunds {
    position: absolute;
    right: -23%;
    bottom: 0%;
    width: 55%;
    pointer-events: none;
  }

  .feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    white-space: nowrap;
  }

  .widget-badges {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .card-img--imac {
    position: absolute;
    left: 30%;
    bottom: -17%;
    width: 34%;
    pointer-events: none;
  }

  .card {
    box-shadow: inset 0 0 0 0.7px #BCC3D8;
    border-radius: 16px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .card-img--promo {
    right: -26%;
    width: 57%;
  }

  .card--entry-control .card-body {
    max-width: 100%;
  }

  .card-img--clock {
    position: absolute;
    right: 1px;
    top: 32%;
    width: 41%;
    height: auto;
  }

  .download-card__link {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #0057FF;
    text-decoration: none;
  }

  .download-card__arrow {
    margin-left: auto;
  }

  .download-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.10);
    border: none;
    box-shadow: inset 0 0 0 0.7px #BCC3D8;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #000000;
    font-size: 1.4rem;
    font-weight: 300;
  }

  .btn-cta {
    padding: 8px 22px;
    font-size: 1.4rem;
  }

  .footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #8a8fa8;
  }

  .footer-brand {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
  }

  .footer-col--brand {
    gap: 2px;
  }

  .hiw-cta-btn {
    padding: 8px 22px;
    gap: 10px;
  }

  .btn-primary.lists-btn {
    font-size: 1.3rem;
  }

  .hero-slogan {
    font-size: 1.8rem;
  }

  .tickets-more-link {
    font-size: 1.3rem;
  }

  .lists-review-card .review-text-rest {
    display: inline;
  }

  .lists-review-card .review-expand-link {
    display: none;
  }

  .calc-range::-webkit-slider-thumb {
    width: 16px;
    height: 14px;
  }

  .calc-range::-moz-range-thumb {
    width: 16px;
    height: 14px;
  }

  .deco-phone {
    right: -90px;
    top: 50px;
    bottom: auto;
    height: 80%;
    width: auto;
  }

  .registration-phones {
    position: absolute;
    left: calc(0.5 * 4.4921875vw + 1.875vw + 1.875vw);
    top: 50%;
    transform: translateY(-50%);
    width: calc(8 * 6.3671875vw);
    pointer-events: none;
  }

  .mailing-phones {
    position: absolute;
    right: calc(0.3 * 4.4921875vw + 1.875vw);
    top: 50%;
    transform: translateY(-50%);
    width: calc(6 * 6.3671875vw);
    pointer-events: none;
  }

  .mailing-subscription__text {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.35;
    color: #000;
  }
}

@media (max-width: 743px) {
  :root {
    --period-mob: calc((100vw + 12px) / 10);
    --col-mob: calc((100vw - 108px) / 10);
    --gutter-mob: 12px;
  }

  /* ── Mailing (mobile) ── */
  .mailing {
    padding: var(--col-mob);
    padding-bottom: calc(2 * var(--col-mob));
  }

  .mailing-deco,
  .mailing-phones {
    display: none;
  }

  .mailing-text {
    width: 100%;
    align-items: center;
  }

  .mailing-label {
    text-align: center;
  }

  .mailing-title {
    font-size: 2rem;
    text-align: center;
  }

  .mailing-lead {
    font-size: 1.35rem;
    text-align: center;
  }

  .mailing-body {
    font-size: 1.35rem;
    text-align: center;
  }

  .mailing-push-mob {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  }

  .mailing-subscription {
    width: 100%;
  }

  .mailing-subscription__arrow {
    display: none;
  }

  .mailing-cta {
    align-self: center;
  }

  .mob-deco-20 {
    display: block;
    position: absolute;
    right: -8%;
    top: -7%;
    width: 25%;
    height: auto;
    pointer-events: none;
    z-index: 0;
    rotate: 10deg;
  }

  /* ── Registration (mobile) ── */
  .mob-deco-22 {
    display: block;
    position: absolute;
    left: -3%;
    top: 0%;
    width: 21%;
    height: auto;
    pointer-events: none;
    z-index: 0;
  }

  .registration {
    padding: var(--col-mob);
    padding-bottom: calc(2 * var(--col-mob));
    padding-top: calc(3 * var(--col-mob));
  }

  .registration-deco,
  .registration-phones {
    display: none;
  }

  .registration-text {
    width: 100%;
    margin-left: 0;
    align-items: center;
  }

  .registration-cta {
    align-self: center;
  }

  /* ── Download (mobile) ── */
  .download {
    padding: var(--col-mob);
    padding-top: calc(3 * var(--col-mob));
    padding-bottom: calc(2 * var(--col-mob));
  }

  .download .tickets-title {
    text-align: center;
  }

  .download-grid {
    grid-template-columns: 1fr;
    gap: var(--gutter-mob);
    margin-top: var(--col-mob);
  }

  .download-grid .download-card:nth-child(1),
  .download-grid .download-card:nth-child(2),
  .download-grid .download-card--alt {
    grid-column: unset;
    grid-row: unset;
  }

  .download-actions {
    flex-direction: column;
    gap: var(--gutter-mob);
    margin-top: var(--col-mob);
  }

  .download-action-btn {
    font-size: 1.5rem;
  }

  .download-card__name {
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
  }

  .download-card__link {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #0057FF;
    text-decoration: none;
  }

  .pdf-cards {
    flex-direction: row;
    align-items: center;
    gap: 0;
    margin-top: 52px;
  }

  .pdf-card {
    padding: 20px 16px;
    min-height: 80px;
  }

  .pdf-card__title {
    font-size: 1.5rem;
  }

  /* ── Footer (mobile) ── */
  .footer {
    padding: 0 var(--col-mob) calc(2.5 * var(--col-mob));
  }

  .footer-deco {
    display: block;
    position: absolute;
    right: 44px;
    bottom: -45px;
    left: auto;
    width: 120px;
  }

  .footer-inner {
    padding-top: var(--col-mob);
  }

  .footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: calc(2.8 * var(--gutter-mob));
  }

  .footer-col--brand {
    grid-column: 2;
    grid-row: 1;
    padding-left: 0;
    text-align: right;
  }

  .footer-col.footer-col--brand {
    gap: 0;
  }

  .footer-content > :nth-child(2) {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-col {
    gap: 5px;
  }

  .footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #8a8fa8;
  }

  .footer-brand {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
  }

  .footer-link {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1.6;
  }

  .footer-content > :nth-child(2) .footer-link {
    font-weight: 600;
  }

  .footer-content > :nth-child(3) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-col--legal {
    grid-column: 1 / -1;
    grid-row: 3;
    padding-right: 0;
    column-count: 1;
  }

  /* ── Dev grid: 10 cols, 12px gutter ── */
  /* body {
    background-image: repeating-linear-gradient(
      to right,
      var(--dev-grid, transparent) 0,
      var(--dev-grid, transparent) calc((100vw - 108px) / 10),
      transparent                  calc((100vw - 108px) / 10),
      transparent                  calc((100vw + 12px) / 10)
    );
  } */

  /* ── Nav ── */
  .header {
    padding-left: var(--col-mob);
    padding-right: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }

  .nav-links {
    display: none;
  }

  .logo {
    position: relative;
    z-index: 0;
  }

  .logo::before {
    content: '';
    position: absolute;
    inset: -6px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 100px;
    z-index: -1;
  }

  .nav-actions {
    background: rgba(0, 87, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 100px;
    padding: 7px 20px;
    gap: 0;
  }

  .nav-actions .btn-primary {
    background: transparent;
    color: #ffffff;
    padding: 0;
    font-size: 1.2rem;
    order: 1;
  }

  .nav-actions .btn-primary::after {
    content: '•';
    padding: 0 10px;
    color: #ffffff;
  }

  .nav-actions .btn-ghost {
    font-size: 0;
    padding: 0;
    order: 2;
  }

  .nav-actions .btn-ghost::after {
    content: 'Создать аккаунт';
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
  }

  .nav-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    margin-left: calc(2 * var(--gutter-mob));
    margin-right: calc((100vw - 108px) / 10);
  }

  .nav-hamburger::before {
    content: '';
    position: absolute;
    inset: -6px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 4px;
    z-index: -1;
  }

  /* ── Hero ── */
  .hero {
    padding-left: var(--col-mob);
    padding-right: var(--col-mob);
    padding-top: calc(63px + 36px);
    padding-bottom: 0;
  }

  .hero-title {
    font-size: 4.6rem;
  }

  .tickets-title,
  .reviews-title,
  .lists-title,
  .mailing-title {
    font-size: 2rem;
  }

  .card-title {
    font-size: 1.45rem;
  }

  .hero-slogan {
    white-space: pre-line;
    font-size: 2rem;
    margin-top: 16px;
    height: 44px;
    overflow: visible;
  }

  .typewriter-cursor {
    height: 2.2rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 18px;
    margin-top: 70px;
  }

  .feature-text {
    font-size: 1.3rem;
  }

  .fi-percentage {
    width: 13px;
    height: 13px;
  }

  .fi-chart-arrows {
    width: 17px;
    height: 17px;
  }

  .fi-chart-dots {
    width: 17px;
    height: 17px;
  }

  .fi-ticket {
    width: 18px;
    height: 15px;
  }

  .fi-ruler {
    width: 17px;
    height: 18px;
  }

  .fi-diamond {
    width: 20px;
    height: 17px;
  }

  .feature-item { align-items: center; }


  .feature-text--desktop { display: none; }
  .feature-text--mobile  { display: inline; }

  .feature-item:nth-child(1) { grid-column: auto; grid-row: auto; }
  .feature-item:nth-child(2) { grid-column: auto; grid-row: auto; }
  .feature-item:nth-child(3) { grid-column: auto; grid-row: auto; }
  .feature-item:nth-child(4) { grid-column: auto; grid-row: auto; }
  .feature-item:nth-child(5) { grid-column: auto; grid-row: auto; }
  .feature-item:nth-child(6) { grid-column: auto; grid-row: auto; }

  .hero-cta {
    margin-top: 42px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .btn-cta {
    font-size: 1.6rem;
    padding: 11px 23px;
  }

  .btn-cta__desktop {
    display: none;
  }

  .btn-cta__mobile {
    display: inline;
  }

  .download-text {
    display: none;
  }

  /* ── Hero deco ── */
  .hero-phone-wrap {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    pointer-events: auto;
  }

  .deco-cube {
    display: none;
  }

  .deco-cube--mob {
    display: block;
    position: absolute;
    left: auto;
    right: 23px;
    top: 56%;
    width: 23%;
    height: auto;
    transform: rotate(31.7deg);
    pointer-events: none;
    z-index: 1;
  }

  .deco-above-hand {
    right: -28px;
    top: 133px;
    width: 121px;
  }

  .deco-phone {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    display: block;
    width: 80%;
    height: auto;
    margin-top: 50px;
    margin-left: auto;
    margin-right: -4%;
  }

  .deco-blob {
    left: 121px;
    right: auto;
    bottom: 22px;
    width: 80px;
    rotate: -4deg;
  }

  .deco-ring {
    display: none;
  }

  /* ── Tickets: calculator ── */
  .tickets {
    padding-left: var(--col-mob);
    padding-right: var(--col-mob);
    padding-top: var(--col-mob);
    padding-bottom: calc(4 * var(--col-mob));
  }

  .tickets-grid {
    display: flex;
    flex-direction: column;
    gap: var(--col-mob);
  }

  .tickets-extra {
    margin-top: var(--col-mob);
  }

  .card--calc {
    padding: 18px;
    overflow: hidden;
  }

  .calc-layout {
    flex-direction: column;
    gap: 0;
  }

  .calc-sliders {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    gap: 0;
  }

  .calc-row {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    padding: 10px 0;
    gap: 12px 8px;
    min-width: 0;
  }

  .calc-label {
    grid-column: 1;
    grid-row: 1;
    white-space: normal;
    width: auto;
    min-width: 0;
    font-size: 1.35rem;
  }

  .calc-badge {
    grid-column: 2;
    grid-row: 1;
    font-size: 1.2rem;
    width: 72px;
    padding: 4px 6px;
  }

  .calc-range::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
  }

  .calc-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
  }

  .calc-range {
    grid-column: 1 / 3;
    grid-row: 2;
    display: block;
    width: 100%;
    max-width: none;
    min-width: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .calc-edit-btn {
    display: none;
  }

  .calc-result {
    width: 100%;
    margin-top: 16px;
    border-radius: 12px;
  }

  .calc-result-hint {
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .calc-result-pct {
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: #22c55e;
  }

  .card-body {
    font-size: 1.35rem;
  }

  .tickets-more-link {
    font-size: 1.35rem;
    width: 100%;
  }

  .tickets-more {
    margin-top: var(--col-mob);
  }

  .tickets-extra:not([hidden]) {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: unset;
    gap: var(--col-mob);
  }

  .tickets-grid--extra,
  .tickets-grid--widget-promo,
  .tickets-grid--features2,
  .tickets-grid--app,
  .tickets-grid--social {
    display: flex !important;
    flex-direction: column !important;
    gap: var(--col-mob) !important;
    width: 100% !important;
    margin-top: 0 !important;
    min-height: 0 !important;
    grid-template-columns: unset !important;
    grid-template-rows: unset !important;
  }

  .tickets-extra .card {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    grid-column: unset !important;
    grid-row: unset !important;
    flex-shrink: 0 !important;
  }

  .widget-badges {
    display: none;
  }

  .card--widget .card-body {
    max-width: 162px;
  }

  .card-img--imac {
    position: absolute;
    right: -32px;
    left: auto;
    bottom: -17%;
    width: 62%;
    pointer-events: none;
  }

  .card-img--promo {
    right: -20%;
    width: 57%;
    top: -31%;
  }

  .card-img--lock {
    position: absolute;
    right: 0;
    top: 10%;
    width: 36%;
    height: auto;
  }

  .card-img--telegram {
    position: absolute;
    right: -8px;
    bottom: 0;
    width: 40%;
    height: auto;
  }

  .card-img--clock {
    position: absolute;
    right: 1px;
    top: 22%;
    width: 41%;
    height: auto;
  }

  .card--chat .card-title,
  .card--chat .card-body {
    max-width: 100%;
  }

  .card-img--chats {
    position: relative;
    right: auto;
    bottom: auto;
    width: 113%;
    height: 245px;
    object-fit: cover;
    object-position: center 0%;
    margin-left: -18px;
    margin-top: 20px;
    margin-bottom: -18px;
    border-radius: 0;
  }

  .card-img--terminal {
    position: absolute;
    right: -13%;
    bottom: -21%;
    width: 64%;
    pointer-events: none;
  }

  .card--online .card-body {
    max-width: 48%;
  }

  .card--withdrawal .card-body {
    max-width: 56%;
  }

  .card--service-fee .card-body {
    max-width: 100%;
  }

  .card-img--service-fee {
    position: relative;
    right: auto;
    bottom: auto;
    width: 148%;
    margin-left: -18px;
    margin-top: 20px;
    margin-bottom: -18px;
    border-radius: 0;
  }

  .card-img--withdrawal {
    position: absolute;
    right: -17%;
    bottom: 0%;
    width: 60%;
    pointer-events: none;
  }

  /* ── Mobile menu ── */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding-top: 80px;
    padding-left: var(--col-mob);
    padding-right: var(--col-mob);
    overflow-y: auto;
  }

  .mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: right;
  }

  .mobile-menu__page-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-menu__page-link {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    line-height: 1.3;
    display: block;
  }

  .mobile-menu__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-menu__link {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    line-height: 1.3;
  }

  .mobile-menu__section .mobile-menu__link {
    font-size: 1.44rem;
  }

  .mobile-menu__section-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    margin-bottom: 44px;
  }

  .mobile-menu__section-icon {
    width: 22px;
    height: 22px;
    filter: brightness(0);
    flex-shrink: 0;
  }

  /* ── Reviews ── */
  .reviews {
    padding: var(--col-mob) 0;
  }

  .reviews-header {
    flex-direction: column;
    align-items: center;
    padding: 0 var(--col-mob);
    margin-bottom: calc(2.5 * var(--col-mob));
    gap: var(--col-mob);
  }

  .reviews-nav {
    position: static;
    justify-content: center;
    justify-self: unset;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    margin-top: var(--col-mob);
  }

  #reviews-counter { min-width: 28px; text-align: center; }

  .reviews-btn + .reviews-btn { margin-left: 0; }

  .review-card__author {
    gap: 2px;
  }

  .review-card__avatars .review-card__avatar:last-child {
    left: 26px;
  }

  .review-card__name {
    font-size: 1.3rem;
  }

  .deco-tickets-mid {
    right: -25px;
    top: 44%;
    width: 73px;
  }

  .deco-tickets-right2 {
    left: 27%;
    right: auto;
    bottom: -198px;
    width: 106px;
    transform: translateX(-50%);
  }

  .reviews-viewport {
    padding-top: 40px;
    margin-top: -40px;
    padding-bottom: 40px;
    margin-bottom: -40px;
  }

  .reviews-track {
    gap: var(--col-mob);
    padding-left: calc(2 * var(--col-mob));
    padding-right: calc(2 * var(--col-mob));
  }

  .review-card {
    width: calc(100vw - 4 * var(--col-mob));
  }

  /* ── Decorative separators between sections ── */
  .deco-post-reviews,
  .deco-pre-hiw {
    display: none;
  }

  /* ── Lists (mobile) ── */
  .lists {
    padding: var(--col-mob);
    padding-top: calc(3.5 * var(--col-mob));
    padding-bottom: calc(2 * var(--col-mob));
  }

  .lists-title {
    font-size: 2rem;
    margin-bottom: var(--col-mob);
  }

  .lists-grid {
    display: flex;
    flex-direction: column;
    gap: var(--col-mob);
    align-items: stretch;
  }

  .lists-grid .lists-review-card {
    display: none;
  }

  .lists-more-btn,
  .hiw-steps-btn {
    display: flex;
    align-self: stretch;
    margin-top: 0;
  }

  .mob-lists-cta {
    display: flex;
    justify-content: center;
  }

  .mob-br {
    display: inline;
  }

  .mob-hide {
    display: none;
  }

  .lists-col--invite {
    gap: var(--gutter-mob);
  }

  .lists-feature-text,
  .lists-feature-highlight {
    font-size: 1.35rem;
    text-align: center;
    font-weight: inherit;
  }

  .lists-col--features {
    align-items: center;
  }

  .btn-primary.lists-btn {
    align-self: center;
  }

  .lists-invite-headline,
  .lists-invite-desc {
    text-align: center;
    font-weight: inherit;
  }

  /* ── How it works (mobile) ── */
  .how-it-works {
    padding: var(--col-mob);
    padding-top: 0;
    padding-bottom: calc(2 * var(--col-mob));
  }

  .hiw-grid {
    display: none;
  }

  .hiw-grid.mob-visible {
    display: flex;
    flex-direction: column;
    gap: var(--col-mob);
  }

  .hiw-grid .deco-hiw-right,
  .hiw-grid .lists-review-card {
    display: none;
  }

  .hiw-card {
    display: flex;
    flex-direction: column;
  }

  .hiw-card__img-wrap {
    flex: none;
    padding: 16px 20px 0;
    order: 1;
    margin-top: 0;
  }

  .hiw-card:nth-child(4) .hiw-card__img-wrap {
    margin-top: 5px;
  }

  .hiw-card__img {
    width: 100%;
    height: auto;
  }

  .hiw-more,
  .hiw-cta {
    display: none;
  }

  /* hiw-extra revealed by "Подробнее о системе списков" button */
  .hiw-extra:not([hidden]) {
    display: flex;
    flex-direction: column;
    gap: var(--col-mob);
  }

  .hiw-grid--extra {
    display: flex !important;
    flex-direction: column !important;
    gap: var(--col-mob) !important;
  }

  .hiw-grid--extra .card {
    width: 100% !important;
    grid-column: unset !important;
    grid-row: unset !important;
  }

  .hiw-grid--extra,
  .hiw-grid.mob-visible {
    position: relative;
  }

  .deco-hiw-extra-ball,
  .deco-hiw-14,
  .deco-hiw-right-mob {
    display: block;
    position: absolute;
    z-index: 0;
    height: auto;
    pointer-events: none;
    left: -48%;
    width: 35%;
  }

  .deco-hiw-extra-ball {
    width: 26%;
    top: 76%;
    left: 84%;
  }

  .deco-hiw-14 {
    left: -21%;
    width: 35%;
    top: 82%;
  }

  .deco-hiw-right-mob {
    display: block;
    position: absolute;
    z-index: 1;
    height: auto;
    pointer-events: none;
    left: -31px;
    width: 23%;
    top: 22%;
  }

  .hiw-grid--extra .card,
  .hiw-grid.mob-visible .hiw-card {
    position: relative;
    z-index: 1;
  }

}

.ios .review-card::before {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: #fff;
}
