@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url("assets/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url("assets/inter-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

:root {
  --bg: #030306;
  --panel: rgba(18, 19, 31, 0.68);
  --panel-strong: rgba(21, 22, 35, 0.9);
  --stroke: rgba(255, 255, 255, 0.14);
  --stroke-strong: rgba(105, 132, 255, 0.58);
  --text: #f7f8ff;
  --muted: rgba(247, 248, 255, 0.68);
  --soft: rgba(247, 248, 255, 0.46);
  --blue: #1338ff;
  --cyan: #76dcff;
  --violet: #7c5cff;
  --radius: 30px;
  --max: 1184px;
}

* {
  box-sizing: border-box;
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(118, 220, 255, 0.58) rgba(255, 255, 255, 0.025);
}

*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

*::-webkit-scrollbar-track {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(19,56,255,0.035), rgba(255,255,255,0.02));
}

*::-webkit-scrollbar-thumb {
  border: 3px solid rgba(3, 3, 8, 0.82);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(118, 220, 255, 0.82), rgba(19, 56, 255, 0.76) 46%, rgba(124, 92, 255, 0.72)),
    rgba(255,255,255,0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.2),
    0 0 24px rgba(19,56,255,0.42);
}

*::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, rgba(148, 231, 255, 0.96), rgba(43, 76, 255, 0.9) 46%, rgba(145, 119, 255, 0.86)),
    rgba(255,255,255,0.18);
}

*::-webkit-scrollbar-corner {
  background: transparent;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(circle at 72% 4%, rgba(19, 56, 255, 0.35), transparent 32rem),
    radial-gradient(circle at 18% 46%, rgba(124, 92, 255, 0.18), transparent 28rem),
    linear-gradient(180deg, #070712 0%, #020203 46%, #050510 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 56%, transparent 92%);
}

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

img {
  display: block;
  max-width: 100%;
}

.site-glow {
  position: fixed;
  inset: auto -12rem 12% auto;
  z-index: -2;
  width: 38rem;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(59, 94, 255, 0.34), transparent 64%);
  filter: blur(22px);
}

.section-shell {
  width: min(var(--max), calc(100% - 80px));
  margin-inline: auto;
}

section[id] {
  scroll-margin-top: 120px;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(1200px, calc(100% - 48px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 2px 0;
  pointer-events: none;
}

.site-header::before {
  content: "";
  position: fixed;
  top: -22px;
  left: 50%;
  z-index: 0;
  width: 100vw;
  height: 148px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(2, 3, 12, 0.98), rgba(4, 7, 28, 0.94) 58%, rgba(4, 7, 28, 0));
  pointer-events: none;
}

.site-header > * {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.brand-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.18));
}

.brand > span:last-child {
  font-size: 20px;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
}

.brand-mark span {
  position: absolute;
  top: 3px;
  left: 2px;
  width: 18px;
  height: 7px;
  background: #fff;
  border-radius: 2px;
  transform: rotate(35deg);
}

.brand-mark span:nth-child(2) {
  top: 10px;
  left: 9px;
  transform: rotate(-35deg);
}

.brand-mark span:nth-child(3) {
  top: 17px;
  left: 2px;
  transform: rotate(35deg);
}

.brand-mark-large {
  width: 108px;
  height: 108px;
  margin-inline: auto;
  filter: drop-shadow(0 0 28px rgba(130, 181, 255, 0.32));
}

.brand-mark-large span {
  width: 70px;
  height: 25px;
  border-radius: 6px;
}

.brand-mark-large span:nth-child(1) {
  top: 16px;
  left: 7px;
}

.brand-mark-large span:nth-child(2) {
  top: 42px;
  left: 34px;
}

.brand-mark-large span:nth-child(3) {
  top: 68px;
  left: 7px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: center;
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 16px 60px rgba(0,0,0,0.28);
  backdrop-filter: blur(18px);
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.nav a:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
  padding-right: 4px;
}

.lang-toggle {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 12px 36px rgba(0,0,0,0.24);
  backdrop-filter: blur(16px);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.site-header .btn {
  justify-self: end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  background: #fff;
  color: #070712;
  border-color: rgba(255,255,255,0.72);
  box-shadow: 0 0 0 2px rgba(19,56,255,0.92), 0 0 32px rgba(19,56,255,0.48);
}

.btn-primary span[aria-hidden="true"] {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-right: -8px;
  color: #fff;
  border-radius: 50%;
  background: var(--blue);
}

.btn-secondary {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.17);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.btn-small {
  min-height: 48px;
  padding: 0 12px 0 22px;
}

.btn-small span[aria-hidden="true"] {
  flex: 0 0 36px;
  margin-right: 0;
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  padding: 104px 0 48px;
  place-items: center;
  isolation: isolate;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  inset: 0 50% auto auto;
  z-index: -3;
  width: calc(100vw + 24px);
  height: 100%;
  max-width: none;
  transform: translateX(50%);
  object-fit: cover;
  opacity: 0.88;
  filter: saturate(1.15) contrast(1.08);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0 50% auto auto;
  z-index: -2;
  width: calc(100vw + 24px);
  height: 100%;
  transform: translateX(50%);
  pointer-events: none;
}

.hero::before {
  background:
    radial-gradient(circle at 50% 28%, rgba(120, 145, 255, 0.24), transparent 18rem),
    linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.44) 76%, #030306 100%);
}

.hero::after {
  opacity: 0.2;
  background-image: radial-gradient(rgba(255,255,255,0.78) 0.8px, transparent 0.8px);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
}

.hero-grid {
  position: absolute;
  inset: 78px auto auto 50%;
  z-index: -1;
  width: min(940px, 86vw);
  height: 520px;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 48px;
  opacity: 0.26;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle, black 0%, transparent 68%);
}

.orbital {
  position: absolute;
  z-index: -1;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 0 34px rgba(39, 85, 255, 0.46));
  animation: float 8s ease-in-out infinite;
}

.orbital-left {
  top: 78px;
  left: max(-80px, calc(50% - 760px));
  width: 300px;
  transform: rotate(-15deg);
}

.orbital-right {
  top: 250px;
  right: max(-44px, calc(50% - 760px));
  width: 250px;
  animation-delay: -2s;
}

.hero-content {
  width: min(960px, 100%);
  margin-inline: auto;
  text-align: center;
  transform: translateY(-44px);
}

.eyebrow,
.section-kicker {
  color: rgba(255,255,255,0.86);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow {
  margin: 38px 0 20px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 960px;
  margin: 0 auto;
  font-size: clamp(40px, 5.6vw, 70px);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-subtitle {
  width: min(820px, 100%);
  margin: 24px auto 0;
  color: rgba(255,255,255,0.78);
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.45;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255,255,255,0.88);
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 700;
  line-height: 1.35;
}

.hero-bottom span {
  flex: 0 1 auto;
  max-width: min(860px, calc(100% - 160px));
}

.hero-bottom i {
  height: 1px;
  flex: 1;
  min-width: 120px;
  background: linear-gradient(90deg, rgba(255,255,255,0.54), transparent);
}

html[lang="ru"] .hero-content {
  width: min(860px, 100%);
}

html[lang="ru"] h1 {
  max-width: 860px;
  font-size: clamp(38px, 5.1vw, 64px);
  line-height: 0.98;
}

html[lang="ru"] .hero-actions {
  margin-top: 24px;
}

html[lang="ru"] .hero-bottom {
  gap: 22px;
  font-size: clamp(16px, 1.5vw, 20px);
}

.robot-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  min-height: 900px;
  isolation: isolate;
  overflow: visible;
}

.robot-showcase::before {
  content: "";
  position: absolute;
  inset: 4% 50% auto auto;
  z-index: -2;
  width: 100vw;
  height: 720px;
  transform: translateX(50%);
  background:
    radial-gradient(circle at 70% 42%, rgba(19, 56, 255, 0.38), transparent 28rem),
    radial-gradient(circle at 42% 54%, rgba(124, 92, 255, 0.22), transparent 24rem),
    linear-gradient(180deg, rgba(3,3,6,0), rgba(9,10,24,0.7), rgba(3,3,6,0));
  pointer-events: none;
}

.robot-copy {
  position: relative;
  z-index: 3;
  max-width: 560px;
  padding-top: 86px;
}

.robot-copy h2 {
  max-width: 620px;
}

.robot-copy p {
  max-width: 580px;
  margin: 26px 0 0;
  font-size: 20px;
}

.robot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.robot-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  font-size: 13px;
  font-weight: 900;
}

.robot-stage {
  position: absolute;
  top: 42px;
  left: calc(50% - 50vw);
  z-index: 1;
  width: 100vw;
  min-height: 820px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.robot-stage::before,
.robot-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.robot-stage::before {
  inset: 10% 0 4%;
  z-index: -2;
  background:
    radial-gradient(ellipse at 58% 48%, rgba(19, 56, 255, 0.38), transparent 62%),
    radial-gradient(circle at 72% 30%, rgba(118, 220, 255, 0.16), transparent 34%),
    radial-gradient(circle at 34% 72%, rgba(124, 92, 255, 0.14), transparent 38%);
  filter: blur(18px);
  opacity: 0.95;
}

.robot-stage::after {
  left: 38%;
  right: 4%;
  bottom: 66px;
  z-index: -1;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(44, 76, 255, 0.42), transparent 70%);
  filter: blur(18px);
}

.spline-robot {
  position: absolute;
  top: 76px;
  right: max(0px, calc((100vw - var(--max)) / 2));
  z-index: 2;
  width: min(840px, 66vw);
  height: 860px;
  border: 0;
  background: transparent;
  filter: saturate(1.08) contrast(1.06) brightness(0.92);
}

.spline-robot:not([src]) {
  opacity: 0;
  pointer-events: none;
}

.spline-robot[src] {
  opacity: 1;
  transition: opacity 360ms ease;
}

.spline-badge-mask {
  position: absolute;
  right: max(12px, calc((100vw - var(--max)) / 2 + 12px));
  bottom: 24px;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 34px;
  align-items: center;
  column-gap: 12px;
  min-width: 244px;
  min-height: 64px;
  padding: 10px 10px 10px 18px;
  border-radius: 999px;
  color: #070712;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(226, 232, 255, 0.92)),
    radial-gradient(circle at 20% 0%, rgba(118, 220, 255, 0.55), transparent 55%);
  box-shadow:
    0 0 0 2px rgba(19, 56, 255, 0.86),
    0 22px 58px rgba(3, 4, 14, 0.78),
    0 0 54px rgba(19, 56, 255, 0.42),
    0 0 54px 24px rgba(3, 4, 14, 0.82);
  pointer-events: auto;
}

.spline-badge-mask::before {
  content: "";
  position: absolute;
  inset: -26px -20px -30px -36px;
  z-index: -1;
  border-radius: 999px;
  background: transparent;
  box-shadow: 0 0 42px 26px rgba(3, 4, 14, 0.86);
}

.spline-badge-mask span {
  grid-column: 1;
  grid-row: 1;
  display: block;
  color: rgba(19, 56, 255, 0.84);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.spline-badge-mask strong {
  grid-column: 1;
  grid-row: 2;
  display: block;
  margin-top: 4px;
  color: #070712;
  font-size: 16px;
  line-height: 1;
}

.spline-badge-mask i {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-style: normal;
}

.robot-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  opacity: 0;
}

.robot-fallback img {
  width: min(220px, 44%);
  filter: drop-shadow(0 0 32px rgba(118,220,255,0.45));
}

.robot-showcase,
.about,
.proof,
.audience,
.modules,
.process,
.pricing,
.integrations,
.video-section,
.final-cta {
  padding-block: 104px;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  text-transform: none;
  letter-spacing: 0;
}

