/* Превью главной v2 — тёмный GPT-макет */

.hp-preview {
  overflow-x: clip;
  max-width: 100%;
  --hp-dark-bg: #06060f;
  --hp-dark-surface: rgba(18, 16, 38, 0.72);
  --hp-dark-border: rgba(139, 92, 246, 0.22);
  --hp-glow-purple: rgba(124, 58, 237, 0.45);
  --hp-glow-blue: rgba(59, 130, 246, 0.35);
  --hp-text: #f1f5f9;
  --hp-text-muted: #94a3b8;
  --hp-accent-gradient: linear-gradient(135deg, #7c3aed 0%, #6366f1 45%, #3b82f6 100%);
  --hp-light-base: #ffffff;
  --hp-hero-bottom-radius: 56px;
  --hp-card-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 24px rgba(15, 23, 42, 0.06);
  --hp-card-shadow-strong:
    0 1px 2px rgba(15, 23, 42, 0.05),
    0 12px 28px rgba(15, 23, 42, 0.08);
  /* один сплошной белый фон + светло-сиреневые свечения слева/справа */
  background-color: #fff;
  background-image:
    radial-gradient(ellipse 38% 8% at 100% 7%, rgba(196, 181, 253, 0.22) 0%, transparent 72%),
    radial-gradient(ellipse 32% 7% at 0% 16%, rgba(221, 214, 254, 0.2) 0%, transparent 72%),
    radial-gradient(ellipse 36% 7.5% at 100% 30%, rgba(196, 181, 253, 0.16) 0%, transparent 74%),
    radial-gradient(ellipse 30% 7% at 0% 42%, rgba(216, 180, 254, 0.14) 0%, transparent 74%),
    radial-gradient(ellipse 36% 7.5% at 100% 55%, rgba(196, 181, 253, 0.14) 0%, transparent 74%),
    radial-gradient(ellipse 30% 7% at 0% 68%, rgba(221, 214, 254, 0.12) 0%, transparent 74%),
    radial-gradient(ellipse 36% 7.5% at 100% 82%, rgba(196, 181, 253, 0.12) 0%, transparent 74%),
    radial-gradient(ellipse 28% 6% at 0% 94%, rgba(216, 180, 254, 0.1) 0%, transparent 74%);
  background-repeat: no-repeat;
  color: var(--hp-text);
}

body.site-body:has(.hp-preview) {
  overflow-x: clip;
  background: var(--hp-light-base);
}

/* —— Header на превью: поверх hero прозрачная, при скролле — белая —— */
body.site-body:has(.hp-preview) .site-header {
  position: sticky;
  top: 0;
  margin-bottom: -74px;
  z-index: 200;
  background: transparent !important;
  box-shadow: none !important;
}

/* При скролле: белая панель чуть шире контейнера (+30px с каждой стороны) */
body.site-body:has(.hp-preview) .site-header.is-scrolled {
  background: transparent !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none !important;
}

body.site-body:has(.hp-preview) .site-header__inner {
  background: transparent !important;
  box-shadow: none !important;
  transition:
    background-color 0.2s ease,
    border-radius 0.2s ease,
    box-shadow 0.2s ease,
    width 0.2s ease,
    padding 0.2s ease;
}

body.site-body:has(.hp-preview) .site-header.is-scrolled .site-header__inner {
  /* фон выходит на 30px за край контейнера; контент — по прежнему краю */
  width: min(
    calc(100% - (var(--site-offset) * 2) + 60px),
    calc(var(--site-container) + 60px)
  );
  padding-inline: 30px;
  background: #fff !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 0 0 28px 28px;
  box-shadow:
    0 1px 0 rgba(15, 23, 42, 0.04),
    0 8px 16px rgba(15, 23, 42, 0.06),
    0 18px 40px rgba(49, 22, 192, 0.12) !important;
}

@media (max-width: 1320px) {
  /* На узких экранах — на всю ширину, скругление у самой шапки */
  body.site-body:has(.hp-preview) .site-header.is-scrolled {
    width: 100%;
    background: #fff !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 0 0 30px 30px !important;
    overflow: hidden;
    box-shadow:
      0 1px 0 rgba(15, 23, 42, 0.04),
      0 8px 16px rgba(15, 23, 42, 0.06),
      0 18px 40px rgba(49, 22, 192, 0.12) !important;
  }

  body.site-body:has(.hp-preview) .site-header.is-scrolled .site-header__inner {
    width: auto;
    max-width: 100%;
    padding-inline: var(--site-offset);
    box-sizing: border-box;
    background: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    box-shadow: none;
  }
}

body.site-body:has(.hp-preview) .site-header__nav a {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 15px;
  font-weight: 600;
}

body.site-body:has(.hp-preview) .site-header.is-scrolled .site-header__nav a {
  color: #0f172a !important;
}

body.site-body:has(.hp-preview) .site-header__nav a:hover {
  color: #fff !important;
}

body.site-body:has(.hp-preview) .site-header.is-scrolled .site-header__nav a:hover {
  color: #7c3aed !important;
}

body.site-body:has(.hp-preview) .site-header__actions {
  gap: 10px;
}

/* Общие отступы кнопок шапки на превью */
body.site-body:has(.hp-preview) .site-header__actions .site-btn,
body.site-body:has(.hp-preview) .site-header__logout-form .site-btn {
  padding-left: 32px;
  padding-right: 32px;
}

body.site-body:has(.hp-preview) .site-btn--login {
  min-height: 44px;
  padding: 0 32px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: #fff !important;
  font-weight: 700;
}

body.site-body:has(.hp-preview) .site-btn--register {
  min-height: 44px;
  padding: 0 32px;
  border-radius: 12px;
  border: none !important;
  background: linear-gradient(90deg, #8b5cf6 0%, #6366f1 52%, #4f46e5 100%) !important;
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

body.site-body:has(.hp-preview) .site-btn--cabinet {
  min-height: 44px;
  padding: 0 32px;
  gap: 8px;
  border-radius: 12px;
  border: none !important;
  background: linear-gradient(90deg, #8b5cf6 0%, #6366f1 48%, #4f46e5 100%) !important;
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.38);
}

body.site-body:has(.hp-preview) .site-btn--cabinet .site-btn__lock,
body.site-body:has(.hp-preview) .site-btn--login .site-btn__lock,
body.site-body:has(.hp-preview) .site-btn--logout .site-btn__logout-ico {
  width: 15px;
  height: 15px;
}

/* «Выйти»: прозрачный фон + однотонная рамка (градиент border без заливки ненадёжен) */
body.site-body:has(.hp-preview) .site-header__actions .site-btn--logout,
body.site-body:has(.hp-preview) .site-header__logout-form .site-btn--logout,
body.site-body:has(.hp-preview) .site-header.is-scrolled .site-btn--logout,
body.site-body:has(.hp-preview) .site-mobile-panel .site-btn--logout,
body.site-body:has(.hp-preview) .site-btn--logout {
  min-height: 44px;
  padding: 0 32px !important;
  border-radius: 12px !important;
  border: 1.5px solid #a78bfa !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  opacity: 1;
  color: #fff !important;
  font-weight: 700;
}

body.site-body:has(.hp-preview) .site-btn--logout .site-btn__label {
  min-height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent !important;
  background-image: none !important;
  color: inherit !important;
  font-weight: 700;
  box-sizing: border-box;
}

body.site-body:has(.hp-preview) .site-btn--logout:hover {
  opacity: 1;
  background: rgba(167, 139, 250, 0.1) !important;
  border-color: #c4b5fd !important;
}

body.site-body:has(.hp-preview) .site-btn--logout:hover .site-btn__label {
  background: transparent !important;
  background-image: none !important;
}

body.site-body:has(.hp-preview) .site-header__logout-form .site-btn {
  border-radius: 12px;
}

/* Мобильное меню на превью — те же принципы */
body.site-body:has(.hp-preview) .site-mobile-panel__actions .site-btn {
  padding-left: 32px;
  padding-right: 32px;
  border-radius: 12px;
}

body.site-body:has(.hp-preview) .site-mobile-panel__actions .site-btn--logout {
  background: transparent !important;
}

body.site-body:has(.hp-preview) .site-mobile-panel__actions .site-btn--logout .site-btn__label {
  width: auto;
}

body.site-body:has(.hp-preview) .site-header__login-icon {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

body.site-body:has(.hp-preview) .site-header__login-icon img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

body.site-body:has(.hp-preview) .site-header__burger span {
  background: #fff;
}

body.site-body:has(.hp-preview) .site-header.is-scrolled .site-header__burger span {
  background: #0f172a;
}

body.site-body:has(.hp-preview) .site-header.is-scrolled .site-header__login-icon {
  border-color: rgba(15, 23, 42, 0.14);
  background: rgba(15, 23, 42, 0.03);
}

body.site-body:has(.hp-preview) .site-header.is-scrolled .site-header__login-icon img {
  filter: none;
  opacity: 1;
}

body.site-body:has(.hp-preview) .site-header.is-scrolled .site-btn--logout {
  border-color: #7c3aed !important;
  background: transparent !important;
  color: #0f172a !important;
}

body.site-body:has(.hp-preview) .site-header.is-scrolled .site-btn--logout .site-btn__label {
  background: transparent !important;
  background-image: none !important;
  color: inherit !important;
}

body.site-body:has(.hp-preview) .site-header.is-scrolled .site-btn--logout:hover {
  background: rgba(124, 58, 237, 0.06) !important;
  border-color: #6d28d9 !important;
}

body.site-body:has(.hp-preview) .site-header.is-scrolled .site-btn--logout:hover .site-btn__label {
  background: transparent !important;
  background-image: none !important;
}

body.site-body:has(.hp-preview) .site-footer {
  background: transparent;
  border-top: none;
}

body.site-body:has(.hp-preview) .site-footer__panel {
  background: #ffffff;
  box-shadow:
    0 1px 0 rgba(15, 23, 42, 0.04),
    0 8px 16px rgba(15, 23, 42, 0.06),
    0 18px 40px rgba(49, 22, 192, 0.12);
}

body.site-body:has(.hp-preview) .site-footer__contact-label,
body.site-body:has(.hp-preview) .site-footer__account-sub,
body.site-body:has(.hp-preview) .site-footer__legal a,
body.site-body:has(.hp-preview) .site-footer__credit {
  color: #8b8b9c;
}

body.site-body:has(.hp-preview) .site-footer__nav a {
  color: #2a2a3a;
}

body.site-body:has(.hp-preview) .site-footer__contact-email,
body.site-body:has(.hp-preview) .site-footer__contact-phone {
  color: #1a1a2e;
}

body.site-body:has(.hp-preview) .site-footer__account {
  background: #eeecf6;
}

body.site-body:has(.hp-preview) .site-footer__account:hover {
  background: #e6e3f2;
}

body.site-body:has(.hp-preview) .site-footer__account-title {
  color: var(--site-purple);
}

/* —— Единые надзаголовки / заголовки секций на preview —— */
body.site-body:has(.hp-preview) .hp-kicker,
body.site-body:has(.hp-preview) .site-kicker:not(.site-kicker--on-dark) {
  margin: 0 0 12px !important;
  color: #7c3aed !important;
  font-family: var(--site-font-heading) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
}

body.site-body:has(.hp-preview) .site-mobile .site-kicker,
body.site-body:has(.hp-preview) .site-kicker--on-dark {
  color: #ddd6fe !important;
}

body.site-body:has(.hp-preview) .hp-section .site-t-h2,
body.site-body:has(.hp-preview) .hp-light__title,
body.site-body:has(.hp-preview) .hp-vs__head .site-t-h2,
body.site-body:has(.hp-preview) .site-faq__head .site-t-h2,
body.site-body:has(.hp-preview) .site-tariffs__title,
body.site-body:has(.hp-preview) .site-benefits__title,
body.site-body:has(.hp-preview) .site-reviews-wrap .site-t-h2 {
  margin-top: 0 !important;
  font-family: var(--site-font-heading) !important;
  font-size: 40px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  letter-spacing: normal !important;
}

@media (max-width: 768px) {
  body.site-body:has(.hp-preview) .hp-section .site-t-h2,
  body.site-body:has(.hp-preview) .hp-light__title,
  body.site-body:has(.hp-preview) .hp-vs__head .site-t-h2,
  body.site-body:has(.hp-preview) .site-faq__head .site-t-h2,
  body.site-body:has(.hp-preview) .site-tariffs__title,
  body.site-body:has(.hp-preview) .site-benefits__title,
  body.site-body:has(.hp-preview) .site-reviews-wrap .site-t-h2 {
    font-size: 26px !important;
    line-height: 1.22 !important;
  }
}

/* —— Shared —— */
.hp-section {
  padding: 50px 0;
}

.hp-section__head {
  margin: 0 0 28px;
  max-width: 860px;
}

.hp-kicker {
  margin: 0 0 12px;
  color: #7c3aed;
  font-family: var(--site-font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.hp-section__head .site-t-h2 {
  margin: 0;
  color: #0b1220;
  font-family: var(--site-font-heading);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: normal;
}

.hp-section__lead {
  margin: 15px 0 0;
  color: #64748b;
  max-width: 720px;
}

.hp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.hp-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  min-width: 0;
  padding: 20px;
  border-radius: var(--site-radius-sm);
  background: #fff;
  border: 1px solid #ece8ff;
  box-sizing: border-box;
}

.hp-card h3 {
  margin: 0;
  font-family: var(--site-font-heading);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--site-purple-deep);
}

.hp-card > p {
  margin: 0;
  font-family: var(--site-font-heading);
  font-size: 14px;
  line-height: 1.45;
  color: var(--site-text-muted);
}

.hp-card--media .hp-media {
  margin: 0 0 4px;
}

.hp-card--accent {
  background: linear-gradient(180deg, #3116c0 0%, #5a3adf 100%);
  border: none;
  color: #fff;
}

.hp-card--accent h3,
.hp-card--accent p,
.hp-card--accent li {
  color: #fff;
}

.hp-card--center {
  text-align: center;
  align-items: center;
  background: #fff;
  border: 1px solid #e8ecf4;
}

.hp-list {
  margin: 4px 0 0;
  padding-left: 18px;
  font-family: var(--site-font-heading);
  font-size: 13px;
  line-height: 1.55;
  color: var(--site-text-tariff);
}

.hp-badge {
  display: inline-block;
  width: fit-content;
  margin: 0;
  padding: 4px 10px;
  border-radius: var(--site-radius-pill);
  background: rgba(255, 255, 255, 0.18);
  font-family: var(--site-font-heading);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.hp-link {
  margin-top: auto;
  padding-top: 6px;
  font-family: var(--site-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--site-purple);
  text-decoration: none;
}

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

/* —— Media (screenshots / mockups) —— */
.hp-media {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.hp-media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.hp-media--hero {
  filter: drop-shadow(0 18px 40px rgba(12, 4, 48, 0.35));
  padding: 0 12px 12px 0;
}

.hp-media--hero img {
  width: 100%;
  max-width: 100%;
}

.hp-media--card {
  overflow: hidden;
  border-radius: 16px;
  background: #f6f3ff;
  aspect-ratio: 3 / 2;
  min-height: 240px;
  display: flex;
}

.hp-media--card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hp-media--promo {
  background: linear-gradient(135deg, #5b3fd4 0%, #7b5cf0 55%, #9d7cff 100%);
}

.hp-media--promo img {
  object-fit: contain;
  object-position: center;
}

.hp-media--wide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.hp-media--wide img {
  max-width: min(100%, 640px);
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
  filter: drop-shadow(0 16px 32px rgba(40, 20, 90, 0.18));
}

/* —— Hero: тёмный GPT-макет —— */
.hp-hero-block {
  position: relative;
  z-index: 2;
  background:
    radial-gradient(ellipse 95% 70% at 82% -8%, rgba(56, 120, 255, 0.38) 0%, transparent 58%),
    radial-gradient(ellipse 55% 48% at 8% 18%, rgba(99, 102, 241, 0.26) 0%, transparent 52%),
    radial-gradient(ellipse 80% 55% at 45% 108%, rgba(37, 99, 235, 0.18) 0%, transparent 55%),
    linear-gradient(
      168deg,
      #121a36 0%,
      #0e1630 28%,
      #0b1226 58%,
      #090f1e 100%
    );
  border-radius: 0 0 var(--hp-hero-bottom-radius) var(--hp-hero-bottom-radius);
  /* обрезаем низ по скруглению, иначе дочерние блоки заливают уголки */
  overflow: hidden;
}

.hp-hero {
  position: relative;
  z-index: 1;
  color: #fff;
  overflow: visible;
  padding: 128px 0 40px;
}

.hp-hero__glow {
  position: absolute;
  right: 4%;
  top: 8%;
  width: min(52vw, 520px);
  height: 340px;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.24) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(28px);
}

.hp-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  column-gap: 24px;
  align-items: center;
}

.hp-hero__copy,
.hp-hero__visual {
  min-width: 0;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.hp-preview .hp-hero__copy > .hp-eyebrow {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  margin: 0 0 38px;
  padding: 7px 14px 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.22);
  background: linear-gradient(90deg, rgba(88, 48, 168, 0.32) 0%, rgba(67, 56, 170, 0.28) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 6px 18px rgba(76, 29, 149, 0.12);
  box-sizing: border-box;
  backdrop-filter: blur(8px);
}

.hp-eyebrow__text {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--site-font-heading);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.hp-eyebrow__logos {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.hp-eyebrow__logos img {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}

.hp-preview .hp-hero__copy > .hp-hero__title {
  margin: 0;
  color: #fff;
  font-family: var(--site-font-heading);
  font-size: clamp(42px, 4.8vw, 58px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: none;
}

.hp-hero__title-line {
  display: block;
}

.hp-hero__accent {
  display: inline;
  background: linear-gradient(90deg, #c084fc 0%, #818cf8 42%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 1101px) {
  .hp-hero__title-line {
    white-space: nowrap;
  }
}

.hp-preview .hp-hero__copy > .hp-hero__lead {
  margin: 32px 0 0;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--site-font-heading);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.hp-hero__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  max-width: 100%;
}

.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 8px 0 22px;
  border-radius: 12px;
  font-family: var(--site-font-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-sizing: border-box;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.hp-btn:hover {
  transform: translateY(-1px);
}

.hp-btn--primary {
  width: auto;
  min-width: 0;
  min-height: 52px;
  background: linear-gradient(90deg, #8b5cf6 0%, #6366f1 52%, #4f46e5 100%);
  color: #fff;
  box-shadow: 0 12px 36px rgba(99, 102, 241, 0.45);
}

.hp-btn--ghost {
  width: auto;
  min-width: 0;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.hp-trust {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px 16px;
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  max-width: 100%;
  width: max-content;
}

.hp-trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--site-font-heading);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  flex-shrink: 0;
}

.hp-trust__ico {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.hp-trust__ico svg {
  display: block;
  width: 18px;
  height: 18px;
}

.hp-trust__text {
  display: inline-flex;
  align-items: center;
}

.hp-trust__title {
  font-weight: 600;
}

.hp-trust__sub {
  display: none;
}

.hp-btn__label {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  flex: 1;
  min-width: 0;
  text-align: left;
}

.hp-btn__title {
  display: block;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2;
}

.hp-btn__sub {
  display: none;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.78);
}

.hp-strip__title--mob,
.hp-strip__desc--mob {
  display: none;
}

.hp-btn__arrow {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
  color: #4f46e5;
}

.hp-btn__arrow svg {
  width: 18px;
  height: 18px;
}

/* Картинка кабинета: эффекты уже в PNG, чуть выходит за контейнер справа */
.hp-hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  overflow: visible;
  margin-right: -72px;
  width: calc(100% + 72px);
  max-width: none;
}

.hp-hero__mockup-glow {
  display: none;
}

.hp-hero__mockup {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  width: 100%;
  max-width: 820px;
  transform: none;
  filter: none;
}

.hp-hero__mockup::before,
.hp-hero__mockup::after {
  content: none;
  display: none;
}

.hp-hero__mockup img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

/* —— Glow cards (верхний ряд strip) —— */
.hp-glow-card {
  --hp-glow-a: #c084fc;
  --hp-glow-b: #8b5cf6;
  --hp-glow-c: #6366f1;
  --hp-glow-shadow: rgba(139, 92, 246, 0.22);
  border: 1px solid transparent;
  background:
    linear-gradient(165deg, rgba(22, 16, 48, 0.94) 0%, rgba(8, 6, 22, 0.9) 100%) padding-box,
    linear-gradient(135deg, var(--hp-glow-a) 0%, var(--hp-glow-b) 48%, var(--hp-glow-c) 100%) border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 18px color-mix(in srgb, var(--hp-glow-b) 8%, transparent),
    0 0 10px var(--hp-glow-shadow),
    0 0 22px color-mix(in srgb, var(--hp-glow-shadow) 40%, transparent),
    0 8px 20px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.hp-glow-card--violet {
  --hp-glow-a: #e9d5ff;
  --hp-glow-b: #a855f7;
  --hp-glow-c: #7c3aed;
  --hp-glow-shadow: rgba(168, 85, 247, 0.24);
}

.hp-glow-card--indigo {
  --hp-glow-a: #c7d2fe;
  --hp-glow-b: #818cf8;
  --hp-glow-c: #4f46e5;
  --hp-glow-shadow: rgba(99, 102, 241, 0.22);
}

.hp-glow-card--mint {
  --hp-glow-a: #a7f3d0;
  --hp-glow-b: #34d399;
  --hp-glow-c: #059669;
  --hp-glow-shadow: rgba(52, 211, 153, 0.2);
}

.hp-glow-card--orange {
  --hp-glow-a: #fed7aa;
  --hp-glow-b: #fb923c;
  --hp-glow-c: #ea580c;
  --hp-glow-shadow: rgba(251, 146, 60, 0.22);
}

.hp-glow-card--magenta {
  --hp-glow-a: #f5d0fe;
  --hp-glow-b: #e879f9;
  --hp-glow-c: #c026d3;
  --hp-glow-shadow: rgba(232, 121, 249, 0.22);
}

.hp-glow-card--cyan {
  --hp-glow-a: #a5f3fc;
  --hp-glow-b: #22d3ee;
  --hp-glow-c: #0891b2;
  --hp-glow-shadow: rgba(34, 211, 238, 0.2);
}

/* —— Strip: горизонтальные карточки GPT —— */
.hp-strip {
  position: relative;
  z-index: 3;
  margin-top: 28px;
  padding: 0 0 8px;
  background: transparent;
}

.hp-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
  border: none;
  overflow: visible;
}

.hp-strip__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 14px 18px;
  border-radius: 18px;
  box-sizing: border-box;
  min-width: 0;
}

.hp-strip__ico {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.hp-strip__ico img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  object-position: center;
}

.hp-strip__body {
  min-width: 0;
  flex: 1;
}

.hp-strip__item h3 {
  margin: 0 0 6px;
  font-family: var(--site-font-heading);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}

.hp-strip__item p {
  margin: 0;
  font-family: var(--site-font-heading);
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

/* —— Summary bar: одна полоса с разделителями (как в макете) —— */
.hp-summary {
  padding: 18px 0 44px;
}

.hp-summary__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid transparent;
  background:
    linear-gradient(
      180deg,
      rgba(36, 22, 72, 0.95) 0%,
      rgba(18, 12, 42, 0.92) 42%,
      rgba(28, 14, 58, 0.96) 100%
    ) padding-box,
    linear-gradient(
      90deg,
      rgba(192, 132, 252, 0.75) 0%,
      rgba(139, 92, 246, 0.85) 35%,
      rgba(99, 102, 241, 0.7) 70%,
      rgba(217, 70, 239, 0.65) 100%
    ) border-box;
  box-shadow:
    inset 0 1px 0 rgba(233, 213, 255, 0.14),
    inset 0 -18px 36px rgba(124, 58, 237, 0.18),
    0 0 28px rgba(139, 92, 246, 0.22),
    0 12px 32px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.hp-summary__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 0;
  padding: 6px 18px;
  border-radius: 0;
  box-sizing: border-box;
}

.hp-summary__item:not(:last-child) {
  border-right: 1px solid rgba(148, 163, 184, 0.14);
}

.hp-summary__ico {
  display: inline-flex;
  flex-shrink: 0;
  overflow: visible;
}

.hp-summary__ico img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  object-position: center;
}

.hp-summary__line {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--site-font-heading);
  line-height: 1.3;
}

.hp-summary__line strong {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.hp-summary__line span {
  color: #8b95a8;
  font-size: 13px;
  font-weight: 500;
}

/* —— Section tones —— */
.hp-proof { background: var(--hp-dark-bg); padding-top: 10px; padding-bottom: 30px; }
.hp-diff { background: transparent; }

/* —— Diff section: светлая тема —— */
.hp-preview .hp-diff .hp-kicker {
  color: #7c3aed;
}

.hp-preview .hp-diff .hp-section__head .site-t-h2 {
  color: #0b1220;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
}

.hp-preview .hp-diff .hp-section__lead {
  color: #64748b;
}

.hp-preview .hp-diff .hp-card {
  background: #fff;
  border: none;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 24px rgba(49, 22, 192, 0.08);
}

.hp-preview .hp-diff .hp-card h3 {
  color: #0b1220;
}

.hp-preview .hp-diff .hp-card > p {
  color: #64748b;
}

.hp-preview .hp-diff .hp-link {
  color: #7c3aed;
}
.hp-cases { background: transparent; }
.hp-audience { background: transparent; }

/* —— Outcomes zone: Что меняется + Кому подходит —— */
.hp-outcomes-zone {
  position: relative;
  background: transparent;
  overflow: visible;
}

.hp-outcomes-zone .hp-section {
  padding: 72px 0 56px;
}

.hp-outcomes-zone .hp-audience.hp-section {
  padding-top: 24px;
  padding-bottom: 80px;
}

.hp-cases__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
  column-gap: 36px;
  align-items: end;
  margin-bottom: 0;
  overflow: visible;
}

.hp-cases__copy {
  min-width: 0;
  padding-top: 0;
  overflow: visible;
}

.hp-cases__lead {
  margin: 16px 0 0;
  max-width: 360px;
  color: var(--hp-light-muted);
  font-size: 15px;
  line-height: 1.5;
}

body.site-body a.hp-cases__btn,
body.site-body a.hp-cases__btn:hover,
body.site-body a.hp-cases__btn:visited {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  min-height: 54px;
  padding: 0 10px 0 18px;
  border-radius: 14px;
  background: linear-gradient(90deg, #7c3aed 0%, #6366f1 55%, #4f46e5 100%);
  color: #fff;
  font-family: var(--site-font-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}

body.site-body a.hp-cases__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(99, 102, 241, 0.42);
  color: #fff;
}

.hp-cases__btn-ico {
  display: inline-flex;
  color: #fff;
}

.hp-cases__btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-left: 4px;
  border-radius: 10px;
  background: #fff;
  color: #4f46e5;
}

.hp-cases__btn-arrow svg {
  width: 16px;
  height: 16px;
}

.hp-cases__trust {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  width: max-content;
  max-width: none;
}

.hp-cases__trust li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: #64748b;
  font-family: var(--site-font-heading);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

.hp-cases__trust-txt {
  display: block;
  max-width: 9.5em;
}

.hp-cases__trust li:first-child {
  padding-left: 0;
}

.hp-cases__trust li + li {
  border-left: 1px solid #e2e8f0;
}

.hp-cases__trust-ico {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #efeaff;
  color: #7c3aed;
}

.hp-cases__trust-ico svg {
  display: block;
  width: 18px;
  height: 18px;
}

.hp-cases__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.hp-outcome-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: 22px 18px 20px;
  border-radius: 22px;
  background: #fff;
  border: none;
  box-shadow: var(--hp-card-shadow);
  box-sizing: border-box;
}

.hp-outcome-card__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #efeaff;
  color: #7c3aed;
  margin-bottom: 4px;
}

.hp-outcome-card__ico svg {
  display: block;
  width: 32px;
  height: 32px;
}

.hp-outcome-card__tag {
  margin: 0;
  color: #7c3aed;
  font-family: var(--site-font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hp-outcome-card h3 {
  margin: 0;
  color: #0b1220;
  font-family: var(--site-font-heading);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.hp-outcome-card__check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 6px 0 2px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8b5cf6 0%, #6366f1 48%, #4f46e5 100%);
  color: #fff;
  font-family: var(--site-font-heading);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.28);
  box-sizing: border-box;
}

.hp-outcome-card__check svg {
  flex-shrink: 0;
  margin-top: 0;
  color: #fff;
}

.hp-outcome-card__text {
  margin: 4px 0 0;
  color: #64748b;
  font-family: var(--site-font-heading);
  font-size: 13px;
  line-height: 1.45;
}

.hp-audience__head {
  margin: 0 0 28px;
  max-width: 860px;
}

.hp-audience__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.hp-aud-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 26px 22px 24px;
  border-radius: 24px;
  background: #fff;
  border: none;
  box-shadow: var(--hp-card-shadow);
  box-sizing: border-box;
  overflow: hidden;
}

.hp-aud-card__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #efeaff;
  color: #7c3aed;
}

.hp-aud-card h3 {
  margin: 4px 0 0;
  color: #0b1220;
  font-family: var(--site-font-heading);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
}

.hp-aud-card__lead {
  margin: 0;
  color: #64748b;
  font-family: var(--site-font-heading);
  font-size: 14px;
  line-height: 1.45;
}

.hp-aud-card__list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hp-aud-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #334155;
  font-family: var(--site-font-heading);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.hp-aud-card__list svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: #7c3aed;
}

.hp-aud-card--featured {
  padding: 30px 26px 56px;
  background: linear-gradient(165deg, #6366f1 0%, #4f46e5 42%, #4338ca 100%);
  border: none;
  color: #fff;
  box-shadow:
    0 16px 40px rgba(79, 70, 229, 0.35),
    0 4px 14px rgba(67, 56, 202, 0.2);
}

.hp-aud-card--featured h3 {
  color: #fff;
}

.hp-aud-card--featured .hp-aud-card__lead {
  color: rgba(255, 255, 255, 0.86);
}

.hp-aud-card--featured .hp-aud-card__list {
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hp-aud-card--featured .hp-aud-card__list li {
  color: rgba(255, 255, 255, 0.95);
}

.hp-aud-card--featured .hp-aud-card__list svg {
  color: #fff;
}

.hp-aud-card__badge {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 4px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-family: var(--site-font-heading);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.hp-aud-card__chart {
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 132px;
  height: 72px;
  display: block;
  pointer-events: none;
  opacity: 0.28;
  color: #fff;
}

.hp-aud-card__chart svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hp-product,
.hp-how,
.hp-price-examples,
.hp-vs,
.hp-proof,
.hp-mid-cta {
  background: transparent;
}

.hp-price-examples {
  padding-bottom: 20px;
}

/* —— Light zone (Знакомо + Сравнение) —— */
.hp-light-zone {
  position: relative;
  z-index: 1;
  /* полностью под скругление hero, иначе в углах виден белый фон */
  margin-top: calc(var(--hp-hero-bottom-radius) * -1);
  padding-top: calc(var(--hp-hero-bottom-radius) * 1);
  background: transparent;
  overflow: visible;
}

.hp-pains.hp-light,
.hp-compare.hp-light {
  background: transparent;
}

.hp-light-zone .hp-section {
  padding: 64px 0 56px;
}

.hp-light-zone .hp-compare.hp-section {
  padding-top: 24px;
  padding-bottom: 72px;
}

/* —— Light sections (GPT mockup) —— */
.hp-preview .hp-light {
  --hp-light-purple: #7c3aed;
  --hp-light-purple-mid: #8b5cf6;
  --hp-light-purple-soft: #efeaff;
  --hp-light-text: #0b1220;
  --hp-light-muted: #64748b;
  --hp-light-card: #ffffff;
  color: var(--hp-light-text);
}

.hp-preview .hp-light .hp-kicker {
  margin: 0 0 12px;
  color: #7c3aed;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.hp-preview .hp-light__title {
  margin: 0;
  color: #0b1220;
  font-family: var(--site-font-heading);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: normal;
}

.hp-preview .hp-light__accent {
  color: var(--hp-light-purple);
}

.hp-preview .hp-light__lead {
  margin: 16px 0 0;
  color: var(--hp-light-muted);
  font-size: 15px;
  line-height: 1.5;
  max-width: 340px;
}

/* —— Pains: текст слева, 3 карточки справа в ряд —— */
.hp-pains__layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.55fr);
  gap: 28px 40px;
  align-items: center;
}

.hp-pains__head {
  max-width: 380px;
}

.hp-pains__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hp-pain-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  height: 100%;
  padding: 18px 16px 20px;
  border-radius: 20px;
  background: #fff;
  border: none;
  box-shadow: var(--hp-card-shadow);
  box-sizing: border-box;
}

.hp-pain-card__ico {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #efeaff;
  color: var(--hp-light-purple);
  box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.08);
}

.hp-pain-card__ico svg {
  width: 22px;
  height: 22px;
}

.hp-pain-card__body {
  min-width: 0;
  flex: 1;
}

.hp-pain-card__body h3 {
  margin: 0 0 8px;
  font-family: var(--site-font-heading);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--hp-light-text);
}

