:root {
  --bg: #f1f1f1;
  --surface: #ffffff;
  --surface-soft: #f8f8f8;
  --stroke: #dedede;
  --text: #111111;
  --muted: #646464;
  --accent: #2dbe64;
  --accent-soft: #eef9f2;
  --shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-pill: 999px;
  --shell-max-width: 1200px;
  --shell-gutter: 28px;
  --shell-inline-size: min(var(--shell-max-width), calc(100vw - var(--shell-gutter)));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "TildaSans", Arial, sans-serif;
  background: var(--bg);
}

h1,
h2,
h3,
.faq-question,
.hero__lead,
.section-heading p,
.proof-card p,
.system-card p,
.demo-card__content p,
.ai-preview-card p,
.ai-preview-chatbox__header p,
.faq-answer p,
.contact-block__label,
.contact-team p {
  text-wrap: pretty;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  width: var(--shell-inline-size);
  margin: 0 auto;
  padding: 12px 0 60px;
}

.hero,
.site-footer,
.contact-section {
  display: grid;
  gap: 22px;
}

.site-header {
  display: grid;
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 50;
  width: var(--shell-inline-size);
  transform: translateX(-50%);
  grid-template-columns: auto auto minmax(0, 1fr) auto auto;
  grid-template-areas: "logo channel nav discuss burger";
  align-items: center;
  gap: clamp(20px, 2vw, 24px);
  padding: 18px 0 0;
  transition: transform 0.32s cubic-bezier(0.2, 0.85, 0.22, 1);
  will-change: transform;
}

.site-header.site-header--hidden {
  transform: translateX(-50%) translateY(-120%) !important;
}

@media (min-width: 769px) {
  .page-case .site-header {
    box-sizing: border-box;
    padding: 14px 18px;
    border-radius: 0 0 34px 34px;
    background: rgba(245, 245, 245, 0.94);
    box-shadow: 0 18px 44px rgba(17, 17, 17, 0.08);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }
}

main {
  padding-top: 92px;
}

.site-logo {
  grid-area: logo;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.site-logo img {
  display: block;
  width: 143px;
  height: auto;
}

.header-channel {
  grid-area: channel;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: clamp(220px, 16vw, 240px);
  min-width: 220px;
  min-height: 52px;
  padding: 0 16px 0 8px;
  border-radius: 30px;
  background: #229eda;
  box-shadow: none;
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
}

.header-channel > span:last-child {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  line-height: 1.15;
}

.header-channel__icon {
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: #ffffff;
}

.header-channel__icon svg {
  width: 18px;
  height: 18px;
  fill: #229eda;
}

.site-nav {
  display: inline-flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 1rem;
}

.site-nav--main {
  grid-area: nav;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: clamp(4px, 0.6vw, 8px);
  min-width: 0;
  overflow: visible;
  visibility: hidden;
}

.site-nav--main.is-ready {
  visibility: visible;
}

.site-nav a {
  color: var(--muted);
  white-space: nowrap;
}

.site-nav--main a,
.site-nav__more,
.site-nav--footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(123, 123, 123, 0.1);
  color: #2a2a2a;
  font-size: 16px;
  font-weight: 500;
}

.site-nav--main > a[hidden] {
  display: none !important;
}

.site-nav__more {
  border: 0;
  cursor: pointer;
}

.site-nav--main .site-nav__compact {
  padding: 0 14px;
}

.site-nav--main a:hover,
.site-nav__more:hover,
.site-nav--footer a:hover {
  color: #ffffff;
  background: #101010;
}

.site-nav--main .site-nav__active,
.site-nav--footer .site-nav__active {
  background: #e2e2e2;
  color: #2a2a2a;
  box-shadow: none;
}

.site-nav--main .site-nav__active:hover,
.site-nav--footer .site-nav__active:hover {
  background: #e2e2e2;
  color: #2a2a2a;
}

.site-nav__overflow {
  position: relative;
  display: none;
  flex: 0 0 auto;
}

.site-nav__overflow.is-visible {
  display: inline-flex;
}

.site-nav__overflow-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 20;
  display: grid;
  gap: 8px;
  min-width: 220px;
  padding: 10px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.site-nav__overflow.is-open .site-nav__overflow-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-nav__overflow-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 18px;
  background: #f3f3f3;
  color: #2a2a2a;
  font-size: 16px;
  font-weight: 500;
  box-shadow: none;
}

.site-nav__overflow-menu a:hover {
  color: #ffffff;
  background: #101010;
}

.site-nav__overflow-menu .site-nav__active {
  color: #2a2a2a;
  background: #e2e2e2;
}

.site-nav__overflow-menu .site-nav__accent {
  color: #ffffff;
  background: #2a2a2a;
}

.site-nav--footer .site-nav__accent {
  color: #ffffff;
  background: #2a2a2a;
  box-shadow: 0 0 10px rgba(123, 123, 123, 0.1);
}

.site-nav--footer .site-nav__accent:hover {
  color: #ffffff;
  background: #151515;
}

.header-discuss {
  grid-area: discuss;
  min-width: 166px;
  white-space: nowrap;
  justify-self: end;
}

.mobile-burger,
.mobile-menu-overlay {
  display: none;
}

.mobile-burger {
  grid-area: burger;
  position: relative;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(123, 123, 123, 0.1);
}

.mobile-burger span,
.mobile-menu__close span {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #111111;
  transform: translateX(-50%);
}

.mobile-burger span:nth-child(1) {
  top: 18px;
}

.mobile-burger span:nth-child(2),
.mobile-burger span:nth-child(3) {
  top: 25px;
}

.mobile-burger span:nth-child(4) {
  top: 32px;
  width: 15px;
  left: calc(50% + 3px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.button--primary {
  color: #ffffff;
  background: #111111;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.button--primary:hover {
  background: #2b2b2b;
}

.button--secondary,
.button--ghost {
  color: #111111;
  border-color: #d9d9d9;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(123, 123, 123, 0.1);
}

.button--secondary:hover,
.button--ghost:hover {
  color: #ffffff;
  background: #111111;
  border-color: #111111;
}

.button--full {
  width: 100%;
}

.hero__actions .button {
  min-height: 72px;
  padding: 0 42px;
  border-radius: 34px;
  font-size: 1.2rem;
}

.section {
  padding: 70px 0;
  scroll-margin-top: 112px;
}

.hero {
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: start;
  gap: 26px;
  padding: 56px 0 26px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 500;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(45, 190, 100, 0.14);
  border-radius: 999px;
  background: rgba(45, 190, 100, 0.12);
  color: #219150;
  font-size: 0.95rem;
  font-weight: 500;
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1;
  font-family: "TildaSans", Arial, sans-serif;
}

h3 {
  font-size: 30px;
  font-family: "TildaSans", Arial, sans-serif;
  font-weight: 500;
}

h1 {
  max-width: 58ch;
  margin-top: 18px;
  color: #2a2a2a;
  font-size: 68px;
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -2px;
}

h1 span {
  display: block;
  margin-top: 10px;
  color: var(--accent);
}

.hero-title-logo {
  display: inline-block;
  width: 0.82em;
  height: 0.82em;
  margin: 0 0.14em 0 0.08em;
  vertical-align: -0.1em;
  object-fit: contain;
}

h2 {
  color: #000000;
  font-size: 54px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -1px;
}

.hero__lead,
.section-heading p,
.feature-card p,
.system-card p,
.proof-card p,
.faq-answer p,
.site-footer p {
  color: var(--muted);
  line-height: 1.6;
}

.hero__lead {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: 1.15rem;
  text-align: left;
}

#advantages {
  margin-top: 100px;
}

.hero__content {
  display: grid;
  align-content: start;
  justify-items: start;
  text-align: left;
}

.hero__actions,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__actions {
  margin-top: 24px;
}

.hero__actions {
  justify-content: flex-start;
}

.hero__microproof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero__microproof li {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #3e3e3e;
  font-size: 0.95rem;
  line-height: 1.35;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.footer-contact__value,
.channel-button,
.footer-socials a {
  display: inline-flex;
  align-items: center;
}

.card {
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-panel,
.feature-card,
.proof-card,
.system-card,
.faq-item,
.contact-form {
  padding: 28px;
}

.hero-panel {
  position: relative;
  overflow: visible;
  min-height: 520px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.page-telegram .hero-panel.card {
  box-shadow: none;
}

.contact-section {
  display: grid;
  gap: 18px;
}

.kpi-grid dt,
.contact-form label {
  color: var(--muted);
}

.hero-panel__layout {
  display: grid;
  place-items: center;
  position: relative;
  min-height: 464px;
  margin-top: 0;
  background: var(--bg);
}

.hero-panel__visual {
  width: min(112%, 560px);
  background: var(--bg);
}

.hero-panel__image {
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(-34px);
  object-fit: contain;
  pointer-events: none;
  background: var(--bg);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.kpi-grid div {
  padding: 16px;
  border-radius: 22px;
  background: var(--surface-soft);
}

.kpi-grid--hero {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
}

.kpi-grid--hero .kpi-card {
  position: absolute;
  width: min(184px, 42%);
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.09);
  backdrop-filter: blur(14px);
}

.kpi-grid--hero .kpi-card--budget {
  top: 54px;
  left: 0;
  width: max-content;
  max-width: calc(100% - 24px);
}

.kpi-card--budget dd {
  white-space: nowrap;
}

.kpi-card--launch {
  right: 4px;
  top: 32%;
  transform: translateY(-50%);
}

.kpi-card--control {
  left: 22px;
  bottom: 112px;
}

.kpi-grid dd {
  margin: 8px 0 0;
  font-size: 1.45rem;
  font-weight: 600;
}

.section-heading {
  display: grid;
  gap: 40px;
  max-width: 760px;
}

.section-heading--split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: 20px;
  max-width: none;
}

.section-heading h2 {
  margin-top: 0;
}

.section-heading p {
  margin: 0;
}

.section-heading--split p {
  justify-self: end;
  max-width: 430px;
}

p.section-tag {
  margin: 0;
}

.telegram-section {
  padding-top: 18px;
}

.telegram-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 32px;
  padding: 34px 34px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #f9f9f9 0%, #f4f5f6 100%);
}

.telegram-showcase__content {
  padding: 34px 0 34px 34px;
}

.telegram-showcase__content h2 {
  max-width: none;
}

.telegram-showcase__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 830px);
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  margin-top: 26px;
  border-radius: var(--radius-pill);
  background: #9bf557;
  color: #111111;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease;
}

.telegram-showcase__cta:hover {
  transform: translateY(-1px);
}

.telegram-showcase__visual {
  position: relative;
  min-height: 660px;
}
.proof-grid,
.system-grid,
.article-grid,
.faq-list {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}

.proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.avito-effective-heading {
  max-width: none;
  justify-items: center;
  text-align: center;
  gap: 18px;
}

.avito-effective-heading p {
  max-width: 640px;
}

.avito-effective-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.avito-effective-card {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 18px;
  min-height: 100%;
  text-align: center;
  box-shadow: none;
}

.avito-effective-card h3 {
  width: min(100%, 224px);
  margin: 0;
}

.avito-effective-card p {
  width: min(100%, 224px);
  margin: 0;
  max-width: none;
  line-height: 1.15;
}

.avito-effective-card img {
  width: 154px;
  height: 154px;
  object-fit: contain;
  margin-top: auto;
}

.avito-effective-card--retail img {
  width: 178px;
  height: 178px;
}

@media (max-width: 1100px) {
  .avito-effective-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .avito-effective-grid {
    grid-template-columns: 1fr;
  }
}

.advantages-showcase {
  padding: 40px;
  border: 1px solid rgba(17, 17, 17, 0.05);
  border-radius: 42px;
  background:
    radial-gradient(circle at 18% 18%, rgba(212, 255, 66, 0.75), transparent 28%),
    radial-gradient(circle at 78% 12%, rgba(215, 207, 255, 0.7), transparent 32%),
    radial-gradient(circle at 58% 72%, rgba(217, 255, 164, 0.68), transparent 26%),
    linear-gradient(135deg, #f4fde6 0%, #eceff0 50%, #ece6f7 100%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.05);
}

#advantages .proof-grid {
  grid-template-columns: 1.12fr 1.08fr 1.08fr;
  grid-template-areas:
    "launch manager experience"
    "launch service experience";
  gap: 14px;
  margin-top: 0;
}

.automation-system {
  padding-top: 102px;
}

.automation-system .system-card,
.automation-system .system-card.card {
  box-shadow: none;
  transition: border-color 0.22s ease;
}

.automation-system .system-card.is-stack-shadow,
.automation-system .system-card.card.is-stack-shadow {
  box-shadow:
    0 var(--stack-shadow-y) var(--stack-shadow-blur) var(--stack-shadow-spread)
      rgba(17, 17, 17, var(--stack-shadow-opacity));
}

.automation-system .system-card:not(.is-stack-shadow):hover,
.automation-system .system-card.card:not(.is-stack-shadow):hover {
  box-shadow: none;
}

.system-grid {
  display: grid;
  grid-template-columns: none;
  gap: 42px;
  overflow: visible;
  padding: 0 0 44px;
}

.proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.system-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
}

.feature-card h3,
.system-card h3,
.proof-card h3 {
  margin-top: 18px;
  font-size: 1.45rem;
}

.proof-card--accent {
  background: #f3faf5;
}

.proof-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.system-card {
  --stack-scale: 1;
  --stack-translate-y: 0px;
  --stack-shadow-y: 18px;
  --stack-shadow-spread: 0px;
  --stack-shadow-opacity: 0.07;
  --stack-shadow-blur: 46px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 662px;
  align-content: start;
  align-items: center;
  gap: 34px;
  min-height: 700px;
  padding: 40px;
  overflow: hidden;
  position: sticky;
  top: 112px;
  background: #ffffff !important;
  transform: translateY(var(--stack-translate-y)) scale(var(--stack-scale));
  transform-origin: center top;
  box-shadow:
    0 var(--stack-shadow-y) var(--stack-shadow-blur) var(--stack-shadow-spread)
      rgba(17, 17, 17, var(--stack-shadow-opacity));
  transition: border-color 0.22s ease, box-shadow 0.18s linear;
  will-change: transform, box-shadow;
}

.system-card:nth-child(1) {
  z-index: 1;
}

.system-card:nth-child(2) {
  z-index: 2;
}

.system-card:nth-child(3) {
  z-index: 3;
}

.system-card:nth-child(4) {
  z-index: 4;
}

.system-card:nth-child(5) {
  z-index: 5;
}

.system-card:nth-child(6) {
  z-index: 6;
}

.system-card__content {
  display: grid;
  align-content: start;
  gap: 16px;
}

.system-card__content p {
  margin: 0;
}

.system-card h3 {
  margin-top: 0;
  color: #101010;
  font-size: 1.7rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.system-card p {
  color: #343434;
  font-size: 1.05rem;
  line-height: 1.45;
}

.system-card__demo {
  --demo-content-width: 662px;
  --demo-viewport-width: 760px;
  --demo-viewport-height: 620px;
  --demo-scale: 0.94;
  justify-self: center;
  align-self: center;
  width: calc(var(--demo-content-width) * var(--demo-scale));
  height: calc(var(--demo-viewport-height) * var(--demo-scale));
  max-width: 100%;
  overflow: hidden;
}

.system-card__demo iframe {
  display: block;
  width: var(--demo-viewport-width);
  height: var(--demo-viewport-height);
  border: 0;
  background: transparent;
  pointer-events: none;
  transform: scale(var(--demo-scale));
  transform-origin: top left;
}

.page-seo #system .system-card__demo {
  --demo-scale: 0.87;
  width: calc(var(--demo-viewport-width) * var(--demo-scale));
  height: calc(var(--demo-viewport-height) * var(--demo-scale));
}

.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  border-color: rgba(45, 190, 100, 0.18);
}

.system-card:hover {
  border-color: rgba(45, 190, 100, 0.18);
}

.system-card.is-stack-active:hover {
  box-shadow:
    0 var(--stack-shadow-y) calc(var(--stack-shadow-blur) + 8px) var(--stack-shadow-spread)
      rgba(17, 17, 17, 0.09);
}

.system-card:not(.is-stack-active):hover {
  box-shadow:
    0 var(--stack-shadow-y) var(--stack-shadow-blur) var(--stack-shadow-spread)
      rgba(17, 17, 17, var(--stack-shadow-opacity));
}

@supports (animation-timeline: view()) {
  .system-card {
    animation: none;
  }
}

@keyframes systemCardReveal {
  from {
    opacity: 0;
    transform: translateY(72px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes systemCardRevealCompact {
  from {
    opacity: 0.35;
    transform: translateY(24px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.proof-card h3,
.proof-card p {
  margin: 0;
}

#advantages .proof-card {
  min-height: 100%;
  padding: 34px 34px 30px;
  border: 0;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: none;
}

#advantages .proof-card h3 {
  margin-top: 0;
  color: #101010;
  font-size: 1.7rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

#advantages .proof-card p {
  color: #343434;
  font-size: 1.05rem;
  line-height: 1.45;
}

#advantages .proof-card:has(.proof-card__image) {
  grid-template-rows: auto auto minmax(0, 1fr);
}

.proof-card__image {
  display: block;
  align-self: end;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-top: auto;
  border-radius: 12px;
  object-fit: cover;
}

#advantages .proof-card--launch {
  grid-area: launch;
  min-height: 520px;
  align-content: start;
}

#advantages .proof-card--manager {
  grid-area: manager;
  min-height: 244px;
}

#advantages .proof-card--service {
  grid-area: service;
  min-height: 258px;
}

#advantages .proof-card--experience {
  grid-area: experience;
  min-height: 520px;
}

.demo-card,
.card.demo-card {
  position: relative;
  display: grid;
  gap: 40px;
  padding: 56px;
  border-radius: 27px !important;
  background:
    radial-gradient(
      27% 24% at 33% 18%,
      rgba(213, 255, 121, 0.54) 0%,
      rgba(217, 255, 140, 0.2) 38%,
      rgba(217, 255, 140, 0) 78%
    ),
    radial-gradient(
      30% 28% at 42% 48%,
      rgba(207, 255, 114, 0.44) 0%,
      rgba(219, 255, 152, 0.16) 40%,
      rgba(219, 255, 152, 0) 78%
    ),
    radial-gradient(
      36% 30% at 50% 92%,
      rgba(201, 255, 104, 0.5) 0%,
      rgba(214, 255, 135, 0.18) 44%,
      rgba(214, 255, 135, 0) 80%
    ),
    radial-gradient(
      20% 18% at 62% 80%,
      rgba(216, 255, 138, 0.38) 0%,
      rgba(216, 255, 138, 0.12) 38%,
      rgba(216, 255, 138, 0) 76%
    ),
    linear-gradient(180deg, #f7f3e9 0%, #f4f0e6 100%) !important;
  border: 0 !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.6),
    0 16px 30px rgba(146, 142, 117, 0.06);
  overflow: hidden;
  isolation: isolate;
}

.demo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      34% 28% at 47% 58%,
      rgba(240, 255, 213, 0.52) 0%,
      rgba(240, 255, 213, 0) 72%
    ),
    radial-gradient(
      24% 22% at 58% 22%,
      rgba(250, 255, 231, 0.4) 0%,
      rgba(250, 255, 231, 0) 72%
    );
  mix-blend-mode: screen;
  pointer-events: none;
}

.demo-card > * {
  position: relative;
  z-index: 1;
}

.demo-card__heading {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.demo-card__content {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 920px;
  margin: 40px auto 0;
  text-align: center;
}

.demo-card__content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.demo-card__subheading {
  margin: 0;
  color: #111111;
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 600;
}

.demo-card__benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.demo-card__benefits li {
  position: relative;
  padding: 18px;
  padding-left: 30px;
  border-radius: 18px;
  background: #ffffff;
  color: #393939;
  line-height: 1.3;
  text-align: left;
}

.demo-card__benefits li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 18px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #2dbe64;
}

.demo-card__button {
  width: fit-content;
  min-width: 180px;
}

.demo-card__video {
  min-width: 0;
}

.demo-card__video-frame {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 32px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(45, 190, 100, 0.2), transparent 32%),
    linear-gradient(180deg, #edf3ee 0%, #dfe7df 100%);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.06);
  text-align: center;
}

.demo-card__video-play {
  position: relative;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: #111111;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.14);
}

.demo-card__video-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #ffffff;
  transform: translate(-35%, -50%);
}

.ai-preview-card {
  display: grid;
  gap: 40px;
  padding: 56px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8f8 100%);
}

.ai-preview-card__heading {
  gap: 20px;
  max-width: 860px;
  justify-items: center;
  margin: 0 auto;
  text-align: center;
}

.ai-preview-layout {
  --ai-preview-stage-height: 628px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: 0;
  align-items: start;
  overflow: hidden;
  border-radius: 27px;
  background: #f5f5f5;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.05);
}

.ai-preview-media,
.ai-preview-chatbox {
  min-width: 0;
}

.ai-preview-media {
  min-height: var(--ai-preview-stage-height);
}

.ai-preview-stage,
.ai-preview-chatbox {
  padding: 24px;
  border-radius: 0;
  box-shadow: none;
}

.ai-preview-stage {
  height: 100%;
  background:
    radial-gradient(circle at top right, rgba(45, 190, 100, 0.12), transparent 30%),
    #eef2ef;
}

.ai-preview-stage--photo {
  position: relative;
  height: var(--ai-preview-stage-height);
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  background: #e9e9e4;
}

.ai-preview-stage__freeze {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ai-preview-stage__freeze.is-visible {
  opacity: 1;
}

.ai-preview-stage__photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 42%;
  opacity: 0;
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
  pointer-events: none;
  z-index: 0;
  background: #d9ddd6;
}

.ai-preview-stage__photo.is-entering {
  opacity: 0;
  z-index: 2;
}

.ai-preview-stage__photo.is-active {
  opacity: 1;
  z-index: 2;
}

.ai-preview-stage__photo.is-exiting {
  opacity: 0;
  z-index: 1;
}

.ai-preview-chatbox {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto auto;
  gap: 16px;
  height: var(--ai-preview-stage-height);
  max-height: var(--ai-preview-stage-height);
  background: #f5f5f5;
  border-left: 1px solid rgba(17, 17, 17, 0.07);
  overflow: hidden;
}

.ai-preview-chatbox__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
}

.ai-preview-chatbox__header strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
}

.ai-preview-chatbox__header p {
  margin: 8px 0 0;
  color: #6a6a6a;
  line-height: 1.5;
}

.ai-preview-chatbox__status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(45, 190, 100, 0.12);
  color: #219150;
  font-size: 0.9rem;
  font-weight: 500;
}

.ai-preview-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: end;
}

.ai-preview-suggestions[hidden],
.ai-helper__choices[hidden] {
  display: none !important;
}

.ai-preview-suggestion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  max-width: 100%;
  min-height: 44px !important;
  padding: 0 12px;
  border: 0;
  border-radius: 18px;
  background: #e2e2e2;
  color: #303030;
  font-size: 0.9rem;
  line-height: 1.25;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease;
}

.page-seo main .ai-preview-suggestion {
  min-height: 44px !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
  line-height: 1.25 !important;
}

.ai-preview-suggestion::after {
  content: "↗";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  background: transparent;
  color: currentColor;
  font-size: 0.82rem;
  line-height: 1;
  flex: 0 0 auto;
}

.ai-preview-suggestion:hover {
  background: #d8d8d8;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  color: #202020;
  transform: translateY(-1px);
}

.ai-preview-chatlog {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 280px;
  max-height: 360px;
  padding-right: 6px;
  overflow: auto;
}

.ai-preview-chatlog .ai-message--idea .ai-message__bubble {
  width: fit-content;
  max-width: min(100%, 50ch);
  box-shadow: none;
}

.ai-preview-chatlog .ai-message--user {
  justify-items: end;
}

.ai-preview-chatlog .ai-message--user .ai-message__bubble {
  width: fit-content;
  max-width: min(100%, 34ch);
  border-radius: 18px 18px 8px 18px;
  background: linear-gradient(180deg, #c9f528 0%, #b9eb1f 100%);
  color: #1f2511;
  box-shadow: none;
}

.ai-preview-typing-status {
  min-height: 20px;
  color: #7a7a7a;
  font-size: 0.94rem;
  font-style: italic;
  line-height: 1.3;
}

.ai-preview-typing-status[hidden] {
  display: none;
}

.ai-preview-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.ai-preview-form__input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: #ffffff;
  color: #111111;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.ai-preview-form__input:hover {
  border-color: rgba(17, 17, 17, 0.18);
  background: #fcfcfc;
}

.ai-preview-form__submit {
  min-width: 144px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.ai-preview-form__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(45, 190, 100, 0.18);
}

.ai-preview-form__input:focus {
  outline: 2px solid rgba(45, 190, 100, 0.24);
  outline-offset: 0;
}

.ai-preview-card__note {
  margin: 0;
  color: #666666;
  font-size: 0.98rem;
  line-height: 1.6;
}

.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cases-disclosure {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-top: 24px;
}

.cases-disclosure__summary {
  display: flex;
  width: fit-content;
  order: 2;
  align-self: center;
  margin: 0 auto;
  list-style: none;
  cursor: pointer;
}

.cases-disclosure__summary::-webkit-details-marker {
  display: none;
}

.cases-disclosure__label--open {
  display: none;
}

.cases-disclosure[open] .cases-disclosure__label--closed {
  display: none;
}

.cases-disclosure[open] .cases-disclosure__label--open {
  display: inline;
}

.cases-extra {
  order: 1;
  width: 100%;
}

.cases-disclosure[open] .cases-disclosure__summary {
  margin-top: 18px;
}

.faq-item {
  position: relative;
  padding: 28px 0;
  overflow: visible;
  border: 0 !important;
  border-top: 1px solid #cfcfcf !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.case-article,
.case-article.card,
.case-article--link {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 24px;
  min-height: 100%;
  padding: 32px;
  color: inherit;
  border: 0 !important;
  background: #ffffff !important;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.case-article--link {
  text-decoration: none;
}

.case-article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.09);
}

.case-article:focus-visible {
  outline: none;
  transform: translateY(-4px);
  box-shadow:
    0 0 0 3px rgba(45, 190, 100, 0.24),
    0 18px 42px rgba(0, 0, 0, 0.09);
}

.case-article__header {
  display: grid;
  gap: 12px;
  align-content: start;
}

.case-article__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f1f1f1;
  color: #2a2a2a;
  font-size: 0.9rem;
  font-weight: 500;
}

.case-article h3 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.case-article__result {
  margin: 0;
  color: #111111;
  font-size: 1.2rem;
  line-height: 1.35;
  font-weight: 500;
}

.case-article__chart {
  display: grid;
  gap: 14px;
  padding: 0;
  border-radius: 22px;
  background: transparent;
}

.case-article__chart-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.case-article__chart-name {
  color: #111111;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 500;
}

.case-article__chart-delta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #2dbe64;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.case-article__chart-plot {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(to bottom, rgba(17, 17, 17, 0.08) 1px, transparent 1px),
    linear-gradient(to right, rgba(17, 17, 17, 0.06) 1px, transparent 1px);
  background-size: 100% 25%, calc(100% / 6) 100%;
}

.case-article__chart-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.case-article__chart-area {
  fill: rgba(45, 190, 100, 0.18);
}

.case-article__chart-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-article__chart-line--muted {
  display: none;
}

.case-article__chart-line--main {
  stroke: #2dbe64;
  stroke-width: 5;
}

.case-article__chart-values,
.case-article__chart-axis {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.case-article__chart-values span {
  color: #111111;
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1;
}

.case-article__chart-values span:first-child {
  grid-column: 1 / span 2;
  justify-self: start;
}

.case-article__chart-values span:last-child {
  grid-column: 6 / -1;
  justify-self: end;
  color: var(--accent);
}

.case-article__chart-axis span {
  color: #707070;
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
}

.case-article__chart-axis {
  display: none;
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 18px;
  padding: 0;
  color: var(--text);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 24px !important;
  line-height: 1.15;
  font-weight: 500;
  transition: color 0.2s ease;
}

.faq-question::before {
  content: "+";
  display: inline-block;
  color: #8b8b8b;
  font-size: 48px;
  line-height: 0.8;
  font-weight: 300;
  transition: color 0.2s ease;
}

.faq-item:hover .faq-question {
  color: var(--text);
}

.faq-item:hover .faq-question::before {
  color: var(--accent);
}

.faq-item.is-open .faq-question::before {
  content: "−";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding-top: 0;
  padding-left: 58px;
  color: #6e6e6e;
  line-height: 1.55;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-top: 16px;
}

.faq-list {
  position: relative;
  display: grid;
  gap: 0;
  border-top: 0;
  padding-top: 0;
}

.faq-list::before {
  content: none;
}

.faq-section .faq-list {
  margin-top: 60px;
}

.faq-item + .faq-item {
  margin-top: 0;
  padding-top: 28px;
  border-top: 1px solid #cfcfcf !important;
}

.faq-item + .faq-item::before {
  content: none;
}

.contact-section {
  display: block;
  padding-top: 72px;
  width: 100%;
  margin-left: 0;
  transform: none;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  gap: 11px;
  width: 100%;
  margin: 0 auto;
  padding: 58px 56px 56px;
  border-radius: 27px;
  background: #e2e2e2;
}

.contact-card {
  min-width: 0;
}

.contact-card__surface {
  height: 100%;
  padding: 0;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: none;
  backdrop-filter: none;
}

.contact-card--main .contact-card__surface,
.contact-card--form .contact-card__surface {
  display: grid;
  align-content: start;
}

.contact-card--main .contact-card__surface {
  grid-template-rows: auto auto auto 1fr;
  padding: 40px;
  gap: 40px;
}

.contact-card--main h2 {
  max-width: 572px;
  margin: 0;
  font-family: "TildaSans", Arial, sans-serif;
  font-size: 43px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-block {
  display: grid;
  gap: 12px;
}

.contact-block__label {
  margin: 0;
  color: #7c7c7c;
  font-family: "TildaSans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.contact-block__value {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  color: #0e0e0e;
  font-family: "TildaSans", Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.contact-block__value img {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}

.contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  box-shadow: none;
  font-family: "TildaSans", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-action:hover {
  transform: translateY(-1px);
}

.contact-action img {
  width: 29px;
  height: 29px;
}

.contact-action--telegram {
  color: #37a0c3;
  background: #e7f6f7;
}

.contact-action--telegram:hover {
  color: #ffffff;
  background: #1a94bb;
}

.contact-team {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  align-self: end;
  margin-top: 0;
}

.contact-team__avatars {
  display: flex;
  align-items: center;
}

.contact-team__avatars img,
.contact-team__plus {
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 999px;
  object-fit: cover;
  margin-right: -8px;
  box-shadow: none;
}

.contact-team__plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #77c676;
  background: #e7f7eb;
  font-size: 26px;
  font-weight: 400;
}

.contact-team p {
  max-width: 266px;
  margin: 0;
  color: #7c7c7c;
  font-family: "TildaSans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.contact-card--form .contact-card__surface {
  padding: 40px;
  gap: 0;
  position: static;
}

.lead-popup-open {
  overflow: hidden;
}

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.lead-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.lead-popup[hidden] {
  display: none;
}

.lead-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lead-popup__dialog {
  position: relative;
  width: min(100%, 1180px);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  border-radius: 28px;
  background: #e2e2e2;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.22s ease;
}

.lead-popup.is-visible .lead-popup__dialog {
  transform: translateY(0) scale(1);
}

.lead-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f3f3f3;
  color: #111111;
  cursor: pointer;
}

.lead-popup__close::before,
.lead-popup__close::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.lead-popup__close::before {
  transform: rotate(45deg);
}

.lead-popup__close::after {
  transform: rotate(-45deg);
}

.lead-popup__close:hover {
  background: #e8e8e8;
}

.lead-popup__contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
  gap: 32px;
  width: 100%;
  padding: 40px;
  margin: 0;
  border-radius: 28px;
}