.section-kicker > span:first-child {
  width: 38px;
  height: 3px;
  background: #fff;
  border-radius: 999px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.split-heading h2 {
  width: min(1080px, 100%);
}

.split-heading > p,
.copy-stack {
  width: min(1040px, 100%);
}

.copy-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.copy-stack p:last-child,
.split-heading > p {
  margin-bottom: 0;
}

.contact-section {
  position: relative;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  align-items: stretch;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: 100vw;
  height: 170px;
  transform: translateX(-50%);
  opacity: 0.74;
  background: url("assets/blue-depth.webp") center / cover no-repeat;
  mask-image: linear-gradient(to bottom, black 0%, black 44%, transparent 100%);
  pointer-events: none;
}

.contact-content {
  display: grid;
  align-content: start;
  gap: 24px;
}

.contact-content .section-kicker {
  margin-bottom: 0;
}

.contact-content h2 {
  width: min(820px, 100%);
}

.contact-content > p {
  width: min(760px, 100%);
  margin: 0;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 6px;
}

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

.contact-icon-link,
.contact-method img,
.contact-instagram {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  object-fit: cover;
}

.contact-icon-link {
  display: block;
}

.contact-instagram {
  position: relative;
  display: block;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.92), transparent 9px),
    radial-gradient(circle at 70% 28%, rgba(255,255,255,0.84), transparent 4px),
    linear-gradient(135deg, #ff3d8d, #7c5cff 48%, #1338ff);
  box-shadow: 0 0 34px rgba(124, 92, 255, 0.48);
}

.contact-instagram::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 3px solid #fff;
  border-radius: 14px;
}

.contact-method h3,
.contact-article h3 {
  margin: 0;
  font-size: 22px;
}

.contact-method p,
.contact-article p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.contact-method a,
.founder-line a {
  color: #fff;
  font-weight: 900;
}

.contact-article {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 22px;
}

.contact-article img {
  width: 112px;
  height: 112px;
  border-radius: 24px;
  object-fit: cover;
}

.contact-article .btn {
  width: max-content;
  min-height: 44px;
  margin-top: 16px;
  padding-inline: 18px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-form {
  align-self: start;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.hero-logo {
  width: 118px;
  height: 118px;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(130, 181, 255, 0.32));
}

.glass-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.025)),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.13), 0 24px 80px rgba(0,0,0,0.28);
  backdrop-filter: blur(18px);
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(circle at 34% 0%, rgba(82, 113, 255, 0.42), transparent 38%);
  transition: opacity 180ms ease;
}

.glass-card:hover::before {
  opacity: 1;
}

.feature-card {
  min-height: 272px;
  padding: 28px;
}

.feature-card h3,
.module-card h3,
.process-step h3,
.plan-card h3 {
  margin-bottom: 14px;
}

.feature-card p,
.module-card p,
.process-step p,
.plan-card p {
  margin-bottom: 0;
}

.proof {
  position: relative;
}

.proof::before {
  content: "";
  position: absolute;
  inset: 4% auto auto 50%;
  z-index: -1;
  width: 100vw;
  height: 880px;
  transform: translateX(-50%);
  opacity: 0.5;
  background:
    radial-gradient(circle at 20% 24%, rgba(118, 220, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 82% 42%, rgba(124, 92, 255, 0.2), transparent 28rem);
  pointer-events: none;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 18px;
  margin-top: 48px;
}

.product-console {
  min-height: 660px;
  padding: 24px;
}

.product-console::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.48;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.console-top,
.console-metrics,
.console-grid {
  position: relative;
  z-index: 1;
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
}

.console-top strong,
.console-top span {
  display: block;
}

.console-top strong {
  margin-bottom: 6px;
  font-size: 20px;
}

.console-top span,
.console-metrics span {
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.console-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(118, 220, 255, 0.34);
  border-radius: 999px;
  color: #fff;
  background: rgba(19,56,255,0.28);
  font-size: 13px;
  font-weight: 900;
}

.console-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}

.console-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.console-metrics div {
  min-height: 108px;
  padding: 17px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  background: rgba(255,255,255,0.055);
}

.console-metrics strong {
  display: block;
  margin-top: 18px;
  font-size: 31px;
  line-height: 1;
}

.console-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 12px;
  margin-top: 16px;
}

.console-panel {
  min-height: 180px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 24% 0%, rgba(19,56,255,0.2), transparent 38%),
    rgba(2, 4, 14, 0.62);
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.panel-title span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 15px var(--cyan);
}

.order-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 14px;
  color: rgba(255,255,255,0.76);
  background: rgba(255,255,255,0.06);
}

.order-row + .order-row {
  margin-top: 8px;
}

.order-row strong {
  color: #fff;
}

.order-row em {
  color: var(--cyan);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 124px;
}

.bar-chart i {
  flex: 1;
  min-width: 18px;
  border-radius: 999px 999px 7px 7px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  box-shadow: 0 0 18px rgba(118, 220, 255, 0.26);
}

.automation-panel p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
}

.stock-line {
  display: grid;
  gap: 7px;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 800;
}

.stock-line + .stock-line {
  margin-top: 13px;
}

.stock-line i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  box-shadow: 0 0 18px rgba(118,220,255,0.2);
}

.proof-photos {
  display: grid;
  gap: 18px;
}

.interface-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(310px, 0.62fr);
  gap: 18px;
  margin-top: 48px;
}

.interface-main,
.interface-card {
  position: relative;
  overflow: hidden;
  background: #070813;
}

.interface-main,
.interface-card,
.founder-dashboard,
.founder-photo {
  cursor: zoom-in;
}

.interface-main {
  min-height: 640px;
}

.interface-main img,
.interface-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(1.02) contrast(1.04);
}

.interface-main::after,
.interface-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.86) 100%),
    radial-gradient(circle at 88% 4%, rgba(19,56,255,0.38), transparent 42%);
  pointer-events: none;
}

.interface-caption,
.interface-card div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
}

.interface-caption span,
.interface-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(3, 5, 16, 0.66);
  font-size: 12px;
  font-weight: 900;
}

.interface-caption h3 {
  width: min(620px, 100%);
  margin: 0;
  font-size: clamp(23px, 2.4vw, 34px);
}

.interface-stack {
  display: grid;
  gap: 18px;
}

.interface-stack .interface-card {
  min-height: 311px;
}

.interface-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.interface-grid .interface-card {
  min-height: 230px;
}

.interface-card strong {
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 1.22;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at 50% 20%, rgba(19,56,255,0.3), transparent 34rem),
    rgba(2, 3, 10, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.image-lightbox figure {
  position: relative;
  display: grid;
  place-items: center;
  width: min(1180px, 100%);
  max-height: calc(100dvh - 64px);
  margin: 0;
}

.image-lightbox img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100dvh - 64px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  object-fit: contain;
  background: #050612;
  box-shadow: 0 34px 90px rgba(0,0,0,0.62), 0 0 80px rgba(19,56,255,0.28);
}

.image-lightbox button {
  position: absolute;
  top: -18px;
  right: -18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #070712;
  background: #fff;
  box-shadow: 0 14px 36px rgba(0,0,0,0.36);
  cursor: pointer;
  font-size: 24px;
  font-weight: 900;
}

.founder {
  position: relative;
  overflow: hidden;
}

.founder::before {
  content: "";
  position: absolute;
  inset: 8% auto auto 50%;
  z-index: -1;
  width: 100vw;
  height: 760px;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, rgba(3,3,6,0.96) 0%, rgba(5,8,28,0.58) 42%, rgba(26,42,155,0.48) 100%),
    url("assets/blue-depth.webp") center / cover no-repeat;
  opacity: 0.9;
  mask-image: linear-gradient(to bottom, transparent, black 16%, black 76%, transparent);
  pointer-events: none;
}

.founder-heading {
  display: grid;
  gap: 24px;
}

.founder-heading h2 {
  width: min(1000px, 100%);
}

.founder-heading p {
  width: min(760px, 100%);
  margin: 0;
  font-size: 18px;
}

.founder-stage {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  margin-top: 58px;
}

.founder-card {
  width: min(420px, 100%);
}

.founder-photo {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 34px;
  background: #080912;
  box-shadow: 0 30px 90px rgba(0,0,0,0.42), 0 0 80px rgba(19,56,255,0.18);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
}

.founder-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 86% 80%, rgba(19,56,255,0.42), transparent 30%);
  pointer-events: none;
}

.founder-socials {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: flex;
  gap: 8px;
}

.founder-socials a {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: #11121a;
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-card h3 {
  margin: 22px 0 6px;
  font-size: 25px;
}

.founder-card p {
  margin: 0;
  font-size: 16px;
}

.founder-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 18px;
  min-width: 0;
}

.founder-note {
  min-height: 252px;
  padding: 28px;
}

.founder-note h3 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(23px, 2.1vw, 31px);
  line-height: 1.08;
  overflow-wrap: break-word;
  hyphens: auto;
}

.founder-note p {
  max-width: 680px;
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.55;
}

.founder-dashboard {
  min-height: 252px;
  border-radius: 28px;
  background: #070813;
}

.founder-dashboard img {
  width: 100%;
  height: 100%;
  min-height: 252px;
  object-fit: cover;
  object-position: top left;
  filter: saturate(1.04) contrast(1.04);
}

.founder-dashboard::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02) 32%, rgba(0,0,0,0.78)),
    radial-gradient(circle at 86% 12%, rgba(118,220,255,0.22), transparent 42%);
  pointer-events: none;
}

.founder-dashboard div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
}

.founder-dashboard span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(3, 5, 16, 0.66);
  font-size: 12px;
  font-weight: 900;
}

.founder-dashboard strong {
  display: block;
  max-width: 460px;
  color: #fff;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.14;
}

.founder-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.founder-points article {
  min-height: 178px;
  padding: 22px;
}

.founder-points strong,
.founder-points span {
  display: block;
}

.founder-points strong {
  margin-top: 20px;
  color: #fff;
  font-size: 19px;
  line-height: 1.1;
}

.founder-points span {
  margin-top: 10px;
  color: rgba(255,255,255,0.64);
  font-size: 14px;
  line-height: 1.45;
}

.founder-point-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255,255,255,0.17);
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255,255,255,0.78), transparent 18%),
    linear-gradient(145deg, rgba(118,220,255,0.34), rgba(19,56,255,0.88) 48%, rgba(124,92,255,0.72));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.34), 0 0 34px rgba(19,56,255,0.28);
}

.founder-point-icon::before,
.founder-point-icon::after {
  content: "";
  position: absolute;
  border-color: #fff;
}

.founder-point-workflows::before {
  width: 32px;
  height: 20px;
  border: 3px solid #fff;
  border-radius: 7px;
}

.founder-point-workflows::after {
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 0 #fff;
}

.founder-point-brand::before {
  width: 30px;
  height: 30px;
  border: 3px solid #fff;
  border-radius: 9px;
  transform: rotate(45deg);
}

.founder-point-brand::after {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
}

.founder-point-ai::before {
  width: 28px;
  height: 28px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.founder-point-ai::after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: -16px 0 0 #fff, 16px 0 0 #fff;
}

.founder-line {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.founder-line span {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.42), transparent);
}

.founder-line a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.founder-line i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #070712;
  background: #fff;
  font-style: normal;
}

.photo-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 30px;
  background: #080912;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 26px 80px rgba(0,0,0,0.3);
}

.photo-card-large {
  min-height: 382px;
}

.photo-card img,
.example-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.05);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 16%, rgba(0,0,0,0.76) 100%),
    radial-gradient(circle at 90% 0%, rgba(19,56,255,0.42), transparent 42%);
}

.photo-card div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
}

.photo-card strong,
.photo-card span {
  display: block;
}

.photo-card strong {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.05;
}

.photo-card span {
  color: rgba(255,255,255,0.74);
  line-height: 1.45;
}

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