.hp-pain-card__body p {
  margin: 0;
  font-family: var(--site-font-heading);
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--hp-light-muted);
}

/* —— Compare board —— */
.hp-compare__head {
  max-width: 820px;
  margin-bottom: 36px;
}

.hp-compare__vs,
.hp-compare__brand {
  color: var(--hp-light-purple);
}

.hp-compare-board-scroll {
  width: 100%;
  max-width: 100%;
}

.hp-compare-board {
  display: grid;
  gap: 0;
  border-radius: 24px;
  border: none !important;
  outline: none;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--hp-card-shadow);
}

.hp-compare-board__row {
  display: grid;
  grid-template-columns: minmax(200px, 1.2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.15fr);
  border-bottom: none;
  align-items: stretch;
}

.hp-compare-board__row:last-child {
  border-bottom: none;
}

.hp-compare-board__row--head {
  background: #fafbff;
  border-bottom: none;
}

.hp-compare-board__cell {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 16px 18px;
  font-family: var(--site-font-heading);
  font-size: 15px;
  line-height: 1.4;
  color: var(--hp-light-muted);
  box-sizing: border-box;
}

.hp-compare-board__row:not(:last-child) .hp-compare-board__cell:not(.hp-compare-board__cell--us) {
  border-bottom: 1px solid #eef2f7;
}

