/* =====================================================
   Батя VPS — лендинг
   Шрифт: Onest (Google Fonts), запасной — системный
   ===================================================== */

:root {
  --orange: #F4581C;
  --orange-dark: #DE4A10;
  --orange-soft: #FDEBDF;
  --orange-soft-2: #FFF3EA;
  --bg: #F8F4EF;
  --card: #FFFFFF;
  --line: #EFE6DB;
  --dark: #1F1F22;
  --text: #2A2A2E;
  --muted: #8B8B90;
  --footer: #17181A;
  --blue: #2F80ED;
  --red: #EB5757;
  --star: #FFB400;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 10px 30px rgba(31, 31, 34, .07);
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Onest", "Manrope", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 860px; }

.section { padding: 88px 0 0; scroll-margin-top: 80px; }

.section__title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--dark);
  text-align: center;
}

.section__subtitle {
  text-align: center;
  color: var(--muted);
  margin-top: 10px;
}

.section__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  margin-top: 26px;
}

.icon-lock { flex: none; }

.accent { color: var(--orange); }

/* ---------- Кнопки ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  padding: 15px 26px;
  border-radius: 14px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}

.btn--lg { padding: 18px 32px; font-size: 16px; border-radius: 16px; }

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 22px rgba(244, 88, 28, .35);
}
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn--outline {
  border-color: #EAD9CB;
  color: var(--dark);
  background: #fff;
}
.btn--outline:hover { border-color: var(--orange); color: var(--orange); }

.btn--white {
  background: #fff;
  color: var(--orange);
}
.btn--white:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(0, 0, 0, .15); }

.btn--ghost {
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
}
.btn--ghost:hover { background: rgba(255, 255, 255, .12); }

/* ---------- Логотип ---------- */

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.logo__badge {
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  padding: 3px 8px 4px;
  border-radius: 8px;
  line-height: 1;
}

.logo__badge--sm { font-size: 11px; padding: 2px 6px 3px; border-radius: 6px; }

.logo--light { color: #fff; }

/* ---------- Шапка ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 244, 239, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow .25s ease;
}
.header.is-scrolled { box-shadow: 0 6px 24px rgba(31, 31, 34, .08); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 74px;
}

.nav {
  display: flex;
  gap: 26px;
  margin: 0 auto;
}

.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: color .2s;
}
.nav__link:hover { color: var(--orange); }

.header__cta { padding: 12px 22px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.burger span {
  width: 22px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero { padding-top: 40px; }

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero__title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.025em;
  color: var(--dark);
}

.hero__text {
  margin-top: 20px;
  font-size: 17px;
  color: #5A5A60;
  max-width: 470px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero__points {
  display: flex;
  gap: 22px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.hero__point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #55555B;
}

.dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.dot--blue { background: var(--blue); }
.dot--red { background: var(--red); }
.dot--orange { background: var(--orange); }

.hero__note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
}

/* Телефон */

.hero__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 520px;
  padding-bottom: 8px;
}

.phone {
  position: relative;
  width: 252px;
  transform: translateX(-52px);
  background: #1C1C1E;
  border-radius: 44px;
  padding: 11px;
  box-shadow: 0 30px 60px rgba(31, 31, 34, .22);
  z-index: 2;
}

.phone--shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 34px;
}

.phone__notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 22px;
  background: #1C1C1E;
  border-radius: 12px;
  z-index: 3;
}

.phone__screen {
  background: #FCFAF7;
  border-radius: 34px;
  padding: 14px 14px 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 496px;
}

.phone__status {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: var(--dark);
  padding: 2px 6px 10px;
}
.phone__status-icons { letter-spacing: 2px; font-size: 9px; }

.phone__logo {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #F0EAE2;
}