.example-card {
  display: grid;
  grid-template-rows: 190px 1fr;
}

.example-card img {
  min-height: 0;
}

.example-card div {
  padding: 22px;
}

.example-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.example-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.example-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.card-icon,
.audience-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 34px rgba(19,56,255,0.24);
}

.card-icon::before,
.card-icon::after,
.audience-icon::before,
.audience-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.icon-operations,
.icon-restaurant {
  color: #fff;
}

.icon-operations::before {
  width: 34px;
  height: 24px;
  border: 3px solid;
  border-radius: 7px;
}

.icon-operations::after {
  width: 20px;
  height: 3px;
  background: currentColor;
  box-shadow: 0 9px 0 currentColor;
}

.icon-ai::before {
  width: 32px;
  height: 32px;
  border: 3px solid;
  border-radius: 50%;
}

.icon-ai::after {
  width: 44px;
  height: 44px;
  border: 1px solid;
  border-radius: 50%;
  opacity: 0.46;
}

.icon-brand::before {
  width: 34px;
  height: 34px;
  border: 3px solid;
  border-radius: 10px;
  transform: rotate(45deg);
}

.icon-brand::after {
  width: 15px;
  height: 15px;
  background: currentColor;
  border-radius: 50%;
}

.audience h2,
.modules h2,
.process h2,
.pricing h2 {
  width: min(970px, 100%);
}

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

.audience-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 34px;
  color: rgba(255,255,255,0.58);
  background: rgba(7, 8, 13, 0.76);
  font: inherit;
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.audience-card:hover,
.audience-card.is-active {
  color: #fff;
  border-color: rgba(30, 69, 255, 0.9);
  box-shadow: inset 0 0 52px rgba(19,56,255,0.23), 0 0 0 1px rgba(19,56,255,0.52);
  transform: translateY(-4px);
}

.audience-card:focus {
  outline: none;
}

.audience-card:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.audience-icon {
  width: 78px;
  height: 78px;
  margin-bottom: 18px;
  color: currentColor;
}

.icon-restaurant::before {
  width: 34px;
  height: 26px;
  border: 4px solid;
  border-radius: 6px;
}

.icon-restaurant::after {
  width: 18px;
  height: 10px;
  border: 4px solid;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  transform: translateY(-22px);
}

.icon-retail::before {
  width: 38px;
  height: 28px;
  border: 3px solid;
  border-radius: 5px;
}

.icon-retail::after {
  width: 9px;
  height: 9px;
  border: 3px solid;
  border-radius: 50%;
  box-shadow: 20px 0 0 -3px var(--bg), 20px 0 0 0 currentColor;
  transform: translateY(20px);
}

.icon-service::before {
  width: 36px;
  height: 36px;
  border: 3px solid;
  border-radius: 50%;
}

.icon-service::after {
  width: 28px;
  height: 3px;
  background: currentColor;
  box-shadow: 0 -10px 0 currentColor, 0 10px 0 currentColor;
}

.icon-agency::before {
  width: 44px;
  height: 3px;
  background: currentColor;
  transform: rotate(-35deg);
}

.icon-agency::after {
  width: 44px;
  height: 3px;
  background: currentColor;
  transform: rotate(35deg);
}

.audience-panel {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 110px;
  margin-top: 24px;
  padding: 26px 30px;
}

.audience-panel strong {
  font-size: 21px;
  line-height: 1.1;
}

.audience-panel p {
  margin: 0;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(90deg, rgba(19,56,255,0.26), rgba(124,92,255,0.18), rgba(19,56,255,0.26));
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee span {
  display: inline-flex;
  padding: 26px 22px;
  color: #fff;
  font-size: clamp(20px, 2.6vw, 38px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.marquee-track i {
  display: inline-flex;
  align-items: center;
  padding-inline: 8px 22px;
  color: rgba(255,255,255,0.82);
  font-size: clamp(20px, 2.6vw, 38px);
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.modules {
  position: relative;
}

.modules::before {
  content: "";
  position: absolute;
  top: 4%;
  left: 50%;
  z-index: -1;
  width: 100vw;
  height: 780px;
  transform: translateX(-50%);
  opacity: 0.36;
  background: url("assets/blue-depth.webp") center / cover no-repeat;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 62%, transparent);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.module-card {
  min-height: 284px;
  padding: 28px;
}

.module-card small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 44px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  color: #fff;
  background: rgba(19,56,255,0.9);
  box-shadow: 0 0 38px rgba(19,56,255,0.52);
  font-size: 14px;
  font-weight: 900;
}

.module-card-link {
  color: inherit;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.module-card-link:hover {
  border-color: rgba(118, 220, 255, 0.42);
  box-shadow: inset 0 0 56px rgba(19, 56, 255, 0.18), 0 22px 70px rgba(19, 56, 255, 0.18);
  transform: translateY(-4px);
}

.process-list {
  display: grid;
  gap: 16px;
  margin-top: 48px;
}

.process-step {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) minmax(190px, 0.34fr);
  gap: 28px;
  align-items: center;
  min-height: 168px;
  padding: 22px;
}

.process-text {
  min-width: 0;
}

.process-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255,255,255,0.9), rgba(255,255,255,0.08) 17%, transparent 26%),
    linear-gradient(145deg, rgba(118,220,255,0.38), rgba(19,56,255,0.98) 46%, rgba(124,92,255,0.86));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.46),
    inset -18px -24px 38px rgba(3, 5, 16, 0.34),
    0 22px 62px rgba(19,56,255,0.36);
}

.process-icon::before,
.process-icon::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.process-icon::before {
  inset: 10px 12px auto;
  height: 38px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.32), rgba(255,255,255,0));
  transform: translateZ(10px);
}

.process-icon::after {
  inset: auto 12px 10px;
  height: 13px;
  border-radius: 50%;
  background: rgba(3, 5, 16, 0.34);
  filter: blur(8px);
}

.process-icon i,
.process-icon b {
  position: absolute;
  display: block;
  transform: translateZ(18px);
}

.process-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter:
    drop-shadow(0 0 10px rgba(255,255,255,0.38))
    drop-shadow(0 8px 18px rgba(3,5,16,0.22));
  transform: translate(-50%, -50%);
  transform-origin: center;
}

.process-icon-setup i {
  width: 43px;
  height: 36px;
  border: 4px solid #fff;
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(255,255,255,0.26);
}

.process-icon-setup i::before,
.process-icon-setup i::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 4px;
  border-radius: 999px;
  background: #fff;
}

.process-icon-setup i::before {
  top: 9px;
}

.process-icon-setup i::after {
  top: 20px;
}

.process-icon-setup b {
  right: 22px;
  bottom: 23px;
  width: 22px;
  height: 22px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}

.process-icon-sales i {
  width: 50px;
  height: 32px;
  border: 4px solid #fff;
  border-top: 0;
  border-radius: 8px 8px 14px 14px;
}

.process-icon-sales i::before {
  content: "";
  position: absolute;
  left: -5px;
  top: -13px;
  width: 56px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 18px 18px 6px 6px;
}

.process-icon-sales b {
  right: 18px;
  top: 28px;
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: -40px 36px 0 -4px #fff, -14px 36px 0 -4px #fff;
}

.process-icon-automation i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    -28px -18px 0 0 #fff,
    30px -10px 0 0 #fff,
    -22px 25px 0 0 #fff,
    28px 24px 0 0 #fff;
}

.process-icon-automation b {
  width: 64px;
  height: 56px;
  border: 4px solid rgba(255,255,255,0.86);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: translateZ(12px) rotate(18deg);
}

.process-icon-track i {
  bottom: 28px;
  left: 29px;
  width: 9px;
  height: 25px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 16px -13px 0 #fff, 32px -27px 0 #fff;
}

.process-icon-track b {
  width: 58px;
  height: 58px;
  border: 4px solid #fff;
  border-radius: 50%;
}

.process-icon-track b::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: 1px;
  width: 22px;
  height: 5px;
  border-radius: 999px;
  background: #fff;
  transform: rotate(45deg);
  transform-origin: left center;
}

.process-visual {
  position: relative;
  height: 124px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 24px;
  background: #080912;
  box-shadow: 0 18px 58px rgba(0,0,0,0.24);
}

.process-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.58)),
    radial-gradient(circle at 86% 8%, rgba(118,220,255,0.24), transparent 42%);
  pointer-events: none;
}

.process-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(1.04) contrast(1.04);
}

.pricing-heading {
  display: grid;
  gap: 20px;
}

.pricing-heading h2 {
  width: min(980px, 100%);
}

.pricing-heading h2 span {
  color: #fff;
}

.pricing-heading p {
  width: min(760px, 100%);
  margin: 0;
  font-size: 18px;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  margin-top: 48px;
}

.pricing-art {
  position: sticky;
  top: 150px;
  display: grid;
  min-height: 600px;
  place-items: center;
  overflow: hidden;
}

.pricing-art img {
  width: min(360px, 100%);
  max-width: none;
  transform: rotate(-14deg) scale(1.1);
  filter:
    drop-shadow(0 0 38px rgba(19, 56, 255, 0.48))
    drop-shadow(0 28px 80px rgba(0, 0, 0, 0.58));
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-top: 0;
}

.plan-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  min-height: auto;
  padding: 0;
}

.plan-card-featured {
  border-color: rgba(118, 220, 255, 0.46);
  background:
    radial-gradient(circle at 50% 0%, rgba(19,56,255,0.28), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03)),
    var(--panel-strong);
}

.badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 28px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,0.08);
  font-size: 13px;
  font-weight: 900;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin: 18px 0 10px;
}

.price span {
  font-size: 58px;
  line-height: 0.9;
  font-weight: 900;
}

.price small,
.location {
  color: var(--soft);
  font-weight: 800;
}

.plan-card ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,0.78);
  line-height: 1.45;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.03em;
  width: 4px;
  height: 25px;
  border-radius: 999px;
  background: rgba(118, 220, 255, 0.48);
}

.plan-card .btn {
  width: 100%;
  margin-top: auto;
}

.plan-copy {
  padding: 34px;
}

.plan-price-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 100%;
  padding: 30px;
  border-left: 1px solid rgba(255,255,255,0.13);
  background:
    radial-gradient(circle at 76% 8%, rgba(118,220,255,0.28), transparent 34%),
    linear-gradient(145deg, rgba(19,56,255,0.72), rgba(12,14,37,0.9) 52%, rgba(124,92,255,0.64)),
    url("assets/blue-depth.webp") center / cover no-repeat;
}

.plan-price-panel .btn {
  min-height: 50px;
  padding-inline: 16px;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.integration-card {
  min-height: 150px;
  padding: 26px;
}

.integration-card strong,
.integration-card span {
  display: block;
}

.integration-card strong {
  margin-bottom: 18px;
  font-size: 22px;
  line-height: 1;
}

.integration-card span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.78fr);
  gap: 28px;
  align-items: center;
  margin-block: 60px 30px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 44px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.16), rgba(0,0,0,0.72)),
    url("assets/blue-depth.webp") center / cover no-repeat;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 30px 100px rgba(0,0,0,0.45);
}

.final-cta-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 34px 10px 34px 12px;
  text-align: left;
}

.final-cta p {
  width: min(620px, 100%);
  margin: 24px 0 0;
  color: rgba(255,255,255,0.78);
  font-size: 18px;
}

.final-cta.contact-section {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.7fr);
  align-items: stretch;
}

.final-cta.contact-section p {
  margin: 0;
}

.final-cta.contact-section .contact-content {
  width: min(820px, 100%);
  padding: 34px 10px 34px 12px;
}

.final-cta.contact-section .contact-content > p {
  width: min(760px, 100%);
  font-size: 16px;
}

.cta-cube {
  position: absolute;
  top: 40px;
  left: 36%;
  width: 190px;
  opacity: 0.74;
  filter: drop-shadow(0 0 36px rgba(19,56,255,0.42));
}

