/* ТелеРадар — палитра как у панели (Vuexy / theme.js) */
:root {
  --primary: #7367f0;
  --primary-dark: #675dd8;
  --bg: #f8f7fa;
  --surface: #ffffff;
  --text: #2f2b3d;
  --text-muted: rgba(47, 43, 61, 0.68);
  --success: #28c76f;
  --warning: #ff9f43;
  --info: #00bad1;
  --border: rgba(47, 43, 61, 0.12);
  --shadow: 0 0.25rem 1rem rgba(47, 43, 61, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  /* запас под якоря, если JS отключён (со скриптом anchors.js основной расчёт — по высоте шапки) */
  --anchor-offset: clamp(6.5rem, 18vh, 14rem);
}

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

html {
  scroll-behavior: smooth;
  /* --anchor-pad выставляет anchors.js по реальной высоте шапки */
  scroll-padding-top: var(--anchor-pad, var(--anchor-offset));
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  scroll-padding-top: var(--anchor-pad, var(--anchor-offset));
}

/* Якорь: запас под шапку; у заголовков — дубль для фокуса/скролла к h2 (anchors.js целится в h1/h2) */
section[id].container {
  scroll-margin-top: var(--anchor-pad, var(--anchor-offset));
}

section[id].container > h1,
section[id].container > h2,
section[id].container .request__box > h2:first-of-type {
  scroll-margin-top: var(--anchor-pad, var(--anchor-offset));
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.85rem 0;
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

.site-header__cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}


.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand:hover {
  text-decoration: none;
  color: var(--primary);
}

.brand__logo {
  width: 34px;
  height: 24px;
  color: var(--primary);
}

.nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.nav a:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(115, 103, 240, 0.35);
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Hero */
.hero {
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 80%;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(115, 103, 240, 0.18), transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
  }
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.hero__lead {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 36ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero__bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.hero__bullets li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}

/* Выделенный сервер / изоляция */
.isolation {
  padding: 3rem 0 2rem;
}

.isolation h2 {
  margin: 0 0 0.75rem;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
}

.isolation__lead {
  margin: 0 auto 1.5rem;
  max-width: 640px;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.isolation__list {
  margin: 0 auto 1.5rem;
  padding: 0;
  list-style: none;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.isolation__list .isolation-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.isolation-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--primary) 14%, transparent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.isolation-item__icon .ti {
  font-size: 1.5rem;
  line-height: 1;
}

.isolation-item__body {
  flex: 1;
  min-width: 0;
}

.isolation-item__body strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.02rem;
}

.isolation__cta {
  margin: 0 auto 1rem;
  max-width: 560px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.isolation__cta-link {
  margin: 0;
  text-align: center;
}

/* Заявка на ЛК */
.request {
  padding: 2rem 0 3rem;
}

.request__box {
  max-width: 560px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 2rem;
  box-shadow: var(--shadow);
}

.request h2 {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.request__sub {
  margin: 0 0 1.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.request__sub a {
  font-weight: 600;
}

.request-form__row {
  margin-bottom: 1rem;
}

.request-form__row--2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 520px) {
  .request-form__row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.request-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.request-form__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
}

.request-form__req {
  color: var(--error, #ff4c51);
}

.request-form input,
.request-form textarea {
  font-family: inherit;
  font-size: 0.9375rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
}

.request-form input:focus,
.request-form textarea:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--primary) 55%, var(--border));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 18%, transparent);
}

.request-form textarea {
  resize: vertical;
  min-height: 100px;
}