.hp-compare-board__row--head .hp-compare-board__cell:not(.hp-compare-board__cell--us) {
  border-bottom: 1px solid #e8ecf4;
}

.hp-compare-board__cell--head {
  font-weight: 800;
  font-size: 15px;
  color: var(--hp-light-text);
}

.hp-compare-board__cell--label {
  font-weight: 700;
  font-size: 15px;
  color: var(--hp-light-text);
}

.hp-compare-board__cell--us {
  position: relative;
  background: #f3efff;
  color: #4c1d95;
  font-weight: 700;
  gap: 12px;
  border: none;
  border-left: none;
  border-bottom: none;
}

.hp-compare-board__row--head .hp-compare-board__cell--us {
  background: #ebe4ff;
  color: var(--hp-light-purple);
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.hp-compare-board__row:last-child .hp-compare-board__cell--us {
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.hp-compare-board__label,
.hp-compare-board__col-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.hp-compare-board__label-ico,
.hp-compare-board__col-ico {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #efeaff;
  color: var(--hp-light-purple);
}

.hp-compare-board__col-ico--us {
  background: rgba(124, 58, 237, 0.16);
}

.hp-compare-board__label-ico svg,
.hp-compare-board__col-ico svg {
  width: 18px;
  height: 18px;
}

.hp-compare-board__check {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--hp-light-purple);
  color: #fff;
}

.hp-compare-board__check svg {
  width: 13px;
  height: 13px;
}

.hp-compare__cta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
}