.demo-form {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.form-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.form-header span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-header strong {
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field span,
.module-picker legend {
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  outline: none;
  color: #fff;
  background: rgba(3, 5, 16, 0.66);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field select {
  padding: 0 14px;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
  background-color: rgba(3, 5, 16, 0.66);
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L7 7L12 2' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px 9px;
}

.field textarea {
  min-height: 112px;
  padding: 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(118, 220, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(118, 220, 255, 0.12);
}

.field select option {
  color: #090a12;
}

.field-full {
  margin-top: 14px;
}

.module-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  border: 0;
}

.module-picker legend {
  width: 100%;
  margin-bottom: 2px;
}

.module-picker label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.065);
  font-size: 13px;
  font-weight: 800;
}

.module-picker input,
.consent-row input {
  accent-color: var(--blue);
}

.consent-row {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-top: 14px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.45;
}

.form-submit {
  width: 100%;
  margin-top: 18px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  line-height: 1.45;
}

.form-status.is-success {
  color: #8ff5c2;
}

.form-status.is-error {
  color: #ff9a9a;
}

.video-section {
  padding-block: 104px;
}

.video-copy {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-top: 24px;
}

.video-copy h2 {
  margin: 0;
}

.video-copy p {
  max-width: 680px;
  color: rgba(255,255,255,0.76);
  font-size: 18px;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 34px;
  padding: 10px;
  overflow: hidden;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 22px;
  background: #030306;
}

.legal-main {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 80px));
  margin: 0 auto;
  padding: 160px 0 92px;
}

.legal-hero {
  position: relative;
  padding: 56px;
  overflow: hidden;
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 420px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(19, 56, 255, 0.42), transparent 66%);
  filter: blur(8px);
  pointer-events: none;
}

.legal-hero h1 {
  position: relative;
  max-width: 780px;
  margin: 18px 0 0;
  font-size: clamp(38px, 5.8vw, 64px);
  line-height: 0.98;
}

.legal-hero p {
  position: relative;
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: 17px;
}

.legal-meta {
  position: relative;
  display: inline-flex;
  margin-top: 24px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.07);
  font-size: 13px;
  font-weight: 800;
}

.legal-panel {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.legal-panel[hidden] {
  display: none;
}

.legal-card {
  padding: 28px;
}

.legal-card h2 {
  margin: 0;
  font-size: 22px;
}

.legal-card p,
.legal-card li {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

.legal-card p {
  margin: 12px 0 0;
}

.legal-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 420px) auto;
  justify-content: space-between;
  gap: 60px;
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
  padding: 34px 0 56px;
  border-top: 1px solid rgba(255,255,255,0.13);
}

.site-footer p {
  margin: 22px 0 0;
  font-size: 15px;
}

.site-footer nav {
  display: flex;
  align-items: start;
  justify-content: end;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.site-footer nav a {
  color: rgba(255,255,255,0.66);
  font-size: 14px;
  font-weight: 800;
}

.site-footer nav a:hover {
  color: #fff;
}

.article-page {
  background: #030306;
}

.article-site-header {
  position: sticky;
  top: 16px;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1184px, calc(100% - 48px));
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(14, 17, 34, 0.74);
  box-shadow: 0 18px 70px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
}

.article-home-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 900;
}

.article-home-link img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.article-site-header nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.article-site-header nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 999px;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255,255,255,0.06);
}

.article-main {
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
  padding: 92px 0 56px;
}

.article-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 78% 8%, rgba(19,56,255,0.42), transparent 32rem),
    radial-gradient(circle at 22% 74%, rgba(124,92,255,0.2), transparent 26rem),
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.035));
  box-shadow: 0 30px 110px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.16);
}

.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.article-hero > * {
  position: relative;
  z-index: 1;
}

.article-hero h1 {
  max-width: 920px;
  margin: 20px 0 16px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 0.98;
}

.article-ru-title {
  max-width: 820px;
  margin: 0;
  color: rgba(247,248,255,0.72);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 850;
  line-height: 1.14;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.article-meta span,
.article-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.07);
  font-size: 13px;
  font-weight: 800;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
  margin-top: 28px;
}

.article-content {
  display: grid;
  gap: 22px;
}

.article-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 28px;
  background: rgba(18, 19, 31, 0.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 20px 70px rgba(0,0,0,0.26);
}

.article-card h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.02;
}

.article-card h3 {
  margin: 22px 0 10px;
  color: #fff;
  font-size: 21px;
}

.article-card p,
.article-card li {
  color: rgba(247,248,255,0.7);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.68;
}

.article-card p {
  margin: 0 0 16px;
}

.article-card p:last-child {
  margin-bottom: 0;
}

.article-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.article-card li {
  position: relative;
  padding-left: 20px;
}

.article-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 14px rgba(118,220,255,0.55);
}

.article-side {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.article-side-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 28px;
  background: rgba(18, 19, 31, 0.76);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 18px 60px rgba(0,0,0,0.26);
}

.article-side-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #090b16;
}

.article-side-card div {
  padding: 18px;
}

.article-side-card strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.15;
}

.article-side-card p {
  margin: 8px 0 0;
  color: rgba(247,248,255,0.62);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.article-toc {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.article-toc a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.05);
  font-size: 13px;
  font-weight: 800;
}

.article-faq details {
  border-top: 1px solid rgba(255,255,255,0.11);
  padding: 18px 0;
}

.article-faq details:first-of-type {
  border-top: 0;
}

.article-faq summary {
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  font-weight: 850;
}

.article-faq p {
  margin-top: 12px;
}

.article-return {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(118,220,255,0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 12%, rgba(19,56,255,0.34), transparent 18rem),
    rgba(18, 19, 31, 0.76);
}

.article-return strong {
  display: block;
  color: #fff;
  font-size: 24px;
}

.article-return p {
  max-width: 680px;
  margin: 8px 0 0;
  color: rgba(247,248,255,0.66);
  font-weight: 700;
  line-height: 1.55;
}

.article-footer {
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto 36px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.article-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-footer a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255,255,255,0.05);
}

.module-page {
  background:
    radial-gradient(circle at 72% 4%, rgba(19, 56, 255, 0.32), transparent 34rem),
    radial-gradient(circle at 10% 34%, rgba(124, 92, 255, 0.2), transparent 32rem),
    #030306;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

.module-page button,
.module-page input,
.module-page select,
.module-page textarea {
  font-family: inherit;
}

.lang-ru {
  display: none;
}

html[lang="ru"] .lang-en {
  display: none !important;
}

html[lang="ru"] .lang-ru {
  display: inline;
}

html[lang="ru"] .module-lead .lang-ru,
html[lang="ru"] .module-section-head p .lang-ru,
html[lang="ru"] .pos-flow-step p .lang-ru,
html[lang="ru"] .pos-feature p .lang-ru,
html[lang="ru"] .module-use-grid p .lang-ru,
html[lang="ru"] .module-faq p .lang-ru,
html[lang="ru"] .module-cta p .lang-ru {
  display: block;
}

.module-main {
  overflow: hidden;
}

.module-header .nav a {
  min-width: max-content;
}

.module-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: 42px;
  align-items: center;
  min-height: 820px;
  padding-top: 126px;
  padding-bottom: 76px;
  isolation: isolate;
}

.module-hero-bg {
  position: absolute;
  inset: 76px 50% auto auto;
  z-index: -2;
  width: calc(100vw + 24px);
  height: min(720px, calc(100% - 68px));
  max-width: none;
  transform: translateX(50%);
  object-fit: cover;
  opacity: 0.86;
  filter: saturate(1.16) contrast(1.08);
  mask-image: linear-gradient(to bottom, black 0%, black 76%, transparent 100%);
}

.module-hero::after {
  content: "";
  position: absolute;
  inset: 0 50% auto auto;
  z-index: -1;
  width: calc(100vw + 24px);
  height: 100%;
  transform: translateX(50%);
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 28%, rgba(19, 56, 255, 0.38), transparent 26rem),
    linear-gradient(180deg, rgba(3,3,6,0.08), rgba(3,3,6,0.84) 78%, #030306 100%);
}

.module-hero h1 {
  max-width: 780px;
  margin: 26px 0 22px;
  font-size: clamp(29px, 2.85vw, 38px);
  line-height: 1;
}

.module-lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 700;
  line-height: 1.45;
}

.module-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.module-hero-panel {
  position: relative;
  display: grid;
  gap: 16px;
}

.module-hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 448px;
  padding: 0;
  border-radius: 36px;
  cursor: zoom-in;
}

.module-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 448px;
  object-fit: cover;
  object-position: left top;
}

.module-hero-visual::after,
.module-shot::after {
  content: "Open";
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(3, 4, 12, 0.58);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

html[lang="ru"] .module-hero-visual::after,
html[lang="ru"] .module-shot::after {
  content: "Открыть";
}

.module-hero-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.module-hero-mini article {
  display: grid;
  gap: 6px;
  min-height: 126px;
  padding: 22px;
}

.module-hero-mini strong {
  color: #fff;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 0.9;
}

.module-hero-mini span {
  color: var(--muted);
  font-weight: 800;
}

.module-strip {
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(90deg, rgba(19,56,255,0.22), rgba(124,92,255,0.18), rgba(19,56,255,0.22));
}

.module-strip-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.module-strip span,
.module-strip i {
  display: inline-flex;
  align-items: center;
  padding: 24px 18px;
  color: #fff;
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.module-strip i {
  padding-inline: 4px 18px;
  color: rgba(118, 220, 255, 0.85);
  font-style: normal;
}

.module-section {
  position: relative;
  padding-block: 92px;
}

.module-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  gap: 42px;
  align-items: end;
  margin-top: 18px;
}

.module-section-head h2,
.module-deep h2 {
  margin: 0;
  font-size: clamp(26px, 2.55vw, 34px);
  line-height: 1.04;
}

.module-cta h2 {
  margin: 0;
  font-size: clamp(24px, 2.35vw, 32px);
  line-height: 1.04;
}

html[lang="ru"] .module-hero h1 {
  font-size: clamp(25px, 2.32vw, 31px);
  line-height: 1.02;
}

html[lang="ru"] .module-section-head h2,
html[lang="ru"] .module-deep h2 {
  font-size: clamp(23px, 2.06vw, 28px);
  line-height: 1.06;
}

html[lang="ru"] .module-cta h2 {
  font-size: clamp(22px, 1.94vw, 26px);
  line-height: 1.06;
}

.module-section-head p,
.module-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.pos-order-map {
  position: relative;
  min-height: 680px;
  margin-top: 48px;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(124, 92, 255, 0.34), transparent 18rem),
    radial-gradient(circle at 86% 20%, rgba(19, 56, 255, 0.22), transparent 18rem),
    radial-gradient(circle at 50% 82%, rgba(124, 92, 255, 0.34), transparent 24rem),
    linear-gradient(145deg, rgba(11, 12, 24, 0.95), rgba(3, 3, 7, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 34px 120px rgba(19,56,255,0.22);
}

.pos-order-map::before {
  content: "";
  position: absolute;
  inset: -18% -12% auto;
  height: 58%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 52% 68%, rgba(118,220,255,0.18), transparent 26%),
    radial-gradient(ellipse at 48% 72%, rgba(124,92,255,0.34), transparent 48%);
  filter: blur(8px);
}

.pos-order-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.16;
  mask-image: radial-gradient(circle at 50% 52%, black, transparent 72%);
}

.pos-order-lines {
  position: absolute;
  inset: 40px 42px 42px;
  z-index: 1;
  width: calc(100% - 84px);
  height: calc(100% - 82px);
  overflow: visible;
}