.lead-popup__contact-shell .contact-card--main {
  min-width: 0;
}

.lead-popup__contact-shell .contact-card--main .contact-card__surface {
  padding-right: 56px;
}

.lead-popup__contact-shell .contact-card--form {
  min-width: 0;
}

.cookie-popup {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 18px;
  z-index: 118;
  width: min(1180px, calc(100vw - 32px));
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.cookie-popup.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.cookie-popup[hidden] {
  display: none;
}

.cookie-popup__card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 18px 18px 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: auto;
}

.cookie-popup__text {
  flex: 1 1 auto;
  margin: 0;
  color: #2f211b;
  font-size: clamp(0.875rem, 0.95vw, 1rem);
  line-height: 1.45;
}

.cookie-popup__text a {
  color: #0b55ff;
  text-decoration: none;
}

.cookie-popup__actions {
  flex: 0 0 auto;
}

.cookie-popup__button {
  background: #111111;
  border-color: #111111;
  box-shadow: none;
  color: #ffffff;
  white-space: nowrap;
}

.cookie-popup__button:hover {
  background: #2b2b2b;
  border-color: #2b2b2b;
  box-shadow: none;
}

@media (max-width: 720px) {
  .cookie-popup {
    bottom: 12px;
    width: calc(100vw - 24px);
  }

  .cookie-popup__card {
    display: grid;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
  }

  .cookie-popup__text {
    font-size: 0.875rem;
  }

  .cookie-popup__button {
    width: 100%;
  }
}

.contact-form--replica {
  min-width: 0;
  padding: 0;
  gap: 20px;
}

.contact-form__field {
  display: block;
  position: relative;
}

.contact-form__field[hidden] {
  display: none !important;
}

.contact-form__select-arrow {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid #111111;
  border-bottom: 1.5px solid #111111;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 19px;
  border: 0;
  border-radius: 12px;
  background: #f3f3f3;
  color: #111111;
  font-family: "TildaSans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  appearance: none;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.02);
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus,
.ai-helper__input:focus {
  outline: 2px solid rgba(45, 190, 100, 0.28);
  outline-offset: 0;
}

.contact-form__field select {
  cursor: pointer;
  padding-right: 56px;
  background-image: none;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form__field textarea {
  min-height: 50px;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: none;
}

.contact-form__field input::placeholder,
.contact-form__field select,
.contact-form__field textarea::placeholder {
  color: #929292;
}

.contact-form__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 7px;
  color: #8a8a8a;
  font-family: "TildaSans", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0;
}

.contact-form__consent input {
  width: 20px !important;
  min-width: 20px !important;
  max-width: 20px !important;
  height: 20px !important;
  min-height: 20px !important;
  max-height: 20px !important;
  flex: 0 0 20px;
  display: inline-grid;
  place-content: center;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #777777;
  border-radius: 4px !important;
  background: #ffffff;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
  padding: 0;
}

.contact-form__consent input::after {
  content: "";
  width: 6px;
  height: 10px;
  border-right: 2px solid #f82020;
  border-bottom: 2px solid #f82020;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 0.14s ease;
}

.contact-form__consent input:checked {
  border-color: #f82020;
  background-color: #ffffff;
}

.contact-form__consent input:checked::after {
  transform: rotate(45deg) scale(1);
}

.contact-form__consent a {
  color: #8a8a8a;
  border-bottom: 0;
}

.contact-form__submit {
  width: 100%;
  min-height: 52px;
  padding: 0 22px;
  margin: 8px auto 0;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: #f82020;
  box-shadow: none;
  font-family: "TildaSans", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__submit:hover {
  background: #f82020;
  transform: translateY(-1px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  padding: 15px 18px;
  color: var(--text);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: #ffffff;
}

.contact-form__field textarea {
  resize: vertical;
}

.ai-message {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.ai-message__bubble {
  padding: 15px 16px;
  border-radius: 18px 18px 18px 8px;
  background: #ffffff;
  color: #303030;
  line-height: 1.55;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.ai-message__title {
  display: block;
  margin-bottom: 6px;
  color: #111111;
  font-weight: 500;
}

.ai-message--idea .ai-message__bubble {
  padding: 13px 16px;
}

.ai-message--user {
  grid-template-columns: minmax(0, 1fr);
}

.ai-message--user .ai-message__bubble {
  order: 1;
  border-radius: 18px 18px 8px 18px;
  background: #f4f4f4;
}

.ai-helper {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  gap: 10px;
  justify-items: end;
  width: min(300px, calc(100vw - 24px));
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.page-seo .ai-helper.is-system-preview-clear {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

.ai-helper__panel {
  display: none;
}

.ai-helper.is-open .ai-helper__panel {
  display: grid;
}

.ai-helper.is-open .ai-helper__dock {
  display: none;
}

.ai-helper__dock {
  display: grid;
  gap: 16px;
  justify-items: end;
  width: 100%;
}

.ai-helper__avatar {
  width: 72px;
  height: 72px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  justify-self: end;
  object-fit: cover;
  object-position: center;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.ai-helper__message-card {
  position: relative;
  display: grid;
  justify-items: start;
  gap: 8px;
  width: min(292px, 100%);
  padding: 16px;
  border-radius: 20px 6px 20px 20px;
  background: rgba(255, 255, 255, 0.96);
  color: #585858;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.ai-helper__bubble-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.ai-helper__bubble-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  border-radius: 999px;
  background: #585858;
  transform-origin: center;
}

.ai-helper__bubble-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.ai-helper__bubble-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.ai-helper__message-card::after {
  content: "";
  position: absolute;
  right: 28px;
  top: -10px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 10px solid rgba(255, 255, 255, 0.96);
}

.ai-helper__dock.is-bubble-closed {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.ai-helper__dock.is-bubble-closed .ai-helper__avatar {
  order: 2;
  width: 62px;
  height: 62px;
}

.ai-helper__dock.is-bubble-closed .ai-helper__message-card {
  display: contents;
}

.ai-helper__dock.is-bubble-closed .ai-helper__message-card::after,
.ai-helper__dock.is-bubble-closed .ai-helper__bubble-close,
.ai-helper__dock.is-bubble-closed .ai-helper__manager,
.ai-helper__dock.is-bubble-closed .ai-helper__hint {
  display: none;
}

.ai-helper__dock.is-bubble-closed .ai-helper__toggle {
  order: 1;
  width: auto;
  min-height: 48px;
  padding: 0 18px;
}

.ai-helper__manager {
  margin: 0;
  color: #111111;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.ai-helper__hint {
  margin: 0;
  color: #585858;
  font-size: 0.82rem;
  line-height: 1.35;
}

.ai-helper__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: none;
}

.ai-helper__panel {
  gap: 16px;
  width: 100%;
  max-height: min(760px, calc(100vh - 36px));
  padding: 22px;
  overflow: hidden;
  grid-template-rows: auto minmax(0, 1fr) auto auto auto auto;
}

.ai-helper__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;
}

.ai-helper__label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  margin: 0 0 8px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(45, 190, 100, 0.12);
  color: #219150;
  font-size: 0.88rem;
  font-weight: 500;
}

.ai-helper__header h3 {
  font-size: 1.6rem;
  line-height: 1.05;
}

.ai-helper__close {
  position: relative;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #f0f0f0;
  cursor: pointer;
}

.ai-helper__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #222222;
}

.ai-helper__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.ai-helper__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.ai-helper__chat {
  display: grid;
  gap: 12px;
  min-height: 0;
  overflow: auto;
  padding-right: 0;
}

.ai-helper__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.ai-helper__input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: #ffffff;
  color: var(--text);
}

.ai-helper__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ai-helper__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ai-helper__action {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  cursor: pointer;
}

.ai-helper__action--ghost {
  background: #f1f1f1;
  color: #252525;
}

.ai-helper__document {
  display: grid;
  gap: 12px;
  min-height: 0;
  padding: 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: #f8f8f8;
}

.ai-helper__document-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ai-helper__document-close {
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: #ececec;
  color: #333333;
  cursor: pointer;
}

.ai-helper__document-body {
  max-height: 220px;
  overflow: auto;
  color: #303030;
  line-height: 1.55;
  white-space: pre-wrap;
}

.ai-helper__choice {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: #f4f4f4;
  color: #272727;
  cursor: pointer;
}

.ai-helper__reset {
  justify-self: start;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(45, 190, 100, 0.12);
  color: #219150;
  cursor: pointer;
}

.form-success {
  margin: 0;
  font-size: 0.92rem;
}

.form-success {
  color: var(--accent);
}

.site-footer {
  width: 100%;
  margin: 0 auto;
  padding-top: 28px;
  color: var(--muted);
}

.footer-card,
.footer-legal {
  display: grid;
  gap: 24px;
  width: 100%;
  margin: 0 auto;
  border-radius: 27px;
  background: #ffffff;
}

.footer-card {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  padding: 56px 56px 48px;
}

.footer-card__contacts,
.footer-card__about,
.footer-card__nav {
  display: grid;
  gap: 40px;
}

.footer-card__nav {
  justify-items: end;
}

.footer-card__about {
  justify-items: center;
  text-align: center;
}

.footer-wave {
  font-size: 80px;
  line-height: 1;
}

.footer-card__about p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact span,
.footer-socials__label {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.footer-contact__value {
  gap: 14px;
  color: #0e0e0e;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.footer-contact__value img {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}

.site-nav--footer {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 12px;
}

.site-nav--footer a {
  width: auto;
  flex: 0 0 auto;
  background: #efefef;
  box-shadow: none;
}

.site-nav--footer .channel-button,
.footer-card__nav > .channel-button {
  gap: 16px;
  justify-self: end;
  min-height: 72px;
  width: fit-content;
  max-width: 100%;
  padding: 0 42px;
  border-radius: 60px;
  color: #37a0c3;
  background: #e7f6f7;
  box-shadow: none;
  font-size: 1.2rem;
  font-weight: 500;
}

.channel-button img {
  width: 29px;
  height: 29px;
}

.wow-effect-section {
  padding-left: 0;
  padding-right: 0;
}

.wow-effect-shell {
  position: relative;
  overflow: hidden;
  padding: 120px 16px 98px;
  border-radius: 12px;
  background-color: #edf2fb;
  background-image: url("assets/wow-effect-bg-from-figma.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.wow-effect__heading {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 8px;
  justify-items: center;
  gap: 4px;
  text-align: center;
}

.wow-effect__heading p {
  color: #000000;
  font-size: 1.44rem;
  line-height: 1.4;
  font-weight: 500;
}

.wow-effect__heading h2 {
  width: 100%;
  color: #000000;
  font-size: 54px;
  line-height: 1;
  letter-spacing: -1px;
  font-weight: 500;
  text-transform: none;
}

.wow-effect__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1500px;
  margin: 40px auto 0;
  backdrop-filter: blur(2.95px);
}

.wow-effect-card {
  display: grid;
  align-content: start;
  gap: 24px;
  min-width: 0;
  min-height: 246px;
  padding: 40px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(11px);
}

.wow-effect-card--accent {
  min-height: 270px;
  background: rgba(160, 255, 60, 0.9);
}

.wow-effect-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: #313544;
}

.wow-effect-card__icon img {
  width: 42px;
  height: 42px;
}

.wow-effect-card__content {
  display: grid;
  gap: 12px;
}

.wow-effect-card__content h3,
.wow-effect-card__content p {
  margin: 0;
}

.wow-effect-card__content h3 {
  color: #000000;
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
}

.wow-effect-card__content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

.footer-legal {
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 80px;
  margin-top: 11px;
  padding: 0 56px;
  border-radius: 27px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-socials a {
  justify-content: center;
  width: 42px;
  height: 34px;
}

.footer-socials img {
  max-width: 100%;
  max-height: 100%;
}

.footer-meta,
.footer-policy {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

.footer-socials__label {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  white-space: nowrap;
}

.footer-meta {
  text-align: center;
}

.footer-policy {
  text-align: right;
  white-space: normal;
}

.footer-policy-group {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 6px;
}

.footer-policy-group .footer-policy {
  text-align: left;
}

.page-legal main {
  padding-top: 18px;
}

.legal-hero {
  padding-bottom: 24px;
}

.legal-hero__card {
  display: grid;
  gap: 20px;
  padding: 20px 0 8px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.legal-hero__card h1 {
  max-width: 900px;
  margin: 0;
  color: #111111;
}

.legal-hero__card > p:not(.section-tag) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.55;
}

.legal-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 0.98rem;
}

.legal-hero__meta a,
.legal-content a {
  color: #219150;
  border-bottom: 1px solid rgba(45, 190, 100, 0.32);
}

.legal-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding-top: 24px;
}

.legal-toc {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 10px;
  padding: 28px;
}

.legal-toc a {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  color: #3f3f3f;
  background: rgba(17, 17, 17, 0.035);
  font-size: 0.98rem;
  line-height: 1.25;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.legal-toc a:hover {
  color: #111111;
  background: rgba(45, 190, 100, 0.14);
  transform: translateX(2px);
}

.legal-content {
  display: grid;
  gap: 34px;
  padding: 40px;
}

.legal-content section {
  display: grid;
  gap: 14px;
  scroll-margin-top: 128px;
}

.legal-content h2 {
  margin: 0;
  color: #111111;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.case-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.35em;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.case-list li {
  padding-left: 0.25em;
}

.page-case .legal-hero__card {
  gap: 28px;
}

.case-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 960px;
}

.case-hero-metric,
.case-result-card,
.case-comparison__item {
  display: grid;
  gap: 8px;
  min-width: 0;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(17, 17, 17, 0.06);
}

.case-hero-metric {
  padding: 24px;
}

.case-hero-metric span,
.case-result-card span,
.case-comparison__item span,
.case-summary__eyebrow {
  color: #6c6c6c;
  font-size: 0.95rem;
  line-height: 1.3;
  font-weight: 500;
}

.case-hero-metric strong {
  color: #111111;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: 0;
}

.case-hero-metric:first-child {
  background: #111111;
}

.case-hero-metric:first-child span,
.case-hero-metric:first-child strong {
  color: #ffffff;
}

.case-hero-metric:nth-child(2) {
  background: #2dbe64;
}

.case-hero-metric:nth-child(2) span,
.case-hero-metric:nth-child(2) strong {
  color: #ffffff;
}

.case-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  border-radius: 26px;
  background: #f4f7f5;
}

.case-summary__copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.case-summary--plain {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  max-width: none;
  padding: 34px;
  border: 1px solid #e7ece9;
  border-radius: 28px;
  background: linear-gradient(135deg, #f8faf9 0%, #eef6f1 100%);
}

.case-summary--plain .case-summary__copy {
  align-content: start;
  max-width: 650px;
}

.case-summary__copy h2 {
  max-width: 620px;
}

.case-live-panel {
  position: relative;
  display: grid;
  min-height: 100%;
  gap: 24px;
  align-content: space-between;
  overflow: hidden;
  padding: 28px;
  border-radius: 24px;
  color: #ffffff;
  background: #111111;
  box-shadow: 0 22px 44px rgba(17, 17, 17, 0.16);
}

.case-live-panel::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(42, 187, 111, 0.32);
}

.case-live-panel__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.case-live-panel__content strong {
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.case-live-panel__content p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.case-live-button {
  position: relative;
  z-index: 1;
  justify-self: start;
  min-height: 56px;
  padding-inline: 28px;
  color: #111111;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(255, 255, 255, 0.16);
}

.case-live-button:hover {
  background: #f1f1f1;
}

.case-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.case-result-card {
  padding: 22px;
}

.case-result-card strong {
  color: #111111;
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0;
}

.case-result-card p {
  color: #6c6c6c;
  font-size: 0.98rem;
  line-height: 1.35;
}

.case-result-card--accent {
  background: #2dbe64;
}

.case-result-card--accent span,
.case-result-card--accent strong,
.case-result-card--accent p {
  color: #ffffff;
}

.case-comparison {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.case-comparison__item {
  padding: 22px;
  background: #f7f8f7;
  box-shadow: none;
}

.case-comparison__item strong {
  color: #111111;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: 0;
}

.case-comparison__item em {
  color: #219150;
  font-size: 0.98rem;
  font-style: normal;
  font-weight: 600;
}

.case-evidence {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 18px;
  border-radius: 24px;
  background: #f7f8f7;
}

.case-evidence img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.08);
}

.case-evidence figcaption {
  margin: 0;
  color: #6c6c6c;
  font-size: 0.98rem;
  line-height: 1.45;
}

.case-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.case-media-grid figure {
  display: grid;
  gap: 10px;
  margin: 0;
}

.case-media-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  background: #f2f3f4;
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.08);
}

.case-media-grid--contain img {
  object-fit: contain;
  background: #f7f8fb;
}

.case-media-grid--natural {
  align-items: start;
}

.case-media-grid--natural figure {
  align-content: start;
}

.case-media-grid--natural img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 560px;
  aspect-ratio: auto;
  margin: 0 auto;
  padding: 18px;
  object-fit: contain;
  background: #f7f8fb;
  box-sizing: border-box;
}

.case-media-grid--natural .case-media-grid__wide img {
  width: 100%;
  max-height: none;
  aspect-ratio: auto;
  padding: 0;
}

.case-media-grid img[data-lightbox-src] {
  cursor: zoom-in;
}

.case-media-grid figcaption {
  margin: 0;
  color: #6c6c6c;
  font-size: 0.95rem;
  line-height: 1.35;
}

.case-media-grid__wide {
  grid-column: 1 / -1;
}

.case-media-grid__wide img {
  aspect-ratio: 16 / 7;
}

.case-media-grid__full img {
  aspect-ratio: auto;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: top center;
}

.case-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(10, 10, 10, 0.82);
}

.case-lightbox.is-open {
  display: flex;
}

.case-lightbox__dialog {
  position: relative;
  display: grid;
  gap: 14px;
  width: min(1120px, 100%);
  max-height: calc(100vh - 56px);
  touch-action: none;
}

.case-lightbox__image {
  display: block;
  width: 100%;
  max-height: calc(100vh - 132px);
  object-fit: contain;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  cursor: zoom-in;
  touch-action: none;
  transform-origin: center center;
  transition: transform 180ms ease;
  user-select: none;
  -webkit-user-drag: none;
}

.case-lightbox__image.is-zoomed {
  cursor: grab;
  transition: none;
}

.case-lightbox__image.is-zoomed:active {
  cursor: grabbing;
}

.case-lightbox__footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.case-lightbox__caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.4;
}

.case-lightbox__counter {
  flex: 0 0 auto;
  margin: 0;
  padding: 7px 12px;
  border-radius: 999px;
  color: #111111;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1;
}

.case-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  color: #111111;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transform: translateY(-50%);
}

.case-lightbox__nav::before {
  content: "";
  width: 14px;
  height: 14px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
}

.case-lightbox__nav--prev {
  left: -26px;
}

.case-lightbox__nav--prev::before {
  transform: rotate(-45deg) translate(2px, 2px);
}

.case-lightbox__nav--next {
  right: -26px;
}

.case-lightbox__nav--next::before {
  transform: rotate(135deg) translate(2px, 2px);
}

.case-lightbox__close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #111111;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

.case-lightbox__close::before,
.case-lightbox__close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.case-lightbox__close::before {
  transform: rotate(45deg);
}

.case-lightbox__close::after {
  transform: rotate(-45deg);
}

@media (hover: hover) {
  .case-lightbox__nav:hover,
  .case-lightbox__close:hover {
    background: #ffffff;
  }
}

@media (max-width: 900px) {
  .case-hero-metrics,
  .case-summary,
  .case-comparison {
    grid-template-columns: 1fr;
  }

  .case-result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-lightbox {
    padding: 18px;
  }

  .case-lightbox__dialog {
    max-height: calc(100vh - 36px);
  }

  .case-lightbox__image {
    max-height: calc(100vh - 130px);
    border-radius: 14px;
  }

  .case-lightbox__footer {
    align-items: flex-start;
  }

  .case-lightbox__nav {
    top: auto;
    bottom: 46px;
    width: 44px;
    height: 44px;
    transform: none;
  }

  .case-lightbox__nav--prev {
    left: 10px;
  }

  .case-lightbox__nav--next {
    right: 10px;
  }

  .case-lightbox__close {
    top: -12px;
    right: -8px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 600px) {
  .case-hero-metric,
  .case-result-card,
  .case-comparison__item {
    border-radius: 18px;
    padding: 20px;
  }

  .case-summary {
    border-radius: 22px;
    padding: 24px 18px;
  }

  .case-result-grid {
    grid-template-columns: 1fr;
  }

  .case-hero-metric strong {
    font-size: 42px;
  }

  .case-result-card strong {
    font-size: 36px;
  }

  .case-comparison__item strong {
    font-size: 24px;
  }

  .case-evidence {
    border-radius: 20px;
    padding: 12px;
  }

  .case-evidence img {
    border-radius: 14px;
  }
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
}

.mobile-menu-overlay[hidden] {
  display: none;
}

.mobile-menu-overlay:not([hidden]) {
  display: block;
  animation: mobileMenuFadeIn 0.32s ease both;
}

.mobile-menu-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: #ffffff;
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 28px;
  background: #ffffff;
  color: #111111;
  overflow-y: auto;
  transform-origin: top center;
}

.mobile-menu-overlay:not([hidden]) .mobile-menu {
  animation: mobileMenuSlideDown 0.42s cubic-bezier(0.2, 0.85, 0.22, 1) both;
}

.mobile-menu__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 52px;
  height: 52px;
  border: 0;
  background: transparent;
}

.mobile-menu__close span:nth-child(1),
.mobile-menu__close span:nth-child(4) {
  width: 0;
}

.mobile-menu__close span:nth-child(2) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

.mobile-menu__close span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu__logo {
  display: inline-flex;
  margin-top: 4px;
}

.mobile-menu__logo img {
  width: 143px;
  height: auto;
}

.mobile-menu__nav {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 20px;
  margin-top: 26px;
}

.mobile-menu__nav a {
  color: #111111;
  font-size: 28px;
  line-height: 1.2;
}

.mobile-menu__nav a[href="#contact"],
.mobile-menu__nav a[href="/#contact"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  margin-top: auto;
  padding: 16px 24px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.mobile-menu__nav .site-nav__active {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 14px;
  border-radius: 999px;
  background: #e2e2e2;
}

.mobile-menu__descr {
  margin-top: 20px;
  color: #5e5e5e;
  font-size: 18px;
  line-height: 1.45;
}

.mobile-menu__socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.mobile-menu__channel {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  min-height: 64px;
  padding: 10px 18px 10px 10px;
  border-radius: 999px;
  background: #e7f6f7;
  color: #111111;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 500;
}

.mobile-menu__channel-icon {
  flex: 0 0 42px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #ffffff;
}

.mobile-menu__channel-icon img {
  width: 22px;
  height: 22px;
  display: block;
}

.mobile-menu__channel > span:last-child {
  max-width: 28ch;
}

@keyframes mobileMenuFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mobileMenuSlideDown {
  from {
    opacity: 0;
    transform: translateY(-28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .legal-hero__card {
    padding: 40px;
  }

  .legal-section {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 28px;
  }

  .system-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .system-card__demo {
    justify-self: center;
    align-self: center;
    --demo-scale: min(0.94, calc((100vw - 96px) / 662px));
  }

  h1 {
    font-size: 50px;
    letter-spacing: -1.5px;
  }

  h2 {
    font-size: 42px;
  }

  .hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero__content {
    justify-items: center;
    text-align: center;
  }

  .hero__lead {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .telegram-showcase {
    grid-template-columns: 1fr;
    padding: 28px 28px 0;
  }

  .telegram-showcase__content {
    padding: 28px 20px;
  }

  .telegram-showcase__cta {
    width: 100%;
  }

  .telegram-showcase__visual {
    min-height: 560px;
  }

  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .contact-card__surface {
    padding: 34px 28px;
  }

  .contact-shell {
    padding: 24px;
  }

  .contact-section {
    width: auto;
    margin-left: 0;
    transform: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .wow-effect-shell {
    padding: 96px 20px 72px;
    background-position: center top;
  }

  .wow-effect__heading p {
    font-size: 1.24rem;
  }

  .wow-effect__heading h2 {
    font-size: 42px;
  }

  .wow-effect__grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-top: 32px;
  }

  .wow-effect-card,
  .wow-effect-card--accent {
    min-height: auto;
  }

  #advantages .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "launch manager"
      "launch service"
      "experience experience";
  }

  #advantages .proof-card--experience {
    min-height: 320px;
  }

  .contact-card--form .contact-card__surface {
    position: static;
  }

  .contact-card--main h2 {
    max-width: 100%;
    font-size: 3rem;
  }

  .contact-block__value {
    font-size: 1.9rem;
  }

  .footer-card {
    grid-template-columns: 1fr;
    padding: 38px 28px 28px;
  }

  .footer-card__about p {
    max-width: none;
  }

  .footer-card__nav {
    justify-items: start;
  }

  .site-nav--footer {
    justify-content: flex-start;
  }

  .site-nav--footer .channel-button,
  .footer-card__nav > .channel-button {
    justify-self: start;
    width: 100%;
    justify-content: center;
  }

  .contact-form__submit {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .footer-legal {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: auto;
    padding: 22px 28px;
    text-align: center;
  }

  .footer-socials__label,
  .footer-meta,
  .footer-policy-group {
    width: 100%;
  }

  .footer-meta {
    order: 3;
  }

  .footer-policy-group {
    order: 4;
    justify-items: center;
  }

  .footer-socials__label {
    order: 1;
    text-align: center;
  }

  .footer-socials {
    order: 2;
    justify-content: center;
  }

  .footer-policy {
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 820px) {
  :root {
    --shell-gutter: 20px;
  }

  .page-shell {
    width: var(--shell-inline-size);
  }

  .site-header {
    width: var(--shell-inline-size);
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo . burger";
    padding-top: 15px;
  }

  .site-logo img {
    width: 143px;
  }

  .header-channel,
  .site-nav--main,
  .header-discuss {
    display: none;
  }

  .mobile-burger {
    display: block;
    justify-self: end;
  }

  .section-heading--split,
  .proof-grid,
  .article-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .hero > *,
  .hero__content,
  .hero-panel {
    min-width: 0;
  }

  .hero h1 {
    max-width: 100%;
  }

  .section-heading--split p {
    justify-self: start;
    max-width: none;
  }

  .section-heading--split {
    gap: 20px;
  }

  .page-legal main {
    padding-top: 0;
  }

  .legal-hero {
    padding-top: 34px;
    padding-bottom: 20px;
  }

  .legal-hero__card {
    justify-items: center;
    padding: 28px 20px;
    text-align: center;
  }

  .legal-hero__card > p:not(.section-tag) {
    font-size: 1rem;
  }

  .legal-hero__meta {
    justify-content: center;
  }

  .legal-section {
    gap: 14px;
    padding-top: 20px;
  }

  .legal-toc,
  .legal-content {
    padding: 28px 20px;
  }

  .legal-content {
    gap: 28px;
  }

  .system-card {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
    min-height: auto;
    top: 84px;
  }

  .system-card__demo {
    justify-self: center;
    align-self: center;
    --demo-scale: min(0.94, calc((100vw - 84px) / 662px));
  }

  .wow-effect-shell {
    padding: 64px 14px 22px;
    background-position: center bottom;
  }

  .wow-effect__heading {
    gap: 4px;
  }

  .wow-effect__heading p {
    font-size: 1.16rem;
  }

  .wow-effect__heading h2 {
    font-size: 26px;
    line-height: 1;
  }

  .wow-effect__grid {
    margin-top: 40px;
    gap: 12px;
  }

  .wow-effect-card,
  .wow-effect-card--accent {
    gap: 18px;
    padding: 24px;
    min-height: auto;
  }

  .wow-effect-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .wow-effect-card__icon img {
    width: 34px;
    height: 34px;
  }

  .wow-effect-card__content h3 {
    font-size: 24px;
    line-height: 1;
  }

  .wow-effect-card__content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .case-article {
    gap: 20px;
    padding: 24px;
  }

  .case-article h3 {
    font-size: 1.5rem;
  }

  .case-article__result {
    font-size: 1.05rem;
  }

  .case-article__chart {
    padding: 16px;
  }

  .case-article__chart-plot {
    min-height: 180px;
  }

  .case-article__chart-top {
    align-items: start;
    gap: 10px;
  }

  .case-article__chart-delta {
    font-size: 1rem;
    text-align: right;
  }

  .case-article__chart-values span {
    font-size: 1.1rem;
  }

  .case-article__chart-axis span {
    font-size: 0.72rem;
  }

  .hero__actions .button {
    min-height: 72px;
    padding: 0 28px;
    border-radius: 26px;
    font-size: 1.05rem;
  }

  .hero__microproof {
    flex-direction: column;
  }

  .hero-panel__layout {
    grid-template-columns: 1fr;
    width: min(86vw, 430px);
    min-height: 430px;
  }

  .hero-panel__visual {
    width: 100%;
  }

  .kpi-grid--hero .kpi-card {
    width: min(168px, 46%);
    padding: 14px 15px;
    border-radius: 16px;
  }

  .kpi-grid--hero .kpi-card--budget {
    top: 26px;
    left: 0;
    width: max-content;
    max-width: calc(100% - 16px);
  }

  .kpi-card--launch {
    right: 0;
    top: 38%;
  }

  .kpi-card--control {
    left: 50%;
    bottom: 64px;
    transform: translateX(-50%);
  }

  .ai-helper {
    right: 12px;
    bottom: 12px;
    width: min(300px, calc(100vw - 20px));
  }

  #aiHelper.is-open {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    height: min(680px, calc(100dvh - 24px));
    max-height: calc(100dvh - 24px);
  }

  #aiHelper.is-open .ai-helper__panel {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto auto auto;
    height: 100%;
    max-height: 100%;
    padding: 12px;
    border-radius: 22px !important;
  }

  #aiHelper.is-open .ai-helper__chat {
    min-height: 0;
    overflow: auto;
  }

  .ai-helper__dock {
    position: relative;
    justify-items: end;
    padding-top: 30px;
  }

  .ai-helper__avatar {
    width: 62px;
    height: 62px;
  }

  .ai-helper__manager {
    position: absolute;
    top: -108px;
    right: 0;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 18px rgba(17, 17, 17, 0.1);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
  }

  .ai-helper__manager::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #63c96f;
    box-shadow: 0 0 0 3px rgba(99, 201, 111, 0.18);
  }

  .ai-helper__panel {
    padding: 18px;
  }

  .ai-helper__form {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .ai-helper__form .button {
    width: auto;
    min-width: 92px;
    min-height: 48px;
    padding-inline: 14px;
  }

  .ai-helper__toggle {
    width: 100%;
    min-height: 42px;
  }

  .ai-helper__hint {
    max-width: none;
  }

  .section-tag {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  #advantages {
    margin-top: 56px;
  }

  .automation-system {
    padding-top: 102px;
  }

  h2 {
    font-size: 26px;
    letter-spacing: 0;
  }

  .hero-panel,
  .feature-card,
  .system-card,
  .proof-card,
  .faq-item,
  .contact-form {
    padding: 22px;
  }

  .telegram-showcase {
    padding: 20px 20px 0;
  }

  .contact-section {
    padding-top: 40px;
  }

  .advantages-showcase {
    padding: 18px;
    border-radius: 24px;
  }

  #advantages .proof-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "launch"
      "manager"
      "service"
      "experience";
    gap: 12px;
  }

  #advantages .proof-card,
  #advantages .proof-card--launch,
  #advantages .proof-card--manager,
  #advantages .proof-card--service,
  #advantages .proof-card--experience {
    min-height: auto;
    padding: 24px 22px;
  }

  #advantages .proof-card h3 {
    font-size: 1.4rem;
  }

  #advantages .proof-card p {
    font-size: 0.98rem;
  }

  .contact-shell {
    gap: 18px;
    padding: 10px;
    border-radius: 18px;
  }

  .contact-card__surface {
    padding: 24px 18px;
  }

  .contact-card--main h2 {
    font-size: 1.75rem;
    letter-spacing: -0.03em;
  }

  .contact-grid,
  .contact-team {
    grid-template-columns: 1fr;
  }

  .contact-team {
    gap: 18px;
  }

  .demo-card {
    padding: 20px;
  }

  .ai-preview-card {
    padding: 20px;
  }

  .ai-preview-layout {
    grid-template-columns: 1fr;
  }

  .ai-preview-chatbox {
    border-left: 0;
    border-top: 1px solid rgba(17, 17, 17, 0.07);
  }

  .ai-preview-chatbox {
    grid-template-rows: auto minmax(220px, auto) auto auto auto;
  }

  .ai-preview-form {
    grid-template-columns: 1fr;
  }

  .ai-preview-form__submit {
    width: 100%;
  }

  .faq-question {
    grid-template-columns: 30px 1fr;
    gap: 14px;
    font-size: 20px;
  }

  .faq-question::before {
    font-size: 36px;
  }

  .faq-answer p {
    padding-left: 44px;
  }

  .demo-card__video-frame {
    min-height: 280px;
    border-radius: 20px;
  }

  .demo-card__video-play {
    width: 68px;
    height: 68px;
  }

  .demo-card__video-play::before {
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 15px;
  }

  .contact-block__label,
  .contact-team p {
    font-size: 0.92rem;
  }

  .contact-block__value {
    gap: 10px;
    font-size: 1.5rem;
  }

  .contact-block__value img {
    width: 26px;
    height: 26px;
  }

  .contact-action {
    min-height: 52px;
    padding: 0 22px;
    font-size: 1rem;
    border-radius: var(--radius-pill);
  }

  .contact-action img {
    width: 22px;
    height: 22px;
  }

  .contact-team__avatars img,
  .contact-team__plus {
    width: 50px;
    height: 50px;
    border-width: 3px;
  }

  .contact-form__field input,
  .contact-form__field select,
  .contact-form__field textarea {
    min-height: 60px;
    padding: 16px 18px;
    font-size: 0.95rem;
  }

  .contact-form__field textarea {
    min-height: 84px;
  }

  .contact-form__submit {
    min-height: 52px;
    border-radius: var(--radius-pill);
    font-size: 1rem;
  }

  .telegram-showcase__content h2 {
    max-width: none;
  }

  .telegram-showcase__cta {
    min-height: 52px;
    border-radius: var(--radius-pill);
    font-size: 1rem;
  }

  .telegram-showcase__visual {
    min-height: 420px;
  }
  .footer-card {
    border-radius: 18px;
    padding: 18px 10px 20px;
  }

  .footer-card__contacts,
  .footer-card__about,
  .footer-card__nav {
    gap: 16px;
  }

  .footer-wave {
    font-size: 37px;
    justify-self: center;
  }

  .footer-contact span,
  .footer-card__about p,
  .footer-socials__label {
    font-size: 14px;
  }

  .footer-contact__value {
    font-size: 24px;
  }

  .site-nav--footer {
    gap: 8px;
  }

  .site-nav--footer a {
    min-height: 43px;
    padding: 0 16px;
    font-size: 12px;
  }

  .site-nav--footer .channel-button,
  .footer-card__nav > .channel-button {
    min-height: 72px;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 0 28px;
    font-size: 1.05rem;
  }

  .footer-legal {
    gap: 12px;
    margin-top: 9px;
    padding: 14px 10px;
    border-radius: 18px;
  }

  .footer-meta,
  .footer-policy {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .footer-legal {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    text-align: center;
  }

  .footer-socials__label {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
  }

  .footer-socials {
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
    justify-content: center;
  }

  .footer-meta {
    grid-column: auto;
    grid-row: auto;
    min-width: 0;
    width: 100%;
    text-align: center;
  }

  .footer-policy-group {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    justify-items: center;
    align-self: start;
  }

  .footer-policy-group .footer-policy {
    text-align: center;
  }
}