/* .site-body a:not(.site-btn) { color: inherit } — нужен более сильный селектор */
body.site-body a.hp-compare__btn,
body.site-body a.hp-compare__btn:hover,
body.site-body a.hp-compare__btn:visited {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 8px 0 26px;
  border-radius: 14px;
  background: linear-gradient(90deg, #8b5cf6 0%, #6366f1 52%, #4f46e5 100%);
  color: #fff;
  font-family: var(--site-font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(99, 102, 241, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
  white-space: nowrap;
}

body.site-body a.hp-compare__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(99, 102, 241, 0.48);
  color: #fff;
}

body.site-body a.hp-compare__btn > span:not(.hp-compare__btn-arrow) {
  color: #fff;
}

.hp-compare__btn-arrow {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff;
  color: #4f46e5;
}

.hp-compare__btn-arrow svg {
  width: 18px;
  height: 18px;
}

.hp-compare__note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  max-width: 320px;
  color: var(--hp-light-muted);
  font-family: var(--site-font-heading);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.hp-compare__note-ico {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--hp-light-purple-soft);
  color: var(--hp-light-purple);
}

.hp-compare__note-ico svg {
  width: 18px;
  height: 18px;
}

.hp-preview .hp-card {
  background: #fff;
  border: 1px solid #e8ecf4;
  box-shadow: var(--hp-card-shadow);
}

.hp-preview .hp-card h3 {
  color: #0b1220;
}

.hp-preview .hp-card > p {
  color: #64748b;
}

.hp-preview .hp-kicker,
.hp-preview .site-kicker {
  margin: 0 0 12px;
  color: #7c3aed;
  font-family: var(--site-font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.hp-preview .site-online .site-kicker {
  color: #7c3aed;
}

.hp-preview .site-mobile .site-kicker {
  color: #ddd6fe;
}

.hp-preview .site-candidate__title-wrap {
  max-width: 900px;
  margin: 0 auto 32px;
  gap: 10px;
}

.hp-preview .site-candidate__title-row {
  gap: 14px;
}

.hp-preview .site-candidate .site-kicker {
  text-align: center;
}

.hp-preview .site-faq__badge {
  display: none;
}

/* —— Proof —— */
.hp-proof__label {
  margin: 0 0 16px;
  text-align: center;
  color: var(--site-text-muted);
  font-family: var(--site-font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hp-proof__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 40px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.hp-proof__logos img {
  display: block;
  height: 32px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: none;
  opacity: 0.75;
}

.hp-proof__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 20px;
  border-radius: var(--site-radius-sm);
  background: var(--site-card-bg);
  border: 1px solid #ece8ff;
}

.hp-proof__stats div {
  min-width: 0;
  text-align: center;
}

.hp-proof__stats strong {
  display: block;
  margin: 0 0 4px;
  font-family: var(--site-font-heading);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--site-purple-deep);
}

.hp-proof__stats span {
  font-family: var(--site-font-heading);
  font-size: 13px;
  line-height: 1.35;
  color: var(--site-text-muted);
}

/* —— Compare (legacy table — unused on preview v2) —— */
.hp-compare__wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--site-radius-sm);
  border: 1px solid #ece8ff;
  background: #fff;
}

.hp-compare__table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-family: var(--site-font-heading);
  font-size: 14px;
  line-height: 1.4;
}

.hp-compare__table th,
.hp-compare__table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #ece8ff;
}

.hp-compare__table thead th {
  background: #f6f3ff;
  color: var(--site-purple-deep);
  font-weight: 800;
  font-size: 13px;
}

.hp-compare__table tbody th {
  font-weight: 700;
  color: #2a2440;
  width: 22%;
}

.hp-compare__table tbody td {
  color: var(--site-text-muted);
}

.hp-compare__table .hp-compare__us {
  background: rgba(84, 48, 220, 0.06);
  color: var(--site-purple-deep);
  font-weight: 700;
}

.hp-compare__cta,
.hp-cases__cta,
.hp-vs__cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.hp-compare.hp-light .hp-compare__cta {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
}

.hp-vs__shell {
  width: 100%;
  padding: 48px 0 40px;
  border-radius: 0;
  background: transparent;
}

.hp-vs__head {
  margin-bottom: 28px;
}

.hp-vs__head .hp-kicker {
  margin: 0 0 12px;
  color: #7c3aed;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.hp-vs__head .site-t-h2 {
  margin: 0;
  color: #0b1220;
  font-family: var(--site-font-heading);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  max-width: 720px;
}

.hp-vs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hp-vs__card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 20px;
  border-radius: 22px;
  background: #fff;
  border: none;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 10px 28px rgba(15, 23, 42, 0.06);
}

.hp-vs__ico {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.hp-vs__card-body {
  min-width: 0;
}

.hp-vs__card h3 {
  margin: 0;
  color: #0f172a;
  font-family: var(--site-font-heading);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.hp-vs__card p {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.45;
}

.hp-vs__cta {
  margin-top: 28px;
}

body.site-body a.hp-vs__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 8px 10px 8px 22px;
  border-radius: 14px;
  background: linear-gradient(90deg, #8b5cf6 0%, #6366f1 48%, #4f46e5 100%);
  color: #fff !important;
  font-family: var(--site-font-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

body.site-body a.hp-vs__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(99, 102, 241, 0.42);
  color: #fff !important;
}

.hp-vs__btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff;
  color: #4f46e5;
  flex-shrink: 0;
}

.hp-vs__btn-arrow svg {
  width: 16px;
  height: 16px;
}

.hp-card--case .hp-case__value {
  margin: 0;
  font-family: var(--site-font-heading);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--site-purple);
}

/* —— Sticky mobile CTA —— */
.hp-sticky-cta {
  display: none;
}

.hp-product__row {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  column-gap: 48px;
  align-items: center;
}

.hp-product__copy {
  min-width: 0;
}

.hp-product__lead {
  margin: 16px 0 0;
  max-width: 420px;
  color: var(--hp-light-muted);
  font-size: 15px;
  line-height: 1.5;
}

.hp-product__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hp-product__features li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #334155;
  font-family: var(--site-font-heading);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.hp-product__feat-ico {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #efeaff;
}

.hp-product__feat-ico img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

body.site-body a.hp-product__btn,
body.site-body a.hp-product__btn:hover,
body.site-body a.hp-product__btn:visited {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  min-height: 54px;
  padding: 0 10px 0 22px;
  border-radius: 14px;
  background: linear-gradient(90deg, #7c3aed 0%, #6366f1 55%, #4f46e5 100%);
  color: #fff;
  font-family: var(--site-font-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}

body.site-body a.hp-product__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(99, 102, 241, 0.42);
  color: #fff;
}

.hp-product__btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff;
  color: #4f46e5;
}

.hp-product__btn-arrow svg {
  width: 16px;
  height: 16px;
}

.hp-product__media {
  margin: 0;
  min-width: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.hp-product__media img {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  margin: 0 auto;
  border-radius: 0;
  filter: drop-shadow(0 22px 40px rgba(40, 20, 90, 0.18));
}

.hp-product .site-btn--gradient-pill {
  margin-top: 20px;
  color: #fff;
}

.hp-checklist {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.hp-checklist li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-family: var(--site-font-heading);
  font-size: 15px;
  line-height: 1.4;
  color: #2a2440;
}

.hp-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--site-gradient-brand);
}

.hp-how__head {
  margin: 0 0 32px;
  max-width: 720px;
}

.hp-how__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hp-how__kicker-ico {
  display: inline-flex;
  color: #7c3aed;
}

.hp-how__lead {
  margin: 14px 0 0;
  max-width: 560px;
  color: var(--hp-light-muted);
  font-size: 15px;
  line-height: 1.5;
}

.hp-how__steps {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  max-width: none;
  width: 100%;
}

/* пунктир между номерами шагов */
.hp-how__steps::before {
  content: "";
  position: absolute;
  left: 48px;
  top: 56px;
  bottom: 56px;
  width: 0;
  border-left: 2px dashed #c4b5fd;
  z-index: 0;
  pointer-events: none;
}

.hp-how__steps li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 96px;
  column-gap: 20px;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  padding: 22px 24px 22px 20px;
  border: none;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 24px rgba(49, 22, 192, 0.08);
  box-sizing: border-box;
}

.hp-how__num {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #7c3aed 0%, #6366f1 50%, #4f46e5 100%);
  color: #fff;
  font-family: var(--site-font-heading);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.28);
}

.hp-how__body {
  min-width: 0;
}

.hp-how__steps h3 {
  margin: 0 0 6px;
  font-family: var(--site-font-heading);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  color: #0b1220;
}

.hp-how__steps p {
  margin: 0;
  max-width: 640px;
  font-family: var(--site-font-heading);
  font-size: 15px;
  line-height: 1.45;
  color: #64748b;
}

.hp-how__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 20px;
  background: #f3efff;
  overflow: hidden;
}

.hp-how__ico img {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.hp-how__cta {
  margin-top: 28px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
}

body.site-body a.hp-how__btn,
body.site-body a.hp-how__btn:hover,
body.site-body a.hp-how__btn:visited {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 28px 0 12px;
  border-radius: 14px;
  background: linear-gradient(90deg, #7c3aed 0%, #6366f1 55%, #4f46e5 100%);
  color: #fff;
  font-family: var(--site-font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(99, 102, 241, 0.38);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}

body.site-body a.hp-how__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.45);
  color: #fff;
}

.hp-how__btn-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.hp-how__note {
  margin: 0;
  font-family: var(--site-font-heading);
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  line-height: 1.4;
}

.hp-price-card__value {
  margin: 0;
  font-family: var(--site-font-heading);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--site-purple);
}

.hp-price-board {
  padding: 36px 36px 40px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 32px rgba(15, 23, 42, 0.05);
  box-sizing: border-box;
}

.hp-price-board__head {
  margin: 0 0 28px;
  max-width: 720px;
}

.hp-price-board__lead {
  margin: 14px 0 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.5;
}

.hp-price-board__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hp-price-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  padding: 22px 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-sizing: border-box;
}

.hp-price-item__ico {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #efeaff;
  color: #6d28d9;
}

.hp-price-item__body {
  min-width: 0;
}