.pos-order-lines path {
  fill: none;
  stroke: rgba(118, 116, 255, 0.92);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter:
    drop-shadow(0 0 8px rgba(118, 220, 255, 0.46))
    drop-shadow(0 0 18px rgba(19, 56, 255, 0.42));
}

.pos-order-lines marker path {
  fill: rgba(118, 116, 255, 0.95);
  stroke: none;
}

.pos-map-center,
.pos-map-node,
.pos-map-status {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  text-align: center;
  transform: translate(-50%, -50%);
}

.pos-map-center {
  left: 50%;
  top: 42%;
  width: min(46vw, 560px);
  min-height: 220px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 0%, rgba(19,56,255,0.22), transparent 42%),
    rgba(3, 4, 10, 0.92);
  box-shadow:
    0 0 0 1px rgba(118,220,255,0.1),
    0 0 70px rgba(19,56,255,0.28);
}

.pos-map-logo {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(118,220,255,0.26), rgba(19,56,255,0.86));
  box-shadow: 0 0 44px rgba(19,56,255,0.46);
}

.pos-map-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.pos-map-center strong {
  color: #fff;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.pos-map-center em {
  margin-top: 10px;
  color: rgba(247,248,255,0.68);
  font-style: normal;
  font-size: 17px;
  font-weight: 800;
}

.pos-map-node {
  width: 168px;
  min-height: 96px;
  gap: 10px;
  padding: 16px 18px;
  border: 1px solid rgba(118, 116, 255, 0.74);
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08), transparent 42%),
    linear-gradient(145deg, rgba(28,30,44,0.96), rgba(5,6,12,0.96));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    0 0 46px rgba(19,56,255,0.28);
}

.pos-map-node > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  box-shadow: 0 0 22px rgba(118,220,255,0.28);
  font-size: 22px;
  line-height: 1;
}

.pos-map-node b,
.pos-map-status b {
  color: #fff;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.1;
}

.node-website { left: 11%; top: 30%; }
.node-kiosk { left: 16%; top: 52%; }
.node-table { left: 31%; top: 12%; }
.node-cashier { left: 69%; top: 12%; }
.node-aggregator { left: 91%; top: 30%; }
.node-app { left: 86%; top: 52%; }
.node-hot { left: 33%; top: 72%; }
.node-cold { left: 50%; top: 72%; }
.node-bar { left: 67%; top: 72%; }
.node-hall { left: 17%; top: 88%; }
.node-courier { left: 84%; top: 88%; }

.pos-map-status {
  left: 50%;
  width: min(360px, 30vw);
  min-height: 58px;
  grid-template-columns: auto 1fr;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid rgba(118, 116, 255, 0.78);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.16), transparent 40%),
    rgba(14, 15, 34, 0.9);
  box-shadow:
    0 0 28px rgba(118,220,255,0.24),
    0 0 54px rgba(19,56,255,0.24);
}

.pos-map-status > span {
  font-size: 24px;
  line-height: 1;
}

.status-progress {
  top: 84%;
}

.status-ready {
  top: 94%;
}

.crm-flow-map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(140px, 0.76fr) 34px minmax(270px, 1.08fr) 34px minmax(300px, 1.2fr) 34px minmax(140px, 0.76fr);
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  overflow: hidden;
  padding: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(124, 92, 255, 0.28), transparent 18rem),
    radial-gradient(circle at 82% 18%, rgba(118, 220, 255, 0.18), transparent 16rem),
    radial-gradient(circle at 52% 78%, rgba(19, 56, 255, 0.32), transparent 24rem),
    linear-gradient(145deg, rgba(12, 12, 26, 0.96), rgba(3, 3, 7, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 34px 120px rgba(19,56,255,0.22);
}

.crm-flow-map::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 56%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 72%, rgba(118,220,255,0.16), transparent 28%),
    radial-gradient(ellipse at 50% 76%, rgba(124,92,255,0.36), transparent 50%);
  filter: blur(10px);
}

.crm-flow-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.14;
  mask-image: radial-gradient(circle at 50% 48%, black, transparent 74%);
}

.crm-flow-column,
.crm-flow-center,
.crm-flow-arrow {
  position: relative;
  z-index: 2;
}

.crm-flow-column {
  display: grid;
  gap: 12px;
}

.crm-flow-center {
  display: grid;
  place-items: center;
  min-height: 278px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 34px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(19,56,255,0.22), transparent 42%),
    rgba(3, 4, 10, 0.92);
  box-shadow:
    0 0 0 1px rgba(118,220,255,0.1),
    0 0 70px rgba(19,56,255,0.28);
  animation: crmCenterPulse 5.8s ease-in-out infinite;
}

.crm-flow-label {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  min-height: 32px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: rgba(247,248,255,0.72);
  background: rgba(255,255,255,0.06);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.crm-flow-center .crm-flow-label {
  justify-self: center;
  margin-bottom: 18px;
}

.crm-flow-center strong {
  max-width: 11ch;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 900;
  line-height: 1.02;
}

.crm-flow-center em {
  max-width: 22ch;
  margin-top: 10px;
  color: rgba(247,248,255,0.68);
  font-style: normal;
  font-size: 17px;
  font-weight: 800;
}

.crm-flow-node {
  display: grid;
  place-items: center;
  min-height: 96px;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(118, 116, 255, 0.74);
  border-radius: 24px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08), transparent 42%),
    linear-gradient(145deg, rgba(28,30,44,0.96), rgba(5,6,12,0.96));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    0 0 46px rgba(19,56,255,0.28);
  animation: crmNodeFloat 6.8s ease-in-out infinite;
}

.crm-source-phone,
.crm-action-task {
  animation-delay: -1.1s;
}

.crm-source-social,
.crm-action-doc {
  animation-delay: -2.1s;
}

.crm-action-ai {
  animation-delay: -3.1s;
}

.crm-flow-node > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  box-shadow: 0 0 22px rgba(118,220,255,0.28);
  font-size: 22px;
  line-height: 1;
}

.crm-flow-node > span.flow-code {
  width: 46px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

.crm-flow-node b {
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.1;
}

.crm-flow-arrow {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(118,220,255,0.18), rgba(118,116,255,0.92));
  box-shadow: 0 0 20px rgba(118,116,255,0.46);
  animation: crmArrowPulse 3.8s ease-in-out infinite;
}

.crm-flow-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 15px solid rgba(118,116,255,0.98);
  transform: translateY(-50%);
  filter: drop-shadow(0 0 10px rgba(118,220,255,0.48));
}

.crm-pipeline-stages {
  display: grid;
  gap: 12px;
}

.crm-pipeline-stages div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 14px;
  border: 1px solid rgba(118, 220, 255, 0.2);
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 20px 54px rgba(19,56,255,0.18);
  animation: crmStagePulse 6.2s ease-in-out infinite;
}

.crm-pipeline-stages div:nth-child(2) { animation-delay: -0.8s; }
.crm-pipeline-stages div:nth-child(3) { animation-delay: -1.6s; }
.crm-pipeline-stages div:nth-child(4) { animation-delay: -2.4s; }

.crm-pipeline-stages div > span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #fff;
  background: rgba(19,56,255,0.82);
  font-size: 13px;
  font-weight: 900;
}

.crm-pipeline-stages b {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.16;
}

html[lang="ru"] .crm-flow-center strong {
  max-width: 10.5ch;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.04;
}

html[lang="ru"] .crm-flow-node b,
html[lang="ru"] .crm-pipeline-stages b {
  font-size: 15px;
  line-height: 1.14;
}

.crm-visual-rail {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 18px;
  margin-top: 18px;
}

.crm-visual-shot {
  min-height: 268px;
  animation: crmVisualFloat 8s ease-in-out infinite;
}

.crm-visual-shot:nth-child(2) {
  animation-delay: -1.4s;
}

.crm-visual-shot:nth-child(3) {
  animation-delay: -2.8s;
}

.crm-visual-shot img {
  object-position: left top;
}

@keyframes crmCenterPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(118,220,255,0.1),
      0 0 70px rgba(19,56,255,0.28);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(118,220,255,0.22),
      0 0 96px rgba(118,220,255,0.22),
      0 0 84px rgba(19,56,255,0.38);
  }
}

@keyframes crmArrowPulse {
  0%,
  100% {
    opacity: 0.72;
    scale: 0.92 1;
  }

  50% {
    opacity: 1;
    scale: 1 1;
  }
}

@keyframes crmNodeFloat {
  0%,
  100% {
    translate: 0 0;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.14),
      0 0 46px rgba(19,56,255,0.28);
  }

  50% {
    translate: 0 -7px;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.18),
      0 0 62px rgba(118,220,255,0.24),
      0 0 54px rgba(19,56,255,0.34);
  }
}

@keyframes crmStagePulse {
  0%,
  100% {
    border-color: rgba(118, 220, 255, 0.2);
    background: rgba(255,255,255,0.06);
  }

  50% {
    border-color: rgba(118, 220, 255, 0.42);
    background: rgba(118,220,255,0.09);
  }
}

@keyframes crmVisualFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

.pos-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.pos-flow-step {
  position: relative;
  min-height: 258px;
  padding: 22px;
}

.pos-flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 56px;
  right: -23px;
  z-index: 3;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, rgba(118,220,255,0.15), rgba(118,220,255,0.9));
}

.pos-flow-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-bottom: 48px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 26px;
  background:
    radial-gradient(circle at 28% 14%, rgba(255,255,255,0.88), rgba(255,255,255,0.08) 17%, transparent 27%),
    linear-gradient(145deg, rgba(118,220,255,0.36), rgba(19,56,255,0.96) 48%, rgba(124,92,255,0.9));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.44), 0 20px 54px rgba(19,56,255,0.38);
}

.pos-flow-icon::before,
.pos-flow-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.icon-channel::before {
  width: 38px;
  height: 26px;
  border: 4px solid #fff;
  border-radius: 7px;
}

.icon-channel::after {
  width: 22px;
  height: 4px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 0 #fff;
}

.icon-payment::before {
  width: 40px;
  height: 28px;
  border: 4px solid #fff;
  border-radius: 9px;
}

.icon-payment::after {
  width: 20px;
  height: 20px;
  border: 4px solid #fff;
  border-radius: 50%;
  transform: translate(17px, 13px);
}

.icon-kitchen::before {
  width: 38px;
  height: 24px;
  border: 4px solid #fff;
  border-radius: 8px 8px 14px 14px;
}

.icon-kitchen::after {
  width: 36px;
  height: 4px;
  background: #fff;
  border-radius: 999px;
  box-shadow: -12px -18px 0 -1px #fff, 0 -22px 0 -1px #fff, 12px -18px 0 -1px #fff;
}

.icon-route::before {
  width: 42px;
  height: 42px;
  border: 4px solid #fff;
  border-radius: 50%;
  border-right-color: transparent;
}

.icon-route::after {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: -18px 13px 0 #fff, 18px -13px 0 #fff;
}

.icon-analytics::before {
  width: 38px;
  height: 38px;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  border-radius: 0 0 0 8px;
}

.icon-analytics::after {
  width: 8px;
  height: 26px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 14px -10px 0 #fff, 28px -4px 0 #fff;
  transform: translate(1px, 4px);
}

.pos-flow-icon::before,
.pos-flow-icon::after,
.icon-channel::before,
.icon-channel::after,
.icon-payment::before,
.icon-payment::after,
.icon-kitchen::before,
.icon-kitchen::after,
.icon-route::before,
.icon-route::after,
.icon-analytics::before,
.icon-analytics::after {
  display: none;
}

.pos-flow-icon svg {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translate(-50%, -50%);
  filter:
    drop-shadow(0 0 10px rgba(255,255,255,0.32))
    drop-shadow(0 8px 16px rgba(3,5,16,0.28));
}

.pos-flow-step strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 22px;
}