main section:not(.hero) .button,
main .contact-action,
main .telegram-showcase__cta,
main .ai-preview-suggestion {
  min-height: 54px;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 16px;
  line-height: 1;
}

.card,
.hero-panel,
.feature-card,
.proof-card,
.faq-item,
.demo-card,
.demo-card__video-frame,
.ai-preview-card,
.ai-preview-stage,
.ai-preview-chatbox,
.system-card,
.contact-card__surface,
.advantages-showcase,
.telegram-showcase__cta,
.footer-card,
.footer-legal {
  border-radius: 16px !important;
}

.contact-shell,
.demo-card,
.ai-preview-card,
.system-card,
.advantages-showcase,
.footer-card,
.footer-legal {
  border-radius: 27px !important;
  overflow: hidden;
}

.ai-preview-stage,
.ai-preview-chatbox {
  border-radius: 0 !important;
}

.card,
.hero-panel,
.feature-card,
.proof-card,
.faq-item,
.demo-card,
.ai-preview-card,
.system-card,
.contact-card__surface,
.advantages-showcase,
.telegram-showcase__cta,
.footer-card,
.footer-legal,
.contact-form {
  border: 0 !important;
}

.demo-card,
.demo-card__video-frame,
.ai-preview-layout,
.contact-card__surface {
  box-shadow: none !important;
}

.wow-effect-shell {
  border-radius: 27px !important;
  background-color: #f7f9ff;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.5) 100%),
    url("assets/wow-effect-bg-from-figma.png");
}

.demo-card,
.card.demo-card {
  background:
    radial-gradient(
      27% 24% at 33% 18%,
      rgba(233, 255, 186, 0.34) 0%,
      rgba(233, 255, 186, 0.12) 38%,
      rgba(233, 255, 186, 0) 78%
    ),
    radial-gradient(
      30% 28% at 42% 48%,
      rgba(228, 255, 179, 0.26) 0%,
      rgba(228, 255, 179, 0.1) 40%,
      rgba(228, 255, 179, 0) 78%
    ),
    radial-gradient(
      36% 30% at 50% 92%,
      rgba(225, 255, 172, 0.3) 0%,
      rgba(225, 255, 172, 0.1) 44%,
      rgba(225, 255, 172, 0) 80%
    ),
    linear-gradient(180deg, #fbfaf6 0%, #f8f6ef 100%) !important;
}

.ai-preview-card,
.card.ai-preview-card {
  box-shadow: none !important;
}

@media (max-width: 1180px) and (min-width: 821px) {
  .header-channel {
    width: 240px;
    min-width: 240px;
    min-height: 60px;
    padding-right: 12px;
    font-size: 12.5px;
  }

  .header-channel__icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .system-card {
    min-height: min(620px, calc(100vh - 120px));
  }

  @supports (animation-timeline: view()) {
    .system-card {
      animation-name: systemCardRevealCompact;
      animation-range: entry 0% entry 12%;
    }
  }

  .footer-card__contacts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-card__nav {
    justify-items: start;
  }

  .site-nav--footer {
    justify-content: flex-start;
  }

  .wow-effect__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }
}

@media (min-width: 601px) {
  .evidence-section .article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) and (min-width: 601px) {
  .evidence-section .case-article,
  .evidence-section .case-article.card,
  .evidence-section .case-article--link {
    gap: 18px;
    padding: 22px;
  }

  .evidence-section .case-article h3 {
    font-size: clamp(1.12rem, 2vw, 1.45rem);
  }

  .evidence-section .case-article__result {
    font-size: clamp(0.96rem, 1.5vw, 1.08rem);
  }

  .evidence-section .case-article__chart-plot {
    min-height: clamp(145px, 20vw, 190px);
  }

  .evidence-section .case-article__chart-values span {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  }
}

@media (max-width: 1100px) {
  @supports (animation-timeline: view()) {
    .system-card {
      animation-name: systemCardRevealCompact;
      animation-range: entry 0% entry 12%;
    }
  }

  .hero-panel__layout {
    width: min(100%, 560px);
    justify-self: center;
  }

  .kpi-grid--hero {
    inset: 0;
  }

  .page-telegram #system .system-grid {
    grid-template-columns: 1fr;
  }

  .page-telegram #system .system-card:nth-child(1) {
    grid-template-columns: 1fr;
  }

  .page-telegram #system .system-card__demo,
  .page-telegram #system .system-card:nth-child(1) .system-card__demo {
    --demo-scale: min(0.72, calc((100vw - 84px) / 760px));
    justify-self: center;
  }

  .wow-effect__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .footer-card__contacts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-preview-card {
    gap: 24px;
  }

  .ai-preview-layout {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
    --ai-preview-stage-height: 72px;
  }

  .ai-preview-media {
    width: 72px;
    height: 72px;
    justify-self: start;
  }

  .ai-preview-stage,
  .ai-preview-stage--photo {
    width: 72px;
    height: 72px;
    min-height: 0;
    padding: 0;
    border-radius: 999px !important;
    overflow: hidden;
  }

  .ai-preview-stage__photo {
    width: 72px;
    height: 72px;
    min-height: 0;
    border-radius: 999px;
    object-fit: cover;
    object-position: 50% 35%;
  }

  .ai-preview-chatbox {
    gap: 16px;
    height: auto;
    max-height: none;
    padding: 0;
    border-left: 0;
    border-top: 0;
    background: transparent;
  }

  .ai-preview-chatbox__status {
    position: absolute;
    top: 54px;
    left: 56px;
    z-index: 4;
    width: 14px;
    height: 14px;
    min-height: 0;
    padding: 0;
    border: 2px solid #f5f5f5;
    background: #2dbe64;
    font-size: 0;
  }
}

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

@media (max-width: 820px) {
  .site-header {
    align-items: center;
  }

  .mobile-burger {
    width: 52px;
    height: 52px;
  }

  .hero-panel__layout {
    width: min(86vw, 430px);
  }

  .hero-panel__visual {
    width: 100%;
  }

  .article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .case-article h3,
  .system-card h3,
  .wow-effect-card__content h3,
  .feature-card h3,
  .proof-card h3 {
    font-size: min(1.5rem, 24px);
  }

  .ai-preview-card {
    gap: 24px;
    padding: 20px;
  }

}

@media (max-width: 600px) {
  .article-grid,
  .evidence-section .article-grid,
  .wow-effect__grid {
    grid-template-columns: 1fr;
  }

  .case-article h3,
  .system-card h3,
  .wow-effect-card__content h3,
  .feature-card h3,
  .proof-card h3 {
    font-size: min(1.375rem, 22px);
  }

  .ai-preview-layout {
    padding: 18px;
  }

  .footer-card__contacts {
    grid-template-columns: 1fr;
  }

  .wow-effect__grid {
    margin-top: 20px;
  }
}

#advantages .proof-card,
#advantages .proof-card--launch,
#advantages .proof-card--manager,
#advantages .proof-card--service,
#advantages .proof-card--experience {
  padding: 22px;
}

.proof-card--launch .proof-card__image {
  width: min(100%, 307px);
  align-self: center;
  justify-self: center;
}

.system-card__demo {
  justify-self: center;
  align-self: center;
}

.case-article__chart,
.evidence-section .case-article__chart {
  padding: 0;
}

.wow-effect-shell {
  padding: 40px;
}

.demo-card,
.card.demo-card,
.ai-preview-card,
.card.ai-preview-card {
  padding: 40px;
}

.contact-form.contact-form--replica {
  padding: 0;
}

.footer-card,
.footer-legal {
  padding: 40px;
}

@media (max-width: 820px) {
  h2 {
    font-size: 28px;
  }

  .system-card h3,
  .wow-effect-card__content h3,
  .feature-card h3,
  .proof-card h3,
  .case-article h3,
  .faq-question,
  .contact-block__value,
  .footer-contact__value,
  .demo-card__subheading {
    font-size: 20px !important;
  }

  .case-article h3 {
    font-size: 20px !important;
  }

  .case-article__result,
  .case-article__chart-values span,
  .demo-card__benefits li,
  .ai-preview-chatbox__header strong,
  .ai-preview-suggestion,
  .contact-action,
  .button,
  .site-nav--footer .channel-button,
  .footer-card__nav > .channel-button {
    font-size: 16px;
  }

  .kpi-grid--hero .kpi-card {
    width: min(112px, 31%);
    padding: 9px 10px;
    border-radius: 12px;
  }

  .kpi-grid--hero .kpi-card--budget {
    width: max-content;
    max-width: calc(100% - 12px);
  }

.page-telegram #system .system-card__demo,
.page-telegram #system .system-card:nth-child(1) .system-card__demo {
  --demo-scale: min(0.58, calc((100vw - 56px) / 760px));
}

.page-telegram #system .system-card:nth-child(2) .system-card__demo {
  --demo-scale: min(0.66, calc((100vw - 36px) / 820px));
}

  .kpi-grid--hero dt {
    font-size: 0.72rem;
  }

  .kpi-grid--hero dd {
    margin-top: 4px;
    font-size: 0.97rem;
    line-height: 1.1;
  }

  .kpi-card--control {
    bottom: 82px;
  }

  .demo-card__benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-preview-layout {
    grid-template-rows: auto minmax(0, 1fr);
    max-height: calc(100svh - 96px);
    padding: 20px;
  }

  .ai-preview-chatbox {
    min-height: 0;
    grid-template-rows: auto minmax(0, 1fr) auto auto auto;
  }

  .ai-preview-chatlog {
    min-height: 0;
    max-height: none;
  }

  .wow-effect-shell,
  .footer-card,
  .footer-legal {
    padding: 20px;
  }

  .demo-card,
  .card.demo-card,
  .ai-preview-card,
  .card.ai-preview-card {
    padding: 28px 20px;
  }

  .demo-card,
  .card.demo-card {
    gap: 20px;
  }

  .demo-card__content {
    margin-top: 20px;
  }

  .contact-shell {
    gap: 20px;
  }

  .contact-card__surface,
  .contact-card--main .contact-card__surface,
  .contact-card--form .contact-card__surface {
    padding-right: 20px;
    padding-left: 20px;
  }

  .faq-section .faq-list {
    margin-top: 50px;
  }

  .contact-form.contact-form--replica {
    padding: 0;
  }
}

@media (max-width: 1100px) {
  .wow-effect-shell,
  .footer-card,
  .footer-legal {
    padding: 20px;
  }

  .wow-effect-shell {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .demo-card,
  .card.demo-card,
  .ai-preview-card,
  .card.ai-preview-card {
    padding: 28px 20px;
  }

  .demo-card,
  .card.demo-card {
    gap: 20px;
  }

  .demo-card__content {
    margin-top: 20px;
  }

  .contact-shell {
    gap: 20px;
  }

  .contact-card__surface,
  .contact-card--main .contact-card__surface,
  .contact-card--form .contact-card__surface {
    padding-right: 20px;
    padding-left: 20px;
  }

  .contact-form.contact-form--replica {
    padding: 0;
  }
}

@media (max-width: 820px) {
  .ai-preview-card,
  .card.ai-preview-card {
    padding: 28px 0;
  }

  .ai-preview-layout {
    gap: 14px;
    max-height: none;
    padding: 0;
    overflow: visible;
  }

  .ai-preview-chatbox {
    grid-template-rows: auto minmax(0, 1fr) auto auto auto;
    width: 100%;
    height: clamp(444px, calc(100dvh - 124px), 620px);
    max-height: clamp(444px, calc(100dvh - 124px), 620px);
    min-height: 0;
    padding: 12px;
    border: 0;
    border-radius: 22px !important;
    background: #f5f5f5;
  }

  .ai-preview-chatlog {
    min-height: 0;
    max-height: none;
    padding-right: 0;
    overflow: auto;
  }

  .ai-preview-suggestions {
    max-height: none;
    align-content: start;
    overflow: visible;
  }

  .ai-helper__choices {
    max-height: none;
    overflow: visible;
  }

  .ai-preview-form {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .ai-preview-form__input {
    min-height: 50px;
    padding: 0 14px;
  }

  .ai-preview-form__submit {
    width: auto;
    min-width: 92px;
    min-height: 50px;
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (max-width: 600px) {
  .mobile-menu__nav {
    gap: 16px;
  }

  .mobile-menu__nav a {
    font-size: 20px;
  }

  .mobile-menu__nav a[href="#contact"],
  .mobile-menu__nav a[href="/#contact"] {
    min-height: 60px;
    font-size: 16px;
  }

  .mobile-menu__descr {
    font-size: 14px;
  }

  .mobile-menu__channel {
    min-height: 60px;
    font-size: 14px;
  }
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 60px;
  color: #787878;
  font-size: 0.95rem;
  line-height: 1.4;
}

.breadcrumbs a {
  color: inherit;
}

.breadcrumbs a:hover {
  color: #111111;
}

.page-development .hero__lead {
  max-width: 38ch;
  font-size: 1.3rem;
}

.development-hero h1 {
  max-width: 12ch;
}

.development-hero__title-line {
  display: block;
  margin-top: 0;
  color: #2a2a2a;
  font-style: normal;
}

.development-hero-panel {
  min-height: 560px;
}

.page-development .hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: 40px;
}

.page-development .development-hero-panel {
  width: 100%;
  min-height: 720px;
  justify-self: end;
}

.page-development .hero-panel__layout {
  min-height: 620px;
}

.page-development .hero-panel__visual {
  width: min(118%, 780px);
  margin-inline: auto -72px;
  overflow: visible;
}

.page-development .hero-panel__image {
  transform: translate(-80px, -24px) scale(0.815);
  transform-origin: 74% center;
}

.page-development .kpi-grid--hero .kpi-card--budget {
  left: 100px;
}

.page-development .kpi-grid--hero .kpi-card--launch {
  right: 40px;
  width: max-content;
  max-width: calc(100% - 76px);
}

.page-development .kpi-grid--hero .kpi-card--control {
  left: 114px;
}

.page-development #advantages {
  margin-top: 56px;
}

.development-analysis {
  padding-top: 104px;
}

.development-analysis .section-heading {
  align-items: start;
}

.development-analysis .section-heading h2 {
  margin: 0;
}

.development-analysis-story {
  --analysis-sticky-top: 112px;
  --analysis-stage-height: 560px;
  display: grid;
  grid-template-columns: minmax(320px, 0.96fr) minmax(0, 1.04fr);
  gap: 40px;
  margin-top: 60px;
  align-items: start;
}

.development-analysis-visual {
  position: sticky;
  top: var(--analysis-sticky-top);
  min-height: calc(var(--analysis-story-base-height, 484px) * var(--analysis-story-scale, 1));
  padding: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.development-analysis-story {
  --analysis-story-base-width: 566px;
  --analysis-story-base-height: 560px;
  --analysis-story-scale: 1;
}

.development-analysis-visual--site-story {
  display: grid;
  align-content: start;
  justify-items: center;
}

.development-analysis-stage-scaler {
  position: relative;
  width: 100%;
  height: calc(var(--analysis-story-base-height) * var(--analysis-story-scale));
}

.development-analysis-stage-canvas {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--analysis-story-base-width);
  height: var(--analysis-story-base-height);
  transform: translateX(-50%) scale(var(--analysis-story-scale));
  transform-origin: top center;
}

.development-analysis-stage {
  position: relative;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #e9e9e9;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 980ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 980ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.development-analysis-stage.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.development-analysis-stage__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.development-analysis-stage__search-screen,
.development-analysis-stage__insights-screen,
.development-analysis-stage__wire-screen,
.development-analysis-stage__brief-screen {
  position: absolute;
  inset: 0;
  transition:
    opacity 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.development-analysis-stage__search-screen {
  padding: 48px 38px 40px;
  opacity: 0;
  transform: translateY(20px) scale(0.985);
}

.development-analysis-stage__search-screen.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.development-analysis-stage__search-screen.is-fading {
  opacity: 0;
  transform: none;
}

.development-analysis-stage__search-panel {
  padding: 12px 14px 14px;
  border-radius: 16px;
  background: #ecf8ef;
}

.development-analysis-stage__search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 14px;
  background: #ffffff;
}

.development-analysis-stage__search-input {
  flex: 1 1 auto;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #111111;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.development-analysis-stage__cursor {
  width: 1.5px;
  height: 20px;
  background: #111111;
  opacity: 0;
}

.development-analysis-stage__cursor.is-visible {
  opacity: 1;
  animation: developmentAnalysisCursorBlink 1s steps(1) infinite;
}

.development-analysis-stage__search-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 2px solid rgba(17, 17, 17, 0.28);
  border-radius: 50%;
}

.development-analysis-stage__search-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -2px;
  width: 9px;
  height: 2px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.28);
  transform: rotate(45deg);
  transform-origin: center;
}

.development-analysis-stage__search-filters {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 14px;
  padding: 0 10px 0 4px;
}

.development-analysis-stage__search-filter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111111;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.development-analysis-stage__search-radio {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(17, 17, 17, 0.22);
  background: #ffffff;
}

.development-analysis-stage__search-filter.is-active .development-analysis-stage__search-radio {
  border-color: #3051f6;
}

.development-analysis-stage__search-filter.is-active .development-analysis-stage__search-radio::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #3051f6;
}

.development-analysis-stage__search-results {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.development-analysis-stage__search-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 18px 0 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background-color 360ms ease,
    box-shadow 360ms ease;
}

.development-analysis-stage__search-row.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.development-analysis-stage__search-row.is-selected {
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(48, 81, 246, 0.14);
}

.development-analysis-stage__search-row.is-clicked {
  background: #f3f6ff;
  box-shadow:
    0 0 0 1px rgba(48, 81, 246, 0.22),
    0 0 0 8px rgba(48, 81, 246, 0.08);
  transform: scale(0.988);
}

.development-analysis-stage__search-plus,
.development-analysis-stage__search-row strong,
.development-analysis-stage__search-label {
  color: #111111;
  font-size: 15px;
  line-height: 1.1;
}

.development-analysis-stage__search-plus {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}

.development-analysis-stage__search-row strong {
  font-weight: 500;
}