.hp-price-item h3 {
  margin: 0;
  color: #6d28d9;
  font-family: var(--site-font-heading);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.hp-price-item__value {
  margin: 6px 0 0;
  color: #0b1220;
  font-family: var(--site-font-heading);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.hp-price-item__desc {
  margin: 8px 0 0;
  color: #64748b;
  font-family: var(--site-font-heading);
  font-size: 13px;
  line-height: 1.4;
}

.hp-mid-cta {
  background: transparent;
  padding-top: 20px;
  padding-bottom: 50px;
}

.hp-mid-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  color: #0b1220;
  border: 1px solid #e8ecf4;
  box-shadow: var(--hp-card-shadow-strong);
  box-sizing: border-box;
}

.hp-mid-cta h2 {
  margin: 0 0 8px;
  font-family: var(--site-font-heading);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
}

.hp-mid-cta p {
  margin: 0;
  font-family: var(--site-font-heading);
  font-size: 15px;
  line-height: 1.4;
  color: #64748b;
  opacity: 1;
}

.hp-mid-cta .site-btn--white-pill,
.hp-mid-cta .site-btn--gradient-pill {
  color: #fff !important;
  font-weight: 700;
  min-height: 52px;
  flex-shrink: 0;
  border: none !important;
  background: linear-gradient(90deg, #8b5cf6 0%, #6366f1 52%, #4f46e5 100%) !important;
  box-shadow: 0 10px 28px rgba(99, 102, 241, 0.35);
}

.hp-case__metric {
  margin: 0;
  color: var(--site-purple-light);
  font-family: var(--site-font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

/* —— Tablet —— */
@media (max-width: 1100px) {
  .hp-hero__grid,
  .hp-product__row,
  .hp-grid-3,
  .hp-proof__stats,
  .hp-vs__grid {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .hp-preview .hp-hero__copy > .hp-hero__title {
    font-size: clamp(34px, 5vw, 44px);
  }

  .hp-preview .hp-hero__copy > .hp-hero__lead {
    margin-top: 20px;
    font-size: 17px;
  }

  .hp-pains__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hp-pains__head {
    max-width: 560px;
  }

  .hp-pains__cards,
  .hp-cases__cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hp-outcome-card__check {
    max-width: 100%;
    white-space: normal;
  }

  .hp-cases__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hp-cases__copy {
    display: flex;
    flex-direction: column;
  }

  .hp-cases__copy > .hp-kicker,
  .hp-cases__copy > .hp-light__title,
  .hp-cases__copy > .hp-cases__lead {
    order: 0;
  }

  .hp-cases__trust {
    order: 1;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    row-gap: 12px;
    margin-top: 20px;
  }

  body.site-body a.hp-cases__btn {
    order: 2;
    margin-top: 18px;
    width: auto;
    max-width: 100%;
    align-self: flex-start;
    justify-content: flex-start;
  }

  .hp-cases__trust li {
    white-space: normal;
  }

  .hp-cases__trust li + li {
    border-left: 0;
    padding-left: 0;
  }

  .hp-audience__grid {
    grid-template-columns: 1fr;
  }

  .hp-product__media {
    display: none !important;
  }

  .hp-compare-board-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    margin: 0 calc(var(--site-offset) * -1);
    padding: 0 var(--site-offset);
    scrollbar-width: thin;
  }

  .hp-compare-board {
    display: grid;
    gap: 0;
    min-width: 620px;
    background: #fff;
    box-shadow: var(--hp-card-shadow);
    overflow: hidden;
    border-radius: 18px;
  }

  .hp-compare-board__row--head {
    display: grid;
    background: #fafbff;
  }

  .hp-compare-board__row {
    display: grid;
    grid-template-columns: minmax(148px, 1.15fr) minmax(120px, 1fr) minmax(120px, 1fr) minmax(148px, 1.2fr);
    gap: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border-bottom: none;
  }

  .hp-compare-board__cell {
    min-height: 52px;
    padding: 12px 12px;
    font-size: 13px;
    line-height: 1.35;
    border: none;
  }

  .hp-compare-board__row:not(:last-child) .hp-compare-board__cell:not(.hp-compare-board__cell--us) {
    border-bottom: 1px solid #eef2f7;
  }

  .hp-compare-board__row--head .hp-compare-board__cell:not(.hp-compare-board__cell--us) {
    border-bottom: 1px solid #e8ecf4;
  }

  .hp-compare-board__cell--head {
    font-size: 12px;
    font-weight: 800;
  }

  .hp-compare-board__cell--label {
    font-size: 13px;
    font-weight: 700;
    padding: 12px;
  }

  .hp-compare-board__row:not(.hp-compare-board__row--head) .hp-compare-board__cell:nth-child(2),
  .hp-compare-board__row:not(.hp-compare-board__row--head) .hp-compare-board__cell:nth-child(3),
  .hp-compare-board__row:not(.hp-compare-board__row--head) .hp-compare-board__cell--us {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin: 0;
    padding: 12px;
    border-radius: 0;
    box-shadow: none;
    font-size: 13px;
    line-height: 1.35;
  }

  .hp-compare-board__row:not(.hp-compare-board__row--head) .hp-compare-board__cell:nth-child(2),
  .hp-compare-board__row:not(.hp-compare-board__row--head) .hp-compare-board__cell:nth-child(3) {
    background: transparent;
    color: var(--hp-light-muted);
    font-weight: 500;
  }

  .hp-compare-board__row:not(.hp-compare-board__row--head) .hp-compare-board__cell--us {
    display: flex;
    background: #f3efff;
    color: #4c1d95;
    font-weight: 700;
  }

  .hp-compare-board__row--head .hp-compare-board__cell--us {
    background: #ebe4ff;
    border-radius: 0;
  }

  .hp-compare-board__row:not(.hp-compare-board__row--head) .hp-compare-board__cell[data-col]::before {
    content: none;
    display: none;
  }

  .hp-compare-board__check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
  }

  .hp-compare-board__check svg {
    width: 11px;
    height: 11px;
  }

  .hp-compare-board__label,
  .hp-compare-board__col-title {
    gap: 8px;
  }

  .hp-compare-board__label-ico,
  .hp-compare-board__col-ico {
    width: 28px;
    height: 28px;
    border-radius: 9px;
  }

  .hp-compare-board__label-ico svg,
  .hp-compare-board__col-ico svg {
    width: 14px;
    height: 14px;
  }

  .hp-hero__visual {
    order: -1;
    justify-content: center;
    padding: 0 0 8px;
    margin-right: 0;
    width: 100%;
  }

  .hp-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hp-summary__grid {
    grid-template-columns: 1fr;
    padding: 14px 16px;
  }

  .hp-summary__item {
    justify-content: flex-start;
    padding: 8px 0;
  }

  .hp-hero__mockup {
    transform: none;
    filter: none;
    max-width: min(100%, 700px);
  }

  .hp-summary__item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    padding-bottom: 12px;
    margin-bottom: 4px;
  }

  body.site-body a.hp-cases__btn,
  body.site-body a.hp-compare__btn,
  body.site-body a.hp-product__btn,
  body.site-body a.hp-vs__btn {
    width: auto;
    max-width: 100%;
    justify-content: flex-start;
  }

  .hp-preview .site-faq__tabs {
    flex-wrap: wrap;
    gap: 8px;
  }

  .hp-preview .site-faq__tab {
    flex: 1 1 auto;
    min-width: min(100%, 200px);
    justify-content: center;
  }
}

/* —— Mobile: уже контейнер (offset 10px на preview) —— */
@media (max-width: 768px) {
  body.site-body:has(.hp-preview) {
    --site-offset: 10px;
  }

  .hp-hero-block {
    --site-offset: 16px;
  }

  .hp-preview {
    --hp-hero-bottom-radius: 24px;
    --hp-mobile-header-h: 56px;
    --hp-eyebrow-gap: 32px;
    /* Единая мобильная шкала */
    --hp-fs-hero: clamp(34px, 10.5vw, 44px);
    --hp-fs-h2: 26px;
    --hp-fs-h3: 16px;
    --hp-fs-lead: 16px;
    --hp-fs-body: 13px;
    --hp-fs-btn: 12px;
    --hp-fs-kicker: 12px;
    --hp-fs-meta: 12px;
  }

  /* —— Типографика: роли —— */
  .hp-kicker,
  .hp-preview .site-kicker,
  .hp-outcome-card__tag {
    font-size: var(--hp-fs-kicker) !important;
  }

  .hp-section__lead,
  .hp-preview .hp-light__lead,
  .hp-product__lead,
  .hp-how__lead,
  .hp-cases__lead,
  .hp-preview .hp-hero__copy > .hp-hero__lead,
  body.site-body:has(.hp-preview) .site-t-lead:not(.site-t-lead-bold),
  body.site-body:has(.hp-preview) .site-mobile__text {
    font-size: var(--hp-fs-lead) !important;
    line-height: 1.45 !important;
  }

  .hp-card h3,
  .hp-outcome-card h3,
  .hp-aud-card h3,
  .hp-vs__card h3,
  .hp-how__steps h3,
  .hp-pain-card h3 {
    font-size: var(--hp-fs-h3) !important;
    line-height: 1.25 !important;
  }

  .hp-card > p,
  .hp-outcome-card__text,
  .hp-outcome-card__check,
  .hp-aud-card__lead,
  .hp-aud-card__list li,
  .hp-vs__card p,
  .hp-how__steps p,
  .hp-product__features li,
  .hp-pain-card p,
  .hp-compare__note,
  .hp-how__note {
    font-size: var(--hp-fs-body) !important;
    line-height: 1.45 !important;
  }

  body.site-body a.hp-cases__btn,
  body.site-body a.hp-compare__btn,
  body.site-body a.hp-product__btn,
  body.site-body a.hp-vs__btn,
  body.site-body a.hp-how__btn,
  .hp-preview .site-faq-cta__btn,
  .hp-preview .site-tariffs-promo__btn,
  .hp-mid-cta .site-btn--white-pill,
  .hp-mid-cta .site-btn--gradient-pill,
  .hp-preview .site-btn--gradient-pill,
  .hp-preview .site-knowledge__cta {
    font-size: var(--hp-fs-btn) !important;
  }

  /* Компактные CTA как «Присоединиться» (кроме кнопок hero) */
  body.site-body:has(.hp-preview) a.hp-cases__btn,
  body.site-body:has(.hp-preview) a.hp-compare__btn,
  body.site-body:has(.hp-preview) a.hp-product__btn,
  body.site-body:has(.hp-preview) a.hp-vs__btn,
  body.site-body:has(.hp-preview) a.hp-how__btn,
  body.site-body:has(.hp-preview) a.site-faq-cta__btn,
  .hp-preview .site-tariffs-promo__btn,
  .hp-preview .site-tariffs-promo__btn.site-btn--white-pill,
  .hp-mid-cta .site-btn--white-pill,
  .hp-mid-cta .site-btn--gradient-pill,
  .hp-how__cta .site-btn--gradient-pill,
  .hp-preview .site-btn--gradient-pill,
  .hp-preview .site-knowledge__cta,
  body.site-body:has(.hp-preview) .hp-sticky-cta__btn {
    width: fit-content !important;
    max-width: 100%;
    min-width: 0 !important;
    min-height: 45px !important;
    height: 45px !important;
    padding: 2px 2px 2px 14px !important;
    gap: 10px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    border-radius: 12px !important;
    box-sizing: border-box;
    align-self: flex-start;
  }

  body.site-body:has(.hp-preview) .hp-cases__btn-arrow,
  body.site-body:has(.hp-preview) .hp-compare__btn-arrow,
  body.site-body:has(.hp-preview) .hp-product__btn-arrow,
  body.site-body:has(.hp-preview) .hp-vs__btn-arrow,
  body.site-body:has(.hp-preview) .hp-how__btn-ico,
  .hp-preview .site-faq-cta__btn-arrow,
  .hp-preview .site-faq-cta__btn .site-btn__icon,
  .hp-preview .site-tariffs-promo__btn .site-btn__icon,
  .hp-preview .site-btn--gradient-pill .site-btn__icon,
  .hp-preview .site-btn--white-pill .site-btn__icon,
  .hp-mid-cta .site-btn__icon {
    width: 41px !important;
    height: 41px !important;
    min-width: 41px !important;
    border-radius: 10px !important;
    flex-shrink: 0;
  }

  body.site-body:has(.hp-preview) .hp-cases__btn-arrow svg,
  body.site-body:has(.hp-preview) .hp-compare__btn-arrow svg,
  body.site-body:has(.hp-preview) .hp-product__btn-arrow svg,
  body.site-body:has(.hp-preview) .hp-vs__btn-arrow svg,
  body.site-body:has(.hp-preview) .hp-how__btn-ico svg,
  .hp-preview .site-btn--gradient-pill .site-btn__icon svg,
  .hp-preview .site-btn--white-pill .site-btn__icon svg {
    width: 16px !important;
    height: 16px !important;
  }

  .hp-section {
    padding: 30px 0 40px;
  }

  .hp-section__head {
    margin-bottom: 15px;
  }

  .hp-section__lead {
    margin-top: 16px;
  }

  .hp-preview .hp-light__lead,
  .hp-preview .hp-cases__lead,
  body.site-body:has(.hp-preview) .site-t-lead:not(.site-t-lead-bold),
  body.site-body:has(.hp-preview) .site-mobile__text {
    margin-top: 18px !important;
  }

  .hp-preview .hp-hero__copy > .hp-hero__lead {
    margin-top: 24px;
  }

  .hp-product__lead,
  .hp-how__lead {
    margin-top: 32px;
  }

  .hp-preview .hp-card {
    gap: 14px;
  }

  .hp-preview .hp-pain-card__body h3 {
    margin-bottom: 10px;
  }

  body.site-body:has(.hp-preview) .site-benefits__item .site-t-benefit-text,
  .hp-preview .site-benefits__item .site-t-benefit-text {
    margin-top: 10px;
  }

  .hp-hero {
    padding: calc(var(--hp-mobile-header-h) + var(--hp-eyebrow-gap)) 0 60px;
  }

  .hp-hero__visual,
  .hp-hero__mockup,
  .hp-hero__mockup-glow {
    display: none !important;
  }

  body.site-body:has(.hp-preview) .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin-bottom: 0;
  }

  body.site-body:has(.hp-preview) .site-header.is-scrolled {
    border-radius: 0 0 24px 24px !important;
    overflow: hidden;
    background: #fff !important;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  body.site-body:has(.hp-preview) .site-header.is-scrolled .site-header__inner {
    padding-inline: 14px;
    border-radius: 0 !important;
  }

  .hp-preview .hp-hero__copy > .hp-eyebrow {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: fit-content;
    max-width: 100%;
    margin-bottom: var(--hp-eyebrow-gap);
    padding: 9px 14px 9px 16px;
    line-height: 1.35;
  }

  .hp-eyebrow__markets {
    display: none;
  }

  .hp-eyebrow__text {
    font-size: 13px;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.88);
  }

  .hp-eyebrow__logos {
    display: inline-flex;
    gap: 6px;
    flex-shrink: 0;
  }

  .hp-eyebrow__logos img {
    width: 21px;
    height: 21px;
  }

  .hp-preview .hp-hero__copy > .hp-hero__title {
    font-size: var(--hp-fs-hero);
    line-height: 1.06;
    letter-spacing: -0.04em;
    margin-top: 0;
    width: 100%;
    max-width: 100%;
  }

  .hp-preview .hp-hero__title-line {
    display: block;
    white-space: nowrap;
    width: 100%;
  }

  .hp-preview .hp-hero__copy > .hp-hero__lead {
    margin-top: 24px;
    max-width: none;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.68) !important;
  }

  .hp-trust {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 32px;
    width: 100%;
  }

  .hp-trust li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    white-space: normal;
  }

  .hp-trust__ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.16);
    border: 1px solid rgba(167, 139, 250, 0.22);
  }

  .hp-trust__ico svg {
    width: 22px;
    height: 22px;
  }

  .hp-trust__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
    padding-top: 2px;
  }

  .hp-trust__title {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
  }

  .hp-trust__sub {
    display: block;
    color: rgba(255, 255, 255, 0.52);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
  }

  .hp-hero__actions {
    margin-top: 34px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }

  .hp-btn {
    width: 100%;
    max-width: none;
    min-height: 54px;
  }

  .hp-btn--primary {
    justify-content: space-between;
    gap: 12px;
    padding: 10px 8px 10px 16px;
    min-height: 58px;
    align-items: center;
  }

  .hp-btn__sub {
    display: block;
    max-width: 100%;
    white-space: normal;
    font-size: 10px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.72);
  }

  .hp-btn__arrow {
    width: 40px;
    height: 40px;
    margin-left: auto;
    flex-shrink: 0;
  }

  .hp-btn--ghost {
    justify-content: center;
    padding: 0 16px;
    text-align: center;
    white-space: normal;
    line-height: 1.25;
  }

  .hp-strip__title--desk,
  .hp-strip__desc--desk {
    display: none;
  }

  .hp-strip__title--mob,
  .hp-strip__desc--mob {
    display: block;
  }

  .hp-strip__grid .hp-strip__item:nth-child(n + 3) {
    display: none;
  }

  .hp-summary {
    display: none !important;
  }

  .hp-strip {
    display: none !important;
  }

  .hp-strip__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hp-strip__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 12px 16px;
  }

  .hp-strip__ico {
    width: 44px;
    height: 44px;
  }

  .hp-strip__ico img {
    width: 44px;
    height: 44px;
  }

  .hp-strip__item h3 {
    margin: 0 0 4px;
    font-size: 13px !important;
    line-height: 1.25 !important;
  }

  .hp-strip__item p {
    font-size: 11px !important;
    line-height: 1.4 !important;
  }

  .hp-cases__cards {
    grid-template-columns: 1fr;
  }

  .hp-outcomes-zone .hp-section {
    padding: 48px 0 40px;
  }

  .hp-outcomes-zone .hp-audience.hp-section {
    padding-top: 8px;
    padding-bottom: 56px;
  }

  body.site-body a.hp-cases__btn {
    width: auto;
    max-width: 100%;
    justify-content: flex-start;
  }

  .hp-cases__trust {
    display: none !important;
  }

  .hp-outcome-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "ico tag"
      "ico title"
      "check check"
      "text text";
    column-gap: 12px;
    row-gap: 2px;
    align-items: center;
  }

  .hp-outcome-card__ico {
    grid-area: ico;
    align-self: center;
    margin-bottom: 0;
  }

  .hp-outcome-card__tag {
    grid-area: tag;
    align-self: end;
    line-height: 1.2;
  }

  .hp-outcome-card h3 {
    grid-area: title;
    align-self: start;
    line-height: 1.2;
  }

  .hp-outcome-card__check {
    grid-area: check;
    margin: 12px 0 0;
    padding: 0;
    width: 100%;
    max-width: none;
    border-radius: 0;
    background: none;
    box-shadow: none;
    color: #4c1d95;
    font-weight: 700;
    gap: 8px;
  }

  .hp-outcome-card__check svg {
    color: #7c3aed;
  }

  .hp-outcome-card__text {
    grid-area: text;
    margin-top: 10px;
  }

  .hp-product__lead,
  .hp-how__lead {
    margin-top: 32px;
  }

  .hp-aud-card:not(.hp-aud-card--featured) {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "ico title"
      "lead lead"
      "list list";
    column-gap: 12px;
    row-gap: 10px;
    align-items: center;
  }

  .hp-aud-card:not(.hp-aud-card--featured) .hp-aud-card__ico {
    grid-area: ico;
    align-self: center;
  }

  .hp-aud-card:not(.hp-aud-card--featured) h3 {
    grid-area: title;
    align-self: center;
    margin: 0;
  }

  .hp-aud-card:not(.hp-aud-card--featured) .hp-aud-card__lead {
    grid-area: lead;
  }

  .hp-aud-card:not(.hp-aud-card--featured) .hp-aud-card__list {
    grid-area: list;
    margin-top: 0;
  }

  .hp-compare__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hp-compare__btn {
    width: auto;
    max-width: 100%;
    justify-content: flex-start;
  }

  .hp-pains__cards {
    grid-template-columns: 1fr;
  }

  .hp-light-zone .hp-section {
    padding: 40px 0 36px;
  }

  .hp-light-zone .hp-compare.hp-section {
    padding-top: 8px;
    padding-bottom: 48px;
  }

  .hp-card {
    padding: 18px;
    border-radius: 20px;
  }

  .hp-how__steps::before {
    display: none;
  }

  .hp-how__steps li {
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 12px;
    padding: 16px;
    border-radius: 20px;
  }

  .hp-how__ico {
    display: none;
  }

  .hp-how__num {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: var(--hp-fs-btn);
  }

  .hp-how__cta {
    margin-top: 24px;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .hp-how__cta .site-btn--gradient-pill,
  body.site-body a.hp-product__btn {
    width: fit-content;
    max-width: 100%;
    justify-content: flex-start;
  }

  body.site-body:has(.hp-preview) a.hp-how__btn {
    justify-content: flex-start !important;
  }

  body.site-body:has(.hp-preview) a.hp-how__btn .hp-how__btn-ico {
    order: 2;
  }

  body.site-body a.hp-how__btn {
    width: fit-content;
    max-width: 100%;
    justify-content: flex-start;
  }

  .hp-how__note {
    text-align: left;
  }

  .hp-mid-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 20px;
  }

  .hp-mid-cta h2 {
    font-size: 18px !important;
    line-height: 1.25 !important;
  }

  .hp-mid-cta .site-btn--white-pill {
    width: fit-content;
    max-width: 100%;
    min-width: 0;
    justify-content: flex-start;
  }

  .hp-price-card__value { font-size: 22px; }

  .hp-price-board {
    padding: 24px 18px 28px;
    border-radius: 22px;
  }

  .hp-price-board__grid {
    grid-template-columns: 1fr;
  }

  .hp-proof__logos {
    gap: 18px 24px;
  }

  .hp-proof__stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hp-compare__table th,
  .hp-compare__table td {
    padding: 12px;
    font-size: 13px;
  }

  .hp-sticky-cta {
    display: none !important;
  }

  .hp-sticky-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: var(--site-container);
    margin: 0 auto;
  }

  .hp-sticky-cta__text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .hp-sticky-cta__text strong {
    font-family: var(--site-font-heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--site-purple-deep);
    line-height: 1.2;
  }

  .hp-sticky-cta__text span {
    font-family: var(--site-font-heading);
    font-size: 12px;
    color: var(--site-text-muted);
    line-height: 1.3;
  }

  .hp-sticky-cta__btn {
    flex-shrink: 0;
    min-height: 44px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .hp-media__cap {
    text-align: left;
  }

  .hp-preview .site-faq-cta {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }

  .hp-preview .site-faq-cta__btn {
    width: auto;
    max-width: 100%;
    justify-content: flex-start;
    align-self: center !important;
  }

  .hp-preview .site-candidate-wrap {
    padding-bottom: 29px;
  }

  .hp-preview .site-tariffs-wrap {
    padding-top: 23px;
  }

  .hp-preview .site-tariffs-promo {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 22px 18px 24px;
    border-radius: 20px;
  }

  .hp-preview .site-tariffs-promo__content {
    max-width: none;
    gap: 0;
  }

  .hp-preview .site-body .site-tariffs-promo__title,
  .hp-preview .site-tariffs-promo__title {
    font-size: 20px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
  }

  .hp-preview .site-body .site-tariffs-promo__offer,
  .hp-preview .site-tariffs-promo__offer {
    order: 2;
    margin: 14px 0 0 !important;
    width: 100% !important;
    max-width: none !important;
    align-self: stretch !important;
    justify-content: center;
    text-align: center;
    padding: 10px 12px;
    font-size: var(--hp-fs-meta);
    font-weight: 700;
    line-height: 1.3;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-sizing: border-box;
  }

  .hp-preview .site-body .site-tariffs-promo__text,
  .hp-preview .site-tariffs-promo__text {
    order: 3;
    margin: 14px 0 0 !important;
    max-width: none;
    font-size: var(--hp-fs-lead);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88) !important;
  }

  .hp-preview .site-tariffs-promo__btn,
  .hp-preview .site-tariffs-promo__btn.site-btn--white-pill {
    order: 4;
    margin-top: 18px;
  }

  .hp-preview .site-tariffs-promo__visual,
  .hp-preview .site-tariffs-promo__icon,
  body.site-body:has(.hp-preview) .site-tariffs-promo__visual,
  body.site-body:has(.hp-preview) .site-tariffs-promo__icon {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }

  .hp-preview .site-online__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hp-preview .site-online__card {
    min-height: 0;
    padding: 16px 16px 11px;
  }

  .hp-preview .site-online__badge {
    min-height: 42px;
    gap: 8px;
    padding: 0 12px;
  }

  .hp-preview .site-online__badge-icon,
  .hp-preview .site-online__badge-icon svg {
    width: 18px;
    height: 18px;
  }

  .hp-preview .site-online__badge-text {
    font-size: 15px !important;
    line-height: 1.2 !important;
  }

  .hp-preview .site-online__value-row {
    margin-top: 12px;
    gap: 8px;
  }

  .hp-preview .site-online__value {
    font-size: 18px !important;
    line-height: 1.2 !important;
  }

  .hp-preview .site-online__trend {
    width: 16px;
    height: 9px;
  }

  .hp-preview .site-online__delta {
    margin-top: 7px;
    font-size: 11px !important;
    line-height: 1.25 !important;
  }

  .hp-preview .site-partners__item {
    flex: 1 1 calc(50% - 10px);
    width: auto;
    max-width: calc(50% - 10px);
    height: 72px;
  }

  .hp-outcome-card {
    padding: 18px 16px;
  }

  .hp-aud-card {
    padding: 22px 18px;
  }
}