.pos-flow-step p,
.pos-feature p,
.module-use-grid p,
.module-faq p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.pos-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.pos-feature {
  min-height: 262px;
  padding: 24px;
}

.pos-feature b {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  color: #fff;
  background: rgba(19,56,255,0.8);
  box-shadow: 0 0 34px rgba(19,56,255,0.38);
}

.pos-feature h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.12;
}

.module-gallery {
  display: grid;
  grid-template-columns: 1.3fr repeat(2, minmax(0, 0.86fr));
  gap: 16px;
  margin-top: 42px;
}

.module-shot {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 0;
  border-radius: 30px;
  cursor: zoom-in;
}

.module-shot-large {
  grid-row: span 2;
  min-height: 576px;
}

.module-shot img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center top;
  transition: transform 220ms ease;
}

.module-shot:hover img {
  transform: scale(1.025);
}

.module-shot div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 16px 86px 16px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  background: rgba(3, 4, 12, 0.66);
  backdrop-filter: blur(16px);
}

.module-shot strong {
  color: #fff;
  font-size: 19px;
}

.module-shot span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.32;
}

.delivery-phone-visual {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 26px;
  background:
    radial-gradient(circle at 50% 16%, rgba(124,92,255,0.32), transparent 18rem),
    linear-gradient(145deg, rgba(18,20,38,0.92), rgba(3,4,12,0.98));
}

.delivery-phone-visual img {
  width: min(100%, 360px);
  height: auto;
  min-height: 0;
  max-height: 600px;
  object-fit: contain;
  object-position: center;
  border-radius: 36px;
  box-shadow: 0 28px 90px rgba(0,0,0,0.46), 0 0 70px rgba(124,92,255,0.2);
}

.delivery-phone-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.delivery-phone-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 0;
  padding: 14px;
  border-radius: 34px;
  cursor: zoom-in;
}

.delivery-phone-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 540px;
  object-fit: contain;
  object-position: center top;
  border-radius: 28px;
  background: #05050a;
  box-shadow: 0 18px 70px rgba(0,0,0,0.36);
}

.delivery-phone-card div {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  padding: 0 4px 4px;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.delivery-phone-card::after {
  top: 24px;
  right: 24px;
  bottom: auto;
}

.client-phone-hero {
  align-content: stretch;
}

.client-phone-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.72fr);
  align-items: end;
  min-height: 560px;
  padding: 30px 24px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 14%, rgba(118,220,255,0.22), transparent 15rem),
    radial-gradient(circle at 70% 62%, rgba(124,92,255,0.36), transparent 18rem),
    linear-gradient(145deg, rgba(14,18,42,0.92), rgba(2,3,10,0.98));
}

.client-phone-stage::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(118,220,255,0.16);
  border-radius: 999px;
  filter: blur(1px);
}

.client-phone-stage img {
  position: relative;
  z-index: 1;
  width: min(100%, 280px);
  height: auto;
  min-height: 0;
  justify-self: center;
  border-radius: 34px;
  background: #05050a;
  box-shadow: 0 34px 96px rgba(0,0,0,0.52), 0 0 70px rgba(19,56,255,0.26);
}

.client-phone-main {
  transform: translateY(18px) rotate(-3deg);
}

.client-phone-secondary {
  width: min(100%, 236px) !important;
  transform: translate(-10px, 56px) rotate(5deg);
  opacity: 0.94;
}

.client-journey-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr) 46px minmax(0, 1fr) 46px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  margin-top: 36px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(19,56,255,0.16), rgba(124,92,255,0.1)),
    rgba(255,255,255,0.045);
}

.client-journey-map article {
  display: grid;
  gap: 10px;
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(118,116,255,0.34);
  border-radius: 24px;
  background: rgba(3,4,12,0.58);
}

.client-journey-map article > span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #1338ff, #7c5cff);
  font-size: 18px;
  font-weight: 950;
  box-shadow: 0 0 38px rgba(19,56,255,0.34);
}

.client-journey-map b {
  color: #fff;
  font-size: 22px;
  line-height: 1.05;
}

.client-journey-map p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.42;
}

.client-journey-map > i {
  position: relative;
  align-self: center;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(118,220,255,0.18), rgba(118,116,255,0.9));
}

.client-journey-map > i::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid rgba(118,116,255,0.96);
  transform: translateY(-50%);
}

.client-screen-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.client-phone-shot {
  display: grid;
  align-content: start;
  min-height: 0;
  padding: 14px;
  border-radius: 34px;
}

.client-phone-shot img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 600px;
  object-fit: contain;
  border-radius: 28px;
  background: #05050a;
}

.client-phone-shot div {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  margin-top: 12px;
  padding: 0 4px 4px;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.client-phone-shot::after {
  top: 24px;
  right: 24px;
  bottom: auto;
}

.customer-system-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
  padding: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(118,220,255,0.18), transparent 18rem),
    radial-gradient(circle at 14% 10%, rgba(124,92,255,0.18), transparent 22rem),
    rgba(255,255,255,0.04);
}

.customer-system-map::before {
  content: "";
  position: absolute;
  inset: 50% 7%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(118,116,255,0.64), transparent);
}

.customer-system-map::after {
  content: "";
  position: absolute;
  top: 12%;
  bottom: 12%;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(118,220,255,0.5), transparent);
}

.customer-system-center,
.customer-system-map article {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 148px;
  padding: 22px;
  border: 1px solid rgba(118,116,255,0.34);
  border-radius: 28px;
  background: rgba(3,4,12,0.72);
}

.customer-system-center {
  grid-column: 2;
  grid-row: 2;
  min-height: 220px;
  box-shadow: 0 0 80px rgba(19,56,255,0.2);
}

.customer-system-center img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  padding: 12px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1338ff, #7c5cff);
}

.customer-system-center strong {
  color: #fff;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 0.98;
}

.customer-system-center em {
  color: var(--muted);
  font-style: normal;
  font-weight: 850;
}

.customer-system-map article > span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  border-radius: 16px;
  color: #fff;
  background: rgba(19,56,255,0.72);
  font-size: 15px;
  font-weight: 950;
}

.customer-system-map article b {
  color: #fff;
  font-size: 18px;
  line-height: 1.15;
}

.map-pos { grid-column: 1; grid-row: 1; }
.map-crm { grid-column: 2; grid-row: 1; }
.map-stock { grid-column: 3; grid-row: 1; }
.map-pay { grid-column: 1; grid-row: 3; }
.map-delivery { grid-column: 2; grid-row: 3; }
.map-loyalty { grid-column: 3; grid-row: 3; }

.client-module-gallery .module-shot img {
  background: #05050a;
}

.client-module-gallery .module-shot:not(.module-shot-large) img {
  object-fit: contain;
  padding: 8px;
}

.client-module-gallery .module-shot-large img {
  object-position: center top;
}

.ai-hero-visual {
  min-height: 390px;
}

.ai-hero-visual img {
  width: min(100%, 720px);
  border-radius: 26px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 28px 90px rgba(19,56,255,0.28);
}

.ai-orchestration-map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1.06fr) 46px minmax(0, 1fr) 46px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  margin-top: 34px;
  padding: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 40%, rgba(19,56,255,0.22), transparent 22rem),
    radial-gradient(circle at 12% 100%, rgba(124,92,255,0.24), transparent 24rem),
    rgba(255,255,255,0.045);
}

.ai-orchestration-map::before {
  content: "";
  position: absolute;
  inset: -40%;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(118,220,255,0.13), transparent),
    radial-gradient(circle, rgba(124,92,255,0.12) 1px, transparent 1.5px);
  background-size: 100% 100%, 42px 42px;
  animation: aiMapDrift 18s linear infinite;
}

.ai-map-card {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(118,116,255,0.46);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(118,220,255,0.12), transparent 9rem),
    linear-gradient(145deg, rgba(14,16,32,0.94), rgba(4,5,12,0.96));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 28px 70px rgba(19,56,255,0.16);
}

.ai-map-core {
  border-color: rgba(255,255,255,0.42);
  background:
    radial-gradient(circle at 50% 0%, rgba(38,79,255,0.36), transparent 10rem),
    linear-gradient(145deg, rgba(8,9,20,0.96), rgba(2,3,8,0.98));
}

.ai-map-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 32% 22%, rgba(255,255,255,0.44), transparent 1.6rem),
    linear-gradient(145deg, rgba(39,68,255,0.98), rgba(124,92,255,0.82));
  box-shadow: 0 14px 40px rgba(38,79,255,0.35);
  font-size: 24px;
}

.ai-map-card b {
  color: #fff;
  font-size: 22px;
  line-height: 1.08;
}

.ai-map-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.42;
}

.ai-map-arrow {
  position: relative;
  z-index: 1;
  align-self: center;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(118,116,255,0.2), rgba(118,220,255,0.98));
  box-shadow: 0 0 28px rgba(118,116,255,0.55);
}

.ai-map-arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid rgba(118,220,255,0.98);
  border-right: 3px solid rgba(118,220,255,0.98);
  transform: translateY(-50%) rotate(45deg);
}

.ai-voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.ai-voice-card {
  display: grid;
  gap: 12px;
  min-height: 250px;
  padding: 24px;
  background:
    radial-gradient(circle at 84% 14%, rgba(118,220,255,0.16), transparent 8rem),
    rgba(255,255,255,0.06);
}

.ai-voice-card > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 24%, rgba(255,255,255,0.48), transparent 1.55rem),
    linear-gradient(145deg, rgba(39,68,255,0.96), rgba(124,92,255,0.78));
  box-shadow: 0 18px 46px rgba(38,79,255,0.32);
  font-size: 24px;
}

.ai-voice-card h3,
.ai-wide-shot strong {
  margin: 0;
  color: #fff;
}

.ai-voice-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.48;
}

.ai-screenshot-grid {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.ai-wide-shot {
  position: relative;
  overflow: hidden;
  padding: 12px;
}

.ai-wide-shot img {
  width: 100%;
  aspect-ratio: 16 / 8.4;
  border-radius: 24px;
  object-fit: cover;
  object-position: top center;
}

.ai-wide-shot div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 4px;
  max-width: 560px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  background: rgba(3,3,8,0.78);
  backdrop-filter: blur(16px);
}

.ai-wide-shot span {
  color: var(--muted);
  font-weight: 750;
}

.ai-scenario-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1.18fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr);
  grid-template-rows: repeat(4, minmax(86px, auto)) auto;
  gap: 16px 6px;
  align-items: stretch;
  min-height: auto;
  margin-top: 34px;
  overflow: hidden;
  padding: 30px;
  background:
    radial-gradient(circle at 16% 26%, rgba(255, 63, 215, 0.14), transparent 21rem),
    radial-gradient(circle at 54% 42%, rgba(118, 220, 255, 0.13), transparent 22rem),
    radial-gradient(circle at 78% 34%, rgba(38, 79, 255, 0.20), transparent 24rem),
    radial-gradient(circle at 58% 84%, rgba(124, 92, 255, 0.18), transparent 20rem),
    linear-gradient(145deg, rgba(11,13,35,0.96), rgba(4,5,14,0.98));
}

.ai-scenario-board::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(118,220,255,0.08) 1px, transparent 1.5px),
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 34px 34px, 86px 86px, 86px 86px;
  mask-image: radial-gradient(circle at 50% 48%, black, transparent 78%);
}

.ai-scenario-lines {
  display: none;
}

.ai-line {
  fill: none;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-dasharray: 12 12;
  opacity: 0.92;
  filter: drop-shadow(0 0 10px rgba(118,220,255,0.28));
  animation: flowDash 10s linear infinite;
}

.ai-line-blue {
  stroke: rgba(118,220,255,0.86);
}

.ai-line-purple {
  stroke: rgba(139,92,246,0.9);
}

.ai-line-pink {
  stroke: rgba(255,63,215,0.88);
}