.development-analysis-stage__search-label {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.development-analysis-stage__insights-screen {
  padding: 42px 38px 40px;
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 980ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 980ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.development-analysis-stage__insights-screen.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.development-analysis-stage__insights-screen.is-exiting {
  opacity: 0;
  transform: translateX(-86px) scale(0.958);
}

.development-analysis-stage__insights-head h2,
.development-analysis-stage__brief-head h2 {
  margin: 0;
  color: #111111;
  font-family: "Inter", "TildaSans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.18;
}

.development-analysis-stage__insights-viewport {
  height: 452px;
  margin-top: 20px;
  overflow: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.development-analysis-stage__insights-viewport::-webkit-scrollbar {
  display: none;
}

.development-analysis-stage__insights-list {
  display: grid;
  gap: 12px;
  padding: 6px 4px 0 0;
}

.development-analysis-stage__insight-card {
  padding: 18px 20px 18px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.development-analysis-stage__insight-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.development-analysis-stage__insight-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.development-analysis-stage__insight-rank {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffc426;
  color: #111111;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.development-analysis-stage__insight-card:nth-child(2) .development-analysis-stage__insight-rank {
  background: #e4e4e4;
}

.development-analysis-stage__insight-card:nth-child(3) .development-analysis-stage__insight-rank {
  background: #de8e1f;
}

.development-analysis-stage__insight-card strong {
  color: #111111;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.development-analysis-stage__insight-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #111111;
  font-size: 14px;
  line-height: 1.42;
}

.development-analysis-stage__insight-card li + li {
  margin-top: 6px;
}

.development-analysis-stage__wire-screen {
  padding: 28px;
  opacity: 0;
  transform: translateX(48px) scale(0.97);
  transform-origin: center top;
}

.development-analysis-stage__wire-screen.is-visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.development-analysis-stage__wire-screen.is-shifting {
  transform: translateY(-28px) scaleX(0.94) scaleY(0.98);
}

.development-analysis-stage__wire-screen.is-fading {
  opacity: 0;
  transform: translateY(-96px) scaleX(0.86) scaleY(0.92);
}

.development-analysis-stage__wire-viewport {
  height: 504px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
}

.development-analysis-stage__wire-page {
  padding: 14px;
  transform: translateY(0);
  transition: transform 860ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.development-analysis-stage__wire-block {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  transition:
    opacity 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.development-analysis-stage__wire-block + .development-analysis-stage__wire-block {
  margin-top: 14px;
}

.development-analysis-stage__wire-block.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.development-analysis-stage__wire-block--hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) 132px;
  gap: 18px;
  padding: 18px;
  min-height: 138px;
}

.development-analysis-stage__wire-kicker {
  display: inline-block;
  color: rgba(17, 17, 17, 0.5);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.development-analysis-stage__wire-hero-copy h3,
.development-analysis-stage__wire-block-head h3 {
  margin: 10px 0 0;
  color: #111111;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  transition: color 360ms ease;
}

.development-analysis-stage__wire-hero-copy p {
  margin: 10px 0 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: 13px;
  line-height: 1.4;
  transition: color 360ms ease;
}

.development-analysis-stage__wire-pills {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.development-analysis-stage__wire-pills span,
.development-analysis-stage__wire-hero-aside span,
.development-analysis-stage__wire-service-icon,
.development-analysis-stage__wire-service-line,
.development-analysis-stage__wire-cases-grid span,
.development-analysis-stage__wire-process span {
  display: block;
  border-radius: 999px;
  background: #e9e9e9;
}

.development-analysis-stage__wire-pills span {
  width: 74px;
  height: 18px;
}

.development-analysis-stage__wire-hero-aside {
  display: grid;
  gap: 12px;
  align-content: start;
}

.development-analysis-stage__wire-hero-aside span:first-child {
  height: 76px;
  border-radius: 18px;
}

.development-analysis-stage__wire-hero-aside span:nth-child(2),
.development-analysis-stage__wire-hero-aside span:nth-child(3) {
  height: 14px;
}

.development-analysis-stage__wire-block--services,
.development-analysis-stage__wire-block--cases,
.development-analysis-stage__wire-block--process {
  padding: 18px;
}

.development-analysis-stage__wire-block-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.development-analysis-stage__wire-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.development-analysis-stage__wire-service-card {
  position: relative;
  min-height: 138px;
  padding: 16px 14px;
  border-radius: 16px;
  background: #f7f7f7;
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.development-analysis-stage__wire-service-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.development-analysis-stage__wire-service-line {
  height: 12px;
  margin-top: 18px;
}

.development-analysis-stage__wire-service-line--short {
  width: 72%;
  margin-top: 10px;
}

.development-analysis-stage__wire-price {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  opacity: 0;
  transform: translateY(8px) scale(0.94);
  transition:
    opacity 460ms ease,
    transform 460ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.development-analysis-stage__wire-price.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.development-analysis-stage__wire-cases-timing {
  margin: 2px 0 0;
  color: rgba(17, 17, 17, 0.58);
  font-size: 12px;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 420ms ease,
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.development-analysis-stage__wire-cases-timing.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.development-analysis-stage__wire-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.development-analysis-stage__wire-cases-grid span {
  min-height: 120px;
  border-radius: 18px;
}

.development-analysis-stage__wire-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.development-analysis-stage__wire-process span {
  min-height: 56px;
  border-radius: 14px;
}

.development-analysis-stage__suggestion {
  position: absolute;
  display: grid;
  gap: 6px;
  width: 262px;
  padding: 14px 16px 14px 18px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow:
    0 22px 34px rgba(17, 17, 17, 0.16),
    0 8px 18px rgba(17, 17, 17, 0.1);
  opacity: 0;
  transform: translateX(18px) scale(0.96);
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.development-analysis-stage__suggestion::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  width: 24px;
  height: 24px;
  border-left: 1px solid rgba(17, 17, 17, 0.06);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  background: #ffffff;
  transform: translateY(-50%) rotate(45deg);
  box-shadow: -10px 12px 18px rgba(17, 17, 17, 0.08);
}

.development-analysis-stage__suggestion.is-visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.development-analysis-stage__suggestion--hero {
  top: 78px;
  right: 10px;
}

.development-analysis-stage__suggestion--price {
  top: 206px;
  right: 8px;
}

.development-analysis-stage__suggestion--cases {
  top: 120px;
  right: 10px;
}

.development-analysis-stage__suggestion-text {
  margin: 0;
  color: #111111;
  font-size: 14px;
  line-height: 1.28;
  font-weight: 600;
}

.development-analysis-stage__suggestion-source {
  color: #3051f6;
  font-size: 12px;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.development-analysis-stage__suggestion-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.development-analysis-stage__suggestion-impact {
  flex: 0 0 auto;
  color: #08aa4d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.development-analysis-stage__brief-screen {
  padding: 48px 38px 40px;
  opacity: 0;
  transform: translateY(112px) scale(0.96);
}

.development-analysis-stage__brief-screen.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.development-analysis-stage__brief-sheet {
  min-height: 456px;
  padding: 24px 22px 20px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow:
    0 24px 42px rgba(17, 17, 17, 0.08),
    0 8px 18px rgba(17, 17, 17, 0.05);
  transform: translateY(20px);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.development-analysis-stage__brief-screen.is-visible .development-analysis-stage__brief-sheet {
  transform: translateY(0);
}

.development-analysis-stage__brief-head {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.development-analysis-stage__brief-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.development-analysis-stage__brief-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.development-analysis-stage__brief-body {
  height: 368px;
  margin-top: 18px;
  overflow: auto;
  scrollbar-width: none;
  color: #111111;
  font-size: 15px;
  line-height: 1.52;
  white-space: pre-wrap;
}

.development-analysis-stage__brief-body::-webkit-scrollbar {
  display: none;
}

@keyframes developmentAnalysisCursorBlink {
  0%,
  48% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.development-analysis-track {
  position: relative;
  min-height: calc(var(--analysis-stage-height) + 700vh);
}

.development-analysis-cardstack {
  position: sticky;
  top: var(--analysis-sticky-top);
  min-height: var(--analysis-stage-height);
  display: grid;
  align-items: start;
  overflow: visible;
}

.development-analysis-step {
  --analysis-translate-y: -52px;
  --analysis-opacity: 0;
  --analysis-shadow-y: 18px;
  --analysis-shadow-spread: 0px;
  --analysis-shadow-opacity: 0.04;
  --analysis-shadow-blur: 24px;
  --analysis-z-index: 1;
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: var(--analysis-stage-height);
  padding: 28px 30px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 17, 0.05),
    0 var(--analysis-shadow-y) var(--analysis-shadow-blur) var(--analysis-shadow-spread)
      rgba(17, 17, 17, var(--analysis-shadow-opacity));
  transform: translateY(var(--analysis-translate-y));
  opacity: var(--analysis-opacity);
  transition: none;
  will-change: transform;
  z-index: var(--analysis-z-index);
  pointer-events: none;
}

.development-analysis-step__index,
.development-analysis-step h3,
.development-analysis-step p {
  transition: opacity 0.24s ease;
}

.development-analysis-step.is-stack {
  background: #ffffff;
}

.development-analysis-step.is-stack .development-analysis-step__index,
.development-analysis-step.is-stack h3,
.development-analysis-step.is-stack p {
  opacity: 0;
}

.development-analysis-step.is-active {
  background: #ffffff;
}

.development-analysis-step.is-entering {
  background: #ffffff;
}

.development-analysis-triggers {
  display: grid;
  gap: 0;
  padding-bottom: 18vh;
}

.development-analysis-trigger {
  min-height: 118vh;
}

.development-analysis-trigger:last-child {
  min-height: 58vh;
}

.development-analysis-step__index {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: #4b4b4b;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.development-analysis-step__index::after {
  content: "";
  width: 54px;
  height: 1px;
  background: rgba(17, 17, 17, 0.16);
}

.development-analysis-step h3,
.development-analysis-step p {
  margin: 0;
}

.development-analysis-step h3 {
  color: #101010;
  max-width: none;
  width: 100%;
  font-size: 2.2rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.development-analysis-step p {
  color: #343434;
  max-width: none;
  width: 100%;
  font-size: 1.08rem;
  line-height: 1.5;
}

.development-production-highlight-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.development-production-highlight-section + .development-production-section {
  margin-top: 0;
}

.development-production-section {
  padding-top: 70px;
}

.development-production-shell {
  display: grid;
  gap: 40px;
  margin-top: 0;
}

.development-production-heading {
  max-width: none;
  justify-items: center;
  text-align: center;
}

.development-production-heading h2 {
  margin: 0;
}

.development-production-highlight {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 78px 48px;
  border-radius: 27px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 50%, rgba(135, 214, 52, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(4, 12, 2, 0.54) 0%, rgba(4, 12, 2, 0.74) 100%),
    url("assets/production-highlight-bg.jpg") center / cover no-repeat;
  text-align: center;
}

.development-production-highlight > * {
  position: relative;
  z-index: 1;
}

.development-production-highlight__lead {
  max-width: 18ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.development-production-highlight__lead span {
  display: block;
  color: rgba(160, 255, 60, 0.9);
}

.development-production-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.development-production-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 320px;
  padding: 34px 30px;
  box-shadow: none;
  text-align: center;
}

.development-production-card__icon {
  display: inline-grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 32px;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
}

.development-production-card__icon svg,
.development-production-card__icon img {
  display: block;
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.development-production-card__icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.development-production-card h3,
.development-production-card p,
.development-production-pricing h3,
.development-production-pricing p {
  margin: 0;
}

.development-production-card h3 {
  color: #181818;
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.development-production-card p {
  color: #3b3b3f;
  font-size: 1.08rem;
  line-height: 1.48;
}

.development-production-pricing {
  display: grid;
  justify-items: center;
  gap: 40px;
  width: 100%;
  max-width: none;
  margin: 22px 0 0;
  padding: 40px;
  border-radius: 27px !important;
  box-shadow: none;
  text-align: center;
}

.development-production-pricing__media {
  width: min(100%, 332px);
  aspect-ratio: 1660 / 1244;
  border-radius: 16px;
  overflow: hidden;
  background: #f2f2f2;
}

.development-production-pricing__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.development-production-pricing__tag {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.4;
  font-weight: 400;
  margin: 0;
}

.development-production-pricing h3 {
  color: #3b73e0;
  font-size: 1.15rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.development-production-pricing__lead {
  color: #2a2a2a;
  font-size: 1.6rem;
  line-height: 1.3;
  max-width: 51ch;
}

.development-production-pricing__lead strong {
  font-weight: 600;
}

.development-cases__heading {
  max-width: none;
  justify-items: center;
  text-align: center;
}

.development-case-list {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}

.development-case-list--expanded {
  margin-top: 18px;
}

.development-case {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 26px;
  align-items: center;
  padding: 40px;
  border-radius: 27px !important;
  cursor: pointer;
}

.development-case[hidden] {
  display: none;
}

.development-cases-more {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.development-cases-more__button {
  display: inline-flex;
  list-style: none;
  margin: 0 auto;
  cursor: pointer;
}

.development-cases .button--secondary,
.crm-systems-section .button--secondary {
  box-shadow: none;
}

.development-cases-more__button::-webkit-details-marker {
  display: none;
}

.development-cases-more[open] .development-cases-more__button {
  display: none;
}

.development-case__content {
  display: grid;
  align-content: start;
  gap: 20px;
}

.development-case__meta {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
}

.development-case__meta-item {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
  color: #2a2a2a;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
}

.development-case__content h3,
.development-case__content p {
  margin: 0;
}

.development-case__content h3 {
  font-size: 2.65rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.development-case__content p {
  color: #343434;
  font-size: 1.18rem;
  line-height: 1.5;
}

.development-case__result {
  color: #111111 !important;
  font-weight: 500;
}

.development-case__preview {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.82), transparent 38%),
    linear-gradient(140deg, #f7fafb 0%, #dce9ef 48%, #eef4f6 100%);
  color: #8f8f8f;
  font-size: clamp(2.25rem, 3vw, 3.5rem);
  letter-spacing: -0.04em;
  text-align: center;
  text-decoration: none;
}

.development-case__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.42s cubic-bezier(0.2, 0.82, 0.2, 1);
}

.development-case__preview::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.04);
  pointer-events: none;
}

.development-case:hover .development-case__preview img,
.development-case:focus-within .development-case__preview img {
  transform: scale(1.08);
}

@media (max-width: 1100px) {
  .page-development .hero {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .page-development .development-hero-panel {
    width: 100%;
    justify-self: center;
  }

  .development-analysis-story,
  .development-case {
    grid-template-columns: 1fr;
  }

  .development-analysis-visual {
    position: relative;
    top: 0;
    min-height: calc(var(--analysis-story-base-height, 484px) * var(--analysis-story-scale, 1));
  }

  .development-analysis-cardstack {
    top: 0;
  }

  .development-case__preview {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 820px) {
  .page-development .hero__lead {
    max-width: 32ch;
    font-size: 1.15rem;
  }

  .development-analysis {
    padding-top: 74px;
  }

  .development-analysis-visual {
    min-height: calc(var(--analysis-story-base-height, 484px) * var(--analysis-story-scale, 1));
  }

  .development-analysis-track {
    display: grid;
    gap: 32px;
    min-height: 0;
  }

  .development-analysis-cardstack {
    position: relative;
    top: auto;
    min-height: 0;
    display: grid;
    gap: 32px;
  }

  .development-analysis-step {
    position: relative;
    inset: auto;
    min-height: 0;
    padding: 0;
    opacity: 1;
    transform: none;
    z-index: auto;
  }

  .development-analysis-step.is-active,
  .development-analysis-step.is-stack {
    opacity: 1;
    transform: none;
    z-index: auto;
  }

  .development-analysis-triggers {
    display: none;
    padding-bottom: 0;
  }

  .development-analysis-step h3 {
    font-size: 1.9rem;
  }

  .development-production-grid {
    grid-template-columns: 1fr;
  }

  .development-production-card,
  .development-production-pricing {
    padding: 28px 26px;
  }

  .development-production-pricing__media {
    width: min(100%, 260px);
    aspect-ratio: 1660 / 1244;
  }

  .development-production-pricing__lead {
    font-size: 1.5rem;
  }

  .development-case {
    padding: 24px;
  }

  .development-case__content h3 {
    font-size: 2.35rem;
  }

}

@media (max-width: 640px) {
  .breadcrumbs {
    margin-bottom: 48px;
  }

  .development-analysis-step h3 {
    font-size: 1.55rem;
  }

  .development-production-highlight-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .development-production-shell {
    gap: 20px;
  }

  .development-production-highlight {
    padding: 56px 28px;
  }

  .development-production-highlight__lead {
    max-width: none;
    font-size: 2.15rem;
  }

  .development-production-card {
    min-height: 280px;
    gap: 18px;
    padding: 26px 22px;
  }

  .development-production-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .development-production-card__icon svg {
    width: 27px;
    height: 27px;
  }

  .development-production-card h3 {
    font-size: 1.75rem;
  }

  .development-production-card p,
  .development-production-pricing__lead {
    font-size: 1.05rem;
  }

  .development-production-pricing h3 {
    font-size: 1.15rem;
  }

  .development-production-pricing {
    gap: 18px;
  }

  .development-case__preview {
    min-height: 220px;
    font-size: 1.8rem;
  }
}

body.page-development {
  overflow-x: hidden;
}

.page-development main > section:not(.hero) {
  margin: 140px 0 0;
  padding-top: 0;
  padding-bottom: 0;
}

.page-development #advantages {
  margin-top: 140px;
}

.page-development main > #advantages.advantages-showcase {
  padding: 40px;
}

.page-development .site-footer {
  padding-top: 140px;
}

@media (max-width: 1100px) {
  .page-development .development-hero .eyebrow {
    justify-content: center;
  }

  .page-development .development-hero .eyebrow__dot {
    display: none;
  }

  .page-development .hero__content,
  .page-development .development-analysis .section-heading,
  .page-development .development-analysis .section-heading--split,
  .page-development .development-production-heading,
  .page-development .development-cases__heading,
  .page-development .demo-card__content,
  .page-development .faq-section .section-heading {
    justify-items: center;
    text-align: center;
  }

  .page-development .development-analysis .section-heading p,
  .page-development .demo-card__content p {
    justify-self: center;
    text-align: center;
  }

  .page-development .development-case__content {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 820px) {
  .page-development .development-hero-panel {
    min-height: 600px;
  }

  .page-development .hero-panel__layout {
    min-height: 560px;
    width: min(100%, 430px);
  }

  .page-development .hero-panel__visual {
    width: 100%;
    margin-inline: 0;
    overflow: visible;
  }

  .page-development .hero-panel__image {
    width: min(100%, 430px);
    transform: translateY(-10px) scale(0.92);
    transform-origin: center;
  }

  .page-development #advantages .proof-card,
  .page-development .development-analysis-step,
  .page-development .development-production-card,
  .page-development .development-production-pricing,
  .page-development .development-case {
    padding: 28px 20px;
  }

  .page-development .development-analysis-step {
    border-radius: 24px;
  }

  .page-development .development-case {
    width: 100%;
    min-width: 0;
  }

  .page-development .development-case__content {
    gap: 18px;
  }

  .page-development .development-case__content h3 {
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.03em;
  }

  .page-development .development-case__content p {
    font-size: 1.05rem;
    line-height: 1.48;
    font-weight: 400;
  }

  .page-development .development-case__preview {
    min-height: 220px;
  }

  .page-development .faq-section .section-heading {
    max-width: none;
    margin-inline: auto;
    padding-inline: 20px;
  }

  .page-development main > #advantages.advantages-showcase {
    padding: 18px;
  }
}

@media (max-width: 600px) {
  .page-development main > section:not(.hero),
  .page-development #advantages {
    margin-top: 100px;
  }

  .page-development #advantages {
    margin-top: 56px;
  }

  .page-development .site-footer {
    padding-top: 100px;
  }

  .page-development .development-hero-panel {
    min-height: 400px;
  }

  .page-development .hero-panel__layout {
    min-height: 356px;
  }

  .page-development .hero-panel__image {
    transform: translateY(-4px) scale(0.88);
  }

  .page-development .kpi-grid--hero .kpi-card--budget {
    top: 54px;
    left: clamp(20px, 11%, 48px);
  }

  .page-development .kpi-grid--hero .kpi-card--launch {
    top: 32%;
    right: 40px;
    transform: none;
  }

  .page-development .kpi-grid--hero .kpi-card--control {
    bottom: 64px;
    left: clamp(62px, 31%, 114px);
    transform: none;
  }

  .page-development .development-analysis .section-heading {
    padding-inline: 20px;
  }

  .page-development .development-analysis-story {
    margin-top: 40px;
  }

  .page-development .development-case__content {
    gap: 16px;
  }

  .page-development .development-case__meta {
    gap: 8px;
  }

  .page-development .development-case__meta-item {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.875rem;
  }

  .page-development .development-case__content h3 {
    font-size: 1.75rem;
    line-height: 1;
    letter-spacing: -0.03em;
  }

  .page-development .development-case__content p {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
  }

  .page-development .development-analysis-stage__suggestion {
    width: 224px;
    max-width: calc(100% - 28px);
  }
}

.page-design .hero__content {
  --crm-hero-copy-width: 920px;
}

.page-design main > section:not(.hero) {
  margin: 140px 0 0;
  padding-top: 0;
  padding-bottom: 0;
}

.page-design .site-footer {
  padding-top: 140px;
}

.page-design #advantages {
  margin-top: 140px;
}

.page-design .advantages-showcase {
  box-sizing: border-box;
  padding-top: 40px !important;
  padding-right: 40px !important;
  padding-bottom: 40px !important;
  padding-left: 40px !important;
}

.page-design .hero__lead {
  width: min(100%, var(--crm-hero-copy-width));
  max-width: none;
}

.page-design h1 {
  width: min(100%, var(--crm-hero-copy-width));
  max-width: none;
}

.crm-hero__title-main {
  display: block;
  margin-top: 0;
  color: inherit;
  font-weight: inherit;
  white-space: nowrap;
}

.page-design .hero {
  align-items: start;
}

body.page-design {
  overflow-x: hidden;
}

.crm-hero-panel {
  overflow: visible;
}

.crm-hero-panel__visual {
  display: grid;
  min-height: 420px;
  padding: 0;
}

.crm-hero-demo {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  width: 100%;
  min-height: 420px;
  padding: 0;
  overflow: hidden;
}

.crm-hero-demo::after {
  content: none;
}

.crm-hero-demo__viewport {
  position: relative;
  width: min(100%, 564px);
  height: var(--crm-hero-demo-height, 364px);
}

.crm-hero-demo__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 960px;
  height: 620px;
  transform: scale(var(--crm-hero-demo-scale, 0.58));
  transform-origin: top left;
}

.crm-hero-demo__shell {
  position: relative;
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #f5f7fb;
  box-shadow: none;
}

.crm-hero-demo__sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 18px 12px 14px;
  background: rgba(255, 255, 255, 0.95);
  border-right: 1px solid rgba(112, 124, 144, 0.11);
}

.crm-hero-demo__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.crm-hero-demo__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(160deg, #2a76ff 0%, #65b8ff 100%);
  box-shadow: 0 12px 20px rgba(42, 118, 255, 0.22);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.crm-hero-demo__brand-copy {
  display: grid;
  gap: 2px;
}

.crm-hero-demo__brand-copy strong {
  color: #1d2430;
  font-size: 0.9rem;
  line-height: 1;
}

.crm-hero-demo__brand-copy span {
  color: #8e96a3;
  font-size: 0.65rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.crm-hero-demo__nav {
  display: grid;
  gap: 5px;
}

.crm-hero-demo__nav-item,
.crm-hero-demo__nav-subitem,
.crm-hero-demo__nav-group {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 9px;
  color: #5e6776;
  font-size: 0.74rem;
  line-height: 1;
}

.crm-hero-demo__nav-group {
  justify-content: space-between;
  margin-top: 6px;
  background: rgba(108, 196, 255, 0.12);
  color: #2a84d2;
  font-weight: 600;
}

.crm-hero-demo__nav-group::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.crm-hero-demo__nav-item.is-active,
.crm-hero-demo__nav-subitem.is-active {
  background: #dff1ff;
  color: #2679d8;
  font-weight: 600;
}

.crm-hero-demo__nav-group.is-active {
  background: #dff1ff;
  color: #2679d8;
}

.crm-hero-demo__nav-subitem {
  margin-left: 10px;
}

.crm-hero-demo__sidebar-footer {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.crm-hero-demo__support,
.crm-hero-demo__exit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 9px;
  font-size: 0.68rem;
  line-height: 1;
}

.crm-hero-demo__support {
  background: rgba(17, 17, 17, 0.04);
  color: #465063;
}

.crm-hero-demo__exit {
  background: rgba(17, 17, 17, 0.08);
  color: #7f8896;
}

.crm-hero-demo__workspace {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f1f3f7 0%, #eef1f6 100%);
}

.crm-hero-demo__scene {
  position: absolute;
  inset: 0;
  padding: 22px 20px 18px;
  transition:
    opacity 0.72s cubic-bezier(0.2, 0.85, 0.22, 1),
    transform 0.72s cubic-bezier(0.2, 0.85, 0.22, 1);
}

.crm-hero-demo__scene--finance {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  opacity: 0;
  transform: translateX(46px) scale(0.985);
  pointer-events: none;
}

.crm-hero-demo[data-scene="finance"] .crm-hero-demo__scene--sales {
  opacity: 0;
  transform: translateX(-38px) scale(0.985);
  pointer-events: none;
}

.crm-hero-demo[data-scene="finance"] .crm-hero-demo__scene--finance {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.crm-hero-demo__scene-head {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
}

.crm-hero-demo__scene-head strong,
.crm-hero-demo__panel-head strong {
  color: #171d26;
  font-size: 1rem;
  line-height: 1.15;
}

.crm-hero-demo__scene-head span,
.crm-hero-demo__panel-head span {
  color: #8b93a1;
  font-size: 0.68rem;
  line-height: 1.3;
}

.crm-hero-demo__panel {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 16px 34px rgba(92, 106, 130, 0.1),
    inset 0 0 0 1px rgba(17, 17, 17, 0.04);
}

.crm-hero-demo__panel + .crm-hero-demo__panel {
  margin-top: 16px;
}

.crm-hero-demo__panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.crm-hero-demo__panel-head > div {
  display: grid;
  gap: 4px;
}

.crm-hero-demo__panel-head button,
.crm-hero-demo__finance-tabs button,
.crm-hero-demo__ghost-button,
.crm-hero-demo__save-button {
  border: 0;
  font: inherit;
  cursor: default;
}

.crm-hero-demo__panel-head button {
  min-height: 28px;
  padding: 0 12px;
  border-radius: 10px;
  background: #2b76ff;
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 600;
}

.crm-hero-demo__sales-list,
.crm-hero-demo__status-list,
.crm-hero-demo__finance-rows {
  display: grid;
  gap: 8px;
}

.crm-hero-demo__sales-row,
.crm-hero-demo__status-row {
  display: grid;
  align-items: center;
  min-height: 38px;
  border-radius: 12px;
  background: #fbfcfe;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.05);
}

.crm-hero-demo__sales-row {
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 10px;
  padding: 0 10px;
  color: #424b5a;
  font-size: 0.76rem;
  transition:
    transform 0.58s cubic-bezier(0.2, 0.85, 0.22, 1),
    opacity 0.4s ease,
    max-height 0.46s ease,
    margin 0.46s ease,
    padding 0.46s ease;
  transform-origin: center;
  overflow: hidden;
}

.crm-hero-demo__sales-row.is-grabbed {
  box-shadow:
    0 18px 34px rgba(43, 118, 255, 0.18),
    inset 0 0 0 1px rgba(43, 118, 255, 0.18);
}

.crm-hero-demo__sales-row.is-deleting {
  opacity: 0;
  max-height: 0;
  margin: -2px 0;
  padding-top: 0;
  padding-bottom: 0;
  transform: translateX(26px);
}

.crm-hero-demo__sales-handle,
.crm-hero-demo__status-handle {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 28%, #c5cdd8 0 1.2px, transparent 1.3px),
    radial-gradient(circle at 50% 50%, #c5cdd8 0 1.2px, transparent 1.3px),
    radial-gradient(circle at 50% 72%, #c5cdd8 0 1.2px, transparent 1.3px),
    #ffffff;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.crm-hero-demo__sales-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.crm-hero-demo__icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
  color: #8f97a4;
  font-size: 0.68rem;
  line-height: 1;
}

.crm-hero-demo__icon-button--delete {
  color: #ef7f98;
}

.crm-hero-demo__status-row {
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 10px;
  padding: 0 10px;
  color: #4e5765;
  font-size: 0.72rem;
}

.crm-hero-demo__status-row em {
  color: #a1a9b6;
  font-style: normal;
  font-size: 0.66rem;
}

.crm-hero-demo__finance-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.crm-hero-demo__finance-tabs {
  display: inline-flex;
  gap: 8px;
}

.crm-hero-demo__finance-tabs button {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(120, 132, 151, 0.24);
  color: #4d5563;
  font-size: 0.66rem;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.crm-hero-demo__finance-tabs button.is-primary {
  background: #2369f5;
  box-shadow: 0 16px 26px rgba(35, 105, 245, 0.2);
  color: #ffffff;
}

.crm-hero-demo__finance-tabs button.is-primary.is-secondary-tone {
  background: #1d4fa8;
}

.crm-hero-demo__finance-tabs button.is-pressed,
.crm-hero-demo__save-button.is-pressed {
  transform: scale(0.97);
}

.crm-hero-demo__finance-search {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 182px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(120, 132, 151, 0.22);
  color: #8d95a3;
  font-size: 0.66rem;
}

.crm-hero-demo__finance-search i {
  width: 14px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  position: relative;
}

.crm-hero-demo__finance-search i::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 14px;
  border-top: 2px solid currentColor;
}

.crm-hero-demo__finance-table {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-self: stretch;
  gap: 6px;
  height: 100%;
  min-height: 0;
  padding: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 16px 34px rgba(92, 106, 130, 0.1),
    inset 0 0 0 1px rgba(17, 17, 17, 0.04);
}

.crm-hero-demo__finance-head,
.crm-hero-demo__finance-row {
  display: grid;
  grid-template-columns: 39px 48px 34px 76px 78px 76px 56px 34px 56px minmax(82px, 1fr);
  gap: 7px;
  align-items: start;
}

.crm-hero-demo__finance-row > * {
  min-width: 0;
  overflow-wrap: anywhere;
}

.crm-hero-demo__finance-head {
  padding: 3px 8px 8px;
  color: #556070;
  font-size: 0.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.crm-hero-demo__finance-row {
  min-height: 44px;
  padding: 7px 8px;
  border-radius: 10px;
  background: #fbfcfe;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.05);
  color: #2e3440;
  font-size: 0.45rem;
  line-height: 1.14;
  transition:
    opacity 0.36s ease,
    transform 0.5s cubic-bezier(0.2, 0.85, 0.22, 1),
    box-shadow 0.36s ease;
}

.crm-hero-demo__finance-rows {
  min-height: 0;
  align-content: start;
  gap: 6px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-color: rgba(102, 113, 132, 0.38) rgba(102, 113, 132, 0.08);
  scrollbar-width: thin;
}

.crm-hero-demo__finance-rows::-webkit-scrollbar {
  width: 7px;
}

.crm-hero-demo__finance-rows::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(102, 113, 132, 0.08);
}

.crm-hero-demo__finance-rows::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(102, 113, 132, 0.34);
}

.crm-hero-demo__finance-row strong {
  display: block;
  color: #1f2632;
  font-size: 0.5rem;
}

.crm-hero-demo__finance-row small {
  color: #98a2b2;
  font-size: 0.44rem;
}

.crm-hero-demo__finance-row span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  word-break: break-word;
}

.crm-hero-demo__finance-row span::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--finance-dot, #20c491);
  box-shadow: 0 0 0 2px rgba(32, 196, 145, 0.12);
}

.crm-hero-demo__finance-row[data-tone="expense"] span::before {
  background: #ff6b6b;
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.12);
}

.crm-hero-demo__finance-row em {
  color: var(--finance-amount, #15915b);
  font-style: normal;
  font-size: 0.54rem;
  font-weight: 700;
  line-height: 1.1;
}

.crm-hero-demo__finance-row > :last-child {
  color: #5f6978;
  word-break: break-word;
}

.crm-hero-demo__finance-row[data-tone="expense"] em {
  color: #ef4444;
}

.crm-hero-demo__modal-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(16, 22, 32, 0.16);
  pointer-events: none;
  transition: opacity 0.36s ease;
}

.crm-hero-demo__modal {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 304px;
  height: calc(100% - 16px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 28px 60px rgba(44, 52, 68, 0.18),
    inset 0 0 0 1px rgba(17, 17, 17, 0.05);
  opacity: 0;
  transform: translateX(108%);
  pointer-events: none;
  transition:
    opacity 0.48s cubic-bezier(0.2, 0.85, 0.22, 1),
    transform 0.48s cubic-bezier(0.2, 0.85, 0.22, 1);
}

.crm-hero-demo.is-modal-open .crm-hero-demo__modal-backdrop {
  opacity: 1;
}

.crm-hero-demo.is-modal-open .crm-hero-demo__modal {
  opacity: 1;
  transform: translateX(0);
}

.crm-hero-demo__modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.crm-hero-demo__modal-head strong {
  color: #202733;
  font-size: 0.84rem;
}

.crm-hero-demo__modal-head span {
  color: #afb6c2;
  font-size: 1.2rem;
  line-height: 1;
}

.crm-hero-demo__modal-body {
  display: grid;
  align-content: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 12px 14px 8px;
}

.crm-hero-demo__field {
  display: grid;
  gap: 6px;
  grid-column: 1 / -1;
}

.crm-hero-demo__field--half {
  grid-column: span 1;
}

.crm-hero-demo__field > span {
  color: #2c3441;
  font-size: 0.62rem;
  font-weight: 600;
}

.crm-hero-demo__field-box {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(138, 151, 170, 0.36);
  color: #8b93a0;
  font-size: 0.6rem;
  transition:
    box-shadow 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease;
}

.crm-hero-demo__field-box.is-filled {
  background: rgba(246, 250, 255, 0.96);
  box-shadow:
    0 10px 18px rgba(35, 105, 245, 0.08),
    inset 0 0 0 1px rgba(35, 105, 245, 0.18);
  color: #1b2330;
}

.crm-hero-demo__field-box.is-typing {
  box-shadow:
    0 10px 18px rgba(35, 105, 245, 0.1),
    inset 0 0 0 1px rgba(35, 105, 245, 0.26);
}

.crm-hero-demo__modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 10px 14px 14px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.crm-hero-demo__ghost-button,
.crm-hero-demo__save-button {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 0.62rem;
  font-weight: 700;
}

.crm-hero-panel .kpi-grid--hero {
  display: block;
}

.crm-hero-panel .kpi-card--budget {
  top: 118px;
  left: -150px;
}

.crm-hero-panel .kpi-card--launch {
  top: 58px;
  right: -150px;
  transform: none;
}

.crm-hero-panel .kpi-card--control {
  right: 54px;
  bottom: -30px;
  left: auto;
}

@media (max-width: 1100px) {
  .crm-hero-panel .kpi-card--budget {
    left: -98px;
  }

  .crm-hero-panel .kpi-card--launch {
    right: -94px;
  }

  .crm-hero-panel .kpi-card--control {
    right: 32px;
  }
}

@media (max-width: 760px) {
  .crm-hero-panel .kpi-card--budget {
    left: -14px;
  }

  .crm-hero-panel .kpi-card--control {
    right: 12px;
  }

  .crm-hero-panel .kpi-card--launch {
    right: -24px;
  }
}

.crm-hero-demo__ghost-button {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(138, 151, 170, 0.34);
  color: #6f7887;
}

.crm-hero-demo__save-button {
  background: #2369f5;
  box-shadow: 0 16px 28px rgba(35, 105, 245, 0.22);
  color: #ffffff;
}

.crm-hero-demo__cursor {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  opacity: 0;
  transform: translate(46px, 46px);
  transition:
    opacity 0.28s ease,
    transform 0.7s cubic-bezier(0.2, 0.85, 0.22, 1);
  z-index: 30;
  pointer-events: none;
}

.crm-hero-demo__cursor::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #202632 0%, #0f141d 100%);
  clip-path: polygon(0 0, 0 100%, 28% 73%, 46% 100%, 56% 95%, 39% 69%, 75% 69%);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.crm-hero-demo__cursor::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(35, 105, 245, 0.14);
  opacity: 0;
  transform: scale(0.4);
}

.crm-hero-demo__cursor.is-visible {
  opacity: 1;
}

.crm-hero-demo__cursor.is-dragging::before {
  filter: drop-shadow(0 7px 14px rgba(35, 105, 245, 0.24));
}

.crm-hero-demo__cursor.is-clicking::after {
  opacity: 1;
  transform: scale(1.6);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.page-design .proof-card {
  display: flex;
  flex-direction: column;
}

.crm-culture-section {
  padding-top: 0;
  padding-bottom: 0;
}

.crm-culture-heading {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: none;
  margin: 0 auto 40px;
  text-align: center;
}

.crm-culture-heading h2 {
  flex: 0 1 auto;
  width: auto;
  margin: 0 auto;
  text-align: center;
}

.crm-culture-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: stretch;
}

.crm-culture-photo {
  overflow: hidden;
  min-height: 100%;
  border-radius: 27px;
  background: #eef3f8;
}

.crm-culture-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crm-culture-points {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  min-height: 100%;
}

.crm-culture-point {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  min-height: 0;
}

.crm-culture-point:first-child {
  border-top: 0;
}

.crm-culture-point__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #b4f04e;
  color: #171717;
  margin-top: 2px;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
}

.crm-culture-point__icon svg {
  width: 24px;
  height: 24px;
}

.crm-culture-point__content {
  display: grid;
  gap: 10px;
  align-content: center;
  justify-items: start;
  text-align: left;
}

.crm-culture-point__content h3,
.crm-culture-point__content p {
  margin: 0;
}

.crm-culture-point__content h3 {
  color: #111111;
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
}

.crm-culture-point__content p {
  margin: 0;
  color: #2e2e33;
  font-size: 1.05rem;
  line-height: 1.45;
}

.crm-agent-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.crm-agent-heading {
  max-width: none;
  justify-items: center;
  text-align: center;
}

.crm-agent-heading h2 {
  font-size: 2.65rem;
  line-height: 1;
  font-weight: 500;
}

.crm-agent-item {
  display: grid;
  grid-template-rows: 83px auto 1fr;
  align-content: start;
  justify-items: center;
  gap: 14px;
  min-height: 208px;
  padding: 28px 24px;
  border-radius: 16px;
  background: #ffffff;
  text-align: center;
}

.crm-agent-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 83px;
}

.crm-agent-item__icon--large {
  height: 83px;
}

.crm-agent-item__icon img,
.crm-agent-item__icon svg {
  width: 100%;
  height: 55px;
  object-fit: contain;
}

.crm-agent-item__icon--large img,
.crm-agent-item__icon--large svg {
  width: 83px;
  height: 83px;
}

.crm-agent-item h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.crm-agent-item p {
  margin: 0;
  color: #2e2e33;
  font-size: 1rem;
  line-height: 1.45;
}

.crm-mcp-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: stretch;
  padding: 40px;
  border-radius: 27px;
  overflow: hidden;
  background: #ffffff;
}

.crm-mcp-layout::before {
  content: "";
  position: absolute;
  left: 63%;
  right: auto;
  bottom: 10%;
  z-index: 0;
  width: min(460px, 46%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(190, 255, 137, 0.82);
  filter: blur(44px);
  transform: translateX(-50%);
  pointer-events: none;
}

.crm-mcp-layout > * {
  position: relative;
  z-index: 1;
}

.crm-mcp-copy {
  width: 100%;
}

.crm-mcp-copy h2 {
  max-width: none;
  width: 100%;
  margin: 0;
  font-size: clamp(2.8rem, 3.75vw, 54px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -1px;
}

.crm-mcp-copy > p {
  max-width: none;
  width: 100%;
  margin: 34px 0 0;
  color: #1c1c1f;
  font-size: 1.15rem;
  line-height: 1.35;
}

.crm-mcp-prompts {
  margin-top: 44px;
  padding: 30px;
  border-radius: 16px;
  background: #bfff8f;
}

.crm-mcp-prompts h3 {
  margin: 0 0 22px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.crm-mcp-prompts ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.crm-mcp-prompts li {
  position: relative;
  padding-left: 38px;
  color: #111111;
  font-size: 1.15rem;
  line-height: 1.4;
}

.crm-mcp-prompts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: #2d7f16;
  mask: url("assets/chat-round.svg") center / contain no-repeat;
}

.crm-mcp-stage {
  --crm-mcp-chat-scale: 1;
  position: relative;
  display: grid;
  justify-items: center;
  align-items: start;
  height: var(--crm-mcp-copy-height, auto);
  min-height: 0;
  overflow: hidden;
}

.crm-mcp-chat {
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: var(--crm-mcp-chat-width, 520px);
  height: var(--crm-mcp-chat-height, 640px);
  overflow: hidden;
  border: 1px solid #d8d8d8;
  border-radius: 16px;
  background: #ffffff;
  transform: translateX(-50%) scale(var(--crm-mcp-chat-scale));
  transform-origin: top center;
}

.crm-mcp-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.crm-mcp-benefit {
  display: grid;
  grid-template-rows: 190px auto 1fr;
  gap: 22px;
  padding: 30px;
  border-radius: 27px !important;
  background: #e2e2e2;
  box-shadow: none;
}

.crm-mcp-benefit--design-system {
  grid-template-rows: 190px auto 1fr;
}

.crm-mcp-benefit__visual {
  --crm-mcp-visual-width: 430px;
  --crm-mcp-visual-height: 128px;
  --crm-mcp-visual-scale: 1;
  align-self: stretch;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-content: start;
  justify-content: center;
  justify-items: center;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  height: 190px;
  padding: 14px;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 16px;
  background: #f1f1f1;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.05);
}

.crm-mcp-mini-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #15171c;
  font-size: 0.72rem;
  font-weight: 700;
}

.crm-mcp-benefit__visual .crm-mcp-mini-head {
  justify-self: center;
  width: var(--crm-mcp-visual-width);
  max-width: none;
  min-height: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(120, 132, 151, 0.16);
  transform: scale(var(--crm-mcp-visual-scale));
  transform-origin: top center;
}

.crm-mcp-mini-head > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crm-mcp-mini-head em {
  flex: 0 0 auto;
  max-width: 52%;
  padding: 4px 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(191, 255, 143, 0.86);
  color: #285f17;
  font-size: 0.54rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crm-mcp-benefit__visual--ai {
  gap: 10px;
  padding: 14px;
  background: #f1f1f1;
  box-shadow: inset 0 0 0 1px rgba(120, 132, 151, 0.18);
}

.crm-mcp-benefit__visual--ai .crm-mcp-mini-head {
  min-height: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(120, 132, 151, 0.16);
  font-size: 0.72rem;
  font-weight: 700;
}

.crm-mcp-benefit__visual--model {
  gap: 10px;
  padding: 14px;
  background: #f1f1f1;
  box-shadow: inset 0 0 0 1px rgba(120, 132, 151, 0.18);
}

.crm-mcp-benefit__visual--model .crm-mcp-mini-head {
  min-height: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(120, 132, 151, 0.16);
  font-size: 0.72rem;
  font-weight: 700;
}

.crm-mcp-benefit__visual--model .crm-mcp-mini-head em {
  background: rgba(191, 255, 143, 0.86);
  color: #285f17;
}

.crm-mcp-benefit__visual--architecture {
  gap: 10px;
  padding: 14px;
}

.crm-mcp-benefit__visual--design {
  grid-template-rows: auto minmax(0, 1fr);
  gap: 10px;
  height: 190px;
  padding: 14px;
  border-radius: 16px;
  background: #f1f1f1;
  box-shadow: inset 0 0 0 1px rgba(120, 132, 151, 0.18);
}

.crm-mcp-benefit__visual--design .crm-mcp-mini-head {
  min-height: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(120, 132, 151, 0.16);
  font-size: 0.72rem;
  font-weight: 700;
}

.crm-mcp-benefit__visual--design .crm-mcp-mini-head em {
  padding: 4px 7px;
  background: rgba(191, 255, 143, 0.86);
  color: #285f17;
  font-size: 0.54rem;
  font-weight: 700;
}

.crm-mcp-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.crm-mcp-action-grid,
.crm-mcp-arch-map,
.crm-mcp-ds-real,
.crm-mcp-control-grid {
  justify-self: center;
  width: var(--crm-mcp-visual-width);
  height: var(--crm-mcp-visual-height);
  max-width: none;
  transform: scale(var(--crm-mcp-visual-scale));
  transform-origin: top center;
}

.crm-mcp-action-card,
.crm-mcp-control-card {
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 10px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(120, 132, 151, 0.18);
  transform: scale(1);
  transform-origin: center;
  animation: crmMcpCardPulse 4.8s cubic-bezier(0.45, 0, 0.25, 1) infinite;
}

.crm-mcp-action-card {
  min-height: 58px;
}

.crm-mcp-action-card:nth-child(2) {
  animation-delay: 0.85s;
}

.crm-mcp-action-card:nth-child(3) {
  animation-delay: 1.7s;
}

.crm-mcp-action-card:nth-child(4) {
  animation-delay: 2.55s;
}

.crm-mcp-action-card strong,
.crm-mcp-control-card strong {
  color: #151b2d;
  font-size: 0.72rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.crm-mcp-action-card span,
.crm-mcp-control-card span {
  color: #6c7484;
  font-size: 0.62rem;
  line-height: 1.2;
}

.crm-mcp-control-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.crm-mcp-control-card {
  min-height: 58px;
  padding: 8px;
}

.crm-mcp-control-card strong {
  font-size: 0.58rem;
  line-height: 1.12;
}

.crm-mcp-control-card span {
  display: block;
  font-size: 0.49rem;
  line-height: 1.14;
}

.crm-mcp-control-card:nth-child(2) {
  animation-delay: 0.45s;
}

.crm-mcp-control-card:nth-child(3) {
  animation-delay: 0.9s;
}

.crm-mcp-control-card:nth-child(4) {
  animation-delay: 1.35s;
}

.crm-mcp-control-card:nth-child(5) {
  animation-delay: 1.8s;
}

.crm-mcp-control-card:nth-child(6) {
  animation-delay: 2.25s;
}

.crm-mcp-control-card:nth-child(7) {
  animation-delay: 2.7s;
}

.crm-mcp-control-card:nth-child(8) {
  animation-delay: 3.15s;
}

.crm-mcp-ds-real {
  --crm-ds-line: rgba(20, 20, 20, 0.12);
  --crm-ds-muted: #7c7c7c;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.9fr) minmax(0, 1.04fr) minmax(0, 0.95fr);
  grid-template-rows: 46px 38px minmax(0, 1fr);
  gap: 5px;
  height: 100%;
  min-height: 0;
  color: #151515;
}

.crm-mcp-ds-real strong,
.crm-mcp-ds-real span,
.crm-mcp-ds-real label,
.crm-mcp-ds-real em,
.crm-mcp-ds-real button {
  min-width: 0;
  font-family: inherit;
  letter-spacing: -0.02em;
  overflow-wrap: normal;
}

.crm-mcp-ds-real__payment,
.crm-mcp-ds-real__empty,
.crm-mcp-ds-real__controls,
.crm-mcp-ds-real__settings,
.crm-mcp-ds-real__survey,
.crm-mcp-ds-real__process {
  min-width: 0;
  min-height: 0;
  border: 1px solid var(--crm-ds-line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.03);
  overflow: hidden;
}

.crm-mcp-ds-real__payment {
  grid-row: 1 / 4;
  display: grid;
  align-content: start;
  gap: 3px;
  padding: 6px;
}

.crm-mcp-ds-real__payment > strong,
.crm-mcp-ds-real__empty > strong,
.crm-mcp-ds-real__survey > strong,
.crm-mcp-ds-real__process > strong {
  display: block;
  color: #151515;
  font-size: 0.4rem;
  line-height: 1.05;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.crm-mcp-ds-real__payment > span,
.crm-mcp-ds-real__empty > span,
.crm-mcp-ds-real__survey > span,
.crm-mcp-ds-real__process > span {
  display: block;
  overflow: hidden;
  color: var(--crm-ds-muted);
  font-size: 0.34rem;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crm-mcp-ds-real__payment label {
  margin-top: 2px;
  color: #151515;
  font-size: 0.32rem;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.crm-mcp-ds-real__input {
  display: flex;
  align-items: center;
  min-height: 13px;
  padding-inline: 5px;
  overflow: hidden;
  border: 1px solid var(--crm-ds-line);
  border-radius: 5px;
  color: #8a8a8a;
  font-size: 0.32rem;
  line-height: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.crm-mcp-ds-real__split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.7fr);
  gap: 4px;
}

.crm-mcp-ds-real__split > div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.crm-mcp-ds-real__check {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 1px;
  overflow: hidden;
  color: #202020;
  font-size: 0.32rem;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.crm-mcp-ds-real__check b {
  position: relative;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #171717;
}

.crm-mcp-ds-real__check b::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 1px;
  width: 3px;
  height: 5px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  transform: rotate(45deg);
}

.crm-mcp-ds-real__actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 1px;
}

.crm-mcp-ds-real button,
.crm-mcp-ds-real__actions em,
.crm-mcp-ds-real__process em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 13px;
  padding-inline: 6px;
  border: 1px solid var(--crm-ds-line);
  border-radius: 5px;
  background: #ffffff;
  color: #151515;
  font-size: 0.32rem;
  line-height: 1;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.crm-mcp-ds-real button {
  border-color: #151515;
  background: #151515;
  color: #ffffff;
}

.crm-mcp-ds-real__empty {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  padding: 5px;
  border-style: dashed;
  text-align: center;
}

.crm-mcp-ds-real__avatars {
  display: flex;
  justify-content: center;
}

.crm-mcp-ds-real__avatars span {
  width: 12px;
  height: 12px;
  margin-left: -4px;
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.8), transparent 23%),
    linear-gradient(135deg, #a3a3a3, #272727);
}

.crm-mcp-ds-real__avatars span:first-child {
  margin-left: 0;
}

.crm-mcp-ds-real__avatars span:nth-child(2) {
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.82), transparent 23%),
    linear-gradient(135deg, #d6d6d6, #555555);
}

.crm-mcp-ds-real__avatars span:nth-child(3) {
  background: #050505;
}

.crm-mcp-ds-real__empty button {
  min-height: 12px;
  padding-inline: 5px;
  font-size: 0.3rem;
}

.crm-mcp-ds-real__controls {
  grid-column: 2;
  grid-row: 2 / 4;
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 5px 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.crm-mcp-ds-real__pills {
  display: flex;
  gap: 3px;
  min-width: 0;
}

.crm-mcp-ds-real__pills span,
.crm-mcp-ds-real__survey em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 12px;
  padding-inline: 5px;
  border: 1px solid var(--crm-ds-line);
  border-radius: 999px;
  background: #ffffff;
  color: #1d1d1d;
  font-size: 0.3rem;
  line-height: 1;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.crm-mcp-ds-real__pills .is-active,
.crm-mcp-ds-real__survey em.is-active {
  border-color: #151515;
  background: #151515;
  color: #ffffff;
}

.crm-mcp-ds-real__search,
.crm-mcp-ds-real__chat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  min-height: 14px;
  padding-inline: 5px;
  overflow: hidden;
  border: 1px solid var(--crm-ds-line);
  border-radius: 5px;
  background: #ffffff;
  color: #8a8a8a;
  font-size: 0.32rem;
  line-height: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.crm-mcp-ds-real__search::before {
  content: "";
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border: 1px solid #8a8a8a;
  border-radius: 50%;
  box-shadow: 3px 3px 0 -2px #8a8a8a;
}

.crm-mcp-ds-real__search b,
.crm-mcp-ds-real__chat i {
  color: #7c7c7c;
  font-style: normal;
  font-weight: 700;
}

.crm-mcp-ds-real__chat {
  min-height: 24px;
  align-items: end;
  padding-block: 5px;
}

.crm-mcp-ds-real__slider {
  position: relative;
  height: 8px;
}

.crm-mcp-ds-real__slider::before,
.crm-mcp-ds-real__slider span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1.5px;
  border-radius: 999px;
  background: #eeeeee;
  transform: translateY(-50%);
}

.crm-mcp-ds-real__slider span {
  left: 24%;
  right: 18%;
  background: #151515;
}

.crm-mcp-ds-real__slider span::before,
.crm-mcp-ds-real__slider span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border: 1px solid #a5a5a5;
  border-radius: 50%;
  background: #ffffff;
  transform: translateY(-50%);
}

.crm-mcp-ds-real__slider span::before {
  left: -3px;
}

.crm-mcp-ds-real__slider span::after {
  right: -3px;
}

.crm-mcp-ds-real__settings {
  grid-column: 3;
  grid-row: 1 / 3;
  display: grid;
  grid-template-rows: 27px 27px 25px;
  gap: 4px;
  padding: 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.crm-mcp-ds-real__notice,
.crm-mcp-ds-real__option,
.crm-mcp-ds-real__toggle {
  min-width: 0;
  border: 1px solid var(--crm-ds-line);
  border-radius: 7px;
  background: #ffffff;
}

.crm-mcp-ds-real__notice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 5px;
  padding: 5px 5px 4px;
}

.crm-mcp-ds-real__notice strong,
.crm-mcp-ds-real__option strong,
.crm-mcp-ds-real__toggle strong {
  overflow: hidden;
  color: #151515;
  font-size: 0.34rem;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.crm-mcp-ds-real__notice span,
.crm-mcp-ds-real__option span,
.crm-mcp-ds-real__toggle span {
  overflow: hidden;
  color: var(--crm-ds-muted);
  font-size: 0.31rem;
  line-height: 1.12;
  text-overflow: ellipsis;
}

.crm-mcp-ds-real__notice button {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  min-height: 12px;
  padding-inline: 5px;
  font-size: 0.3rem;
}

.crm-mcp-ds-real__option {
  position: relative;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 5px 17px 5px 5px;
}

.crm-mcp-ds-real__option.is-selected {
  border-color: rgba(20, 20, 20, 0.28);
  background: #f7f7f7;
}

.crm-mcp-ds-real__option b {
  position: absolute;
  top: 8px;
  right: 5px;
  width: 8px;
  height: 8px;
  border: 1.5px solid #151515;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 0 0 2px #151515;
}

.crm-mcp-ds-real__toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 5px;
  padding: 5px 0 0;
  border: 0;
  border-top: 1px solid var(--crm-ds-line);
  border-radius: 0;
  background: transparent;
}

.crm-mcp-ds-real__toggle span {
  display: none;
}

.crm-mcp-ds-real__toggle b {
  position: relative;
  width: 17px;
  height: 10px;
  border-radius: 999px;
  background: #151515;
}

.crm-mcp-ds-real__toggle b::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
}

.crm-mcp-ds-real__survey {
  grid-column: 4;
  grid-row: 1;
  display: grid;
  align-content: start;
  gap: 3px;
  padding: 5px;
}

.crm-mcp-ds-real__survey > strong {
  display: none;
}

.crm-mcp-ds-real__process {
  grid-column: 4;
  grid-row: 2 / 4;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  padding: 6px;
  border-style: dashed;
  text-align: center;
}

.crm-mcp-ds-real__survey > div {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}

.crm-mcp-ds-real__survey > span {
  display: none;
}

.crm-mcp-ds-real__process b {
  width: 14px;
  height: 14px;
  border: 1px solid var(--crm-ds-line);
  border-radius: 5px;
  background:
    conic-gradient(from 50deg, #151515 0 22%, transparent 22% 100%),
    #f7f7f7;
}

.crm-mcp-ds-real__process > span {
  max-width: 88px;
  white-space: normal;
}

.crm-mcp-ds-real__process em {
  min-height: 12px;
  padding-inline: 6px;
  background: #ffffff;
}

@media (max-width: 720px) {
  .crm-mcp-benefit--design-system {
    grid-template-rows: 190px auto 1fr;
  }

  .crm-mcp-benefit__visual--design {
    height: 190px;
  }

  .crm-mcp-ds-real {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 44px 42px minmax(0, 1fr);
  }

  .crm-mcp-ds-real__payment {
    grid-column: 1;
    grid-row: 1 / 4;
  }

  .crm-mcp-ds-real__empty {
    grid-column: 2;
    grid-row: 1;
  }

  .crm-mcp-ds-real__controls {
    grid-column: 2;
    grid-row: 2 / 4;
  }

  .crm-mcp-ds-real__settings {
    display: none;
  }

  .crm-mcp-ds-real__survey {
    display: none;
  }

  .crm-mcp-ds-real__process {
    display: none;
  }
}

@keyframes crmMcpCardPulse {
  0%,
  100% {
    transform: scale(1);
  }

  18% {
    transform: scale(1.035);
  }

  36% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .crm-mcp-action-card,
  .crm-mcp-control-card {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.crm-mcp-arch-map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(80px, 1fr) 22px minmax(100px, 1.1fr) 22px minmax(80px, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 14px 7px;
  min-height: 128px;
  padding: 7px 10px 8px;
}

.crm-mcp-arch-node,
.crm-mcp-arch-pipeline {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.crm-mcp-arch-node--source {
  grid-column: 1;
  grid-row: 1;
}

.crm-mcp-arch-pipeline--ci {
  grid-column: 3;
  grid-row: 1;
}

.crm-mcp-arch-node--docker {
  grid-column: 5;
  grid-row: 1;
}

.crm-mcp-arch-node--deploy-repo {
  grid-column: 1;
  grid-row: 2;
}

.crm-mcp-arch-pipeline--cd {
  grid-column: 3;
  grid-row: 2;
}

.crm-mcp-arch-node--server {
  grid-column: 5;
  grid-row: 2;
}

.crm-mcp-arch-node {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  min-height: 46px;
  padding: 5px 6px 7px;
  border: 1px solid rgba(120, 132, 151, 0.18);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: none;
}

.crm-mcp-arch-node span {
  color: #303746;
  font-size: 0.52rem;
  line-height: 1;
  font-weight: 700;
}

.crm-mcp-arch-node b {
  display: block;
}

.crm-mcp-arch-node img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.crm-mcp-arch-node--repo img {
  width: 22px;
  height: 22px;
}

.crm-mcp-arch-node--docker img {
  width: 28px;
  height: 22px;
}

.crm-mcp-arch-node--repo b {
  width: 28px;
  height: 24px;
  border-radius: 7px;
  background:
    linear-gradient(90deg, transparent 42%, rgba(52, 120, 246, 0.3) 42% 46%, transparent 46%),
    linear-gradient(#3478f6 0 0) 7px 7px / 14px 2px no-repeat,
    linear-gradient(#3478f6 0 0) 7px 14px / 10px 2px no-repeat,
    rgba(52, 120, 246, 0.13);
  box-shadow: inset 0 0 0 1px rgba(52, 120, 246, 0.28);
}

.crm-mcp-arch-pipeline {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: center;
  gap: 6px;
  min-height: 46px;
  padding: 6px 8px 7px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(120, 132, 151, 0.14);
}

.crm-mcp-arch-pipeline::before {
  content: none;
}

.crm-mcp-arch-pipeline span {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 23px;
  border-radius: 7px;
  background: #303746;
  color: #ffffff;
  font-size: 0.74rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.crm-mcp-arch-pipeline img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.crm-mcp-arch-node--docker {
  min-height: 46px;
  background: #ffffff;
  box-shadow: none;
}

.crm-mcp-arch-node--docker b {
  width: 34px;
  height: 26px;
  border-radius: 5px 5px 9px 9px;
  background:
    linear-gradient(#2d7f16 0 0) 5px 5px / 6px 5px no-repeat,
    linear-gradient(#2d7f16 0 0) 13px 5px / 6px 5px no-repeat,
    linear-gradient(#2d7f16 0 0) 21px 5px / 6px 5px no-repeat,
    linear-gradient(#2d7f16 0 0) 9px 12px / 6px 5px no-repeat,
    linear-gradient(#2d7f16 0 0) 17px 12px / 6px 5px no-repeat,
    rgba(45, 127, 22, 0.12);
  box-shadow: inset 0 0 0 1.5px #2d7f16;
}

.crm-mcp-arch-node--server {
  min-height: 46px;
}

.crm-mcp-arch-node--server b {
  width: 24px;
  height: 22px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 30%, #bfff8f 0 2px, transparent 2px),
    linear-gradient(#ffffff 0 0) 6px 7px / 9px 2px no-repeat,
    linear-gradient(#ffffff 0 0) 6px 13px / 13px 2px no-repeat,
    #303746;
}

.crm-mcp-arch-arrow {
  position: relative;
  z-index: 3;
  justify-self: stretch;
  align-self: center;
  min-width: 0;
}

.crm-mcp-arch-arrow--right {
  height: 1px;
  background: rgba(95, 104, 118, 0.58);
}

.crm-mcp-arch-arrow--source-ci {
  grid-column: 2;
  grid-row: 1;
}

.crm-mcp-arch-arrow--ci-registry {
  grid-column: 4;
  grid-row: 1;
}

.crm-mcp-arch-arrow--deploy-cd {
  grid-column: 2;
  grid-row: 2;
}

.crm-mcp-arch-arrow--cd-crm {
  grid-column: 4;
  grid-row: 2;
}

.crm-mcp-arch-arrow--right::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-right: 1px solid rgba(95, 104, 118, 0.82);
  border-bottom: 1px solid rgba(95, 104, 118, 0.82);
  transform: translateY(-50%) rotate(-45deg);
}

.crm-mcp-arch-arrow--down {
  grid-column: 5;
  grid-row: 1 / 3;
  justify-self: center;
  align-self: center;
  width: 1px;
  height: 16px;
  background: rgba(95, 104, 118, 0.58);
}

.crm-mcp-arch-arrow--down::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 4px;
  height: 4px;
  border-right: 1px solid rgba(95, 104, 118, 0.82);
  border-bottom: 1px solid rgba(95, 104, 118, 0.82);
  transform: translateX(-50%) rotate(45deg);
}

.crm-mcp-benefit h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.crm-mcp-benefit p {
  margin: 0;
  color: #1c1c1f;
  font-size: 1.08rem;
  line-height: 1.5;
}

.crm-mcp-benefit p + p {
  margin-top: 8px;
}

.crm-mcp-chat__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 82px;
  padding: 16px 20px;
  border-bottom: 1px solid #e4e4e4;
}

.crm-mcp-chat__identity {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.crm-mcp-chat__avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #e2e2e2;
}

.crm-mcp-chat__identity h3,
.crm-mcp-chat__identity p {
  margin: 0;
}

.crm-mcp-chat__identity h3 {
  color: #141a28;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}

.crm-mcp-chat__identity p {
  margin-top: 5px;
  color: #6f7488;
  font-size: 13px;
  line-height: 1.25;
}

.crm-mcp-chat__clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #9a9da5;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

.crm-mcp-chat__messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
  padding: 20px;
  overflow: hidden;
  background: #f8f9fb;
}

.crm-mcp-chat__message {
  display: grid;
  gap: 7px;
  max-width: 82%;
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transition:
    opacity 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.crm-mcp-chat__message.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.crm-mcp-chat__message--user {
  align-self: flex-end;
}

.crm-mcp-chat__message--assistant {
  align-self: flex-start;
}

.crm-mcp-chat__bubble {
  padding: 14px 16px;
  border-radius: 20px;
  color: #141a28;
  font-size: 14px;
  line-height: 1.42;
}

.crm-mcp-chat__message--user .crm-mcp-chat__bubble {
  border-bottom-right-radius: 7px;
  background: #0b6cff;
  color: #ffffff;
}

.crm-mcp-chat__message--assistant .crm-mcp-chat__bubble {
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-bottom-left-radius: 7px;
  background: #ffffff;
}

.crm-mcp-chat__message-name {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #6f7488;
  font-size: 12px;
  line-height: 1;
}

.crm-mcp-chat__message-name img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.crm-mcp-chat__typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 20px;
}

.crm-mcp-chat__typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7b8295;
  animation: crmMcpChatTyping 920ms ease-in-out infinite;
}

.crm-mcp-chat__typing span:nth-child(2) {
  animation-delay: 130ms;
}

.crm-mcp-chat__typing span:nth-child(3) {
  animation-delay: 260ms;
}

.crm-mcp-chat__actions {
  display: grid;
  gap: 7px;
  margin-top: 10px;
}

.crm-mcp-chat__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 13px;
  background: #eef4ff;
  color: #1755c8;
  font-size: 12px;
  font-weight: 600;
}

.crm-mcp-chat__composer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  border-top: 1px solid #e4e4e4;
  background: #ffffff;
}

.crm-mcp-chat__input {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 52px;
  padding: 0 16px;
  border: 1.5px solid #d8d8d8;
  border-radius: 20px;
  color: #141a28;
  font-size: 16px;
  line-height: 1.25;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.crm-mcp-chat__input.is-active {
  border-color: #0b6cff;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(11, 108, 255, 0.1);
}

.crm-mcp-chat__placeholder {
  position: absolute;
  left: 16px;
  color: #8a8a8a;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.crm-mcp-chat__input.is-active .crm-mcp-chat__placeholder,
.crm-mcp-chat__input.has-value .crm-mcp-chat__placeholder {
  opacity: 0;
}

.crm-mcp-chat__cursor {
  width: 2px;
  height: 22px;
  margin-left: 2px;
  background: #141a28;
  opacity: 0;
}

.crm-mcp-chat__cursor.is-visible {
  opacity: 1;
  animation: crmMcpChatCursorBlink 1s steps(1) infinite;
}

.crm-mcp-chat__icon-button,
.crm-mcp-chat__send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #6f7488;
  background: transparent;
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.crm-mcp-chat__icon-button img,
.crm-mcp-chat__icon-button svg,
.crm-mcp-chat__send svg {
  width: 24px;
  height: 24px;
}

.crm-mcp-chat__icon-button img {
  display: block;
  object-fit: contain;
  opacity: 0.72;
}

.crm-mcp-chat__icon-button svg,
.crm-mcp-chat__send svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.crm-mcp-chat__send {
  background: #a9c2fb;
  color: #ffffff;
}

.crm-mcp-chat__send.is-ready {
  background: #0b6cff;
}

.crm-mcp-chat__send.is-pressed {
  transform: translateY(1px) scale(0.98);
}

@keyframes crmMcpChatCursorBlink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@keyframes crmMcpChatTyping {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.42;
  }

  40% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.crm-system-list {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}

.crm-systems-section .section-heading {
  max-width: none;
  justify-items: center;
  text-align: center;
}

.crm-system-case {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 26px;
  align-items: center;
  padding: 40px;
  border-radius: 27px !important;
  box-shadow: none;
}

.crm-system-case__content {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 20px;
}

.crm-system-case__content h3 {
  margin: 0;
  font-size: 2.65rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.crm-system-case__content p {
  margin: 0;
  max-width: none;
  color: #343434;
  font-size: 1.18rem;
  line-height: 1.5;
}

.crm-system-case__preview {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.82), transparent 38%),
    linear-gradient(140deg, #f7fafb 0%, #dce9ef 48%, #eef4f6 100%);
}

.crm-system-case__preview-shell {
  display: grid;
  place-items: center;
  gap: 12px;
  width: 100%;
  min-height: 100%;
  padding: 20px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 20% 20%, rgba(119, 160, 255, 0.14), transparent 38%);
  color: #8e9198;
  text-align: center;
}

.crm-system-case__preview-shell strong {
  color: #8e9198;
  font-size: clamp(2rem, 2vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.crm-system-case__preview-shell span {
  color: #9ea4b0;
  font-size: 0.95rem;
}

.crm-telegram-showcase {
  padding: 0;
  align-items: stretch;
  border-radius: 27px !important;
  background: linear-gradient(120deg, #C9F528 12.05%, #20EE45 92.22%);
  box-shadow: none;
}

.crm-telegram-showcase .telegram-showcase__content {
  padding: 40px 0 40px 40px;
}

.crm-telegram-showcase .telegram-showcase__visual {
  position: relative;
  display: grid;
  place-items: end center;
  align-self: stretch;
  min-height: 0;
  overflow: hidden;
}

.crm-telegram-showcase__image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  display: block;
  width: auto;
  height: 100%;
  align-self: end;
  justify-self: center;
  object-fit: contain;
  transform: translateX(-50%);
}

.crm-telegram-showcase .section-heading {
  margin-bottom: 0;
}

.crm-telegram-showcase .section-heading--split {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 20px;
}

.crm-telegram-showcase .section-heading h2,
.crm-telegram-showcase .section-heading p {
  max-width: none;
}

.crm-telegram-showcase .section-heading p {
  justify-self: start;
  color: #131313;
  font-size: 1.35rem;
  line-height: 1.4;
}

.crm-telegram-showcase .telegram-showcase__cta {
  width: fit-content;
  max-width: 100%;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill) !important;
  margin-top: 34px;
  background: #3b73e0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(59, 115, 224, 0.18);
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease;
}

.crm-telegram-showcase .telegram-showcase__cta:hover {
  background: #3b73e0;
  transform: translateY(-1px);
}

.page-avito .hero {
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  align-items: start;
  gap: 34px;
}

.page-avito .hero__microproof li {
  gap: 10px;
  min-height: 34px;
  padding: 0 14px;
  border-color: #965eeb;
  background: #965eeb;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(150, 94, 235, 0.22);
  font-size: 0.9rem;
}

.page-avito .hero__microproof-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: #ffffff;
}

.page-avito .hero__microproof-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

.page-avito .hero__actions {
  margin-top: 36px;
}

.page-avito .hero-title-logo--avito {
  width: auto;
  height: 1em;
  margin-left: 0.12em;
  vertical-align: -0.08em;
}

.page-avito #advantages .proof-card--launch {
  min-height: 100%;
  grid-template-rows: auto 1fr;
}

.page-avito #advantages .proof-card--launch .proof-card__image {
  width: min(100%, 252px);
  align-self: start;
  justify-self: center;
  margin-top: 0;
}

.page-avito #advantages .proof-card--launch .proof-card__copy {
  display: grid;
  gap: 16px;
  align-self: end;
  margin-top: auto;
}

.page-avito #advantages .proof-card--launch .proof-card__copy h3 {
  margin-top: 0;
  margin-bottom: 0;
}

.page-avito #advantages .proof-card--launch .proof-card__copy p {
  margin: 0;
}

.page-avito .avito-system-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  margin-top: 42px;
  padding-bottom: 44px;
}

.page-avito .avito-system-card {
  display: grid;
  align-content: start;
  gap: 22px;
  min-height: 100%;
  padding: 28px;
  border-radius: 27px !important;
  box-shadow: none;
  overflow: hidden;
}

.page-avito .avito-system-card--primary {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) 662px;
  align-items: center;
  border-radius: 27px !important;
}

.page-avito .avito-system-card .system-card__content {
  gap: 16px;
}

.page-avito .avito-system-card .system-card__index {
  display: none;
}

.page-avito .avito-system-card h3 {
  margin: 0;
  color: #101010;
  font-size: 1.7rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.page-avito .avito-system-card p {
  margin: 0;
  color: #343434;
  font-size: 1.05rem;
  line-height: 1.45;
}

.page-avito .avito-system-card .system-card__demo {
  --demo-scale: 0.54;
  position: relative;
  width: 100%;
  height: calc(var(--demo-viewport-height) * var(--demo-scale));
  border-radius: 20px !important;
  background: #f5f6f8;
  overflow: hidden;
}

.page-avito .avito-system-card .system-card__demo iframe {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(var(--demo-scale));
  transform-origin: top center;
}

.page-avito .avito-system-card--primary .system-card__demo {
  --demo-scale: 0.7;
  order: 2;
  justify-self: center;
  align-self: center;
}

.page-avito .avito-system-card--primary .system-card__content {
  order: 1;
}

.page-avito .avito-hero-panel {
  min-height: 100%;
  padding: 0;
}

.page-avito .avito-hero-panel .hero-panel__layout {
  min-height: 100%;
  width: 100%;
  background: transparent;
}

.page-avito .avito-hero-panel__visual {
  display: grid;
  place-items: start center;
  width: 100%;
  min-height: 460px;
  padding-top: 8px;
}

.page-avito .avito-hero-panel__image {
  width: 100%;
  max-width: 560px;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  transform: none;
  border-radius: 0;
  background: transparent;
}

@media (max-width: 1100px) {
  .crm-telegram-showcase .telegram-showcase__content {
    padding: 28px 20px;
  }

  .page-avito .hero {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .page-avito .avito-system-grid {
    grid-template-columns: 1fr;
  }

  .page-avito .avito-system-card--primary {
    grid-column: auto;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .page-avito .avito-system-card .system-card__demo {
    --demo-scale: min(0.54, calc((100vw - 96px) / 760px));
  }

  .page-avito .avito-system-card--primary .system-card__demo {
    --demo-scale: min(0.7, calc((100vw - 96px) / 760px));
    order: 0;
  }

  .page-avito .avito-system-card--primary .system-card__content {
    order: 0;
  }

  .page-avito .hero__content {
    justify-items: center;
    text-align: center;
  }

  .page-avito .hero__lead {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .page-avito .hero__actions {
    justify-content: center;
  }

  .page-avito .avito-hero-panel {
    width: 100%;
  }

  .page-avito .avito-hero-panel__visual {
    min-height: auto;
    padding-top: 0;
    place-items: center;
  }

  .page-avito .avito-hero-panel__image {
    width: min(100%, 560px);
    max-height: none;
  }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .crm-telegram-showcase {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
    gap: 20px;
    padding: 0;
  }

  .crm-telegram-showcase .telegram-showcase__content {
    padding: 28px 20px;
  }

  .crm-telegram-showcase .telegram-showcase__visual {
    display: grid;
    min-height: 0;
  }

  .crm-telegram-showcase__image {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 50%;
    width: auto;
    max-width: calc(100% - 24px);
    height: calc(100% - 12px);
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .crm-telegram-showcase .telegram-showcase__visual {
    display: none;
  }
}

@media (max-width: 1320px) {
  .crm-agent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .crm-culture-photo {
    min-height: 360px;
  }

  .crm-culture-layout,
  .crm-mcp-layout,
  .crm-system-case {
    grid-template-columns: 1fr;
  }

  .crm-system-case__content p {
    max-width: none;
  }
}

@media (max-width: 1120px) {
  .crm-culture-point__content h3 {
    font-size: 26px;
  }

  .crm-agent-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .crm-agent-grid,
  .crm-mcp-benefits {
    grid-template-columns: 1fr;
  }

  .crm-culture-layout {
    gap: 28px;
  }

  .crm-culture-photo {
    min-height: 320px;
  }

  .crm-culture-points {
    grid-template-rows: none;
    min-height: 0;
  }

  .crm-culture-point {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 0;
  }

}

@media (max-width: 720px) {
  .page-design .hero__lead {
    max-width: 100%;
  }

  .crm-system-case {
    padding: 24px;
  }

  .crm-agent-item h3,
  .crm-mcp-prompts h3,
  .crm-mcp-benefit h3,
  .crm-system-case__content h3 {
    font-size: 2rem;
  }

  .crm-agent-heading h2 {
    font-size: 2rem;
  }

  .crm-culture-heading {
    margin-bottom: 40px;
  }

  .crm-culture-photo {
    min-height: 260px;
  }

  .crm-culture-point__content h3 {
    font-size: 22px;
  }

  .crm-culture-point__content p {
    font-size: 1rem;
  }

  .crm-mcp-copy h2 {
    max-width: none;
  }

  .crm-mcp-copy > p,
  .crm-mcp-prompts li,
  .crm-mcp-benefit p {
    font-size: 1rem;
  }

  .crm-mcp-benefit {
    border-radius: 22px;
  }

  .crm-system-case__preview {
    min-height: 220px;
  }

}

.page-seo .hero__content {
  max-width: 1220px;
}

.page-seo .seo-hero {
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  align-items: start;
  gap: 34px;
  padding-bottom: 120px;
}

.page-seo .seo-hero .hero__content {
  position: relative;
  gap: 0;
}

.page-seo .seo-hero .hero__content::after {
  content: "";
  position: absolute;
  top: 72px;
  right: clamp(-40px, -2vw, 0px);
  width: min(520px, 42vw);
  height: min(520px, 42vw);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(45, 190, 100, 0.14) 0%, rgba(45, 190, 100, 0.05) 34%, rgba(45, 190, 100, 0) 70%);
  filter: blur(8px);
  pointer-events: none;
}

.page-seo h1 {
  max-width: 18ch;
}

.page-seo .seo-hero .hero__lead {
  max-width: 580px;
}

.page-seo .seo-hero-panel {
  min-height: 100%;
  margin-top: 82px;
  padding: 0;
}

.page-seo .seo-hero-panel .hero-panel__layout {
  min-height: 100%;
  width: 100%;
  background: transparent;
}

.page-seo .seo-hero-panel__visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 520px;
  padding: 0 10px 10px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.page-seo .seo-hero-panel__image {
  width: min(112%, 640px);
  height: auto;
  max-height: 548px;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  transform: none;
  border-radius: 0;
  background: transparent;
}

.page-seo .seo-hero-panel .kpi-grid--hero dt {
  color: #202124;
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.page-seo .seo-hero-panel .kpi-grid--hero .kpi-card {
  width: 177px;
  max-width: calc(100% - 24px);
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.09);
  backdrop-filter: blur(14px);
}

.page-seo .seo-hero-panel .kpi-grid--hero .kpi-card--budget {
  top: 196px;
  left: -54px;
}

.page-seo .seo-hero-panel .kpi-grid--hero .kpi-card--launch {
  top: 43%;
  right: -64px;
  transform: translateY(-50%);
}

.page-seo .seo-hero-panel .kpi-grid--hero .kpi-card--control {
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
}

.page-telegram .kpi-grid--hero dt {
  color: #202124;
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.page-telegram .kpi-grid--hero .kpi-card {
  width: 177px;
  max-width: calc(100% - 24px);
  padding: 14px 18px;
}

.page-telegram .kpi-grid--hero .kpi-card--budget {
  top: 166px;
}

.page-telegram .kpi-grid--hero .kpi-card--launch {
  top: 52%;
}

.page-telegram #system .system-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 0;
}

.page-telegram #advantages .proof-card--launch {
  grid-template-rows: 1fr auto;
  align-content: stretch;
}

.page-telegram #advantages .proof-card--launch .proof-card__image {
  justify-self: center;
  align-self: center;
  width: min(100%, 280px);
  margin-top: 0;
  border-radius: 0;
  object-fit: contain;
}

.page-telegram #advantages .proof-card--launch .proof-card__body {
  display: grid;
  align-self: end;
  gap: 16px;
  margin-top: auto;
}

.page-telegram #system .system-card {
  position: relative;
  top: auto;
  min-height: auto;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 28px;
  transform: none;
  will-change: auto;
}

.page-telegram #system .system-card__index {
  display: none;
}

.page-telegram #system .system-card:nth-child(1) {
  grid-column: 1 / -1;
  grid-template-columns: minmax(240px, 1fr) minmax(320px, 560px);
  align-items: center;
}

.page-telegram #system .system-card__demo {
  --demo-scale: 0.52;
  align-self: start;
  justify-self: start;
  width: calc(var(--demo-viewport-width) * var(--demo-scale));
  height: calc(var(--demo-viewport-height) * var(--demo-scale));
  margin-top: -14px;
}

.page-telegram #system .system-card:nth-child(1) .system-card__demo {
  --demo-scale: 0.78;
  justify-self: center;
  margin-top: -20px;
}

.page-telegram #system .system-card:nth-child(2) .system-card__demo {
  --demo-content-width: 760px;
  --demo-viewport-width: 820px;
  --demo-viewport-height: 540px;
  --demo-scale: 0.66;
  justify-self: center;
  width: min(calc(var(--demo-content-width) * var(--demo-scale)), calc(100% + 44px));
  height: calc(var(--demo-viewport-height) * var(--demo-scale));
  max-width: none;
  margin-inline: -22px;
}

.page-telegram #system .system-card:nth-child(2) {
  gap: 14px;
}

.page-telegram #system .system-card:nth-child(2) .system-card__content {
  margin-top: -4px;
}

.page-telegram #system .system-card:nth-child(3) .system-card__content {
  margin-top: -4px;
}

.page-telegram #system .system-card:nth-child(n + 2) {
  justify-items: center;
  text-align: center;
  gap: 24px;
}