@media (max-width: 480px) {
  .hp-preview .hp-hero__copy > .hp-hero__title {
    font-size: clamp(32px, 10vw, 42px);
  }

  .hp-strip__grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hp-strip__item {
    padding: 12px 10px 14px;
  }

  .hp-strip__item h3 {
    font-size: 13px;
  }

  .hp-strip__item p {
    font-size: 11px;
  }

  .hp-compare-board {
    min-width: 580px;
    border-radius: 16px;
  }

  .hp-compare-board__cell {
    min-height: 48px;
    padding: 10px;
    font-size: 12px;
  }

  .hp-compare-board__cell--head {
    font-size: 11px;
  }

  .hp-compare-board__cell--label {
    font-size: 12px;
    padding: 10px;
  }

  .hp-compare-board__row:not(.hp-compare-board__row--head) .hp-compare-board__cell:nth-child(2),
  .hp-compare-board__row:not(.hp-compare-board__row--head) .hp-compare-board__cell:nth-child(3),
  .hp-compare-board__row:not(.hp-compare-board__row--head) .hp-compare-board__cell--us {
    padding: 10px;
    font-size: 12px;
  }

  .hp-compare-board__label-ico,
  .hp-compare-board__col-ico {
    width: 24px;
    height: 24px;
    border-radius: 8px;
  }

  .hp-compare-board__label-ico svg,
  .hp-compare-board__col-ico svg {
    width: 12px;
    height: 12px;
  }

  .hp-preview .site-faq__tab {
    width: 100%;
    min-width: 0;
  }

  .hp-sticky-cta__text span {
    display: none;
  }

  .hp-preview .site-partners__item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* —— Buttons on preview: скругление как у «В кабинет» (12px), не pill —— */
body.site-body:has(.hp-preview) .site-btn--gradient-pill,
body.site-body:has(.hp-preview) .site-btn--white-pill,
body.site-body:has(.hp-preview) .site-btn--how-cta,
body.site-body:has(.hp-preview) .site-btn--connect,
body.site-body:has(.hp-preview) .site-btn--white-outline,
body.site-body:has(.hp-preview) .site-knowledge__cta,
body.site-body:has(.hp-preview) .site-online__join,
body.site-body:has(.hp-preview) .site-tariffs-promo__btn,
body.site-body:has(.hp-preview) .site-faq-cta__btn,
body.site-body:has(.hp-preview) .hp-sticky-cta__btn {
  border-radius: 12px !important;
}

body.site-body:has(.hp-preview) .site-btn--gradient-pill .site-btn__icon,
body.site-body:has(.hp-preview) .site-btn--white-pill .site-btn__icon,
body.site-body:has(.hp-preview) .site-online__join .site-btn__icon {
  border-radius: 10px !important;
}

/* —— Included site sections on preview: без цветных подложек секций —— */
.hp-preview .site-online,
.hp-preview .site-cta-wrap,
.hp-preview .site-faq-cta-wrap,
.hp-preview .site-benefits-wrap,
.hp-preview .site-faq-wrap,
.hp-preview .site-knowledge-wrap,
.hp-preview .site-reviews-wrap,
.hp-preview .site-tariffs-wrap,
.hp-preview .site-candidate-wrap,
.hp-preview .site-mobile {
  background: #fff !important;
  border: none !important;
  box-shadow: none !important;
  color: #0b1220;
}

.hp-preview .site-online__bg {
  display: none !important;
}

.hp-preview .site-online__title,
.hp-preview .site-body .site-online__title {
  color: #0b1220 !important;
}

.hp-preview .site-online__join.site-btn--white-pill {
  color: #0b1220 !important;
  border: none !important;
  background: #fff !important;
  padding: 5px 5px 5px 20px !important;
  justify-content: space-between !important;
}

.hp-preview .site-online__join .site-btn__icon {
  margin-left: auto;
}

.hp-preview .site-online__card {
  box-shadow: var(--hp-card-shadow);
}

.hp-preview .site-mobile__card {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 96px;
  background: var(--site-purple) !important;
  color: #fff;
  border: none !important;
  padding: 32px 48px 32px 56px !important;
  min-height: 0;
  overflow: hidden !important;
  box-shadow:
    0 18px 48px rgba(67, 56, 202, 0.32),
    0 6px 18px rgba(15, 23, 42, 0.12) !important;
}

.hp-preview .site-mobile__visual {
  flex: 0 0 auto;
  width: min(480px, 42%);
  max-width: 480px;
}

.hp-preview .site-mobile__phone {
  position: static !important;
  left: auto !important;
  bottom: auto !important;
  width: 100% !important;
  max-width: none !important;
  height: auto;
  margin: 0 !important;
}

.hp-preview .site-mobile__content {
  flex: 1 1 auto;
  min-width: 0;
}

@media (min-width: 901px) {
  .hp-preview .site-mobile__content {
    padding-left: 32px;
  }
}

.hp-preview .site-body .site-mobile__title,
.hp-preview .site-mobile__title {
  color: #fff !important;
  max-width: none;
}

.hp-preview .site-body .site-mobile__text,
.hp-preview .site-mobile__text {
  color: rgba(255, 255, 255, 0.92) !important;
  max-width: none;
}

@media (max-width: 900px) {
  .hp-preview .site-mobile__card {
    flex-direction: column !important;
    align-items: stretch;
    padding: 24px 20px 0 !important;
    gap: 0;
  }

  .hp-preview .site-mobile__visual {
    order: 10;
    width: calc(100% + 40px);
    max-width: none;
    margin: 20px -20px 0;
  }
}

.hp-preview .site-candidate-wrap {
  background: transparent !important;
  padding: 48px 0 56px;
}

.hp-preview .site-candidate {
  position: relative;
  max-width: 100%;
  padding: 44px 48px 36px;
  border-radius: 36px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  box-sizing: border-box;
}

.hp-preview .site-candidate__title-wrap {
  max-width: 900px;
  margin: 0 auto 32px;
  gap: 14px;
}

.hp-preview .site-candidate__deco--left {
  width: 64px;
  height: auto;
}

.hp-preview .site-candidate__deco--right {
  width: 52px;
  height: auto;
}

.hp-preview .site-candidate__title {
  color: #0b1220 !important;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  line-height: 1.22;
  text-align: center;
}

.hp-preview .site-candidate__accent {
  color: #6d28d9;
}

.hp-preview .site-candidate__panel {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  margin: 0;
  padding: 24px 24px 56px;
  background: var(--site-gradient-brand) !important;
  border: none !important;
  box-shadow:
    0 18px 48px rgba(67, 56, 202, 0.28),
    0 6px 18px rgba(15, 23, 42, 0.1) !important;
  color: #fff;
  border-radius: 28px;
}

.hp-preview .site-candidate__counter {
  top: 20px;
  right: 20px;
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
}

.hp-preview .site-candidate__inner {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 32px;
  align-items: center;
  padding-right: 0;
  padding-bottom: 0;
}

.hp-preview .site-candidate__mock {
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 0;
  aspect-ratio: 497 / 377;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.12),
    0 2px 8px rgba(15, 23, 42, 0.05);
}