.ai-scenario-node {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: minmax(0, auto) auto;
  column-gap: 12px;
  row-gap: 5px;
  align-items: start;
  width: auto;
  min-height: 100px;
  padding: 16px;
  border: 1px solid rgba(118,116,255,0.58);
  border-radius: 16px;
  background:
    radial-gradient(circle at 24% 20%, rgba(118,220,255,0.12), transparent 5rem),
    rgba(8,9,25,0.92);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 22px 54px rgba(0,0,0,0.32);
  animation: none;
}

.node-webhook::after,
.node-voice::after,
.node-lead::after,
.node-ai::after,
.node-gpt::after,
.node-json::after,
.node-condition::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 5px);
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(118,220,255,0.15), rgba(118,220,255,0.92));
  box-shadow: 0 0 16px rgba(118,220,255,0.26);
  transform: translateY(-50%);
}

.node-webhook::before,
.node-voice::before,
.node-lead::before,
.node-ai::before,
.node-gpt::before,
.node-json::before,
.node-condition::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 34px);
  z-index: 3;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 9px solid rgba(118,220,255,0.96);
  filter: drop-shadow(0 0 10px rgba(118,220,255,0.42));
  transform: translateY(-50%);
}

.node-webhook::after,
.node-webhook::before,
.node-lead::after,
.node-lead::before {
  background: linear-gradient(90deg, rgba(255,63,215,0.14), rgba(255,63,215,0.92));
  border-left-color: rgba(255,63,215,0.96);
}

.node-gpt::after,
.node-gpt::before,
.node-condition::after,
.node-condition::before {
  background: linear-gradient(90deg, rgba(139,92,246,0.14), rgba(139,92,246,0.92));
  border-left-color: rgba(139,92,246,0.96);
}