.page-telegram #system .system-card:nth-child(n + 2) .system-card__content {
  order: 2;
  justify-items: center;
  text-align: center;
}

.page-telegram #system .system-card:nth-child(n + 2) .system-card__demo {
  order: 1;
  justify-self: center;
  margin-top: 0;
  margin-bottom: 8px;
}

.page-telegram #system .system-card:nth-child(3) .system-card__demo {
  --demo-content-width: 760px;
  --demo-viewport-height: 540px;
  --demo-scale: 0.66;
  width: min(calc(var(--demo-content-width) * var(--demo-scale)), calc(100% + 44px));
  height: calc(var(--demo-viewport-height) * var(--demo-scale));
  max-width: none;
  margin-inline: -22px;
}

.seo-opportunity-card,
.seo-case {
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8f8 100%);
}

.seo-opportunity-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 22px;
  padding: 28px;
}

.page-seo .seo-opportunity-card,
.page-seo .seo-opportunity-card.card {
  background:
    linear-gradient(135deg, #3b3d42 0%, #26282c 46%, #141518 100%);
  box-shadow: none;
  border-radius: 27px !important;
}

.seo-opportunity-card__copy {
  display: grid;
  align-content: center;
}

.seo-opportunity-card__copy {
  gap: 28px;
  padding: 20px;
}

.page-seo .seo-opportunity-card__copy h2,
.page-seo .seo-opportunity-card__copy p,
.page-seo .seo-opportunity-card__note {
  color: #ffffff;
}

.seo-opportunity-card__copy p {
  margin: 0;
  color: #3f3f3f;
  font-size: 1.16rem;
  line-height: 1.58;
}

.seo-opportunity-card__note {
  display: block;
  color: #111111;
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 500;
}

.page-seo .seo-opportunity-card__note {
  color: #c9f528;
}

.seo-opportunity-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-seo .seo-opportunity-card__actions .button {
  background: #ffffff;
  color: #161616;
  box-shadow: none;
}

.page-seo .seo-opportunity-card__actions .button:hover {
  background: #f1f1f1;
  color: #161616;
}

.seo-opportunity-card__visual {
  min-width: 0;
}

.page-seo .seo-opportunity-card__visual {
  border-radius: 16px !important;
  overflow: hidden;
}

.seo-audit-visual {
  position: relative;
  min-height: 100%;
  height: 100%;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(45, 190, 100, 0.1), rgba(255, 255, 255, 0)),
    #f2f4f2;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.05);
}