.hp-preview .site-candidate__mock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.hp-preview .site-candidate__copy {
  padding: 8px 0 0;
}

.hp-preview .site-candidate__features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hp-preview .site-candidate__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hp-preview .site-candidate__feature-ico {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.hp-preview .site-candidate__feature-title {
  margin: 0;
  color: #fff !important;
  font-family: var(--site-font-heading);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}

.hp-preview .site-candidate__feature-text {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.88) !important;
  font-family: var(--site-font-heading);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.hp-preview .site-candidate__feature-body {
  min-width: 0;
}

.hp-preview .site-candidate__slide-title {
  color: #fff !important;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  line-height: 1.25;
  max-width: 360px;
}

.hp-preview .site-candidate__slide-text {
  margin-top: 14px;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 15px;
  line-height: 1.5;
}

.hp-preview .site-candidate__nav {
  position: absolute;
  right: 20px;
  bottom: 20px;
  gap: 10px;
}

.hp-preview .site-candidate__arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #e2e8f0 !important;
  background: #fff !important;
  color: #5b21b6 !important;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.hp-preview .site-candidate__arrow svg {
  width: 18px;
  height: 18px;
}

.hp-preview .site-candidate__arrow--next {
  border-color: transparent !important;
  background: #6d28d9 !important;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(109, 40, 217, 0.32);
}

.hp-preview .site-candidate__arrow:disabled,
.hp-preview .site-candidate__arrow--prev:disabled {
  border-color: #e5e7eb !important;
  background: #f8fafc !important;
  color: #94a3b8 !important;
  box-shadow: none;
}

.hp-preview .site-candidate__arrow--next:disabled {
  background: #c4b5fd !important;
  color: #fff !important;
  opacity: 0.55;
}