.phone__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4px 10px;
  font-size: 12.5px;
  font-weight: 600;
}
.phone__row--muted { color: #6E6E73; }

.phone__toggle {
  width: 34px;
  height: 20px;
  background: #34C759;
  border-radius: 12px;
  position: relative;
  display: inline-block;
}
.phone__toggle-knob {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
}

.phone__card {
  background: #fff;
  border: 1px solid #F0EAE2;
  border-radius: 18px;
  padding: 16px 14px;
  text-align: center;
  margin-top: 4px;
}

.phone__conn { font-size: 13px; font-weight: 700; color: var(--dark); }
.phone__conn-sub { font-size: 10.5px; color: var(--muted); margin-top: 2px; }

.phone__power {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 0;
  margin: 18px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 25%, #FF7A3D, var(--orange) 70%);
  box-shadow: 0 10px 24px rgba(244, 88, 28, .45), 0 0 0 8px var(--orange-soft-2);
  cursor: pointer;
}

.phone__meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #F4EFE8;
  padding-top: 10px;
  text-align: left;
}
.phone__meta > div { display: flex; flex-direction: column; gap: 1px; }
.phone__meta-right { text-align: right; }
.phone__meta-label { font-size: 9.5px; color: var(--muted); }
.phone__meta-value { font-size: 11.5px; font-weight: 700; color: var(--dark); }

.phone__select {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid #F0EAE2;
  border-radius: 14px;
  padding: 10px 12px;
  margin-top: 10px;
  font-size: 11.5px;
}
.phone__select-label { color: var(--muted); }
.phone__select-value {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--dark);
}