.page-seo .seo-audit-visual {
  display: block;
  min-height: 420px;
  padding: 0;
  border-radius: 16px !important;
  background: #3d3f45;
  box-shadow: none;
  overflow: hidden;
}

.seo-audit-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: top center;
}

.page-seo .seo-audit-visual img {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.seo-audit-visual__insight {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 10px;
  max-width: 320px;
  padding: 22px;
  border-radius: 10px;
  background: rgba(17, 17, 17, 0.82);
  color: #ffffff;
  box-shadow: 0 24px 50px rgba(17, 17, 17, 0.18);
}

.seo-audit-visual__insight strong {
  font-size: 1.5rem;
  font-weight: 500;
}

.seo-audit-visual__insight span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.seo-results-section {
  display: grid;
  gap: 32px;
}

.seo-results-section .article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.seo-results-section .case-article {
  min-width: 0;
  overflow: hidden;
}

.seo-case-chart {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.seo-case-chart__top {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.seo-case-chart__metrics {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 14px;
  min-width: 0;
}

.seo-case-chart__metric {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.seo-case-chart__metric-name {
  color: #111111;
  font-size: clamp(0.86rem, 1vw, 0.95rem);
  font-weight: 500;
  line-height: 1.3;
  white-space: normal;
}

.seo-case-chart__metric-delta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #2dbe64;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.seo-case-chart__metric--secondary .seo-case-chart__metric-delta {
  background: #3771e0;
}

.seo-case-chart__plot {
  min-height: 196px;
}

.seo-case-chart__area {
  fill: rgba(45, 190, 100, 0.16);
}

.seo-case-chart__line {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seo-case-chart__line--primary {
  stroke: #2dbe64;
}

.seo-case-chart__line--secondary {
  stroke: #3771e0;
  stroke-width: 4;
  stroke-dasharray: 10 12;
}

.seo-case-chart__values {
  display: grid;
  gap: 8px;
}

.seo-case-chart__value-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.seo-case-chart__value-row span {
  min-width: 0;
  color: #111111;
  font-size: 0.92rem;
  font-weight: 500;
}

.seo-case-chart__value-row strong {
  min-width: 0;
  color: #2dbe64;
  font-size: clamp(0.86rem, 1.05vw, 1.02rem);
  font-weight: 600;
  line-height: 1.2;
  text-align: right;
  overflow-wrap: anywhere;
}

.seo-case-chart__value-row--secondary strong {
  color: #3771e0;
}

.seo-results-section .cases-disclosure {
  margin-top: 24px;
}

.seo-results-section .cases-disclosure__summary {
  margin: 0 auto;
  box-shadow: none;
}

.seo-results-section .cases-extra {
  margin-top: 18px;
}

@media (max-width: 1280px) and (min-width: 821px) {
  .page-seo .seo-results-section .article-grid,
  .page-seo .seo-results-section .cases-extra {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.seo-pricing-section .ai-preview-card__heading p {
  max-width: 920px;
}

.seo-pricing-section__note {
  display: block;
  margin: 0 0 14px;
  max-width: 40ch;
  color: #111111;
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 500;
}

.avito-pricing-section__note {
  display: block;
  margin: 0 0 14px;
  max-width: 40ch;
  color: #111111;
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 500;
}

.telegram-pricing-section__note,
.direct-pricing-section__note {
  display: block;
  margin: 0 0 14px;
  max-width: 40ch;
  color: #111111;
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 500;
}

.page-direct .direct-pricing-section__note {
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 1100px) {
  .page-seo .seo-hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 26px;
  }

  .page-seo .seo-hero .hero__content::after {
    right: 50%;
    top: 64px;
    transform: translateX(50%);
    width: min(440px, 80vw);
    height: min(440px, 80vw);
  }

  .page-seo .seo-hero-panel {
    width: 100%;
  }

  .page-seo .seo-hero-panel .hero-panel__layout {
    min-height: 430px;
    overflow: visible;
  }

  .page-seo .seo-hero-panel__visual {
    min-height: 430px;
    padding: 0 56px 24px;
    overflow: visible;
  }

  .page-seo .seo-hero-panel__image {
    width: min(100%, 520px);
    max-height: 410px;
    min-height: 0;
  }

  .page-seo .seo-hero-panel .kpi-grid--hero .kpi-card {
    width: min(168px, calc(50% - 16px));
  }

  .page-seo .seo-hero-panel .kpi-grid--hero .kpi-card--budget {
    top: 86px;
    left: 12px;
  }

  .page-seo .seo-hero-panel .kpi-grid--hero .kpi-card--launch {
    right: 12px;
  }

  .page-seo .seo-hero-panel .kpi-grid--hero .kpi-card--control {
    bottom: 24px;
  }

  .seo-opportunity-card,
  .seo-opportunity-card__copy {
    padding: 12px;
  }

  .seo-audit-visual img {
    min-height: 420px;
  }
}

@media (max-width: 700px) {
  .seo-opportunity-card {
    padding: 20px;
  }

  .page-seo h1 {
    max-width: none;
  }

  .seo-opportunity-card__copy p {
    font-size: 1rem;
  }

  .seo-opportunity-card__note {
    font-size: 1.25rem;
  }

  .seo-audit-visual__insight {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
    padding: 18px;
  }

  .seo-audit-visual img {
    min-height: 320px;
  }

  .page-seo .seo-hero-panel .hero-panel__layout {
    min-height: 340px;
  }

  .page-seo .seo-hero-panel__visual {
    min-height: 340px;
    padding: 0 24px 44px;
  }

  .page-seo .seo-hero-panel__image {
    width: min(100%, 420px);
    max-height: 300px;
    min-height: 0;
  }

  .page-seo .seo-hero-panel .kpi-grid--hero .kpi-card {
    width: min(142px, calc(50% - 12px));
    padding: 10px 12px;
  }

  .page-seo .seo-hero-panel .kpi-grid--hero .kpi-card--budget {
    top: 52px;
    left: 8px;
  }

  .page-seo .seo-hero-panel .kpi-grid--hero .kpi-card--launch {
    top: 46%;
    right: 8px;
  }

  .page-seo .seo-hero-panel .kpi-grid--hero .kpi-card--control {
    bottom: 18px;
  }

  .seo-case-chart__metrics {
    grid-template-columns: 1fr;
  }

  .seo-case-chart__plot {
    min-height: 168px;
  }

  .seo-case-chart__value-row {
    flex-direction: column;
    align-items: start;
    gap: 4px;
  }

  .seo-case-chart__value-row strong {
    text-align: left;
  }
}

/* About page */
.page-about {
  --about-green-start: #c9f528;
  --about-green-end: #20ee45;
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, var(--shell-inline-size));
  justify-content: center;
  gap: 42px;
  width: max(var(--shell-inline-size), calc(100vw - 80px));
  min-height: 780px;
  margin-top: 26px;
  margin-left: calc(50% - max(var(--shell-inline-size), calc(100vw - 80px)) / 2);
  margin-right: calc(50% - max(var(--shell-inline-size), calc(100vw - 80px)) / 2);
  align-content: start;
  overflow: hidden;
  padding: 108px 0 88px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 18%, rgba(60, 114, 226, 0.22), transparent 22%),
    radial-gradient(circle at 84% 78%, rgba(201, 245, 40, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(14, 14, 17, 0.98) 0%, #050505 100%);
  box-shadow: var(--shadow);
}

.about-hero::before,
.about-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.about-hero::before {
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.78) 100%);
}

.about-hero::after {
  right: 64px;
  bottom: 46px;
  width: min(58%, 760px);
  height: 154px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    rgba(255, 255, 255, 0.04);
  background-size: 56px 56px, 56px 56px, auto;
  opacity: 0.45;
}

.about-hero > * {
  position: relative;
  z-index: 1;
}

.about-hero__spark {
  position: absolute;
  top: -72px;
  right: max(-260px, calc((100% - var(--shell-inline-size)) / 2 - 320px));
  z-index: 1;
  display: block;
  width: clamp(560px, 58vw, 840px);
  height: auto;
  pointer-events: none;
}

.about-hero__content,
.about-kpi-grid {
  z-index: 2;
}

.about-hero__content {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-column: 1;
  max-width: none;
}

.about-hero__content > * {
  grid-column: 1 / span 8;
}

.page-about .about-hero .breadcrumbs {
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 60px;
}

.page-about .about-hero .breadcrumbs a:hover {
  color: #ffffff;
}

.about-hero__title {
  display: grid;
  gap: 18px;
}

.page-about .about-hero__eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.about-hero h1 {
  margin: 0;
  max-width: none;
  color: #ffffff;
  font-size: 68px;
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -2px;
}

.about-hero__lead {
  max-width: none;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 29px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0;
}

.about-hero__lead-accent {
  color: #baff69;
}

.about-kpi-grid {
  display: grid;
  grid-column: 1;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.about-kpi {
  grid-column: span 3;
  display: grid;
  gap: 12px;
  min-height: 116px;
  padding: 40px;
  border-radius: var(--radius-lg) !important;
  box-shadow: none;
}

.about-kpi--accent {
  border-color: rgba(100, 149, 28, 0.2);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.4), transparent 34%),
    linear-gradient(135deg, #d8ff72 0%, #b8f246 100%);
}

.about-kpi.about-kpi--accent span {
  color: #111111;
}

.about-kpi strong {
  color: #202124;
  font-size: 48px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}

.about-kpi span {
  color: #8b8e94;
  font-size: 1rem;
  line-height: 1.3;
}

.about-approach,
.about-results,
.about-offer {
  display: grid;
  gap: 52px;
}

.about-approach h2,
.about-results h2,
.about-offer h2,
.about-requisites h2 {
  color: var(--text);
  font-size: 54px;
  line-height: 1;
  letter-spacing: -1px;
}

.about-approach__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.9fr);
  gap: 90px;
  align-items: start;
}

.about-media-card {
  position: sticky;
  top: 120px;
  display: grid;
  place-items: center;
  min-height: 650px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.about-media-card img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: 34% center;
  opacity: 1;
  filter: none;
}

.about-media-card figcaption {
  position: absolute;
  color: #8b8e94;
  font-size: 1.55rem;
  line-height: 1;
}

.about-approach__copy {
  display: grid;
  gap: 34px;
  padding-top: 10px;
}

.about-approach__cards {
  display: grid;
  gap: 16px;
}

.about-approach-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 40px;
  border: 1px solid rgba(17, 17, 17, 0.06) !important;
  border-radius: var(--radius-xl) !important;
  box-shadow: none;
}

.about-approach-card h3 {
  color: var(--text);
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.about-approach__copy .about-approach-card p {
  margin: 0;
  color: #111111;
  font-size: 1.1rem;
  line-height: 1.55;
}

.about-section-heading {
  width: 100%;
  max-width: none;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.about-section-heading h2,
.about-section-heading p {
  justify-self: center;
}

.about-section-heading p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.6;
  text-align: center;
}

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

.about-result-card {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 24px;
  min-height: 170px;
  padding: 40px;
  border-radius: var(--radius-xl) !important;
  box-shadow: none;
  text-align: center;
}

.about-result-card__icon {
  width: 88px;
  height: 88px;
  object-fit: contain;
  display: block;
}

.about-result-card h3,
.about-offer-card h3 {
  color: var(--text);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
}

.about-result-card p,
.about-offer-card p,
.about-offer-card li {
  margin: 0;
  color: #777b82;
  font-size: 1.2rem;
  line-height: 1.5;
}

.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  scroll-margin-top: 112px;
}

.about-cta:not(.about-cta--wide) {
  border-color: transparent;
  background: linear-gradient(135deg, #b8e0ff 0%, #87c7ff 50%, #5fb0fb 100%);
  box-shadow: none;
}

.about-cta:not(.about-cta--wide) p {
  color: #111111;
}

.about-cta__copy {
  display: grid;
  gap: 22px;
}

.about-cta h2 {
  max-width: 830px;
  color: var(--text);
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: -1px;
}

.about-cta p {
  margin: 0;
  color: #8b8e94;
  font-size: 1.2rem;
  line-height: 1.35;
}

.about-cta .button {
  flex: 0 0 auto;
  min-width: 220px;
  min-height: 66px;
  border-radius: 34px;
  font-size: 1.1rem;
}

.about-illustration__frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-xl) !important;
  box-shadow: none;
}

.about-illustration__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
}

.about-partnership {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 86px;
  align-items: start;
}

.about-partnership.section {
  padding-top: 140px;
  padding-bottom: 0;
}

.about-partnership__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  grid-column: 1 / -1;
  gap: inherit;
  align-items: start;
}

.about-partnership__panel h2 {
  color: var(--text);
  font-size: 54px;
  line-height: 1;
  letter-spacing: -1px;
}

.about-partnership__accent {
  color: #3a9adf;
}

.about-partnership__smiley {
  display: inline-block;
  width: 0.86em;
  height: 0.86em;
  margin-left: 0.12em;
  vertical-align: -0.08em;
  background: currentColor;
  -webkit-mask: url("assets/about-curious-smiley.svg") center / contain no-repeat;
  mask: url("assets/about-curious-smiley.svg") center / contain no-repeat;
}

.about-partnership__panel ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding-left: 1.35em;
  list-style: disc;
}

.about-offer-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.about-partnership__panel li {
  color: #050505;
  font-size: 1.34rem;
  line-height: 1.32;
}

.about-manifesto {
  display: grid;
  gap: 46px;
  padding: 70px 0;
}

.about-manifesto__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 58px;
  align-items: stretch;
}

.about-manifesto__row--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.about-manifesto__row--reverse .about-manifesto__copy {
  grid-column: 2;
  grid-row: 1;
}

.about-manifesto__row--reverse .about-manifesto__media {
  grid-column: 1;
  grid-row: 1;
  margin-top: -220px;
}

.about-manifesto__copy {
  display: grid;
  gap: 40px;
  align-content: start;
}

.about-manifesto h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(38px, 3.3vw, 48px);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.8px;
}

.about-manifesto p {
  max-width: 560px;
  margin: 0;
  color: #050505;
  font-size: 1.18rem;
  line-height: 1.42;
}

.about-manifesto__media {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 3 / 4;
  background: #e8e8e8;
}

.about-manifesto__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-manifesto__image--breakthrough {
  object-position: 76% 50%;
  transform: scaleX(-1);
}

.about-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-offer-card {
  display: grid;
  align-content: start;
  gap: 30px;
  min-height: 430px;
  padding: 40px;
  border-radius: var(--radius-xl) !important;
  box-shadow: none;
}

.about-offer-card__icon {
  width: 88px;
  height: 88px;
  object-fit: contain;
  display: block;
}

.about-offer-card--image {
  position: relative;
  align-self: stretch;
  place-items: stretch;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: #f3f4f6;
}

.about-offer-card--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
}

.about-offer-card--image-tall {
  align-self: stretch;
}

.about-offer-card--image-tall img {
  object-position: 18% 50%;
}

.about-offer-card--image figcaption {
  position: absolute;
  color: #8b8e94;
  font-size: 1rem;
}