.request-form__note {
  margin: 0 0 1.25rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.request-form__submit {
  width: 100%;
}

/* Benefits */
.benefits {
  padding: 3rem 0;
}

.benefits h2 {
  text-align: center;
  margin: 0 0 0.5rem;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.benefits__sub {
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: 520px;
  color: var(--text-muted);
}

.benefits__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .benefits__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card__icon .ti {
  font-size: 1.4rem;
  line-height: 1;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Demo + макет панели (Vuexy vertical nav, как в admin-ui) */
.demo {
  padding: 3rem 0 4rem;
}

.demo h2 {
  margin: 0 0 0.5rem;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
}

.demo__sub {
  text-align: center;
  color: var(--text-muted);
  margin: 0 auto 2rem;
  max-width: 620px;
}

/* Внешняя рамка превью (как «окно» над страницей лендинга) */
.panel-preview {
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow:
    0 4px 16px rgba(47, 43, 61, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  overflow: hidden;
  max-width: 960px;
  margin-inline: auto;
  background: var(--surface);
}

@media (min-width: 960px) {
  .panel-preview--hero {
    transform: scale(0.94);
    transform-origin: top center;
  }
}

.panel-preview--hero .tr-layout {
  min-height: 360px;
}

/* layout-wrapper + vertical nav (260px, surface) */
.tr-layout {
  display: flex;
  align-items: stretch;
  min-height: 420px;
  font-size: 0.9375rem;
  line-height: 1.375rem;
}

@media (max-width: 767px) {
  .tr-layout {
    flex-direction: column;
    min-height: 0;
  }

  .tr-vertical-nav {
    flex: none;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .tr-nav-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    padding: 0.5rem 0.75rem 0.75rem;
  }

  .tr-nav-section {
    width: 100%;
    margin: 0.25rem 0 0.25rem;
  }

  .tr-nav-items > li:not(.tr-nav-section) {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 140px;
    padding: 0;
  }

  .tr-nav-link {
    margin-block-end: 0;
    min-height: 2.75rem;
    align-items: center;
  }

  .tr-nav-link__sub {
    display: none;
  }

  .panel-preview--hero .tr-nav-link__sub {
    display: none;
  }

  .tr-navbar {
    margin: 0.75rem 1rem 0;
  }

  .tr-page {
    padding: 0.75rem 1rem 1.25rem;
  }
}

.tr-vertical-nav {
  flex: 0 0 260px;
  width: 260px;
  max-width: 100%;
  background: var(--surface);
  color: var(--text-muted);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.tr-nav-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 54px;
  padding: 1.25rem 0.75rem 1rem 0.75rem;
  margin-inline: 0.5rem;
  flex-shrink: 0;
}

.tr-nav-header__logo {
  display: flex;
  color: var(--primary);
  line-height: 0;
  flex-shrink: 0;
}

.tr-nav-header__title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: normal;
  color: var(--text);
}

.tr-nav-items {
  list-style: none;
  margin: 0;
  padding: 0 0 1rem;
  flex: 1;
  overflow-y: auto;
}

.tr-nav-section {
  margin: 0.5rem 0.75rem 0.375rem;
  padding-inline: 0.75rem;
  font-size: 0.75rem;
  line-height: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: rgba(47, 43, 61, 0.38);
}

.tr-nav-items > li:not(.tr-nav-section) {
  margin: 0;
  padding: 0 0.75rem;
}

/* Пункт меню: как %vertical-nav-item-interactive + подпись (см. VerticalNavLink) */
.tr-nav-link {
  display: flex;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  margin-block-end: 0.375rem;
  padding: 0.5rem 0.75rem;
  border: none;
  border-radius: 0.375rem;
  background: transparent;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  color: var(--text-muted);
  transition:
    background 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}

.tr-nav-link:hover:not(.is-active):not(.tr-nav-link--active) {
  color: var(--text);
  background: rgba(47, 43, 61, 0.06);
}

.tr-nav-link__icon {
  flex-shrink: 0;
  font-size: 1.375rem;
  line-height: 1.5rem;
  margin-inline-end: 0.5rem;
  color: rgba(47, 43, 61, 0.68);
}

.tr-nav-link__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
  min-width: 0;
}

.tr-nav-link__title {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.25rem;
  color: inherit;
}

.tr-nav-link__sub {
  font-size: 0.8125rem;
  line-height: 1.15rem;
  color: rgba(47, 43, 61, 0.55);
  white-space: normal;
}

/* Активный пункт: template/placeholders/_nav.scss %nav-link-active */
.tr-nav-link.is-active,
.tr-nav-link.tr-nav-link--active {
  background: linear-gradient(270deg, rgba(115, 103, 240, 0.7) 0%, rgb(115, 103, 240) 100%) !important;
  box-shadow: 0 2px 6px rgba(115, 103, 240, 0.3);
  color: #fff;
}

.tr-nav-link.is-active .tr-nav-link__icon,
.tr-nav-link.tr-nav-link--active .tr-nav-link__icon {
  color: #fff !important;
}

.tr-nav-link.is-active .tr-nav-link__title,
.tr-nav-link.tr-nav-link--active .tr-nav-link__title {
  color: #fff;
  font-weight: 600;
}

.tr-nav-link.is-active .tr-nav-link__sub,
.tr-nav-link.tr-nav-link--active .tr-nav-link__sub {
  color: rgba(255, 255, 255, 0.82);
}

/* Правая колонка: фон страницы + плавающий navbar */
.tr-layout-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.tr-navbar {
  flex-shrink: 0;
  margin: 1rem 1.5rem 0;
  position: relative;
  z-index: 2;
}

.tr-navbar--blur {
  isolation: isolate;
}

.tr-navbar--blur::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -0.5rem -0.25rem auto;
  height: calc(54px + 1.25rem);
  border-radius: 6px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(248, 247, 250, 0.75) 44%, rgba(248, 247, 250, 0.4) 73%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  mask-image: linear-gradient(black, black 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(black, black 55%, transparent 100%);
}

.tr-navbar__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 54px;
  padding-inline: 1.2rem;
  background: var(--surface);
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(47, 43, 61, 0.14);
}

.tr-navbar__grow {
  flex: 1;
}

.tr-navbar__icon {
  font-size: 1.35rem;
  line-height: 1;
}

.tr-navbar__icon--muted {
  color: rgba(47, 43, 61, 0.55);
}

.tr-navbar__select {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  max-width: 220px;
  min-width: 160px;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  font-size: 0.8125rem;
}

.tr-navbar__select-label {
  display: none;
}

@media (min-width: 480px) {
  .tr-navbar__select-label {
    display: inline;
    color: rgba(47, 43, 61, 0.55);
    font-size: 0.75rem;
    margin-right: 0.25rem;
  }
}

.tr-navbar__select-value {
  flex: 1;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tr-navbar__select-caret {
  font-size: 1rem;
  color: rgba(47, 43, 61, 0.45);
}

.tr-navbar__avatar {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: rgba(115, 103, 240, 0.12);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tr-page {
  flex: 1;
  padding: 1rem 1.5rem 1.5rem;
}

/* VCard-подобная карточка контента */
.tr-card {
  background: var(--surface);
  border-radius: 10px;
  padding: 1.25rem 1.35rem 1.35rem;
  box-shadow: 0 2px 10px rgba(47, 43, 61, 0.08);
  border: 1px solid rgba(47, 43, 61, 0.06);
}

.tr-card__title {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: normal;
  color: var(--text);
}

.demo-panel {
  display: none;
  animation: fadeIn 0.25s ease;
}

.demo-panel.is-visible {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.kpi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
}

.kpi__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.kpi__value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
}

.kpi__value--ok {
  color: var(--success) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
}

.kpi__hint {
  font-size: 0.72rem;
  color: var(--success);
  margin-top: 0.2rem;
}

.fake-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

.fake-table th,
.fake-table td {
  padding: 0.55rem 0.65rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.fake-table th {
  background: #eaeaec;
  font-weight: 600;
  font-size: 0.72rem;
}

.fake-table tr:last-child td {
  border-bottom: none;
}

.chip {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
}

.chip--ok {
  background: color-mix(in srgb, var(--success) 18%, transparent);
  color: #1e8e4a;
}

.chip--lead {
  background: color-mix(in srgb, var(--primary) 16%, transparent);
  color: var(--primary-dark);
}

.chip--scan {
  background: color-mix(in srgb, var(--info) 18%, transparent);
  color: #008fa3;
}

.progress-bar {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.progress-bar__fill {
  height: 100%;
  width: 62%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 4px;
}

.demo-hint {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Steps */
.steps {
  padding: 3rem 0;
}

.steps h2 {
  text-align: center;
  margin: 0 0 2rem;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.steps__list {
  display: grid;
  gap: 1rem;
  counter-reset: step;
  max-width: 720px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* CTA band */
.cta-band {
  padding: 3rem 0 4rem;
}

.cta-band__inner {
  background: linear-gradient(135deg, var(--primary) 0%, #5b4fcf 50%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 1rem 2rem rgba(115, 103, 240, 0.35);
}

.cta-band__inner h2 {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-band__inner p {
  margin: 0 0 1.25rem;
  opacity: 0.92;
  max-width: 480px;
  margin-inline: auto;
}

.btn--on-primary {
  background: #fff;
  color: var(--primary);
}

.btn--on-primary:hover {
  background: #f0eefc;
}

/* Демо: «уведомления Telegram» о лидах (ПК, ≥1024px) */
.tg-toasts {
  position: fixed;
  z-index: 45;
  right: 1.25rem;
  bottom: 1.25rem;
  left: auto;
  top: auto;
  width: min(22rem, calc(100vw - 2.5rem));
  max-height: min(70vh, 28rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  gap: 0.65rem;
  pointer-events: none;
}

@media (max-width: 1023px) {
  .tg-toasts {
    display: none !important;
  }
}

.tg-toast {
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
  padding: 0.7rem 0.85rem 0.7rem 0;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(30, 30, 32, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.07);
  transform: translateX(115%) scale(0.97);
  opacity: 0;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease;
}

.tg-toast--in {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.tg-toast--out {
  transform: translateX(120%) scale(0.96);
  opacity: 0;
  transition:
    transform 0.38s ease-in,
    opacity 0.32s ease;
}

.tg-toast__accent {
  flex: 0 0 4px;
  align-self: stretch;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    hsl(var(--toast-hue, 210), 72%, 58%),
    hsl(var(--toast-hue, 210), 62%, 42%)
  );
}

.tg-toast__avatar {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(
    145deg,
    hsl(var(--toast-hue, 210), 58%, 50%),
    hsl(var(--toast-hue, 210), 62%, 36%)
  );
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.tg-toast__body {
  min-width: 0;
  flex: 1;
  padding-right: 0.15rem;
}

.tg-toast__app {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 0.12rem;
}

.tg-toast__title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.tg-toast__text {
  font-size: 0.8125rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.76);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.tg-toast__badge {
  margin-top: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #8fd99a;
  letter-spacing: 0.02em;
}

@media (prefers-reduced-motion: reduce) {
  .tg-toast {
    transition: none;
  }

  .tg-toast--in,
  .tg-toast--out {
    transform: none;
    opacity: 1;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.site-footer a {
  color: var(--text);
  font-weight: 600;
}