.ai-scenario-node > span:first-child {
  grid-row: 1 / 3;
  align-self: center;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.ai-scenario-node b {
  color: #fff;
  font-size: 12px;
  line-height: 1.06;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

.ai-scenario-node small {
  grid-column: 2;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.node-webhook,
.node-social {
  border-color: rgba(255,63,215,0.78);
}

.node-ai,
.node-gpt,
.node-json {
  border-color: rgba(118,220,255,0.72);
}

.node-condition,
.node-doc,
.node-sms,
.node-task {
  border-color: rgba(139,92,246,0.78);
}

.node-webhook { grid-column: 1; grid-row: 1; }
.node-voice { grid-column: 1; grid-row: 2; }
.node-lead { grid-column: 1; grid-row: 3; }
.node-ai {
  grid-column: 3;
  grid-row: 1 / 4;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.node-ai > span:first-child {
  grid-row: auto;
  align-self: center;
}
.node-ai b {
  max-width: 140px;
  font-size: 18px;
}
.node-ai small {
  grid-column: auto;
}
.node-gpt { grid-column: 5; grid-row: 1; }
.node-json { grid-column: 5; grid-row: 2; }
.node-condition { grid-column: 5; grid-row: 3; }
.node-task { grid-column: 5; grid-row: 4; }
.node-social { grid-column: 7; grid-row: 1; }
.node-crm { grid-column: 7; grid-row: 2; }
.node-doc { grid-column: 7; grid-row: 3; }
.node-sms { grid-column: 7; grid-row: 4; }

.ai-scenario-legend {
  position: relative;
  grid-column: 1 / -1;
  grid-row: 5;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.ai-scenario-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.055);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.ai-scenario-legend > span > span {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.ai-scenario-legend > span > .lang-en {
  display: inline;
}

.ai-scenario-legend > span > .lang-ru {
  display: none;
}

html[lang="ru"] .ai-scenario-legend > span > .lang-en {
  display: none;
}

html[lang="ru"] .ai-scenario-legend > span > .lang-ru {
  display: inline;
}

.ai-scenario-legend i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.legend-pink { background: #ff3fd7; }
.legend-blue { background: #76dcff; }
.legend-purple { background: #8b5cf6; }

.ai-scenario-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.ai-scenario-cards article {
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: 22px;
  background:
    radial-gradient(circle at 90% 8%, rgba(118,220,255,0.12), transparent 8rem),
    rgba(255,255,255,0.055);
}

.ai-scenario-cards b {
  width: max-content;
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(38,79,255,0.9);
}

.ai-scenario-cards h3,
.ai-scenario-cards p {
  margin: 0;
}

.ai-scenario-cards p {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
}

@keyframes aiMapDrift {
  0% {
    transform: translate3d(-2%, -1%, 0);
  }
  100% {
    transform: translate3d(2%, 1%, 0);
  }
}

@keyframes flowDash {
  to {
    stroke-dashoffset: -120;
  }
}

@keyframes scenarioFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.module-use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.module-use-grid article {
  overflow: hidden;
  padding: 0 0 24px;
}

.module-use-grid img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.module-use-grid h3,
.module-use-grid p {
  margin-inline: 24px;
}

.module-use-grid h3 {
  margin-top: 22px;
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.1;
}

.module-faq {
  display: grid;
  gap: 14px;
  margin-top: 40px;
}

.module-faq details {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
}

.module-faq summary {
  cursor: pointer;
  padding: 24px 28px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.module-faq p {
  padding: 0 28px 26px;
}

.module-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin-bottom: 80px;
  padding: 42px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(19,56,255,0.26), rgba(124,92,255,0.14)),
    rgba(255,255,255,0.06);
}

.module-cta h2 {
  margin: 18px 0 14px;
}

.module-footer {
  margin-top: 0;
}

@keyframes float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 18px;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

@media (max-width: 980px) {
  .section-shell,
  .site-footer {
    width: min(100% - 36px, var(--max));
  }

  .site-header {
    width: calc(100% - 28px);
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    gap: 8px;
    padding-right: 2px;
  }

  .nav {
    position: fixed;
    left: 50%;
    right: auto;
    top: 78px;
    width: min(calc(100dvw - 36px), 520px);
    transform: translateX(-50%);
    justify-content: center;
    overflow-x: auto;
  }

  .nav a {
    padding-inline: 14px;
  }

  .hero {
    min-height: 820px;
    padding-top: 158px;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: start;
  }

  .hero-bottom i {
    width: 100%;
    flex: none;
  }

  .split-heading,
  .feature-row,
  .robot-showcase,
  .proof-layout,
  .module-grid,
  .pricing-layout,
  .integration-grid,
  .final-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .article-site-header {
    width: calc(100% - 28px);
  }

  .article-site-header nav {
    display: none;
  }

  .article-main,
  .article-footer {
    width: calc(100% - 36px);
  }

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

  .article-side {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .console-metrics,
  .example-grid,
  .copy-stack,
  .contact-methods,
  .interface-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .audience-panel {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 22px;
  }

  .process-icon {
    width: 82px;
    height: 82px;
    border-radius: 24px;
  }

  .process-visual {
    grid-column: 2;
    height: 150px;
  }

  .pricing-art {
    position: relative;
    top: auto;
    min-height: 260px;
    justify-content: start;
  }

  .pricing-art img {
    width: 260px;
  }

  .plan-card,
  .final-cta.contact-section,
  .interface-showcase {
    grid-template-columns: 1fr;
  }

  .plan-price-panel {
    min-height: 260px;
    border-top: 1px solid rgba(255,255,255,0.13);
    border-left: 0;
  }

  .interface-main {
    min-height: 430px;
  }

  .interface-stack .interface-card,
  .interface-grid .interface-card {
    min-height: 260px;
  }

  .founder-card {
    width: min(360px, 100%);
  }

  .founder-stage,
  .founder-spotlight {
    grid-template-columns: 1fr;
  }

  .founder-dashboard {
    min-height: 290px;
  }

  .founder-dashboard img {
    min-height: 290px;
  }

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

  .robot-showcase {
    min-height: 920px;
  }

  .robot-copy {
    max-width: 680px;
    padding-top: 0;
  }

  .robot-copy p {
    font-size: 18px;
  }

  .robot-stage {
    top: 330px;
    min-height: 590px;
  }

  .spline-robot {
    top: -24px;
    right: 50%;
    width: min(760px, 132vw);
    height: 760px;
    transform: translateX(50%);
  }

  .spline-badge-mask {
    right: 50%;
    bottom: 34px;
    transform: translateX(50%);
  }

  .legal-main {
    width: min(100% - 36px, 960px);
    padding-top: 150px;
  }

  .legal-hero {
    padding: 34px;
  }
}

@media (max-width: 640px) {
  .section-shell,
  .site-footer {
    width: calc(100vw - 36px);
  }

  .article-site-header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 22px;
  }

  .article-main {
    width: calc(100% - 20px);
    padding-top: 54px;
  }

  .article-footer {
    width: calc(100% - 20px);
  }

  .article-hero {
    padding: 24px;
    border-radius: 28px;
  }

  .article-hero h1 {
    font-size: clamp(34px, 10vw, 43px);
  }

  .article-ru-title {
    font-size: 19px;
  }

  .article-card {
    padding: 22px;
    border-radius: 24px;
  }

  .article-card h2 {
    font-size: 28px;
  }

  .article-card p,
  .article-card li {
    font-size: 16px;
  }

  .article-side {
    grid-template-columns: 1fr;
  }

  .article-return {
    padding: 22px;
  }

  .site-header {
    top: 12px;
    left: 14px;
    right: 14px;
    width: auto;
    transform: none;
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 8px;
  }

  .site-header::before {
    top: -14px;
    left: -14px;
    width: 100dvw;
    transform: none;
    height: 170px;
  }

  .header-actions {
    min-width: 0;
    gap: 6px;
    padding-right: 0;
  }

  .site-header .brand > span:last-child {
    display: none;
  }

  .nav {
    left: 10px;
    right: 10px;
    width: auto;
    transform: none;
    justify-content: center;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 13px;
  }

  .btn-small {
    min-height: 42px;
    max-width: none;
    padding: 0 7px 0 13px;
    gap: 8px;
    font-size: 13px;
  }

  .lang-toggle {
    min-width: 40px;
    height: 40px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .btn-small span[aria-hidden="true"] {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
    margin-right: 0;
  }

  .hero {
    min-height: 980px;
    padding-top: 150px;
  }

  .hero-content {
    transform: translateY(-34px);
  }

  .eyebrow {
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(31px, 8.4vw, 35px);
    line-height: 1;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.52;
  }

  .brand-mark-large {
    width: 94px;
    height: 94px;
  }

  .brand-mark-large span {
    width: 62px;
    height: 24px;
    border-width: 7px;
  }

  .hero-logo {
    width: 92px;
    height: 92px;
  }

  .orbital-left {
    left: -122px;
    width: 230px;
  }

  .orbital-right {
    top: 430px;
    right: -94px;
    width: 200px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 26px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .hero-bottom {
    bottom: 46px;
    gap: 14px;
    font-size: 16px;
  }

  .hero-bottom span {
    max-width: 100%;
  }

  html[lang="ru"] h1 {
    font-size: clamp(30px, 8.2vw, 34px);
  }

  html[lang="ru"] .hero-bottom {
    font-size: 15px;
  }

  .about,
  .robot-showcase,
  .proof,
  .audience,
  .modules,
  .process,
  .pricing,
  .integrations,
  .video-section,
  .final-cta {
    padding-block: 76px;
  }

  section[id] {
    scroll-margin-top: 154px;
  }

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

  .robot-showcase {
    min-height: 880px;
  }

  .robot-stage {
    top: 445px;
    min-height: 410px;
  }

  .spline-robot {
    top: -26px;
    right: 50%;
    width: min(620px, 154vw);
    height: 560px;
    transform: translateX(50%);
  }

  .spline-badge-mask {
    display: none;
  }

  .robot-copy p {
    font-size: 16px;
  }

  .product-console {
    min-height: auto;
    padding: 16px;
  }

  .console-top,
  .console-grid,
  .console-metrics,
  .example-grid,
  .copy-stack,
  .contact-methods,
  .contact-article,
  .interface-grid {
    grid-template-columns: 1fr;
  }

  .console-top {
    align-items: start;
    flex-direction: column;
  }

  .console-metrics div {
    min-height: 92px;
  }

  .console-panel {
    min-height: 160px;
  }

  .photo-card,
  .photo-card-large {
    min-height: 300px;
  }

  .example-card {
    grid-template-rows: 210px 1fr;
  }

  .audience-card {
    min-height: 180px;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .process-icon {
    width: 86px;
    height: 86px;
  }

  .process-visual {
    grid-column: auto;
    height: 170px;
  }

  .price span {
    font-size: 46px;
  }

  .pricing-heading p {
    font-size: 17px;
  }

  .pricing-art {
    min-height: 200px;
  }

  .pricing-art img {
    width: 220px;
  }

  .plan-copy,
  .plan-price-panel {
    padding: 24px;
  }

  .interface-main {
    min-height: 360px;
  }

  .interface-card {
    min-height: 240px;
  }

  .interface-caption,
  .interface-card div {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .interface-caption h3 {
    font-size: 21px;
  }

  .founder-line {
    grid-template-columns: 1fr;
  }

  .founder-line span {
    display: none;
  }

  .founder-note {
    min-height: auto;
    padding: 24px;
  }

  .founder-points {
    grid-template-columns: 1fr;
  }

  .founder-points article {
    min-height: 150px;
  }

  .founder-dashboard,
  .founder-dashboard img {
    min-height: 240px;
  }

  .final-cta {
    padding: 22px;
    border-radius: 30px;
  }

  .final-cta-content {
    padding: 22px 0 4px;
  }

  .final-cta p {
    font-size: 17px;
  }

  .video-copy p {
    font-size: 17px;
  }

  .video-frame {
    padding: 6px;
    border-radius: 24px;
  }

  .video-frame iframe {
    border-radius: 18px;
  }

  .legal-main {
    width: calc(100vw - 36px);
    padding-top: 142px;
  }

  .legal-hero,
  .legal-card {
    padding: 24px;
  }

  .demo-form {
    padding: 18px;
  }

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

  .form-header {
    align-items: start;
    flex-direction: column;
  }

  .cta-cube {
    width: 130px;
    opacity: 0.48;
  }
}

@media (max-width: 1100px) {
  .module-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .module-hero-panel {
    width: min(820px, 100%);
  }

  .pos-order-map {
    min-height: 620px;
  }

  .crm-flow-map {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 18px;
  }

  .ai-orchestration-map {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ai-scenario-board {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
    min-height: auto;
    padding: 18px;
  }

  .ai-scenario-lines {
    display: none;
  }

  .ai-scenario-node {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    min-height: 78px;
    grid-column: auto;
    grid-row: auto;
    transform: none;
    animation: none;
  }

  .ai-scenario-node::before {
    display: none;
  }

  .ai-scenario-node::after {
    content: "";
    position: absolute;
    left: 36px;
    bottom: -14px;
    width: 3px;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(118,220,255,0.8), rgba(124,92,255,0.25));
  }

  .ai-scenario-node:last-of-type::after {
    display: none;
  }

  .ai-scenario-legend {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 8px;
  }

  .ai-scenario-cards {
    grid-template-columns: 1fr;
  }

  .pos-map-center {
    width: min(520px, 44vw);
  }

  .crm-flow-center {
    width: auto;
  }

  .pos-map-node {
    width: 148px;
    min-height: 90px;
    padding: 14px;
  }

  .pos-map-node b {
    font-size: 16px;
  }

  .crm-flow-node {
    width: auto;
    min-height: 92px;
  }

  .crm-flow-arrow {
    justify-self: center;
    width: 4px;
    height: 38px;
    background: linear-gradient(180deg, rgba(118,220,255,0.18), rgba(118,116,255,0.92));
  }

  .crm-flow-arrow::after {
    top: auto;
    right: auto;
    bottom: -1px;
    left: 50%;
    border-top: 15px solid rgba(118,116,255,0.98);
    border-right: 11px solid transparent;
    border-bottom: 0;
    border-left: 11px solid transparent;
    transform: translateX(-50%);
  }

  .ai-map-arrow {
    justify-self: center;
    width: 4px;
    height: 34px;
    background: linear-gradient(180deg, rgba(118,220,255,0.18), rgba(118,116,255,0.92));
  }

  .ai-map-arrow::after {
    top: auto;
    right: auto;
    bottom: -1px;
    left: 50%;
    border-top: 12px solid rgba(118,220,255,0.98);
    border-right: 9px solid transparent;
    border-bottom: 0;
    border-left: 9px solid transparent;
    transform: translateX(-50%);
  }

  .crm-flow-node b {
    font-size: 15px;
  }

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

  .pos-flow-step:not(:last-child)::after {
    display: none;
  }

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

  .client-journey-map {
    grid-template-columns: 1fr;
  }

  .client-journey-map > i {
    justify-self: center;
    width: 3px;
    height: 34px;
    background: linear-gradient(180deg, rgba(118,220,255,0.18), rgba(118,116,255,0.9));
  }

  .client-journey-map > i::after {
    top: auto;
    right: auto;
    bottom: -1px;
    left: 50%;
    border-top: 13px solid rgba(118,116,255,0.96);
    border-right: 9px solid transparent;
    border-bottom: 0;
    border-left: 9px solid transparent;
    transform: translateX(-50%);
  }

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

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

  .customer-system-center,
  .map-pos,
  .map-crm,
  .map-stock,
  .map-pay,
  .map-delivery,
  .map-loyalty {
    grid-column: auto;
    grid-row: auto;
  }

  .customer-system-center {
    grid-column: 1 / -1;
  }

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

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

  .crm-visual-shot:first-child {
    grid-column: 1 / -1;
  }

  .module-shot-large {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .module-header {
    align-items: start;
  }

  .module-header .nav {
    order: 3;
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 24px;
  }

  .module-hero {
    padding-top: 172px;
  }

  .module-section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pos-order-map {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    min-height: 0;
    padding: 20px;
  }

  .crm-flow-map {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 20px;
  }

  .pos-order-lines,
  .crm-flow-lines {
    display: none;
  }

  .pos-map-center,
  .pos-map-node,
  .pos-map-status,
  .crm-flow-center,
  .crm-flow-node,
  .crm-pipeline-stages {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
  }

  .pos-map-center {
    grid-column: 1 / -1;
    min-height: 190px;
  }

  .crm-flow-center {
    grid-column: 1 / -1;
    min-height: 190px;
  }

  .crm-flow-column {
    grid-column: 1 / -1;
  }

  .pos-map-node {
    min-height: 120px;
  }

  .crm-flow-node {
    min-height: 120px;
  }

  .pos-map-status {
    grid-template-columns: auto auto;
    min-height: 76px;
  }

  .crm-pipeline-stages {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: auto;
  }

  .module-use-grid {
    grid-template-columns: 1fr;
  }

  .client-phone-stage {
    min-height: 480px;
  }

  .client-phone-stage img {
    width: min(100%, 238px);
  }

  .client-phone-secondary {
    width: min(100%, 205px) !important;
  }

  .module-use-grid img {
    height: 320px;
  }

  .module-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .module-hero {
    padding-top: 180px;
    padding-bottom: 48px;
  }

  .module-hero h1,
  .module-section-head h2,
  .module-deep h2 {
    font-size: clamp(25px, 6.6vw, 31px);
    line-height: 1.05;
  }

  html[lang="ru"] .module-hero h1 {
    font-size: clamp(22px, 5.7vw, 28px);
    line-height: 1.06;
  }

  html[lang="ru"] .module-section-head h2,
  html[lang="ru"] .module-deep h2 {
    font-size: clamp(21px, 5.35vw, 27px);
    line-height: 1.08;
  }

  .module-cta h2 {
    font-size: clamp(24px, 6.4vw, 32px);
  }

  html[lang="ru"] .module-cta h2 {
    font-size: clamp(20px, 5.15vw, 26px);
    line-height: 1.08;
  }

  .ai-scenario-node {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 72px;
    padding: 12px;
  }

  .ai-scenario-node > span:first-child {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .module-lead,
  .module-section-head p,
  .module-cta p {
    font-size: 17px;
  }

  .module-hero-visual,
  .module-hero-visual img {
    min-height: 340px;
  }

  .ai-hero-visual {
    min-height: 300px;
  }

  .ai-hero-visual img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .delivery-phone-visual {
    min-height: 420px;
    padding: 18px;
  }

  .delivery-phone-visual img {
    width: min(100%, 280px);
    max-height: 460px;
    min-height: 0;
  }

  .module-hero-mini,
  .pos-order-map,
  .crm-flow-map,
  .ai-orchestration-map,
  .pos-flow,
  .pos-feature-grid,
  .module-gallery,
  .delivery-phone-grid,
  .crm-visual-rail,
  .ai-voice-grid {
    grid-template-columns: 1fr;
  }

  .delivery-phone-card {
    max-width: 340px;
    margin-inline: auto;
  }

  .pos-order-map {
    padding: 16px;
  }

  .crm-flow-map {
    padding: 16px;
  }

  .ai-orchestration-map {
    padding: 16px;
  }

  .pos-map-center {
    padding: 24px;
    border-radius: 30px;
  }

  .crm-flow-center {
    padding: 24px;
    border-radius: 30px;
  }

  .pos-map-center strong {
    font-size: clamp(34px, 11vw, 48px);
  }

  .crm-flow-center strong {
    font-size: clamp(34px, 11vw, 48px);
  }

  .pos-map-node,
  .pos-map-status,
  .crm-flow-node {
    min-height: 96px;
  }

  .crm-pipeline-stages {
    grid-template-columns: 1fr;
  }

  .module-shot,
  .module-shot-large {
    min-height: 320px;
  }

  .client-phone-stage {
    grid-template-columns: 1fr;
    min-height: 610px;
    padding: 22px 18px 0;
  }

  .client-phone-stage img {
    width: min(82%, 270px);
  }

  .client-phone-main {
    transform: translateY(16px) rotate(-2deg);
  }

  .client-phone-secondary {
    display: none;
  }

  .client-screen-row,
  .customer-system-map {
    grid-template-columns: 1fr;
  }

  .client-phone-shot img {
    max-height: 560px;
  }

  .customer-system-map {
    padding: 22px;
  }

  .customer-system-map::before,
  .customer-system-map::after {
    display: none;
  }

  .customer-system-center {
    min-height: 180px;
  }

  .customer-system-center strong {
    font-size: clamp(27px, 9vw, 38px);
  }

  .ai-map-card,
  .ai-voice-card {
    min-height: auto;
    padding: 20px;
  }

  .ai-wide-shot {
    min-height: 0;
    padding: 10px;
  }

  .ai-wide-shot img {
    aspect-ratio: 1 / 0.82;
    border-radius: 20px;
  }

  .ai-wide-shot div {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -18px 8px 8px;
    padding: 16px;
    border-radius: 20px;
  }

  .crm-visual-shot {
    min-height: 240px;
  }

  .module-section {
    padding-block: 66px;
  }

  .module-cta {
    padding: 26px;
    border-radius: 30px;
  }
}

@media (max-width: 520px) {
  .module-header .brand > span:last-child {
    display: none;
  }

  .module-header .btn-small {
    min-height: 46px;
    padding-left: 16px;
  }

  .module-header .nav a {
    flex: 1 1 44%;
    justify-content: center;
    padding-inline: 10px;
  }

  .module-hero {
    padding-top: 196px;
  }

  .module-hero-actions .btn {
    width: 100%;
  }

  .module-use-grid img {
    height: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