.about-cta--wide {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  gap: 52px;
  min-height: 0;
  margin-bottom: 122px;
  padding: 40px;
  overflow: hidden;
  border-color: transparent;
  background:
    radial-gradient(circle at 46% 42%, rgba(186, 255, 105, 0.62), transparent 57.8%),
    linear-gradient(135deg, #e2e2e2 0%, #d8d8d8 100%);
  box-shadow: none;
}

.about-cta--wide.section {
  padding-bottom: 40px;
}

.about-cta--wide .about-cta__copy {
  align-content: center;
  max-width: 760px;
}

.about-cta--wide .about-cta__copy p {
  color: #050505;
}

.about-cta__highlight {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.about-cta--wide h2 {
  position: relative;
  z-index: 0;
  isolation: isolate;
}

.about-cta__highlight::after {
  content: "";
  position: absolute;
  left: -0.2em;
  bottom: -0.18em;
  z-index: -1;
  width: calc(100% + 0.4em);
  aspect-ratio: 362 / 82;
  background: url("assets/about-stage-underline-salad.svg?v=20260525-salad-lower") center / contain no-repeat;
}

.about-cta--wide .about-cta__copy .button {
  width: fit-content;
  min-width: 0;
  margin-top: 22px;
}

.about-cta__media {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 40px;
  gap: 8px;
  width: min(100%, 500px);
  justify-self: end;
  align-self: center;
  margin: 0;
}

.about-cta__photo {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.about-cta__photo--call {
  grid-column: 1 / span 3;
  grid-row: 1 / span 2;
  object-position: 50% 18%;
  filter: grayscale(1);
}

.about-cta__photo--office {
  grid-column: 4 / span 3;
  grid-row: 1 / span 2;
  object-position: 50% 34%;
}

.about-cta__photo--uwdc {
  grid-column: 1 / span 4;
  grid-row: 3 / span 2;
  object-position: 50% 24%;
}

.about-cta__photo--lobby {
  grid-column: 5 / span 2;
  grid-row: 3 / span 2;
  object-position: 54% 58%;
}

.about-cta__photo--zavod {
  grid-column: 1 / span 6;
  grid-row: 5 / span 3;
  object-position: 50% 26%;
  filter: grayscale(1);
}

.about-requisites {
  padding-top: 18px;
}

.about-requisites__card {
  display: grid;
  gap: 32px;
  padding: 40px;
  border-radius: var(--radius-xl) !important;
  background: #e2e2e2;
  box-shadow: none;
}

.about-requisites__header {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.about-requisites__header h2 {
  margin: 0;
}

.about-requisites__header p {
  margin: 0;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.4;
}

.about-requisites__grid {
  display: grid;
  gap: 0;
}

.about-requisite-item {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0;
  background: transparent;
}

.about-requisite-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.about-requisite-item__label {
  color: #7c7c7c;
  font-size: 0.95rem;
  font-weight: 500;
}

.about-requisite-item__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 8px;
}

.about-requisite-item__value {
  display: block;
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.45;
  font-family: "SFMono-Regular", "SF Mono", ui-monospace, Consolas, monospace;
  user-select: all;
  white-space: normal;
  word-break: break-word;
  cursor: pointer;
  transition: color 0.2s ease;
}

.about-requisite-item__copy {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  min-width: 22px;
  height: 22px;
  min-height: 22px;
  align-self: center;
  margin-left: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8b8e94;
  font-size: 0;
  line-height: 0;
  box-shadow: none;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.about-requisite-item__copy::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  padding: 6px 10px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.78rem;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.about-requisite-item__copy:hover,
.about-requisite-item__copy:focus-visible {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.about-requisite-item__copy img {
  width: 22px;
  height: 22px;
  display: block;
  opacity: 0.72;
  transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.about-requisite-item__row:hover .about-requisite-item__value {
  color: #6f737a;
}

.about-requisite-item__row:hover .about-requisite-item__copy {
  color: #6f737a;
}

.about-requisite-item__row:hover .about-requisite-item__copy img {
  opacity: 0.96;
}

.about-requisite-item__copy.is-copied {
  color: #ffffff;
  background: transparent;
}

.about-requisite-item__copy.is-copied::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.about-requisite-item__copy.is-copied img {
  filter: brightness(0);
  opacity: 1;
}

@media (max-width: 1320px) {
  .about-hero {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    min-height: auto;
    margin-left: 0;
    margin-right: 0;
    padding-right: 40px;
    padding-left: 40px;
  }

  .about-hero__spark {
    right: -180px;
  }

  .about-hero__lead {
    font-size: 29px;
  }

  .about-approach__grid,
  .about-partnership,
  .about-partnership__panel {
    gap: 44px;
  }
}

@media (max-width: 1100px) and (min-width: 961px) {
  .about-hero {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 96px 40px 72px;
  }

  .about-hero__content {
    justify-items: center;
    text-align: center;
  }

  .about-hero__content > * {
    grid-column: 3 / span 8;
    justify-self: center;
  }

  .about-hero__lead {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .page-about .about-hero .breadcrumbs,
  .about-kpi {
    justify-self: center;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 960px) {
  .about-hero {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 48px;
  }

  .about-hero__spark {
    position: relative;
    top: -46px;
    right: auto;
    justify-self: center;
    width: min(92vw, 560px);
  }

  .about-hero__content {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    justify-items: center;
    text-align: center;
  }

  .about-hero__content > * {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .about-hero h1,
  .about-approach h2,
  .about-results h2,
  .about-offer h2,
  .about-requisites h2,
  .about-cta h2,
  .about-partnership__panel h2,
  .about-manifesto h3 {
    font-size: 42px;
  }

  .about-hero__lead {
    font-size: 26px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .about-manifesto h3 {
    font-size: 34px;
    line-height: 1.16;
  }

  .about-kpi-grid,
  .about-result-grid,
  .about-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-kpi {
    grid-column: auto;
    justify-items: center;
    text-align: center;
  }

  .about-offer-card--image-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: inherit;
    height: auto;
  }

  .about-approach__grid,
  .about-approach__cards,
  .about-offer,
  .about-section-heading,
  .about-partnership__panel {
    grid-template-columns: 1fr;
  }

  .about-partnership {
    grid-template-columns: 1fr;
  }

  .about-media-card {
    position: relative;
    top: auto;
    min-height: 420px;
  }

  .about-media-card img {
    min-height: 420px;
  }

  .about-offer {
    justify-items: center;
    text-align: center;
  }

  .about-offer-card {
    justify-items: start;
    text-align: left;
  }

  .about-offer-card__icon {
    justify-self: start;
  }

  .about-offer-card--image-tall {
    order: 7;
  }

  .about-section-heading p {
    text-align: center;
  }

  .about-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-cta__copy {
    justify-items: center;
    text-align: center;
  }

  .about-cta__copy p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .about-manifesto__row,
  .about-manifesto__row--reverse,
  .about-cta--wide {
    grid-template-columns: 1fr;
  }

  .about-manifesto__copy {
    justify-items: center;
    text-align: center;
  }

  .about-manifesto p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .about-manifesto__row--reverse .about-manifesto__copy,
  .about-manifesto__row--reverse .about-manifesto__media {
    grid-column: auto;
    grid-row: auto;
  }

  .about-manifesto__row--reverse .about-manifesto__media {
    margin-top: 0;
    order: 2;
  }

  .about-cta--wide {
    gap: 36px;
    min-height: auto;
    margin-bottom: 0;
    padding: 48px;
    justify-items: center;
    text-align: center;
  }

  .about-cta--wide.section {
    padding-bottom: 48px;
  }

  .about-cta--wide .about-cta__copy {
    justify-items: center;
    text-align: center;
  }

  .about-cta--wide .about-cta__copy .button {
    width: 100%;
    max-width: 100%;
    justify-self: center;
  }

  .about-cta__media {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .about-requisites__card {
    padding: 36px 32px;
  }

}

@media (max-width: 720px) {
  .about-hero {
    gap: 28px;
    padding: 38px 24px 46px;
  }

  .about-hero__spark {
    width: min(112vw, 430px);
    margin-bottom: -46px;
  }

  .about-hero__content {
    justify-items: center;
    text-align: center;
  }

  .about-hero::after {
    right: 24px;
    bottom: 24px;
    width: 72%;
    height: 112px;
  }

  .about-hero__title {
    gap: 14px;
  }

  .about-kpi-grid,
  .about-result-grid,
  .about-offer-grid {
    grid-template-columns: 1fr;
  }

  .about-approach,
  .about-results,
  .about-offer {
    gap: 32px;
  }

  .about-approach__grid {
    gap: 34px;
  }

  .about-result-card,
  .about-approach-card,
  .about-offer-card,
  .about-kpi {
    min-height: auto;
    padding: 28px 20px;
  }

  .about-result-card__icon {
    width: 80px;
    height: 80px;
  }

  .about-offer-card__icon {
    width: 80px;
    height: 80px;
  }

  .about-offer-card--image {
    min-height: 300px;
  }

  .about-offer-card--image-tall {
    min-height: 300px;
    height: auto;
  }

  .about-cta {
    padding: 28px 20px;
  }

  .about-illustration__frame {
    min-height: 360px;
  }

  .about-partnership {
    gap: 32px;
  }

  .about-partnership.section {
    padding-top: 50px;
    padding-bottom: 0;
  }

  .about-cta:not(.about-cta--wide) {
    margin-bottom: 50px;
  }

  .about-cta:not(.about-cta--wide) + .about-partnership.section {
    padding-top: 50px;
  }

  .about-manifesto {
    gap: 34px;
    padding: 50px 0;
  }

  .about-manifesto__row {
    gap: 24px;
  }

  .about-manifesto p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .about-manifesto__media {
    max-width: 360px;
    justify-self: center;
    width: 100%;
  }

  .about-cta--wide {
    margin-bottom: 0;
    padding: 28px 20px;
  }

  .about-cta--wide.section {
    padding-bottom: 28px;
  }

  .about-cta__media {
    grid-auto-rows: 36px;
    gap: 6px;
  }

  .about-requisites__card {
    padding: 28px 20px;
  }

  .about-requisite-item {
    padding: 16px 0;
  }

  .about-requisite-item__copy {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
  }
}

@media (max-width: 520px) {
  .about-hero h1,
  .about-approach h2,
  .about-results h2,
  .about-offer h2,
  .about-requisites h2,
  .about-cta h2,
  .about-partnership__panel h2,
  .about-manifesto h3 {
    font-size: 34px;
    line-height: 1.12;
  }

  .about-hero__lead {
    font-size: 22px;
  }

  .about-manifesto__copy p {
    font-size: 18px !important;
    line-height: 1.5;
  }

  .about-manifesto h3 {
    font-size: 28px;
    line-height: 1.18;
  }

  .about-kpi strong {
    font-size: 38px;
  }

  .about-result-card h3,
  .about-offer-card h3 {
    font-size: 30px;
  }

  .about-result-card__icon {
    width: 72px;
    height: 72px;
  }

  .about-media-card,
  .about-media-card img {
    min-height: 320px;
  }

  .about-offer-card {
    padding: 28px 20px;
  }

  .about-offer-card__icon {
    width: 72px;
    height: 72px;
  }

  .about-offer-card--image {
    padding: 0;
    min-height: 300px;
  }

  .about-offer-card--image img {
    min-height: 300px;
  }
}

/* Home page */
.page-home {
  --home-blue: #3b73e0;
  --home-blue-hover: #2f63c7;
  --home-lime: #d4f33c;
  --home-muted: #7f838a;
  --home-hero-grid-offset: max(0px, calc((100vw - var(--shell-inline-size)) / 2 - 40px));
}

.page-home .home-button--blue.button--primary {
  background: #111111;
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.page-home .home-button--blue.button--primary:hover {
  background: #2b2b2b;
  border-color: transparent;
}

.home-hero {
  padding-top: 26px;
  width: calc(100vw - 80px);
  margin-left: calc(50% - 50vw + 40px);
  margin-right: calc(50% - 50vw + 40px);
}

.home-hero__shell {
  position: relative;
  display: grid;
  min-height: 780px;
  padding: 108px 40px 88px;
  overflow: hidden;
  border-radius: var(--radius-xl) !important;
  background: #050505;
  box-shadow: var(--shadow);
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 18% 18%, rgba(60, 114, 226, 0.22), transparent 22%),
    radial-gradient(circle at 84% 78%, rgba(201, 245, 40, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(14, 14, 17, 0.98) 0%, rgba(5, 5, 5, 1) 100%);
}

.home-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.82) 100%);
}

.home-hero__pane,
.home-hero__grid {
  position: absolute;
  pointer-events: none;
}

.home-hero__pane {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0.45;
}

.home-hero__pane--left {
  top: 52px;
  left: 28px;
  width: 320px;
  height: 390px;
  transform: rotate(-2deg);
}

.home-hero__pane--bottom {
  right: 84px;
  bottom: 34px;
  width: 760px;
  height: 154px;
}

.home-hero__grid {
  inset: auto 50% 72px auto;
  width: 480px;
  height: 140px;
  transform: translateX(50%);
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.5;
}

.home-hero__content {
  position: relative;
  z-index: 5;
  display: grid;
  justify-items: start;
  gap: 26px;
  margin-left: var(--home-hero-grid-offset);
  max-width: 980px;
  text-align: left;
}

.home-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.66fr);
  gap: 24px;
  align-items: center;
  width: 100%;
}

.home-hero__visual {
  position: relative;
  min-height: 620px;
  isolation: isolate;
  overflow: visible;
}

.home-hero__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 960px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3rem, 4vw, 68.4px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -2px;
  text-wrap: balance;
}

.home-hero h1 span {
  display: block;
  margin: 0;
  padding: 0;
  color: var(--home-lime);
}

.home-hero__lead {
  max-width: 820px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  line-height: 1.55;
  font-weight: 500;
  text-wrap: balance;
}

.home-hero__actions {
  margin-top: 8px;
}

.page-home main section.home-hero .home-hero__actions .button {
  min-width: 272px;
  min-height: 72px;
  padding: 0 42px;
  border-radius: 34px;
  font-size: 1.2rem;
}

.home-hero__cta.button--secondary {
  color: #111111;
  border-color: #ffffff;
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.16);
}

.home-hero__cta.button--secondary:hover {
  color: #111111;
  background: #f1f1f1;
  border-color: #f1f1f1;
}

.home-hero__line {
  position: absolute;
  top: 128px;
  left: 58%;
  width: 500px;
  height: auto;
  pointer-events: none;
  z-index: 3;
  opacity: 0.92;
  transform: translateX(-50%);
}

.home-hero__line--corner {
  top: auto;
  left: -136px;
  bottom: -104px;
  width: 480px;
  z-index: 0;
  opacity: 0.68;
  transform: rotate(246deg);
}

.home-hero__art {
  position: absolute;
  max-width: none;
  will-change: transform;
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0)
    rotate(var(--hero-rotate, 0deg));
  transition: transform 180ms ease-out;
  user-select: none;
  pointer-events: none;
}

.home-hero__art--s {
  top: -40px;
  right: -46px;
  width: 747px;
  z-index: 1;
  --hero-rotate: 7deg;
  filter: drop-shadow(0 36px 48px rgba(0, 0, 0, 0.28));
}

.home-hero__art--t {
  left: -34px;
  top: 178px;
  width: min(100%, 282px);
  z-index: 3;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.18));
}

.home-section-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.home-section-heading--center {
  justify-items: center;
}

.home-section-heading--split {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.home-section-heading h2,
.home-about-preview h2,
.home-assistant__copy h2 {
  margin: 0;
  color: var(--text);
  font-size: 54px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -1px;
}

.home-section-heading p {
  max-width: 1180px;
  margin: 0;
  color: #0b0b0b;
  font-size: 1.15rem;
  line-height: 1.55;
  letter-spacing: 0;
}

.home-section-heading--split p {
  max-width: 760px;
  justify-self: end;
}

.home-directions {
  display: grid;
  gap: 56px;
}

.home-direction-list {
  display: grid;
  gap: 22px;
}

.home-direction-row {
  --direction-accent: 59, 115, 224;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.94fr);
  gap: 78px;
  align-items: center;
  padding: 40px;
  border-radius: var(--radius-xl) !important;
  background: #ffffff;
  box-shadow: none;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}

.home-direction-row::before {
  content: "";
  position: absolute;
  top: 72%;
  right: 22%;
  z-index: 0;
  width: min(40%, 480px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(var(--direction-accent), 0.28) 0%,
      rgba(var(--direction-accent), 0.14) 34%,
      rgba(var(--direction-accent), 0.05) 56%,
      rgba(var(--direction-accent), 0) 74%
    );
  filter: blur(50px);
  opacity: 0.68;
  transform: translate(0, -50%);
  pointer-events: none;
}

.home-direction-row--crm {
  --direction-accent: 59, 115, 224;
}

.home-direction-row--sites {
  --direction-accent: 245, 132, 43;
}

.home-direction-row--seo {
  --direction-accent: 45, 190, 100;
}

.home-direction-row--direct {
  --direction-accent: 59, 115, 224;
}

.home-direction-row--avito {
  --direction-accent: 103, 201, 246;
}

.home-direction-row--media {
  --direction-accent: 212, 243, 60;
}

.home-direction-row:hover,
.home-direction-row:focus-visible {
  transform: scale(1.028);
}

.home-direction-row:focus-visible {
  outline: 2px solid rgba(59, 115, 224, 0.34);
  outline-offset: 4px;
}

.home-direction-row__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 30px;
}

.home-direction-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  line-height: 1;
  font-weight: 500;
}

.home-direction-tag--blue {
  color: #ffffff;
  background: var(--home-blue);
}

.home-direction-tag--sky {
  color: #ffffff;
  background: #67c9f6;
}

.home-direction-tag--orange {
  color: #ffffff;
  background: #f5842b;
}

.home-direction-tag--green {
  color: #1d4f29;
  background: rgba(45, 190, 100, 0.2);
}

.home-direction-tag--lime {
  color: #516214;
  background: rgba(212, 243, 60, 0.42);
}

.home-direction-row__copy h3,
.home-value-card__copy h3,
.home-stage-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 2vw, 2.65rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -1px;
}

.home-direction-row__copy p,
.home-value-card__copy p,
.home-assistant__copy p,
.home-about-preview__copy p {
  margin: 0;
  color: #0f0f0f;
  font-size: 1.05rem;
  line-height: 1.6;
}

.home-direction-row__button {
  width: fit-content;
  min-width: 0;
  min-height: 52px;
  padding: 0 22px;
  border-color: #d9d9d9;
  border-radius: var(--radius-pill);
  color: #111111;
  background: #ffffff;
  box-shadow: none;
}

.home-direction-row__button:hover {
  color: #ffffff;
  background: #111111;
  border-color: #111111;
}

.home-direction-row__media {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  margin: 0;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  min-height: 480px;
  overflow: hidden;
  border-radius: 16px !important;
  box-shadow: none;
  background: var(--bg);
}

.home-direction-row__media > * {
  position: relative;
  z-index: 1;
}

.home-direction-row__media img,
.home-direction-row__media video {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 28px;
  object-fit: contain;
  display: block;
}

.home-direction-row__media video {
  background: var(--bg);
}

.home-direction-row__media--crm {
  padding: 28px;
}

.home-direction-row__media--crm .crm-hero-demo {
  min-height: 100%;
}

.home-direction-row__media--crm .crm-hero-demo button {
  pointer-events: none;
}

.home-values__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.home-value-card {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 40px;
  border-radius: var(--radius-xl) !important;
  background: #e2e2e2;
  box-shadow: none;
}

.home-value-card--compact-media-gap {
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 14px;
}

.home-value-card--compact-media-gap .home-value-card__avatar {
  justify-self: start;
}

.home-value-card__avatar {
  width: 160px;
  height: 160px;
  overflow: hidden;
  border-radius: 28px;
  background: #ebedf0;
}

.home-value-card__avatar--tg1,
.home-value-card__avatar--development {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  justify-self: center;
}

.home-value-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-value-card__avatar--tg1 img {
  object-position: center;
}

.home-value-card__avatar--development img {
  object-position: center 12%;
}

.home-value-card__copy {
  display: grid;
  gap: 18px;
}

.home-value-card__button {
  width: fit-content;
  min-width: 0;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius-pill);
}

.home-assistant__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.8fr);
  gap: 52px;
  align-items: center;
  padding: 40px;
  overflow: hidden;
  border-radius: var(--radius-xl) !important;
  background: #050505;
  box-shadow: var(--shadow);
}

.home-assistant__portrait {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 504px;
  height: auto;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.home-assistant__copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 30px;
  max-width: 760px;
  padding-top: 0;
}

.home-assistant__button {
  width: fit-content;
  color: #111111 !important;
  background: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.home-assistant__button:hover {
  color: #111111 !important;
  background: #f2f2f2 !important;
  border-color: #f2f2f2 !important;
}

.home-assistant__copy h2,
.home-assistant__copy p {
  color: #ffffff;
}

.home-assistant__chat {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template: 1fr / 1fr;
  justify-items: center;
  align-items: stretch;
  align-self: stretch;
  height: 620px;
  min-height: 620px;
  overflow: hidden;
}

.home-chat-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  grid-area: 1 / 1;
  width: min(100%, 520px);
  height: 100%;
  min-height: 0;
  padding: 18px 18px 24px;
  border-radius: 16px;
  background: #f8f8fa;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition:
    opacity 240ms ease,
    visibility 240ms ease,
    transform 240ms ease;
}

.home-assistant__chat.is-dialog-open .home-chat-card {
  opacity: 0;
  visibility: hidden;
  transform: none;
}

.home-assistant__helper.ai-helper {
  position: absolute;
  inset: 0;
  right: auto;
  bottom: auto;
  z-index: 3;
  display: grid;
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  justify-items: stretch;
  pointer-events: none;
}

.home-assistant__helper.ai-helper.is-open {
  pointer-events: auto;
}

.home-assistant__helper.ai-helper .ai-helper__panel {
  display: none;
  height: 100%;
  max-height: none;
  min-height: 100%;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  overflow: hidden;
  border-radius: 34px !important;
  background: #f8f8fa;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.home-assistant__helper.ai-helper.is-open .ai-helper__panel {
  display: grid;
}

.home-assistant__helper.ai-helper .ai-helper__header {
  gap: 12px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.home-assistant__helper.ai-helper .ai-helper__identity {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.home-assistant__helper.ai-helper .ai-helper__identity-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  object-fit: cover;
}

.home-assistant__helper.ai-helper .ai-helper__identity > div {
  min-width: 0;
}

.home-assistant__helper.ai-helper .ai-helper__label {
  min-height: 26px;
  margin-bottom: 0;
  padding: 0 10px;
  font-size: 0.78rem;
}

.home-assistant__helper.ai-helper .ai-helper__chat {
  min-height: 0;
  max-height: 100%;
  overflow: auto;
  overscroll-behavior: contain;
  padding-right: 6px;
}

.home-assistant__helper.ai-helper .ai-helper__choices {
  justify-content: flex-start;
}

.home-assistant__helper.ai-helper .ai-helper__choices.is-hidden {
  display: none;
}

.home-chat-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.home-chat-card__avatar {
  position: relative;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
}

.home-chat-card__header img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.home-chat-card__status-dot {
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 12px;
  height: 12px;
  border: 2px solid #f8f8fa;
  border-radius: 50%;
  background: #6bbb74;
}

.home-chat-card__header strong {
  display: block;
  color: #131313;
  font-size: 1.15rem;
  line-height: 1.1;
  font-weight: 600;
}

.home-chat-card__body {
  display: grid;
  gap: 18px;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-top: 22px;
  padding-right: 6px;
  scrollbar-gutter: stable;
}

.home-chat-card__body::-webkit-scrollbar {
  width: 5px;
}

.home-chat-card__body::-webkit-scrollbar-track {
  background: transparent;
}

.home-chat-card__body::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.16);
}

.home-chat-bubble {
  max-width: 86%;
  padding: 18px 20px;
  border-radius: 24px;
  font-size: 0.98rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(12px);
  animation: home-chat-reveal 0.36s ease forwards;
  animation-play-state: paused;
}

.home-chat-bubble--out {
  justify-self: end;
  background: var(--home-blue);
  color: #ffffff;
}

.home-chat-bubble--in {
  justify-self: start;
  background: #ffffff;
  color: #22242a;
}

.home-chat-bubble__time {
  display: block;
  margin-top: 8px;
  color: rgba(34, 36, 42, 0.45);
  font-size: 0.78rem;
  line-height: 1;
}

.home-chat-bubble--out .home-chat-bubble__time {
  color: rgba(255, 255, 255, 0.72);
  text-align: right;
}

.home-chat-bubble--step-1 {
  animation-delay: 0.08s;
}

.home-chat-bubble--step-2 {
  animation-delay: 0.44s;
}

.home-chat-bubble--step-3 {
  animation-delay: 0.8s;
}

.home-chat-bubble--step-4 {
  animation-delay: 1.16s;
}

.home-assistant__panel.is-visible .home-chat-bubble {
  animation-play-state: running;
}

.home-stages {
  display: grid;
  gap: 40px;
}

.home-stages__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.home-stages__visual {
  position: sticky;
  top: 120px;
  align-self: start;
  display: grid;
  place-items: center;
  margin: 0;
  min-height: 760px;
  overflow: hidden;
  border-radius: var(--radius-xl) !important;
  box-shadow: var(--shadow);
  background: #f5f6f8;
}

.home-stages__visual img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  display: block;
}

.home-stages__list {
  display: grid;
  gap: 18px;
}

.home-stage-card {
  display: grid;
  gap: 22px;
  padding: 40px;
  border-radius: var(--radius-xl) !important;
  background: #ffffff;
  box-shadow: none;
}

.home-stage-card__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 24px;
  align-items: center;
}

.home-stage-card__content > div {
  display: grid;
  gap: 16px;
}

.home-stage-card__content img {
  width: 132px;
  height: 132px;
  object-fit: contain;
  justify-self: end;
}

.home-stage-animation {
  position: relative;
  justify-self: end;
  width: 132px;
  height: 132px;
  color: var(--home-blue);
}

.stage-browser,
.stage-team,
.stage-ecosystem,
.stage-chart {
  position: relative;
  width: 100%;
  height: 100%;
}

.stage-browser {
  display: grid;
  align-content: center;
  padding: 14px;
  border: 1px solid rgba(84, 91, 105, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.52);
}

.stage-browser__bar {
  width: 62px;
  height: 8px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: var(--home-blue);
}

.stage-browser__viewport {
  height: 70px;
  overflow: hidden;
}

.stage-browser__page {
  display: grid;
  gap: 7px;
  animation: stage-browser-scroll 5.2s ease-in-out infinite;
}

.stage-browser__page span {
  width: 72px;
  height: 6px;
  border-radius: 999px;
  background: rgba(84, 91, 105, 0.2);
}

.stage-browser__page .stage-browser__hero {
  width: 88px;
  height: 9px;
  background: rgba(52, 120, 246, 0.62);
}

.stage-browser__page .stage-browser__short {
  width: 54px;
}

.stage-browser__page .stage-browser__accent {
  width: 64px;
  background: rgba(71, 169, 101, 0.45);
}

.stage-team__avatar {
  position: absolute;
  top: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(8px) scale(0.82);
  animation: stage-user-join 4.8s ease-in-out infinite;
}

.stage-team__avatar::before,
.stage-team__avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
}

.stage-team__avatar::before {
  top: 9px;
  width: 15px;
  height: 15px;
  background: currentColor;
  opacity: 0.34;
}

.stage-team__avatar::after {
  bottom: 8px;
  width: 28px;
  height: 13px;
  background: currentColor;
  opacity: 0.26;
}

.stage-team__avatar--one {
  left: 12px;
  color: #3478f6;
  background: rgba(52, 120, 246, 0.12);
}

.stage-team__avatar--two {
  left: 45px;
  color: #516214;
  background: rgba(212, 243, 60, 0.28);
  animation-delay: 0.55s;
}

.stage-team__avatar--three {
  right: 12px;
  color: #47a965;
  background: rgba(71, 169, 101, 0.14);
  animation-delay: 1.1s;
}

.stage-team__line {
  position: absolute;
  left: 50%;
  top: 76px;
  width: 54px;
  height: 1px;
  border-radius: 999px;
  background: rgba(84, 91, 105, 0.18);
  transform: translateX(-50%) scaleX(0);
  animation: stage-team-line 4.8s ease-in-out infinite;
}

.stage-team__project {
  position: absolute;
  left: 50%;
  bottom: 10px;
  display: grid;
  gap: 6px;
  width: 96px;
  height: 42px;
  padding: 11px 18px;
  border: 1px solid rgba(84, 91, 105, 0.34);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
  transform: translateX(-50%);
}

.stage-team__project span {
  height: 6px;
  border-radius: 999px;
  background: rgba(52, 120, 246, 0.34);
}

.stage-team__project span + span {
  width: 42px;
  background: rgba(84, 91, 105, 0.18);
}

.stage-ecosystem {
  display: grid;
  place-items: center;
}

.stage-ecosystem svg {
  width: 120px;
  height: 120px;
}

.stage-ecosystem__center {
  fill: rgba(52, 120, 246, 0.08);
  stroke: var(--home-blue);
  stroke-width: 2;
}

.stage-ecosystem__center-dot {
  fill: var(--home-blue);
  opacity: 0.72;
}

.stage-ecosystem__link {
  fill: none;
  stroke: rgba(84, 91, 105, 0.38);
  stroke-linecap: round;
  stroke-width: 1.35;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: stage-link-draw 6s ease-in-out infinite;
}

.stage-ecosystem__node {
  fill: rgba(255, 255, 255, 0.42);
  stroke: currentColor;
  stroke-width: 2;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0.72);
  animation: stage-node-pop 6s ease-in-out infinite;
}

.stage-ecosystem__node--top {
  color: #47a965;
}

.stage-ecosystem__node--right {
  color: #d4f33c;
}

.stage-ecosystem__node--bottom-right {
  color: #3478f6;
}

.stage-ecosystem__node--left {
  color: #5bb0df;
}

.stage-ecosystem__node--bottom-left {
  color: #ef6678;
}

.stage-ecosystem__node--top {
  animation-delay: 0.55s;
}

.stage-ecosystem__link--right {
  animation-delay: 0.8s;
}

.stage-ecosystem__node--right {
  animation-delay: 1.35s;
}

.stage-ecosystem__link--bottom-right {
  animation-delay: 1.6s;
}

.stage-ecosystem__node--bottom-right {
  animation-delay: 2.15s;
}

.stage-ecosystem__link--left {
  animation-delay: 2.4s;
}

.stage-ecosystem__node--left {
  animation-delay: 2.95s;
}

.stage-ecosystem__link--bottom-left {
  animation-delay: 3.2s;
}

.stage-ecosystem__node--bottom-left {
  animation-delay: 3.75s;
}

.stage-chart {
  display: grid;
  place-items: center;
  padding: 16px 14px 12px;
  border: 1px solid rgba(84, 91, 105, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.48);
}

.stage-chart__grid {
  position: absolute;
  inset: 25px 24px 20px;
  background:
    linear-gradient(rgba(84, 91, 105, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 91, 105, 0.12) 1px, transparent 1px);
  background-size: 100% 24px, 32px 100%;
}

.stage-chart svg {
  position: relative;
  width: 104px;
  height: 78px;
}

.stage-chart__line {
  fill: none;
  stroke: var(--home-blue);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: stage-chart-line 5.4s linear infinite;
}

.stage-chart__point {
  fill: var(--home-blue);
  background: var(--home-blue);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0.72);
  animation-duration: 5.4s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.stage-chart__point--one {
  animation-name: stage-chart-point-one;
}

.stage-chart__point--two {
  animation-name: stage-chart-point-two;
}

.stage-chart__point--three {
  animation-name: stage-chart-point-three;
}

.stage-chart__point--four {
  animation-name: stage-chart-point-four;
}

.stage-chart__point--five {
  animation-name: stage-chart-point-five;
}

.home-stage-card p {
  margin: 0;
  color: #8b8e94;
  font-size: 1rem;
  line-height: 1.5;
}

@keyframes stage-browser-scroll {
  0%,
  18% {
    transform: translateY(0);
  }

  58%,
  78% {
    transform: translateY(-42px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes stage-user-join {
  0%,
  10% {
    opacity: 0;
    transform: translateY(8px) scale(0.82);
  }

  24%,
  78% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-3px) scale(0.96);
  }
}

@keyframes stage-team-line {
  0%,
  30% {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
  }

  46%,
  78% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) scaleX(0.8);
  }
}

@keyframes stage-node-pop {
  0%,
  10% {
    opacity: 0;
    transform: scale(0.72);
  }

  20%,
  80% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}

@keyframes stage-link-draw {
  0%,
  5% {
    opacity: 0;
    stroke-dashoffset: 1;
  }

  16%,
  80% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes stage-chart-line {
  0%,
  6% {
    opacity: 1;
    stroke-dashoffset: 1;
  }

  78% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  92% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes stage-chart-point-one {
  0%,
  13% {
    opacity: 0;
    transform: scale(0.72);
  }

  17%,
  92% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.88);
  }
}

@keyframes stage-chart-point-two {
  0%,
  27% {
    opacity: 0;
    transform: scale(0.72);
  }

  31%,
  92% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.88);
  }
}

@keyframes stage-chart-point-three {
  0%,
  42% {
    opacity: 0;
    transform: scale(0.72);
  }

  46%,
  92% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.88);
  }
}

@keyframes stage-chart-point-four {
  0%,
  58% {
    opacity: 0;
    transform: scale(0.72);
  }

  62%,
  92% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.88);
  }
}

@keyframes stage-chart-point-five {
  0%,
  73% {
    opacity: 0;
    transform: scale(0.72);
  }

  77%,
  92% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.88);
  }
}

.home-stage-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 600;
}

.home-stage-pill--blue {
  color: #3478f6;
  background: rgba(52, 120, 246, 0.12);
  box-shadow: inset 0 0 0 1px rgba(52, 120, 246, 0.22);
}

.home-stage-pill--green {
  color: #47a965;
  background: rgba(71, 169, 101, 0.14);
  box-shadow: inset 0 0 0 1px rgba(71, 169, 101, 0.22);
}

.home-stage-pill--lime {
  color: #516214;
  background: rgba(212, 243, 60, 0.26);
  box-shadow: inset 0 0 0 1px rgba(212, 243, 60, 0.42);
}

.home-stage-pill--orange {
  color: #b05716;
  background: rgba(245, 132, 43, 0.14);
  box-shadow: inset 0 0 0 1px rgba(245, 132, 43, 0.24);
}

.home-stages__cta {
  width: fit-content;
  min-width: 0;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  justify-self: start;
}

.page-home .demo-card__content {
  margin-top: 0;
}

.page-home .demo-card--excursion,
.page-home .card.demo-card--excursion {
  gap: 24px;
  padding: 40px;
  justify-items: center;
  text-align: center;
  background: linear-gradient(180deg, #626b82 0%, #3d4559 100%) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    0 20px 44px rgba(78, 86, 106, 0.16);
}

.page-home .demo-card--excursion::before {
  content: "";
  position: absolute;
  top: auto;
  bottom: auto;
  left: auto;
  right: -250px;
  z-index: 0;
  width: min(920px, 96%);
  aspect-ratio: 1;
  background: url("assets/optimized/home-tour-excursion-replacement.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  mix-blend-mode: normal;
  pointer-events: none;
  opacity: 0.46;
  transform: translateY(42%);
}

.page-home .demo-card--excursion::after {
  content: none;
}

.page-home .demo-card--excursion .demo-card__heading,
.page-home .demo-card--excursion .demo-card__content {
  max-width: 880px;
  margin: 0;
  text-align: center;
  justify-items: center;
}

.page-home .demo-card--excursion .demo-card__heading h2 {
  color: #f8fbff;
}

.page-home .demo-card--excursion .demo-card__content {
  gap: 24px;
}

.page-home .demo-card--excursion .demo-card__content p {
  max-width: 760px;
  font-size: 24px;
  line-height: 1.5;
  color: #ffffff;
  text-wrap: normal;
}

.page-home .demo-card--excursion .demo-card__benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 12px;
}

.page-home .demo-card--excursion .demo-card__benefits li {
  min-height: 100%;
  padding: 26px 28px 26px 44px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: none;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.45;
}

.page-home .demo-card--excursion .demo-card__benefits li::before {
  top: 29px;
  left: 22px;
  width: 10px;
  height: 10px;
  background: #77d66f;
}

.page-home .demo-card--excursion .demo-card__button {
  min-width: 180px;
}

.home-about-preview {
  display: grid;
  gap: 42px;
}

.home-about-preview__heading {
  max-width: 100%;
  justify-self: start;
  justify-items: start;
  margin: 0;
  text-align: left;
}

.home-about-preview__heading p {
  max-width: 100%;
  font-size: 24px;
  line-height: 1.55;
  text-wrap: normal;
}

.home-about-preview__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1fr);
  gap: 58px;
  align-items: center;
}