@media (max-width: 900px) {
  .hp-preview .site-candidate {
    padding: 28px 10px 24px;
    border-radius: 24px;
  }

  .hp-preview .site-candidate__title-wrap {
    margin: 0 0 24px;
    max-width: none;
    align-items: flex-start;
  }

  .hp-preview .site-candidate .site-kicker {
    text-align: left;
  }

  .hp-preview .site-candidate__title-row {
    display: block;
    justify-content: flex-start;
  }

  .hp-preview .site-candidate__deco,
  .hp-preview .site-candidate__deco--left,
  .hp-preview .site-candidate__deco--right {
    display: none !important;
  }

  .hp-preview .site-candidate__title {
    text-align: left !important;
    max-width: none;
  }

  .hp-preview .site-candidate__panel {
    padding-bottom: 48px;
  }

  .hp-preview .site-candidate__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hp-preview .site-candidate__mock {
    aspect-ratio: auto;
    min-height: 240px;
  }

  .hp-preview .site-candidate__copy {
    padding-top: 0;
  }

  .hp-preview .site-candidate__nav {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 10px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .hp-preview .site-candidate__arrow {
    width: 36px;
    height: 36px;
  }

  .hp-preview .site-candidate__arrow svg {
    width: 14px;
    height: 14px;
  }
}

.hp-preview .site-tariffs-promo {
  background:
    radial-gradient(circle at 92% 80%, rgba(167, 139, 250, 0.38) 0%, transparent 52%),
    linear-gradient(160deg, #6d28d9 0%, #4f46e5 48%, #4338ca 100%) !important;
  border: none !important;
  box-shadow:
    0 14px 36px rgba(79, 70, 229, 0.28),
    0 4px 14px rgba(67, 56, 202, 0.16);
  color: #fff;
}

.hp-preview .site-body .site-tariffs-promo__title,
.hp-preview .site-tariffs-promo__title {
  color: #fff !important;
}

.hp-preview .site-body .site-tariffs-promo__text,
.hp-preview .site-tariffs-promo__text {
  color: rgba(255, 255, 255, 0.9) !important;
}

.hp-preview .site-body .site-tariffs-promo__offer,
.hp-preview .site-tariffs-promo__offer {
  display: inline-flex !important;
  align-self: flex-start !important;
  width: max-content !important;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff !important;
}

.hp-preview .site-cta-wrap .site-t-h2,
.hp-preview .site-body .site-cta__title {
  color: #0b1220 !important;
}

.hp-preview .site-body .site-faq-cta__title {
  color: #fff !important;
}

.hp-preview .site-faq__shell,
.hp-preview .site-faq__shell.site-section-shell,
body.site-body:has(.hp-preview) .site-faq__shell,
body.site-body:has(.hp-preview) .site-faq__shell.site-section-shell {
  border-radius: 0 !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  padding: 44px 0 44px;
  min-height: 0;
}

.hp-preview .site-faq__item {
  background: #fff !important;
  border: none !important;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 24px rgba(49, 22, 192, 0.08) !important;
}

.hp-preview .site-faq__item.is-open {
  background: #f7f5ff !important;
  border: none !important;
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.04),
    0 12px 28px rgba(49, 22, 192, 0.1) !important;
}

.hp-preview .site-knowledge__card,
.hp-preview .site-reviews__card,
.hp-preview .site-tariffs__card {
  background: #fff !important;
  border: 1px solid #e8ecf4;
  box-shadow: var(--hp-card-shadow);
}

.hp-preview .site-media,
.hp-preview .hp-media--wide,
.hp-preview .hp-media--card {
  border-radius: 20px;
  box-shadow: var(--hp-card-shadow);
}

/* —— Benefits / VS / FAQ: без серых/лавандовых подложек —— */
body.site-body:has(.hp-preview) .site-benefits-wrap,
body.site-body:has(.hp-preview) .site-faq-wrap,
body.site-body:has(.hp-preview) .hp-vs {
  background: #fff !important;
}

.hp-preview .site-reviews-wrap {
  padding: 40px 0 24px !important;
}

.hp-preview .site-benefits-wrap {
  padding: 0;
}

.hp-preview .site-benefits__shell,
body.site-body:has(.hp-preview) .site-benefits__shell {
  border-radius: 0 !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  padding: 16px 0 44px;
  min-height: 0;
}

body.site-body:has(.hp-preview) .hp-vs.hp-section {
  padding: 0 !important;
}

body.site-body:has(.hp-preview) .hp-vs__shell {
  background: transparent !important;
  background-image: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body.site-body:has(.hp-preview) .site-benefits,
.hp-preview .site-benefits {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr) !important;
  justify-content: stretch !important;
  align-items: stretch !important;
  column-gap: 48px !important;
  gap: 0 48px !important;
}

body.site-body:has(.hp-preview) .site-benefits__main,
.hp-preview .site-benefits__main {
  min-width: 0;
  max-width: 560px;
}

body.site-body:has(.hp-preview) .site-benefits__visual,
.hp-preview .site-benefits__visual {
  position: relative !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  align-self: stretch !important;
  width: 100% !important;
  margin: 0 !important;
  margin-top: 0 !important;
  min-height: 100% !important;
  padding: 0 !important;
  box-sizing: border-box;
}

body.site-body:has(.hp-preview) .site-benefits__visual-frame,
.hp-preview .site-benefits__visual-frame {
  position: relative;
  width: min(100%, 400px) !important;
  max-width: 400px;
  margin: 0 auto !important;
  flex-shrink: 0;
}

.hp-preview .site-benefits__visual-shape {
  display: none !important;
}

body.site-body:has(.hp-preview) .site-benefits__photo,
.hp-preview .site-benefits__photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  border-radius: 0;
  box-shadow: none;
}

.hp-preview .site-body .site-benefits__title,
.hp-preview .site-benefits__title {
  max-width: 480px;
  margin-bottom: 48px;
  color: #0f172a !important;
  font-family: var(--site-font-heading);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
}

.hp-preview .site-benefits__title .site-gradient-text {
  background: none;
  -webkit-text-fill-color: #6d28d9;
  color: #6d28d9;
  font-family: inherit;
  font-weight: inherit;
}

.hp-preview .site-benefits__list {
  position: relative;
  gap: 24px;
  padding-left: 0;
}

.hp-preview .site-benefits__list::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: rgba(139, 92, 246, 0.22);
  border-radius: 2px;
  pointer-events: none;
}

.hp-preview .site-benefits__item {
  position: relative;
  z-index: 1;
  gap: 14px;
  max-width: none;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
}

.hp-preview .site-benefits__icon-wrap {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hp-preview .site-benefits__icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.hp-preview .site-benefits__item .site-t-benefit-title,
body.site-body:has(.hp-preview) .site-benefits__item .site-t-benefit-title {
  margin: 0;
  color: #0f172a !important;
  font-family: var(--site-font-heading) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.01em;
}

.hp-preview .site-benefits__item .site-t-benefit-text,
body.site-body:has(.hp-preview) .site-benefits__item .site-t-benefit-text {
  margin-top: 8px;
  max-width: 440px;
  color: #64748b !important;
  font-family: var(--site-font-heading) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
}

body.site-body:has(.hp-preview) .site-benefits__visual img.site-benefits__star,
.hp-preview .site-benefits__star {
  display: block !important;
  position: absolute !important;
  right: 18px !important;
  top: 10% !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 3;
  width: 42px !important;
  height: 42px !important;
  max-width: 42px !important;
  margin: 0 !important;
  border-radius: 12px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(91, 33, 182, 0.28));
}

@media (max-width: 1100px) {
  body.site-body:has(.hp-preview) .site-benefits,
  .hp-preview .site-benefits {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  body.site-body:has(.hp-preview) .site-benefits__main,
  .hp-preview .site-benefits__main {
    max-width: none;
  }

  body.site-body:has(.hp-preview) .site-benefits__visual,
  .hp-preview .site-benefits__visual {
    display: none !important;
  }

  .hp-vs__shell {
    padding: 28px 0 24px;
  }
}

@media (max-width: 768px) {
  .hp-preview .site-benefits__shell {
    border-radius: 0;
    padding: 28px 0;
  }

  body.site-body:has(.hp-preview) .site-benefits__shell {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* FAQ: shell без inset, но контейнер с --site-offset (иначе width:100% из home.css) */
  body.site-body:has(.hp-preview) .site-faq__shell,
  body.site-body:has(.hp-preview) .site-faq__shell.site-section-shell {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body.site-body:has(.hp-preview) .site-faq__shell > .site-container {
    width: min(100% - (var(--site-offset) * 2), var(--site-container));
  }

  .hp-preview .site-faq__tab-ico,
  body.site-body:has(.hp-preview) .site-faq__tab-ico {
    display: none !important;
  }

  /* Вторичный текст = размер ответа FAQ */
  .hp-preview .hp-how__steps p,
  .hp-preview .hp-vs__card p,
  .hp-preview .site-benefits__item .site-t-benefit-text,
  body.site-body:has(.hp-preview) .site-benefits__item .site-t-benefit-text,
  .hp-preview .site-candidate__feature-text,
  body.site-body:has(.hp-preview) .site-candidate__feature-text,
  .hp-preview .site-faq__answer,
  body.site-body:has(.hp-preview) .site-faq__answer {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  /* Diff-карточки: картинка целиком, без высокой фиолетовой подложки */
  .hp-preview .hp-diff .hp-media--card,
  .hp-preview .hp-diff .hp-media--promo {
    aspect-ratio: auto;
    min-height: 0;
    height: auto;
    display: block;
  }

  .hp-preview .hp-diff .hp-media--card img,
  .hp-preview .hp-diff .hp-media--promo img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    object-position: center;
  }

  .hp-preview .site-benefits__list::before {
    left: 19px;
  }

  .hp-preview .site-benefits__icon-wrap,
  .hp-preview .site-benefits__icon {
    width: 40px;
    height: 40px;
  }

  body.site-body:has(.hp-preview) .site-benefits__title,
  .hp-preview .site-benefits__title {
    font-size: var(--hp-fs-h2) !important;
    margin-bottom: 28px;
  }

  body.site-body:has(.hp-preview) .site-benefits__item .site-t-benefit-title,
  .hp-preview .site-benefits__item .site-t-benefit-title {
    font-size: var(--hp-fs-h3) !important;
    line-height: 1.3 !important;
  }

  body.site-body:has(.hp-preview) .site-benefits__item .site-t-benefit-text,
  .hp-preview .site-benefits__item .site-t-benefit-text {
    margin-top: 6px;
    font-size: var(--hp-fs-body) !important;
    line-height: 1.45 !important;
  }

  .hp-preview .site-benefits__list {
    gap: 18px;
  }

  body.site-body:has(.hp-preview) .site-benefits__visual img.site-benefits__star,
  .hp-preview .site-benefits__star {
    width: 34px !important;
    height: 34px !important;
    max-width: 34px !important;
    right: calc(50% - 120px) !important;
    top: 10% !important;
    bottom: auto !important;
  }

  .hp-vs__shell {
    border-radius: 0;
    padding: 28px 0 22px;
  }

  .hp-vs__grid {
    row-gap: 12px;
  }

  .hp-vs__card {
    padding: 18px 16px;
  }

  .hp-vs__ico {
    width: 44px;
    height: 44px;
  }

  body.site-body a.hp-vs__btn {
    width: auto;
    max-width: 100%;
    justify-content: flex-start;
  }

  /* «Заказать перенос» = размер «Присоединиться» (перебиваем .site-btn--white-pill 60px) */
  body.site-body:has(.hp-preview) a.site-btn.site-btn--white-pill.site-tariffs-promo__btn,
  .hp-preview a.site-btn.site-btn--white-pill.site-tariffs-promo__btn {
    width: max-content !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: 0 0 auto !important;
    align-self: flex-start !important;
    min-height: 45px !important;
    height: 45px !important;
    padding: 2px 2px 2px 12px !important;
    gap: 10px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    justify-content: space-between !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
  }

  body.site-body:has(.hp-preview) a.site-btn.site-btn--white-pill.site-tariffs-promo__btn .site-btn__icon,
  .hp-preview a.site-btn.site-btn--white-pill.site-tariffs-promo__btn .site-btn__icon {
    width: 41px !important;
    height: 41px !important;
    min-width: 41px !important;
    max-width: 41px !important;
    border-radius: 10px !important;
    flex-shrink: 0 !important;
  }

  body.site-body:has(.hp-preview) a.site-btn.site-btn--white-pill.site-tariffs-promo__btn .site-btn__icon svg,
  .hp-preview a.site-btn.site-btn--white-pill.site-tariffs-promo__btn .site-btn__icon svg {
    width: 16px !important;
    height: 16px !important;
  }

  /* Проверка кандидатов: без звёзд, текст слева (работает и вне .hp-preview) */
  body.site-body:has(.hp-preview) .site-candidate-wrap .site-candidate__deco,
  body.site-body:has(.hp-preview) .site-candidate-wrap .site-candidate__deco--left,
  body.site-body:has(.hp-preview) .site-candidate-wrap .site-candidate__deco--right {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }

  body.site-body:has(.hp-preview) .site-candidate-wrap .site-candidate__title-wrap {
    align-items: flex-start !important;
    text-align: left !important;
  }

  body.site-body:has(.hp-preview) .site-candidate-wrap .site-candidate .site-kicker,
  body.site-body:has(.hp-preview) .site-candidate-wrap .site-candidate__title {
    text-align: left !important;
  }

  body.site-body:has(.hp-preview) .site-candidate-wrap .site-candidate__title-row {
    display: block !important;
    width: 100% !important;
  }
}