.flag-de {
  width: 16px;
  height: 11px;
  border-radius: 2.5px;
  background: linear-gradient(180deg, #26262B 33%, #E0332C 33% 66%, #F6C700 66%);
  display: inline-block;
}

.phone__tabbar {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding: 14px 6px 4px;
  font-size: 9px;
  font-weight: 600;
  color: #A5A5AA;
}
.phone__tab--active { color: var(--orange); }

/* Маскот */

.hero__mascot {
  position: absolute;
  bottom: 8px;
  right: -8px;
  width: 330px;
  z-index: 3;
  filter: drop-shadow(0 18px 30px rgba(31, 31, 34, .18));
  pointer-events: none;
}

/* ---------- Платформы ---------- */

.platforms {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.platforms--hero { margin-top: 56px; }
.platforms--devices { margin-top: 40px; }

.platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 10px 16px;
  width: 132px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
  transition: transform .2s, box-shadow .2s;
}
.platform:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.platform__icon {
  width: 34px;
  height: 34px;
  display: inline-block;
  background-color: var(--dark);
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.platform__icon--apple { --icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.7 12.9c0-2 1.6-3 1.7-3-1-1.4-2.4-1.6-2.9-1.6-1.2-.1-2.4.7-3 .7-.6 0-1.6-.7-2.6-.7-1.3 0-2.6.8-3.3 2-1.4 2.4-.4 6 1 8 .7 1 1.5 2.1 2.5 2 1-.1 1.4-.6 2.6-.6s1.6.6 2.6.6c1.1 0 1.8-1 2.4-2 .8-1.1 1.1-2.2 1.1-2.3 0 0-2.1-.8-2.1-3.1ZM14.7 6.6c.5-.7.9-1.6.8-2.6-.8 0-1.8.6-2.3 1.2-.5.6-1 1.6-.8 2.5.9.1 1.8-.4 2.3-1.1Z"/></svg>'); }

.platform__icon--android { --icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.2 8.5h9.6c.5 0 .9.4.9.9v6.4c0 .7-.6 1.3-1.3 1.3h-.5v2.6a1.2 1.2 0 1 1-2.4 0v-2.6h-3v2.6a1.2 1.2 0 1 1-2.4 0v-2.6h-.5c-.7 0-1.3-.6-1.3-1.3V9.4c0-.5.4-.9.9-.9Zm-3 .8c.7 0 1.2.5 1.2 1.2v4.3a1.2 1.2 0 1 1-2.4 0v-4.3c0-.7.5-1.2 1.2-1.2Zm15.6 0c.7 0 1.2.5 1.2 1.2v4.3a1.2 1.2 0 1 1-2.4 0v-4.3c0-.7.5-1.2 1.2-1.2ZM8.9 3.9l-1-1.6c-.1-.2.2-.4.3-.2l1 1.6a6.3 6.3 0 0 1 5.4 0l1-1.6c.2-.2.5 0 .4.2l-1 1.6a5.6 5.6 0 0 1 2.8 3.8H6.2a5.6 5.6 0 0 1 2.7-3.8Zm1 2a.6.6 0 1 0 0-1.2.6.6 0 0 0 0 1.2Zm4.4 0a.6.6 0 1 0 0-1.2.6.6 0 0 0 0 1.2Z"/></svg>'); }

.platform__icon--windows { --icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5.5 10.5 4.4v7.1H3V5.5Zm0 13 7.5 1.1v-7H3v5.9Zm8.5 1.2 9.5 1.3V12.6h-9.5v7.1Zm0-15.4v7.2H21V3L11.5 4.3Z"/></svg>'); }

.platform__icon--macos { --icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 5.8C4 4.8 4.8 4 5.8 4h12.4c1 0 1.8.8 1.8 1.8v9.4c0 1-.8 1.8-1.8 1.8H5.8c-1 0-1.8-.8-1.8-1.8V5.8Zm1.8 0v9.4h12.4V5.8H5.8ZM2.5 19.2h19c.3 0 .5.2.5.5 0 .7-.6 1.3-1.3 1.3H3.3c-.7 0-1.3-.6-1.3-1.3 0-.3.2-.5.5-.5Z"/></svg>'); }

.platform__icon--tv { --icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.5 6.8c0-1 .8-1.8 1.8-1.8h13.4c1 0 1.8.8 1.8 1.8v9.1c0 1-.8 1.8-1.8 1.8H5.3c-1 0-1.8-.8-1.8-1.8V6.8Zm1.8 0v9.1h13.4V6.8H5.3ZM8 20.2c0-.4.3-.7.7-.7h6.6a.7.7 0 1 1 0 1.4H8.7a.7.7 0 0 1-.7-.7Z"/></svg>'); }

.platform__icon--appletv { --icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 7.2C3 6 4 5 5.2 5h13.6C20 5 21 6 21 7.2v7.6c0 1.2-1 2.2-2.2 2.2H5.2C4 17 3 16 3 14.8V7.2ZM7.6 20.1c0-.4.3-.7.7-.7h7.4a.7.7 0 1 1 0 1.4H8.3a.7.7 0 0 1-.7-.7Zm2-9.9c.3-.4.8-.7 1.2-.7 0 .5-.2 1-.5 1.3-.3.4-.7.7-1.2.6 0-.4.2-.9.5-1.2Zm1.9 1.4c.4 0 1.2-.4 1.7.4-.6.4-.9.9-.8 1.7 0 .8.5 1.3 1 1.5-.2.6-.8 1.6-1.4 1.6-.5 0-.7-.3-1.3-.3-.6 0-.8.3-1.3.3-.6 0-1.4-1.2-1.6-2.1-.3-1.2 0-2.4.9-3 .4-.2.9-.4 1.3-.4.5 0 .9.3 1.5.3Z"/></svg>'); }

.platform__icon--router { --icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.5 13.5h15c1 0 1.9.9 1.9 1.9v2.2c0 1-.9 1.9-1.9 1.9h-15c-1 0-1.9-.9-1.9-1.9v-2.2c0-1 .9-1.9 1.9-1.9Zm.6 1.8v2.4h1.8v-2.4H5.1Zm3.2 0v2.4h1.8v-2.4H8.3Zm9.2-10.9.9-.9a6.6 6.6 0 0 0-9.3 0l.9.9c2.1-2 5.4-2 7.5 0Zm-1.7 1.7.9-.9a4.2 4.2 0 0 0-5.9 0l.9.9a3 3 0 0 1 4.1 0Zm-2.6 6.5h1.2V8.2h-1.2v4.4Z"/></svg>'); }

/* ---------- Преимущества ---------- */

.features__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.feature__icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--orange-soft-2);
  color: var(--orange);
  margin-bottom: 14px;
}
.feature__icon svg { width: 27px; height: 27px; }

.feature__title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.feature__text {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.45;
}

/* ---------- Тарифы ---------- */

.tariffs__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 44px;
  align-items: stretch;
}

.tariff {
  position: relative;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 16px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.tariff:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.tariff--featured {
  border-color: var(--orange);
  box-shadow: 0 14px 34px rgba(244, 88, 28, .16);
}

.tariff__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 999px;
  white-space: nowrap;
}

.tariff__badge--solid { background: var(--orange); color: #fff; }

.tariff__period { font-size: 18px; font-weight: 700; color: var(--dark); }

.tariff__price {
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--dark);
  margin-top: 8px;
}

.tariff__hint { font-size: 13px; color: var(--muted); margin-top: 3px; }

.tariff__list {
  margin: 20px 0 22px;
  text-align: left;
  display: grid;
  gap: 9px;
  flex: 1;
}

.tariff__list li {
  position: relative;
  padding-left: 26px;
  font-size: 13.5px;
  color: #4E4E54;
}

.tariff__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange-soft-2) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="m6.5 12.5 3.5 3.5 7.5-8" stroke="%23F4581C" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>') center / 10px no-repeat;
}

.tariff__btn { width: 100%; }

/* ---------- Как подключить ---------- */

.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
  position: relative;
}

.step { position: relative; text-align: left; }

/* пунктирные стрелки между шагами */
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 110px;
  right: -40px;
  width: 32px;
  height: 2px;
  border-top: 2px dashed #E7B896;
}
.step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 106px;
  right: -44px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #E7B896;
  border-right: 2px solid #E7B896;
  transform: rotate(45deg);
  z-index: 1;
}

.step__num {
  position: absolute;
  top: -14px;
  left: -10px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(244, 88, 28, .35);
}

.step__pic {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.step__mock {
  background: #FCFAF7;
  border: 1px solid #F0E9E0;
  border-radius: 16px;
  padding: 18px;
  width: 78%;
  box-shadow: 0 12px 26px rgba(31, 31, 34, .07);
}

.step__input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid #EAE2D8;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 12px;
  color: var(--muted);
}
.step__check { color: #34C759; font-weight: 800; }

.step__email {
  font-size: 11px;
  color: var(--dark);
  background: #fff;
  border: 1px solid #EAE2D8;
  border-radius: 10px;
  padding: 8px 12px;
  margin-top: 8px;
}

.step__paybtn {
  margin-top: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  text-align: center;
  border-radius: 10px;
  padding: 10px;
}

.step__mock--apps { display: flex; flex-direction: column; align-items: center; gap: 14px; }

.step__oses { display: flex; gap: 14px; }
.step__oses .platform__icon { width: 30px; height: 30px; background-color: #55555B; }

.step__download {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(244, 88, 28, .35);
}

.step__mock--connect { text-align: center; }

.step__connlabel { font-size: 12px; font-weight: 700; color: var(--dark); }

.step__connbtn {
  width: 62px;
  height: 62px;
  margin: 12px auto;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #FF7A3D, var(--orange) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(244, 88, 28, .4), 0 0 0 7px var(--orange-soft-2);
}

.step__connsub { font-size: 11px; color: var(--muted); }

.step__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 20px;
  line-height: 1.3;
}

.step__text { font-size: 14px; color: var(--muted); margin-top: 8px; }

/* ---------- Отзывы ---------- */

.reviews__rating { font-weight: 600; color: #5A5A60; }
.star { color: var(--star); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.review {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.review__head { display: flex; align-items: center; gap: 12px; }

.review__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD6BC, var(--orange-soft));
  object-fit: cover;
  flex: none;
}

.review__who { flex: 1; min-width: 0; }
.review__name { font-size: 14.5px; font-weight: 700; color: var(--dark); }
.review__date { font-size: 12px; color: var(--muted); }
.review__stars { color: var(--star); font-size: 13px; letter-spacing: 1.5px; }

.review__text { font-size: 14px; color: #4E4E54; margin-top: 14px; }

/* Плашка сторов */

.stores {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.stores__item {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 20px;
  min-width: 250px;
  transition: transform .2s, box-shadow .2s;
}
a.stores__item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.stores__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.stores__icon svg { width: 27px; height: 27px; }

.stores__icon--appstore { background: linear-gradient(135deg, #2FA7FF, #0D6EFD); color: #fff; }
.stores__icon--gplay { background: #17181A; }

.stores__info { display: flex; flex-direction: column; gap: 1px; }
.stores__name { font-size: 13.5px; font-weight: 700; color: var(--dark); }
.stores__cat { font-size: 11.5px; color: var(--muted); }
.stores__rate { font-size: 12px; color: #5A5A60; }
.stores__rate b { color: var(--dark); }

.stores__item--count {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.stores__downloads { font-size: 17px; font-weight: 800; color: var(--dark); }

/* ---------- FAQ ---------- */

.faq__list { margin-top: 36px; display: grid; gap: 10px; }

.faq__item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq__q {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq__q::-webkit-details-marker { display: none; }

.faq__emoji { font-size: 17px; }

.faq__arrow {
  margin-left: auto;
  width: 9px;
  height: 9px;
  border-right: 2.5px solid #B9B9BE;
  border-bottom: 2.5px solid #B9B9BE;
  transform: rotate(45deg);
  transition: transform .25s;
  flex: none;
}
.faq__item[open] .faq__arrow { transform: rotate(225deg); }

.faq__a {
  padding: 0 22px 20px 51px;
  font-size: 14.5px;
  color: #55555B;
}
.faq__a a { color: var(--orange); font-weight: 600; }

/* ---------- CTA ---------- */

.cta { padding: 88px 0 0; }

.cta__box {
  position: relative;
  background: linear-gradient(120deg, #FF7A36, var(--orange) 55%, #E64E12);
  border-radius: 30px;
  padding: 58px 60px;
  overflow: hidden;
  color: #fff;
}

.cta__content { position: relative; z-index: 2; max-width: 55%; }

.cta__title {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.cta__text { margin-top: 14px; font-size: 16px; opacity: .92; }

.cta__actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.cta__mascot {
  position: absolute;
  right: 40px;
  bottom: 0;
  width: 280px;
  z-index: 1;
}

.cta__shield {
  position: absolute;
  right: -30px;
  top: -34px;
  width: 210px;
  height: 210px;
  opacity: .9;
  z-index: 0;
}

/* ---------- Подвал ---------- */

.footer {
  background: var(--footer);
  color: #C9C9CE;
  margin-top: 96px;
  padding: 56px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer__desc { font-size: 14px; margin-top: 16px; color: #9A9AA0; }

.footer__tg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 9px 16px;
  border-radius: 12px;
  transition: background .2s;
}
.footer__tg:hover { background: rgba(255, 255, 255, .16); }

.footer__col { display: flex; flex-direction: column; gap: 11px; }

.footer__heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #77777D;
  margin-bottom: 4px;
}

.footer__col a { font-size: 14px; color: #C9C9CE; transition: color .2s; }
.footer__col a:hover { color: var(--orange); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 44px;
  padding: 22px 0 26px;
  font-size: 13px;
  color: #77777D;
}

/* =====================================================
   Адаптив
   ===================================================== */

@media (max-width: 1100px) {
  .features__grid { grid-template-columns: repeat(3, 1fr); }
  .tariffs__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__mascot { width: 260px; right: -4px; }
  .phone { transform: translateX(-30px); }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: flex; margin-left: auto; }
  .header__cta { margin-left: auto; }
  .burger { margin-left: 0; }

  .nav.is-open {
    display: flex;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 18px 24px 24px;
    gap: 18px;
    box-shadow: 0 18px 30px rgba(31, 31, 34, .12);
  }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { min-height: 0; margin-top: 12px; }
  .phone { transform: none; }
  .hero__mascot { width: 210px; right: 4%; bottom: 8px; }

  .how__grid { grid-template-columns: 1fr; gap: 34px; max-width: 460px; margin-left: auto; margin-right: auto; }
  .step:not(:last-child)::after, .step:not(:last-child)::before { display: none; }

  .reviews__grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }

  .cta__content { max-width: 100%; }
  .cta__mascot { position: static; width: 220px; margin: 26px auto -58px; display: block; }
  .cta__box { padding: 44px 30px 0; text-align: center; }
  .cta__actions { justify-content: center; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding-top: 64px; }
  .header__cta { display: none; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .tariffs__grid { grid-template-columns: 1fr; }
  .platform { width: calc(50% - 8px); }
  .stores__item { width: 100%; }
  .hero__actions .btn { width: 100%; }
  .cta__actions .btn { width: 100%; }
  .faq__a { padding-left: 22px; }
}

/* =====================================================
   Доработки: тарифы ₽/мес, доверие, оплата, анимации
   ===================================================== */

/* Тарифы: цена в месяц + итого */

.tariff__per {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 2px;
}

.tariff__total {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  min-height: 34px;
}
.tariff__total b { color: var(--dark); font-weight: 700; }
.tariff__total s { color: #B9B9BE; margin-left: 4px; }

/* Платёжные значки */

.pay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.pay__badge {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 800;
  font-style: italic;
  color: #55555B;
  letter-spacing: .02em;
}

.pay__text { font-size: 13.5px; color: var(--muted); margin-left: 6px; }

/* Плашки доверия в hero */

.trust {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.trust__pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #4E4E54;
  box-shadow: 0 4px 14px rgba(31, 31, 34, .05);
}

.trust__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34C759;
  box-shadow: 0 0 0 3px rgba(52, 199, 89, .18);
}

/* Летающие элементы */

.hero { position: relative; overflow: visible; }

.float-chip {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(31, 31, 34, .10);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  animation: floaty 6s ease-in-out infinite alternate;
}
.float-chip svg { width: 22px; height: 22px; }

.float-chip--1 { top: 6%; left: -4%; animation-delay: 0s; }
.float-chip--2 { top: 40%; right: -6%; animation-delay: -2s; }
.float-chip--3 { bottom: 8%; left: 2%; animation-delay: -4s; }

@keyframes floaty {
  from { transform: translateY(-7px) rotate(-3deg); }
  to   { transform: translateY(9px) rotate(3deg); }
}

/* Градиентные блобы */

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .45;
  pointer-events: none;
  z-index: 0;
  animation: blob-drift 14s ease-in-out infinite alternate;
}

.blob--1 { width: 420px; height: 420px; top: -80px; right: 4%; background: radial-gradient(circle, #FFD9C2, transparent 70%); }
.blob--2 { width: 340px; height: 340px; bottom: -40px; left: -6%; background: radial-gradient(circle, #CFE2FF, transparent 70%); animation-delay: -7s; }
.blob--3 { width: 460px; height: 460px; top: 10%; left: 50%; margin-left: -230px; background: radial-gradient(circle, #FFE3D1, transparent 70%); }

@keyframes blob-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(24px, 18px) scale(1.06); }
}

.tariffs { position: relative; }
.tariffs .container { position: relative; z-index: 1; }
.hero .container { position: relative; z-index: 1; }

/* Пульс главной кнопки hero */

.hero__actions .btn--primary { animation: cta-pulse 2.6s ease-out infinite; }

@keyframes cta-pulse {
  0%   { box-shadow: 0 8px 22px rgba(244, 88, 28, .35), 0 0 0 0 rgba(244, 88, 28, .35); }
  55%  { box-shadow: 0 8px 22px rgba(244, 88, 28, .35), 0 0 0 14px rgba(244, 88, 28, 0); }
  100% { box-shadow: 0 8px 22px rgba(244, 88, 28, .35), 0 0 0 0 rgba(244, 88, 28, 0); }
}

/* Появление при скролле */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Sticky CTA на мобиле */

.sticky-cta {
  display: none;
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 90;
  background: var(--orange);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(244, 88, 28, .4);
  transform: translateY(120%);
  transition: transform .3s ease;
}
.sticky-cta.is-visible { transform: none; }

@media (max-width: 640px) {
  .sticky-cta { display: block; }
  .float-chip--1 { left: 2%; }
  .float-chip--2 { right: 2%; }
}

/* Спидометр — сравнение скоростей */

.speed__duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.speed__panel {
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  text-align: center;
}

.speed__panel--plain {
  background: #F5F5F5;
  border: 1px solid #E6E6E6;
}
.speed__panel--plain .speed__panel-title { color: #6E6E73; }
.speed__panel--plain .speed__value { color: #6E6E73; }

.speed__panel--batya {
  background: var(--card);
  border: 1.5px solid var(--orange);
  box-shadow: 0 14px 34px rgba(244, 88, 28, .14);
}

.speed__panel-title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.speed__panel-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.speed__live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34C759;
  animation: live-blink 1.6s ease-in-out infinite;
}

@keyframes live-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(52, 199, 89, .5); }
  50% { opacity: .5; box-shadow: 0 0 0 5px rgba(52, 199, 89, 0); }
}

.speed__gauge {
  max-width: 280px;
  margin: 20px auto 0;
  text-align: center;
}

.gauge--plain .gauge__track { stroke: #E4E4E4; }
.gauge--plain .gauge__fill { stroke: #9A9AA0; }
.gauge--plain .gauge__needle { stroke: #55555B; }
.gauge--plain .gauge__hub { fill: #55555B; }
.gauge--plain .gauge__tick { fill: #ABABB0; }

.gauge { width: 100%; display: block; }

.gauge__track {
  stroke: #F0E8DE;
  stroke-width: 18;
}

.gauge__fill {
  stroke: var(--red);
  stroke-width: 18;
  stroke-dasharray: 377;
  stroke-dashoffset: 366;
  transition: stroke-dashoffset .9s cubic-bezier(.4, 0, .2, 1), stroke .5s;
}
.gauge__fill.zone-mid { stroke: #F2B01E; }
.gauge__fill.zone-high { stroke: #34C759; }

.gauge__needle-g {
  transform-origin: 150px 150px;
  transform: rotate(5deg);
  transition: transform .9s cubic-bezier(.34, 1.3, .5, 1);
}
.gauge__needle { stroke: var(--dark); stroke-width: 4.5; stroke-linecap: round; }
.gauge__hub { fill: var(--dark); }
.gauge__hub-dot { fill: #fff; }

.gauge__tick { font-size: 12px; font-weight: 700; fill: var(--muted); }

.speed__value {
  margin-top: 2px;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--dark);
}
.speed__unit { font-size: 15px; font-weight: 700; color: var(--muted); margin-left: 6px; }

.speed__caption { font-size: 13px; color: var(--muted); margin-top: 2px; min-height: 18px; }

.speed__facts {
  margin-top: 18px;
  display: grid;
  gap: 8px;
  text-align: left;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.speed__facts li {
  position: relative;
  padding-left: 26px;
  font-size: 13.5px;
  color: #6E6E73;
}

.speed__facts li::before {
  content: "✕";
  position: absolute;
  left: 2px;
  top: 0;
  font-size: 12px;
  font-weight: 800;
  color: #ABABB0;
}

.speed__facts--good li { color: #3E3E44; }
.speed__facts--good li::before {
  content: "✓";
  color: #1E9E4B;
}

.speed__disclaimer { text-align: center; font-size: 12px; color: #B9B9BE; margin-top: 14px; }

@media (max-width: 760px) {
  .speed__duo { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .speed__panel { padding: 20px 16px 18px; }
}

/* Тариф-триал в сетке */

.tariff--trial { border-color: #F2C9AF; background: #FFFDFB; }

/* Модалка сбора почты */

.modal { position: fixed; inset: 0; z-index: 200; }
.modal[hidden] { display: none; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 20, 17, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: modal-fade .25s ease;
}

.modal__card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 420px);
  background: var(--card);
  border-radius: 24px;
  padding: 74px 30px 26px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(23, 20, 17, .35);
  animation: modal-pop .3s cubic-bezier(.34, 1.4, .5, 1);
}

@keyframes modal-fade { from { opacity: 0; } }
@keyframes modal-pop { from { opacity: 0; transform: translate(-50%, -46%) scale(.94); } }

.modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #F4EFE8;
  color: #77777D;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s;
}
.modal__close:hover { background: #EAE2D8; }

.modal__mascot {
  position: absolute;
  top: -78px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  filter: drop-shadow(0 12px 22px rgba(31, 31, 34, .22));
  pointer-events: none;
}

.modal__title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--dark);
}

.modal__text { font-size: 14.5px; color: #55555B; margin-top: 8px; }

.modal__form { margin-top: 18px; display: grid; gap: 10px; }

.modal__input {
  font-family: inherit;
  font-size: 16px;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  background: #FCFAF7;
  color: var(--dark);
  outline: none;
  text-align: center;
  transition: border-color .2s, background .2s;
}
.modal__input:focus { border-color: var(--orange); background: #fff; }
.modal__input.is-invalid { border-color: var(--red); }

.modal__error { font-size: 12.5px; color: var(--red); }

.modal__submit { width: 100%; }

.modal__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .modal__card {
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    border-radius: 24px 24px 0 0;
    padding-bottom: max(26px, env(safe-area-inset-bottom));
  }
  @keyframes modal-pop { from { opacity: 0; transform: translateX(-50%) translateY(30px); } }
  .modal__mascot { width: 120px; top: -62px; }
}

/* Уважение к reduced motion */

@media (prefers-reduced-motion: reduce) {
  .float-chip, .blob, .hero__actions .btn--primary { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