.home-about-preview__copy {
  display: grid;
  gap: 30px;
}

@keyframes home-chat-reveal {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-about-preview__kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.home-about-kpi {
  display: grid;
  gap: 14px;
  align-items: start;
  justify-items: center;
  width: 100%;
  padding: 14px;
  border-radius: 16px !important;
  box-shadow: var(--shadow);
  text-align: center;
}

.home-about-kpi__icon-image {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  justify-self: center;
}

.home-about-kpi strong,
.home-about-kpi span {
  display: block;
}

.home-about-kpi strong {
  color: var(--text);
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
}

.home-about-kpi span {
  margin-top: 8px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.2;
}

.home-about-preview__media {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 96px;
  gap: 10px;
  margin: 0;
  overflow: hidden;
  border-radius: 0 !important;
  box-shadow: none;
}

.home-about-preview__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

.home-about-preview__photo--call {
  grid-column: 1 / span 5;
  grid-row: 1 / span 2;
  object-position: 42% 20%;
  filter: grayscale(1);
}

.home-about-preview__photo--office {
  grid-column: 6 / span 7;
  grid-row: 1 / span 2;
  object-position: 42% 34%;
}

.home-about-preview__photo--uwdc {
  grid-column: 1 / span 7;
  grid-row: 3 / span 2;
  object-position: 50% 18%;
}

.home-about-preview__photo--lobby {
  grid-column: 8 / span 5;
  grid-row: 3 / span 2;
  object-position: 52% 62%;
}

.home-about-preview__photo--zavod {
  grid-column: 1 / span 12;
  grid-row: 5 / span 3;
  object-position: 50% 22%;
  filter: grayscale(1);
}

@media (max-width: 1180px) and (min-width: 821px) {
  .page-home {
    --shell-gutter: 32px;
    --shell-inline-size: min(var(--shell-max-width), calc(100vw - var(--shell-gutter)));
  }

  .home-hero {
    width: calc(100vw - 32px);
    margin-left: calc(50% - 50vw + 16px);
    margin-right: calc(50% - 50vw + 16px);
  }
}

@media (max-width: 1280px) {
  .home-hero__shell {
    min-height: 780px;
    padding-inline: 40px;
  }

  .home-hero__layout {
    grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.88fr);
  }

  .home-hero__visual {
    min-height: 560px;
  }

  .home-hero__line {
    top: 124px;
    left: 58%;
    width: 450px;
  }

  .home-hero__line--corner {
    top: auto;
    left: -120px;
    bottom: -90px;
    width: 420px;
    transform: rotate(246deg);
  }

  .home-hero__art--s {
    top: -28px;
    right: -30px;
    width: 653px;
  }

  .home-hero__art--t {
    left: -24px;
    top: 182px;
    width: min(100%, 246px);
  }

  .home-direction-row,
  .home-about-preview__grid {
    gap: 40px;
  }

  .home-stages__grid {
    grid-template-columns: 1fr;
  }

  .home-stages__visual {
    position: static;
    top: auto;
    min-height: clamp(360px, 42vw, 520px);
    max-height: 520px;
  }

  .home-stages__visual img {
    height: 100%;
    min-height: 0;
  }
}

@media (max-width: 1100px) {
  .home-section-heading--split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-section-heading--split p {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .home-section-heading h2,
  .home-about-preview h2,
  .home-assistant__copy h2,
  .page-home .demo-card--excursion .demo-card__heading h2 {
    font-size: 52px;
  }

  .home-direction-row__copy h3,
  .home-value-card__copy h3,
  .home-stage-card h3 {
    font-size: 44px;
  }

  .home-direction-row__copy p,
  .home-value-card__copy p,
  .home-assistant__copy p,
  .home-about-preview__copy p,
  .home-section-heading p {
    font-size: 1.35rem;
  }

  .home-about-preview__heading p {
    font-size: 1.35rem;
  }

  .home-values__grid,
  .home-about-preview__kpis {
    grid-template-columns: 1fr;
  }

  .home-value-card {
    grid-template-columns: 1fr;
  }

  .home-about-preview__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-about-preview__media {
    width: 100%;
    justify-self: stretch;
  }

  .page-home .demo-card--excursion,
  .page-home .card.demo-card--excursion {
    padding: 40px;
  }

  .page-home .demo-card--excursion::before {
    top: auto;
    right: -220px;
    bottom: 0;
    width: min(820px, 96%);
  }

  .page-home .demo-card--excursion .demo-card__heading,
  .page-home .demo-card--excursion .demo-card__content {
    max-width: 820px;
  }

  .page-home .demo-card--excursion .demo-card__benefits {
    gap: 20px;
  }
}

@media (max-width: 1100px) and (min-width: 721px) {
  .home-about-preview__kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) and (min-width: 721px) {
  .page-home .demo-card--excursion .demo-card__benefits,
  .demo-card__benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .home-hero {
    padding-top: 6px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .home-hero__shell {
    min-height: 680px;
    padding: 92px 28px 64px;
  }

  .home-hero__pane--left,
  .home-hero__pane--bottom,
  .home-hero__grid {
    display: none;
  }

  .home-hero__layout,
  .home-direction-row,
  .home-assistant__panel,
  .home-about-preview__grid {
    grid-template-columns: 1fr;
  }

  .home-hero__content {
    margin-left: 0;
    max-width: 100%;
  }

  main .button {
    width: 100%;
    max-width: 100%;
  }

  main .button,
  main .telegram-showcase__cta {
    justify-self: stretch;
  }

  main .telegram-showcase__content .telegram-showcase__cta {
    width: 100%;
    max-width: 100%;
  }

  .home-hero__visual {
    min-height: 430px;
    margin-top: 8px;
  }

  .home-hero__art--s {
    left: 50%;
    top: -10px;
    right: auto;
    width: 507px;
    transform: translate3d(calc(-50% + var(--parallax-x, 0px)), var(--parallax-y, 0px), 0)
      rotate(var(--hero-rotate, 0deg));
  }

  .home-hero__art--t {
    left: 50%;
    top: 146px;
    width: min(100%, 140px);
    transform: translate3d(calc(-132% + var(--parallax-x, 0px)), calc(8px + var(--parallax-y, 0px)), 0)
      rotate(var(--hero-rotate, 0deg));
  }

  .home-hero__line {
    top: 112px;
    left: 56%;
    width: 260px;
    transform: translateX(-50%);
  }

  .home-hero__line--corner {
    top: auto;
    left: -92px;
    bottom: -70px;
    width: 320px;
    transform: rotate(246deg);
  }

  .home-direction-row__media,
  .home-direction-row__media img,
  .home-direction-row__media video {
    min-height: 340px;
  }

  .home-values__grid,
  .home-stages__grid {
    gap: 18px;
  }

  .home-stages__visual {
    position: static;
    top: auto;
    order: 1;
  }

  .home-stages__list {
    order: 2;
  }

  .home-about-preview__media {
    grid-auto-rows: 80px;
  }

  .home-about-preview__media img {
    min-height: 0;
  }

  .home-assistant__portrait {
    width: 440px;
  }

  .page-home .demo-card--excursion::before {
    top: auto;
    right: -190px;
    bottom: 0;
    width: min(720px, 98%);
  }

  .page-home .demo-card--excursion .demo-card__heading,
  .page-home .demo-card--excursion .demo-card__content {
    max-width: 100%;
  }

  .page-home .demo-card--excursion .demo-card__benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .home-hero {
    padding-top: 10px;
  }

  .home-hero__shell {
    min-height: auto;
    padding: 84px 22px 40px;
  }

  .home-hero__lead {
    font-size: 1.28rem;
  }

  .home-hero__content {
    justify-items: center;
    text-align: center;
  }

  .home-hero__actions {
    width: 100%;
  }

  .home-hero__actions .button {
    width: 100%;
  }

  .home-section-heading h2,
  .home-about-preview h2,
  .home-assistant__copy h2,
  .page-home .demo-card--excursion .demo-card__heading h2 {
    font-size: 36px;
    line-height: 1.08;
  }

  .home-direction-row__copy h3,
  .home-value-card__copy h3,
  .home-stage-card h3 {
    font-size: 31px;
    line-height: 1.12;
  }

  .home-direction-row {
    gap: 28px;
    padding: 28px 20px;
  }

  .home-direction-row .home-direction-row__copy {
    justify-items: center;
    text-align: center;
  }

  .home-direction-row .home-direction-row__button {
    justify-self: center;
  }

  .home-direction-row__copy,
  .home-value-card__copy,
  .home-assistant__copy,
  .home-about-preview__copy {
    gap: 22px;
  }

  .home-value-card--compact-media-gap,
  .home-value-card--compact-media-gap .home-value-card__copy,
  .home-assistant__panel,
  .home-assistant__copy,
  .page-home .crm-telegram-showcase .telegram-showcase__content,
  .page-home .crm-telegram-showcase .section-heading,
  .home-section-heading--split,
  .home-about-preview__copy {
    justify-items: center;
    text-align: center;
  }

  .home-value-card--compact-media-gap .home-value-card__avatar,
  .home-assistant__button,
  .page-home .crm-telegram-showcase .section-heading p,
  .page-home .crm-telegram-showcase .telegram-showcase__cta,
  .home-section-heading--split p,
  .home-about-preview__heading,
  .home-about-preview__copy > * {
    justify-self: center;
  }

  .home-stage-card {
    justify-items: center;
    text-align: center;
  }

  .home-stage-pill {
    justify-self: center;
  }

  .home-stage-card__content > div {
    justify-items: center;
  }

  .home-section-heading--split p,
  .page-home .crm-telegram-showcase .section-heading p,
  .home-about-preview__copy p {
    text-align: center;
  }

  .home-direction-row__button {
    width: 100%;
  }

  .home-value-card,
  .home-assistant__panel,
  .home-stage-card {
    padding: 28px 20px;
  }

  .page-home .demo-card--excursion,
  .page-home .card.demo-card--excursion {
    padding: 28px 20px;
  }

  .page-home .demo-card--excursion .demo-card__content p {
    font-size: 20px;
    line-height: 1.55;
  }

  .home-assistant__panel {
    gap: 32px;
  }

  .home-chat-card {
    padding: 14px 14px 20px;
  }

  .home-assistant__chat {
    height: 520px;
    min-height: 520px;
  }

  .home-chat-bubble {
    max-width: 100%;
    font-size: 1rem;
  }

  .home-stage-card__content {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .home-stage-card__content img {
    justify-self: center;
    width: 104px;
    height: 104px;
  }

  .home-stage-animation {
    justify-self: center;
    width: 112px;
    height: 112px;
  }

  .home-about-preview__media {
    grid-auto-rows: 62px;
    gap: 6px;
  }

  .home-about-preview__photo {
    border-radius: 16px;
  }

  .home-about-preview__heading {
    justify-self: stretch;
    justify-items: center;
    text-align: center;
  }

  .home-about-preview__heading p {
    font-size: 20px;
  }

  .home-hero__visual {
    min-height: 330px;
  }

  .home-hero__art--s {
    top: -4px;
    width: 347px;
  }

  .home-hero__art--t {
    top: 134px;
    width: min(100%, 107px);
  }

  .home-hero__line {
    top: 96px;
    left: 55%;
    width: 190px;
    transform: translateX(-50%);
  }

  .home-hero__line--corner {
    top: auto;
    left: -76px;
    bottom: -58px;
    width: 260px;
    transform: rotate(246deg);
  }

  .home-assistant__portrait {
    width: 352px;
  }

  .page-home .demo-card--excursion .demo-card__content {
    gap: 20px;
  }

  .page-home .demo-card--excursion .demo-card__benefits {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-home .demo-card--excursion::before {
    top: auto;
    right: -150px;
    bottom: 0;
    width: min(620px, 104%);
  }
}

@media (max-width: 520px) {
  .home-hero h1 {
    font-size: 2.7rem;
    line-height: 1.08;
  }

  .home-section-heading h2,
  .home-about-preview h2,
  .page-home .demo-card--excursion .demo-card__heading h2,
  .home-direction-row__copy h3,
  .home-value-card__copy h3,
  .home-stage-card h3,
  .home-assistant__copy h2 {
    font-size: 31px;
    line-height: 1.12;
  }

  .home-direction-row__copy p,
  .home-value-card__copy p,
  .home-assistant__copy p,
  .home-about-preview__copy p,
  .home-section-heading p,
  .page-home .demo-card--excursion .demo-card__content p,
  .home-stage-card p {
    font-size: 1.1rem;
    line-height: 1.55;
    color: #0f0f0f;
  }

  .home-value-card__avatar {
    width: 120px;
    height: 120px;
  }

  .home-value-card__avatar--tg1,
  .home-value-card__avatar--development {
    width: 96px;
    height: 96px;
  }

}

@media (max-width: 720px) {
  .hero__actions,
  .seo-opportunity-card__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  main .button,
  main .contact-action,
  main .telegram-showcase__cta,
  .site-footer .button,
  .site-footer .channel-button,
  .site-nav--footer a {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-self: stretch;
  }
}

@media (max-width: 1100px) {
  .page-seo .ai-helper__message-card {
    display: none;
  }

  .page-seo .seo-opportunity-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 20px;
  }

  .page-seo .seo-opportunity-card__copy {
    padding: 0;
    justify-items: center;
    text-align: center;
  }

  .page-seo .seo-opportunity-card__actions {
    justify-content: center;
    width: 100%;
  }

  .page-seo .seo-opportunity-card__visual,
  .page-seo .seo-audit-visual,
  .page-seo .seo-audit-visual img {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .page-seo .seo-audit-visual,
  .page-seo .seo-audit-visual img {
    min-height: 380px;
  }

  .page-seo .system-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 20px;
    box-shadow: none;
  }

  .page-seo .system-card.is-stack-shadow {
    box-shadow:
      0 var(--stack-shadow-y) var(--stack-shadow-blur) var(--stack-shadow-spread)
        rgba(17, 17, 17, var(--stack-shadow-opacity));
  }

  .page-seo .system-card__content {
    justify-items: center;
    text-align: center;
  }

  .page-seo #system .system-card__demo {
    --demo-scale: min(1.24, calc((100vw - 64px) / 760px));
    width: calc(var(--demo-viewport-width) * var(--demo-scale));
    max-width: 100%;
    margin-inline: auto;
    overflow: hidden;
  }

  .page-seo .seo-results-section .article-grid,
  .page-seo .seo-results-section .cases-extra {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    min-width: 0;
  }

  .page-seo .seo-results-section .case-article {
    min-width: 0;
  }
}

@media (max-width: 820px) {
  .page-seo .seo-results-section .article-grid,
  .page-seo .seo-results-section .cases-extra {
    grid-template-columns: 1fr;
  }

  .page-seo .seo-results-section .section-heading,
  .page-seo .seo-results-section .section-heading--split {
    width: 100%;
    min-width: 0;
  }

  .page-seo .section-heading.section-heading--split {
    justify-items: center;
    text-align: center;
  }

  .page-seo .section-heading.section-heading--split > * {
    justify-self: center;
  }

  .page-seo .section-heading.section-heading--split p {
    max-width: 560px;
    text-align: center;
  }

  .page-seo .seo-case-chart,
  .page-seo .seo-case-chart__top,
  .page-seo .seo-case-chart__metrics,
  .page-seo .seo-case-chart__value-row {
    min-width: 0;
  }

  .page-seo .seo-case-chart__metrics {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
}

@media (max-width: 700px) {
  .page-seo .seo-opportunity-card,
  .page-seo .system-card {
    padding: 28px 20px;
  }

  .page-seo .seo-audit-visual,
  .page-seo .seo-audit-visual img {
    min-height: 300px;
  }

  .page-seo .seo-audit-visual__insight {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
    padding: 16px;
  }

  .page-seo #system .system-card__demo {
    --demo-scale: min(0.64, calc((100vw - 60px) / 760px));
    width: calc(var(--demo-viewport-width) * var(--demo-scale));
    max-width: 100%;
    margin-inline: auto;
  }
}

@media (min-width: 701px) and (max-width: 1100px) {
  .page-seo #system .system-card {
    gap: 2px;
  }
}

@media (max-width: 700px) {
  .page-seo #system .system-card {
    gap: 0;
  }
}

@media (max-width: 1100px) {
  .page-telegram .kpi-grid--hero .kpi-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .page-telegram .kpi-grid--hero dt {
    text-align: center;
  }

  .page-telegram #system .system-grid {
    grid-template-columns: 1fr;
  }

  .page-telegram #system .system-card,
  .page-telegram #system .system-card:nth-child(1),
  .page-telegram #system .system-card:nth-child(n + 2) {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .page-telegram #system .system-card__content,
  .page-telegram #system .system-card:nth-child(1) .system-card__content,
  .page-telegram #system .system-card:nth-child(n + 2) .system-card__content {
    width: 100%;
    max-width: 640px;
    justify-items: center;
    text-align: center;
  }

  .page-telegram #system .system-card__demo,
  .page-telegram #system .system-card:nth-child(1) .system-card__demo,
  .page-telegram #system .system-card:nth-child(3) .system-card__demo {
    --demo-scale: min(0.88, calc((100vw - 80px) / 760px));
    width: calc(var(--demo-viewport-width) * var(--demo-scale));
    max-width: 100%;
    margin-inline: auto;
  }

  .page-telegram #system .system-card:nth-child(2) .system-card__demo {
    --demo-scale: min(0.82, calc((100vw - 80px) / 820px));
    width: calc(var(--demo-viewport-width) * var(--demo-scale));
    max-width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 700px) {
  .page-telegram #advantages .proof-card,
  .page-telegram #system .system-card,
  .page-telegram .avito-effective-card {
    padding: 28px 20px;
  }

  .page-telegram #system .system-card__content,
  .page-telegram #system .system-card:nth-child(1) .system-card__content,
  .page-telegram #system .system-card:nth-child(n + 2) .system-card__content {
    max-width: none;
  }

  .page-telegram #system .system-card__demo,
  .page-telegram #system .system-card:nth-child(1) .system-card__demo,
  .page-telegram #system .system-card:nth-child(3) .system-card__demo {
    --demo-scale: min(0.64, calc((100vw - 20px) / 760px));
    width: calc(100% + 40px);
    max-width: none;
    margin-inline: -20px;
  }

  .page-telegram #system .system-card:nth-child(2) .system-card__demo {
    --demo-scale: min(0.64, calc((100vw - 20px) / 820px));
    width: calc(100% + 40px);
    max-width: none;
    margin-inline: -20px;
  }
}

@media (min-width: 1101px) {
  .crm-hero-panel .kpi-card--launch {
    right: -96px;
  }
}

@media (max-width: 1100px) {
  .page-design .crm-hero .eyebrow {
    justify-content: center;
  }

  .page-design .crm-hero .eyebrow__dot {
    display: none;
  }

  .page-design .crm-hero-panel .kpi-card {
    display: block;
    width: 184px;
    padding: 18px 20px;
    text-align: center;
  }

  .page-design .crm-hero-panel .kpi-card--budget {
    top: 118px;
    left: -124px;
    width: max-content;
    max-width: 245px;
  }

  .page-design .crm-hero-panel .kpi-card--launch {
    top: 58px;
    right: -70px;
  }

  .page-design .crm-hero-panel .kpi-card--control {
    right: 80px;
    bottom: -30px;
    left: auto;
    transform: none;
  }

  .page-design .crm-hero-panel .kpi-card dt,
  .page-design .crm-hero-panel .kpi-card dd {
    text-align: center;
  }

  .page-design .crm-mcp-copy,
  .page-design .crm-mcp-benefit,
  .page-design .crm-system-case,
  .page-design .crm-system-case__content,
  .page-design .demo-card__content,
  .page-design .faq-section .section-heading,
  .page-design .crm-telegram-showcase .telegram-showcase__content,
  .page-design .crm-telegram-showcase .section-heading,
  .page-design .crm-telegram-showcase .section-heading--split {
    justify-items: center;
    text-align: center;
  }

  .page-design .crm-culture-point__content {
    justify-items: start;
    text-align: left;
  }

  .page-design .crm-system-case__content p,
  .page-design .demo-card__content p,
  .page-design .crm-telegram-showcase .section-heading p {
    text-align: center;
  }

  .page-design .crm-mcp-prompts {
    justify-self: stretch;
    width: 100%;
    text-align: left;
  }

  .page-design .crm-mcp-prompts h3,
  .page-design .crm-mcp-prompts li {
    text-align: left;
  }

  .page-design .crm-system-case__content .button,
  .page-design .demo-card__button,
  .page-design .crm-telegram-showcase .telegram-showcase__cta {
    justify-self: center;
  }

  .page-design .crm-mcp-layout {
    padding: 28px 20px;
  }

  .page-design .crm-mcp-copy,
  .page-design .crm-mcp-stage {
    width: 100%;
    min-width: 0;
  }

  .page-design .faq-section .section-heading {
    max-width: none;
    margin-inline: auto;
    padding-inline: 20px;
  }
}

@media (max-width: 820px) {
  .page-design .crm-agent-item,
  .page-design .crm-mcp-benefit,
  .page-design .crm-system-case,
  .page-design #advantages .proof-card {
    padding: 28px 20px;
  }

  .page-design .crm-mcp-layout {
    gap: 28px;
    padding: 28px 20px;
  }

  .page-design .crm-mcp-prompts {
    padding: 24px 20px;
  }

  .page-design .crm-mcp-mini-head {
    min-width: 0;
  }

  .page-design .crm-mcp-mini-head span,
  .page-design .crm-mcp-mini-head em {
    min-width: 0;
  }

  .page-design .crm-mcp-mini-head em {
    white-space: normal;
    text-align: right;
  }

  .page-design .crm-mcp-benefit__visual {
    padding: 14px;
  }

  .page-design .crm-mcp-ds-real {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.9fr) minmax(0, 1.04fr) minmax(0, 0.95fr);
    grid-template-rows: 46px 38px minmax(0, 1fr);
  }

  .page-design .crm-mcp-ds-real__payment {
    grid-column: 1;
    grid-row: 1 / 4;
  }

  .page-design .crm-mcp-ds-real__empty {
    display: grid;
    grid-column: 2;
    grid-row: 1;
  }

  .page-design .crm-mcp-ds-real__controls {
    grid-column: 2;
    grid-row: 2 / 4;
  }

  .page-design .crm-mcp-ds-real__settings {
    display: grid;
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .page-design .crm-mcp-ds-real__survey {
    display: grid;
    grid-column: 4;
    grid-row: 1;
  }

  .page-design .crm-mcp-ds-real__process {
    display: grid;
    grid-column: 4;
    grid-row: 2 / 4;
  }

  .page-design .crm-hero-panel .kpi-card--budget {
    top: 118px;
    left: -124px;
  }

  .page-design .crm-hero-panel .kpi-card--launch {
    top: 58px;
    right: -70px;
  }

  .page-design .crm-hero-panel .kpi-card--control {
    right: 80px;
    bottom: -47px;
  }
}

@media (min-width: 761px) and (max-width: 820px) {
  .page-design .crm-hero-panel .kpi-card--budget {
    top: 101px;
    left: -124px;
  }

  .page-design .crm-hero-panel .kpi-card--launch {
    top: 41px;
    right: -70px;
  }

  .page-design .crm-hero-panel .kpi-card--control {
    right: 80px;
    bottom: -47px;
  }

  .page-design .crm-hero-panel .kpi-card dt {
    font-size: 1rem;
    line-height: 1.2;
  }

  .page-design .crm-hero-panel .kpi-card dd {
    margin-top: 8px;
    font-size: 1.45rem;
    line-height: 1.1;
  }
}

@media (max-width: 760px) {
  .page-design .crm-hero {
    gap: 12px;
  }

  .page-design .crm-hero-panel {
    padding-top: 14px;
  }

  .page-design .crm-hero-panel .hero-panel__layout {
    gap: 8px;
    align-content: start;
    min-height: auto;
  }

  .page-design .crm-hero-panel .kpi-grid--hero {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    margin-top: 0;
    pointer-events: auto;
  }

  .page-design .crm-hero-panel .kpi-card {
    position: static;
    width: 100%;
    max-width: none;
    padding: 18px 20px;
    transform: none;
  }

  .page-design .crm-hero-panel .kpi-card--budget {
    width: 100%;
  }

  .page-design .crm-hero-panel .kpi-card--launch,
  .page-design .crm-hero-panel .kpi-card--control {
    right: auto;
    bottom: auto;
    left: auto;
    top: auto;
  }
}

@media (max-width: 600px) {
  .page-design .crm-mcp-benefit__visual {
    --crm-mcp-visual-scale: 0.64;
  }

  .page-design main > section:not(.hero) {
    margin-top: 100px;
  }

  .page-design #advantages {
    margin-top: 100px;
  }

  .page-design .site-footer {
    padding-top: 100px;
  }

  .page-design .advantages-showcase {
    padding: 18px !important;
  }

  .page-design #advantages .proof-card {
    width: 100%;
    min-width: 0;
  }

  .page-design .crm-mcp-layout {
    padding: 28px 20px;
  }

  .page-design .crm-mcp-prompts h3,
  .page-design .crm-mcp-benefit h3,
  .page-design .crm-system-case__content h3 {
    font-size: 28px;
  }

  .page-design .crm-mcp-benefit__visual--architecture {
    overflow: hidden;
  }

  .page-design .crm-mcp-arch-map {
    grid-template-columns: minmax(64px, 1fr) 14px minmax(72px, 1fr) 14px minmax(64px, 1fr);
    gap: 12px 5px;
    padding-inline: 0;
  }

  .page-design .demo-card__benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .page-design .crm-mcp-benefit__visual {
    --crm-mcp-visual-scale: 0.58;
  }
}

@media (max-width: 340px) {
  .page-design .crm-mcp-benefit__visual {
    --crm-mcp-visual-scale: 0.49;
  }
}

.faq-list {
  padding-top: 0;
}

.faq-list::before,
.faq-item + .faq-item::before {
  content: none;
}

.faq-list .faq-item {
  padding: 28px 0;
  border: 0 !important;
  border-top: 1px solid #cfcfcf !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

@media (max-width: 600px) {
  .lead-popup {
    align-items: end;
    padding: 12px;
  }

  .lead-popup__dialog {
    width: 100%;
    max-height: calc(100vh - 24px);
    border-radius: 24px;
  }

  .lead-popup__contact-shell {
    grid-template-columns: 1fr;
    padding: 20px;
    border-radius: 24px;
  }

  .lead-popup__contact-shell .contact-card__surface,
  .lead-popup__contact-shell .contact-card--main .contact-card__surface,
  .lead-popup__contact-shell .contact-card--form .contact-card__surface {
    padding-right: 20px;
    padding-left: 20px;
  }

  .page-design .crm-agent-item h3 {
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.03em;
  }

  .section-heading h2,
  .contact-card--main h2,
  .demo-card__heading h2,
  .telegram-showcase__content h2,
  .home-section-heading h2,
  .home-about-preview h2,
  .home-assistant__copy h2,
  .page-home .demo-card--excursion .demo-card__heading h2,
  .about-approach h2,
  .about-results h2,
  .about-offer h2,
  .about-requisites h2,
  .about-cta h2,
  .about-partnership__panel h2,
  .crm-culture-heading h2,
  .crm-agent-heading h2,
  .crm-mcp-copy h2,
  .development-production-heading h2,
  .development-cases__heading h2,
  .seo-opportunity-card__copy h2 {
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0;
    font-weight: 500;
  }

  .case-article,
  .case-article.card,
  .case-article--link,
  .evidence-section .case-article,
  .evidence-section .case-article.card,
  .evidence-section .case-article--link {
    padding: 28px 20px;
  }

  .legal-toc {
    grid-template-columns: 1fr;
  }

  .legal-content h2 {
    font-size: 28px;
  }

  .legal-content p {
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  .crm-telegram-showcase .telegram-showcase__content {
    display: grid;
    justify-items: center;
    gap: 22px;
    text-align: center;
  }

  .crm-telegram-showcase .section-heading {
    justify-items: center;
    gap: 22px;
    text-align: center;
  }

  .crm-telegram-showcase .section-heading h2 {
    font-size: 32px;
    line-height: 1;
  }

  .crm-telegram-showcase .section-heading p {
    justify-self: center;
    color: #050505;
    font-size: 1.2rem;
    line-height: 1.35;
    text-align: center;
  }

  .page-home .crm-telegram-showcase .section-heading p {
    color: #050505;
    font-size: 1.2rem;
    line-height: 1.35;
  }

  .crm-telegram-showcase .telegram-showcase__cta {
    justify-self: center;
    margin-top: 0;
    font-size: 16px;
  }

  .page-shell {
    --mobile-card-shadow: 0 12px 24px rgba(17, 17, 17, 0.045);
  }

  .page-shell main > section > .card,
  .page-shell main > section > .about-cta,
  .page-shell main > section > .contact-shell,
  .page-shell main > section > .advantages-showcase,
  .page-shell main > section > .telegram-showcase,
  .page-shell .home-direction-row,
  .page-shell .home-value-card,
  .page-shell .home-stage-card,
  .page-shell .about-result-card,
  .page-shell .about-offer-card,
  .page-shell .about-requisites__card,
  .page-shell .hero-panel,
  .page-shell .footer-card,
  .page-shell .footer-legal {
    box-shadow: var(--mobile-card-shadow) !important;
  }

  .page-shell .card .card,
  .page-shell [class*="-card"] [class*="-card"],
  .page-shell .home-assistant__panel [class*="-card"],
  .page-shell .contact-shell [class*="-card"],
  .page-shell .demo-card [class*="-card"] {
    box-shadow: none !important;
  }

  .page-shell .automation-system .system-card,
  .page-shell .automation-system .system-card.card {
    box-shadow: none !important;
  }

  .page-shell .automation-system .system-card.is-stack-shadow,
  .page-shell .automation-system .system-card.card.is-stack-shadow {
    box-shadow:
      0 var(--stack-shadow-y) var(--stack-shadow-blur) var(--stack-shadow-spread)
        rgba(17, 17, 17, var(--stack-shadow-opacity)) !important;
  }

  .page-telegram .hero-panel.card {
    box-shadow: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stage-browser__page,
  .stage-team__avatar,
  .stage-team__line,
  .stage-ecosystem__node,
  .stage-ecosystem__link,
  .stage-chart__line,
  .stage-chart__point {
    animation: none;
  }

  .stage-team__avatar,
  .stage-ecosystem__node,
  .stage-ecosystem__link,
  .stage-chart__point {
    opacity: 1;
  }

  .stage-team__avatar,
  .stage-ecosystem__node,
  .stage-chart__point {
    transform: none;
  }

  .stage-team__line {
    transform: translateX(-50%) scaleX(1);
  }

  .stage-ecosystem__link,
  .stage-chart__line {
    stroke-dashoffset: 0;
  }
}
