:root {
  --bg: #ffffff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --ink: #15121b;
  --muted: #686274;
  --soft: #f7f6fb;
  --line: rgba(31, 24, 45, 0.1);
  --violet: #7b35f3;
  --violet-deep: #4b19c5;
  --violet-soft: #efe8ff;
  --mint: #26c6a2;
  --blue: #4e7cff;
  --radius-xl: 24px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --shadow-soft: 0 24px 70px rgba(46, 29, 89, 0.12);
  --shadow-card: 0 18px 45px rgba(41, 32, 61, 0.08);
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 8%, rgba(123, 53, 243, 0.11), transparent 34rem),
    radial-gradient(circle at 12% 34%, rgba(38, 198, 162, 0.08), transparent 28rem),
    #ffffff;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.72;
  background-image:
    linear-gradient(rgba(21, 18, 27, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 18, 27, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

a,
button,
summary,
select {
  -webkit-tap-highlight-color: rgba(123, 53, 243, 0.14);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(123, 53, 243, 0.32);
  outline-offset: 4px;
}

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

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

::selection {
  color: #ffffff;
  background: var(--violet);
}

#services,
#projects,
#process,
#pricing,
#faq,
#lead {
  scroll-margin-top: 120px;
}

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

.site-header {
  position: sticky;
  top: 12px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 48px), var(--max));
  min-height: 76px;
  margin: 12px auto 0;
  padding: 10px 12px 10px 18px;
  border: 1px solid transparent;
  border-radius: 24px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(31, 24, 45, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(13, 10, 18, 0.96), rgba(31, 18, 50, 0.92));
  box-shadow: 0 18px 40px rgba(31, 24, 45, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(31, 24, 45, 0.16);
}

.brand picture,
.site-footer picture {
  display: block;
}

.brand img,
.site-footer img {
  width: 178px;
  height: auto;
  object-fit: contain;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.nav a {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
  background: #ffffff;
  transform: translateY(-1px);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 760;
  background: linear-gradient(135deg, var(--violet), var(--violet-deep));
  box-shadow: 0 16px 34px rgba(123, 53, 243, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(123, 53, 243, 0.34);
  filter: saturate(1.08);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(36px, 5vw, 76px);
  min-height: calc(100svh - 96px);
  padding: 78px 0 70px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(56px, 6vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 780;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, filter 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.99);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #8d52ff, #6325df 55%, #4b19c5);
  box-shadow: 0 20px 44px rgba(123, 53, 243, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 24px 56px rgba(123, 53, 243, 0.36);
  filter: saturate(1.06);
}

.button-secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 32px rgba(31, 24, 45, 0.06);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  perspective: 1100px;
}

.orbital {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.2px);
}

.orbital-one {
  width: 260px;
  height: 260px;
  top: 22px;
  right: 34px;
  border: 1px solid rgba(123, 53, 243, 0.14);
  background: radial-gradient(circle, rgba(123, 53, 243, 0.18), transparent 68%);
}

.orbital-two {
  width: 160px;
  height: 160px;
  left: 34px;
  bottom: 88px;
  border: 1px solid rgba(38, 198, 162, 0.16);
  background: radial-gradient(circle, rgba(38, 198, 162, 0.16), transparent 70%);
}

.phone-stack {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.phone {
  position: absolute;
  width: 286px;
  height: 584px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 46px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(242, 239, 250, 0.96)),
    #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(31, 24, 45, 0.07),
    0 42px 90px rgba(45, 28, 86, 0.2);
}

.phone::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 50%;
  width: 88px;
  height: 25px;
  border-radius: 999px;
  background: #16121c;
  transform: translateX(-50%);
}

.phone-front {
  top: 16px;
  right: 78px;
  transform: rotateY(-18deg) rotateX(8deg) rotateZ(2deg);
}

.phone-back {
  top: 70px;
  left: 10px;
  opacity: 0.96;
  transform: rotateY(-22deg) rotateX(8deg) rotateZ(-8deg) translateZ(-80px);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  background: linear-gradient(180deg, #fbfaff 0%, #f2eefc 100%);
}

.app-screen {
  padding: 52px 18px 18px;
}

.status-line {
  display: flex;
  justify-content: space-between;
  color: #1c1724;
  font-size: 12px;
  font-weight: 800;
}

.status-line span:last-child {
  width: 42px;
  height: 12px;
  border-radius: 8px;
  background: linear-gradient(90deg, #211a2d 62%, transparent 62%), #d8d1e8;
}

.app-card {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 22px;
  padding: 20px;
  border-radius: 26px;
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(135deg, #8d52ff, #5421d1);
  box-shadow: 0 22px 42px rgba(105, 45, 223, 0.28);
}

.app-card small {
  display: block;
  margin-bottom: 4px;
  opacity: 0.76;
}

.app-card strong {
  display: block;
  font-size: 24px;
}

.app-card b {
  font-size: 34px;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.app-grid div {
  min-height: 82px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(31, 24, 45, 0.06), 0 16px 30px rgba(31, 24, 45, 0.06);
}

.app-grid div:nth-child(2) {
  background: linear-gradient(135deg, rgba(38, 198, 162, 0.16), #ffffff);
}

.app-grid div:nth-child(3) {
  background: linear-gradient(135deg, rgba(78, 124, 255, 0.16), #ffffff);
}

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

.order-list span,
.screen-topline {
  height: 48px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(31, 24, 45, 0.06);
}

.analytics-screen {
  padding: 60px 18px 18px;
  background: #181421;
}

.metric-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(123, 53, 243, 0.8), rgba(38, 198, 162, 0.58));
}

.metric-card span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.metric-card strong {
  display: block;
  margin-top: 8px;
  font-size: 46px;
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 11px;
  height: 210px;
  margin-top: 22px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
}

.mini-chart i {
  flex: 1;
  min-height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #9c72ff);
}

.mini-chart i:nth-child(2) { height: 92px; }
.mini-chart i:nth-child(3) { height: 138px; }
.mini-chart i:nth-child(4) { height: 176px; }
.mini-chart i:nth-child(5) { height: 118px; }

.hero-product-visual {
  min-height: 660px;
  isolation: isolate;
}

.hero-product-visual::before {
  content: "";
  position: absolute;
  inset: 54px 4px 36px;
  z-index: -2;
  border-radius: 44px;
  background:
    radial-gradient(circle at 48% 44%, rgba(123, 53, 243, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(247, 244, 255, 0.44));
  filter: blur(0.2px);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(38px);
  opacity: 0.9;
}

.hero-glow-violet {
  width: 360px;
  height: 360px;
  top: 42px;
  right: 84px;
  background: rgba(123, 53, 243, 0.22);
}

.hero-glow-blue {
  width: 260px;
  height: 260px;
  right: 10px;
  bottom: 84px;
  background: rgba(78, 124, 255, 0.16);
}

.hero-glow-mint {
  width: 220px;
  height: 220px;
  left: 34px;
  bottom: 70px;
  background: rgba(38, 198, 162, 0.15);
}

.product-phone {
  position: absolute;
  width: 218px;
  height: 446px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(236, 232, 247, 0.96)),
    #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(31, 24, 45, 0.08),
    0 34px 70px rgba(48, 31, 89, 0.22),
    0 12px 24px rgba(123, 53, 243, 0.1);
  transform-style: preserve-3d;
}

.product-phone::before {
  content: "";
  position: absolute;
  z-index: 5;
  top: 16px;
  left: 50%;
  width: 70px;
  height: 20px;
  border-radius: 999px;
  background: #15111d;
  transform: translateX(-50%);
}

.product-phone::after {
  content: "";
  position: absolute;
  inset: auto 24px -24px;
  height: 34px;
  border-radius: 50%;
  background: rgba(29, 22, 43, 0.18);
  filter: blur(16px);
}

.product-phone-shop {
  top: 156px;
  left: 14px;
  z-index: 2;
  transform: rotateY(-19deg) rotateX(7deg) rotateZ(-8deg);
}

.product-phone-delivery {
  top: 82px;
  left: 50%;
  z-index: 4;
  width: 246px;
  height: 502px;
  transform: translateX(-50%) rotateY(-5deg) rotateX(7deg) rotateZ(2deg);
}

.product-phone-crm {
  top: 142px;
  right: 10px;
  z-index: 3;
  transform: rotateY(17deg) rotateX(7deg) rotateZ(8deg);
}

.product-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  background: #fbfaff;
}

.phone-status {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 44px 16px 10px;
  color: #15121b;
  font-size: 10px;
  font-weight: 850;
}

.phone-status span:last-child {
  width: 34px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #15121b 62%, rgba(21, 18, 27, 0.18) 62%);
}

.shop-ui {
  padding: 0 12px 12px;
  background: linear-gradient(180deg, #ffffff, #f5f2fb);
}

.shop-banner {
  min-height: 84px;
  padding: 16px;
  border-radius: 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 255, 255, 0.36), transparent 30%),
    linear-gradient(135deg, #8d52ff, #4b19c5);
  box-shadow: 0 18px 34px rgba(123, 53, 243, 0.24);
}

.shop-banner small,
.delivery-card small,
.crm-top small {
  display: block;
  margin-bottom: 5px;
  opacity: 0.72;
  font-size: 10px;
  font-weight: 760;
}

.shop-banner strong {
  display: block;
  font-size: 21px;
  line-height: 1.05;
}

.shop-categories {
  display: flex;
  gap: 7px;
  margin: 12px 0;
}

.shop-categories span {
  flex: 1;
  height: 24px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(31, 24, 45, 0.07);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.product-grid article {
  min-height: 104px;
  padding: 8px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(31, 24, 45, 0.06), 0 12px 22px rgba(31, 24, 45, 0.06);
}

.product-grid i {
  display: block;
  height: 48px;
  margin-bottom: 8px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(123, 53, 243, 0.16), rgba(38, 198, 162, 0.14));
}

.product-grid article:nth-child(2) i {
  background: linear-gradient(135deg, rgba(78, 124, 255, 0.16), rgba(255, 203, 87, 0.2));
}

.product-grid article:nth-child(3) i {
  background: linear-gradient(135deg, rgba(255, 102, 153, 0.17), rgba(123, 53, 243, 0.14));
}

.product-grid b {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
}

.product-grid span {
  display: block;
  width: 70%;
  height: 7px;
  border-radius: 999px;
  background: rgba(104, 98, 116, 0.16);
}

.cart-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  margin-top: 10px;
  padding: 0 14px;
  border-radius: 17px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 820;
  background: #15121b;
}

.cart-bar strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--violet);
}

.delivery-ui {
  padding: 0 14px 14px;
  background: linear-gradient(180deg, #fdfcff, #f2f7ff);
}

.delivery-map {
  position: relative;
  height: 214px;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(78, 124, 255, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(123, 53, 243, 0.09) 1px, transparent 1px),
    radial-gradient(circle at 25% 25%, rgba(123, 53, 243, 0.16), transparent 25%),
    radial-gradient(circle at 78% 68%, rgba(38, 198, 162, 0.18), transparent 26%),
    #ffffff;
  background-size: 32px 32px, 32px 32px, auto, auto, auto;
  box-shadow: inset 0 0 0 1px rgba(31, 24, 45, 0.07);
}

.route-line {
  position: absolute;
  left: 40px;
  right: 42px;
  top: 106px;
  height: 66px;
  border: 4px solid rgba(123, 53, 243, 0.75);
  border-top: 0;
  border-left-color: rgba(78, 124, 255, 0.62);
  border-radius: 0 0 40px 40px;
}

.map-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 4px solid #ffffff;
  border-radius: 50% 50% 50% 4px;
  background: var(--violet);
  box-shadow: 0 12px 24px rgba(123, 53, 243, 0.25);
  transform: rotate(-45deg);
}

.pin-start { left: 32px; top: 76px; background: var(--blue); }
.pin-courier { left: 112px; top: 126px; background: var(--violet); }
.pin-finish { right: 32px; bottom: 44px; background: var(--mint); }

.delivery-card {
  margin-top: -34px;
  padding: 16px;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #15121b, #43208c);
  box-shadow: 0 18px 38px rgba(31, 24, 45, 0.18);
}

.delivery-card strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.delivery-progress {
  height: 8px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.delivery-progress span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffffff, #b993ff);
}

.delivery-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 12px;
}

.delivery-steps span {
  min-height: 42px;
  padding: 10px 7px;
  border-radius: 15px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 780;
  text-align: center;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(31, 24, 45, 0.07);
}

.delivery-steps .is-done {
  color: #16836d;
  background: rgba(38, 198, 162, 0.12);
}

.delivery-steps .is-active {
  color: var(--violet-deep);
  background: var(--violet-soft);
}

.crm-ui {
  padding: 0 12px 12px;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 8%, rgba(142, 82, 255, 0.42), transparent 28%),
    linear-gradient(180deg, #17121f, #231334);
}

.crm-ui .phone-status {
  color: #ffffff;
}

.crm-ui .phone-status span:last-child {
  background: linear-gradient(90deg, #ffffff 62%, rgba(255, 255, 255, 0.25) 62%);
}

.crm-top {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(123, 53, 243, 0.88), rgba(78, 124, 255, 0.48));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.crm-top strong {
  display: block;
  font-size: 36px;
  line-height: 1;
}

.crm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 11px;
}

.crm-stats article {
  min-height: 62px;
  padding: 10px 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.crm-stats span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  font-weight: 760;
}

.crm-stats b {
  font-size: 13px;
}

.sales-chart {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 132px;
  margin-top: 13px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.sales-chart i {
  flex: 1;
  min-height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #8d52ff);
}

.sales-chart i:nth-child(2) { height: 68px; }
.sales-chart i:nth-child(3) { height: 88px; }
.sales-chart i:nth-child(4) { height: 54px; }
.sales-chart i:nth-child(5) { height: 104px; }
.sales-chart i:nth-child(6) { height: 78px; }

.crm-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.crm-list span {
  height: 32px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 112px;
}

.benefits article,
.service-card,
.price-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.benefits article {
  min-height: 160px;
  padding: 24px;
  border-radius: var(--radius-xl);
}

.benefit-icon,
.service-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 16px;
  color: #ffffff;
  font-weight: 850;
  background: linear-gradient(135deg, #8d52ff, #5421d1);
  box-shadow: 0 14px 26px rgba(123, 53, 243, 0.24);
}

.benefits h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.icon-spark::before,
.icon-platform::before,
.icon-support::before,
.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
}

.icon-spark::before {
  width: 18px;
  height: 18px;
  background: #ffffff;
  clip-path: polygon(50% 0, 62% 34%, 100% 50%, 62% 66%, 50% 100%, 38% 66%, 0 50%, 38% 34%);
}

.icon-platform::before {
  width: 24px;
  height: 26px;
  border: 3px solid #ffffff;
  border-radius: 8px;
}

.icon-platform::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 20px;
  border: 3px solid #ffffff;
  border-radius: 6px;
  transform: translate(8px, 5px);
}

.icon-support::before {
  width: 24px;
  height: 24px;
  border: 4px solid #ffffff;
  border-right-color: transparent;
  border-radius: 50%;
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 28px;
}

.split-intro h2,
.section-heading h2,
.final h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.split-intro > p,
.final-copy > p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 120px;
}

.service-card {
  grid-column: span 2;
  min-height: 278px;
  padding: 28px;
  border-radius: var(--radius-xl);
}

.service-card h3,
.project-card h3,
.timeline h3,
.price-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.service-card p,
.project-card p,
.price-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.featured-service {
  grid-column: span 4;
  background:
    radial-gradient(circle at 88% 18%, rgba(123, 53, 243, 0.14), transparent 28%),
    linear-gradient(135deg, #ffffff, #f7f4ff);
}

.icon-shop::before {
  width: 24px;
  height: 18px;
  border: 3px solid #ffffff;
  border-top: 0;
  border-radius: 4px 4px 8px 8px;
}

.icon-shop::after {
  width: 30px;
  height: 12px;
  top: 12px;
  border-radius: 8px 8px 4px 4px;
  background: #ffffff;
}

.icon-delivery::before {
  width: 27px;
  height: 17px;
  border: 3px solid #ffffff;
  border-radius: 7px;
}

.icon-delivery::after {
  width: 6px;
  height: 6px;
  bottom: 12px;
  left: 12px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 18px 0 0 #ffffff;
}

.icon-education::before {
  width: 28px;
  height: 21px;
  border-radius: 4px 12px 12px 4px;
  background: #ffffff;
  transform: skewY(-8deg);
}

.icon-crm::before {
  width: 26px;
  height: 26px;
  border: 3px solid #ffffff;
  border-radius: 8px;
  box-shadow: inset 0 -9px 0 rgba(255, 255, 255, 0.45);
}

.icon-mvp::before {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: conic-gradient(from 90deg, transparent 0 25%, #ffffff 25% 100%);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 120px;
}

.project-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(410px, 1fr) auto;
  min-height: 690px;
  overflow: hidden;
  padding: 30px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: auto 38px 220px;
  height: 56px;
  border-radius: 50%;
  background: rgba(30, 22, 43, 0.16);
  filter: blur(18px);
}

.project-violet {
  background:
    radial-gradient(circle at 80% 8%, rgba(123, 53, 243, 0.16), transparent 30%),
    linear-gradient(145deg, #fbfaff, #eee6ff);
}

.project-mint {
  background:
    radial-gradient(circle at 18% 12%, rgba(38, 198, 162, 0.16), transparent 30%),
    linear-gradient(145deg, #fbfffd, #e7fbf6);
}

.project-ink {
  background:
    radial-gradient(circle at 84% 18%, rgba(78, 124, 255, 0.18), transparent 32%),
    linear-gradient(145deg, #fdfdff, #eef2ff);
}

.project-phone {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: 245px;
  height: 510px;
  margin-top: 4px;
  padding: 10px;
  border-radius: 46px;
  background: transparent;
  box-shadow: 0 34px 68px rgba(31, 24, 45, 0.18);
  transform: rotate(-4deg);
}

.project-card:nth-child(2) .project-phone {
  transform: rotate(3deg);
}

.project-card:nth-child(3) .project-phone {
  transform: rotate(-2deg);
}

.case-screen {
  position: relative;
  height: 100%;
  padding: 0;
  border-radius: 44px;
  color: #ffffff;
  overflow: hidden;
}

.topfix-screen {
  background: linear-gradient(180deg, #17121f, #26143a);
}

.toys-screen {
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.orders-screen {
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, #f5f8ff);
}

.image-screen {
  background: transparent;
}

.image-screen picture,
.image-screen img {
  width: 100%;
  height: 100%;
}

.image-screen img {
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(31, 24, 45, 0.12));
}

.project-content {
  align-self: end;
  position: relative;
  z-index: 1;
}

.project-content h3 {
  margin-bottom: 10px;
  font-size: 26px;
}

.project-content p {
  margin-bottom: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.project-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-content li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #342e42;
  font-size: 14px;
  font-weight: 760;
}

.project-content li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8d52ff, #4b19c5);
  box-shadow: 0 0 0 5px rgba(123, 53, 243, 0.1);
}

.case-status {
  position: absolute;
  top: 13px;
  left: 16px;
  right: 16px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: inherit;
  font-size: 9px;
  font-weight: 850;
}

.case-status span:last-child {
  width: 30px;
  height: 9px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.72;
}

.topfix-hero {
  padding: 14px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(135deg, #8d52ff, #4b19c5);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.topfix-hero small {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 760;
}

.topfix-hero strong {
  display: block;
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1;
}

.topfix-chart {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 58px;
}

.topfix-chart i {
  flex: 1;
  min-height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, rgba(255, 255, 255, 0.45));
}

.topfix-chart i:nth-child(2) { height: 38px; }
.topfix-chart i:nth-child(3) { height: 52px; }
.topfix-chart i:nth-child(4) { height: 30px; }
.topfix-chart i:nth-child(5) { height: 46px; }

.topfix-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.topfix-stats article,
.topfix-product,
.topfix-list span {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.topfix-stats article {
  min-height: 58px;
  padding: 10px;
}

.topfix-stats span,
.topfix-product span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 720;
}

.topfix-stats b {
  display: block;
  margin-top: 5px;
  font-size: 20px;
}

.topfix-product {
  margin-top: 10px;
  padding: 12px;
}

.topfix-product b {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
}

.topfix-product button {
  width: 100%;
  min-height: 34px;
  margin-top: 10px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 820;
  background: linear-gradient(135deg, #8d52ff, #4b19c5);
}

.topfix-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.topfix-list span {
  height: 31px;
}

.toy-search {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: #edf0f6;
  color: #8b8794;
  font-size: 12px;
  font-weight: 720;
}

.toy-search span {
  width: 16px;
  height: 16px;
  border: 3px solid #4b9eff;
  border-radius: 50%;
  box-shadow: 9px 9px 0 -7px #4b9eff;
}

.toy-promo {
  margin-top: 10px;
  padding: 12px;
  border-radius: 19px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 850;
  background:
    radial-gradient(circle at 85% 16%, rgba(255, 255, 255, 0.36), transparent 28%),
    linear-gradient(135deg, #ffca4f, #ff6f91 52%, #7b35f3);
  box-shadow: 0 16px 30px rgba(255, 111, 145, 0.2);
}

.toy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.toy-grid article {
  position: relative;
  min-height: 102px;
  padding: 7px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(31, 24, 45, 0.06), 0 12px 24px rgba(31, 24, 45, 0.06);
}

.toy-grid i {
  display: block;
  height: 48px;
  margin-bottom: 8px;
  border-radius: 14px;
  background: radial-gradient(circle at 55% 42%, #ffffff 0 16%, #89d8ff 17% 38%, #f2f7ff 39%);
}

.toy-grid article:nth-child(2) i {
  background: radial-gradient(circle at 55% 42%, #ffffff 0 15%, #ff9a58 16% 38%, #fff3e9 39%);
}

.toy-grid article:nth-child(3) i {
  background: radial-gradient(circle at 45% 45%, #d8ff8d 0 18%, #8d52ff 19% 34%, #f7f4ff 35%);
}

.toy-grid article:nth-child(4) i {
  background: radial-gradient(circle at 55% 45%, #6aa7ff 0 22%, #e9f1ff 23%);
}

.toy-grid button {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
}

.toy-grid b,
.toy-grid span {
  display: block;
  font-size: 10px;
}

.toy-grid span {
  margin-top: 3px;
  color: var(--muted);
}

.toy-cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  margin-top: 10px;
  padding: 0 13px;
  border-radius: 15px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 820;
  background: linear-gradient(135deg, #55b7ff, #1975ff);
}

.toy-cart strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.orders-search {
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: #8b8794;
  font-size: 12px;
  font-weight: 720;
  line-height: 38px;
  background: #edf0f6;
}

.qr-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
  padding: 12px;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #15121b, #274edb);
  box-shadow: 0 16px 30px rgba(39, 78, 219, 0.18);
}

.qr-card i {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background:
    linear-gradient(90deg, #ffffff 6px, transparent 6px 12px, #ffffff 12px 18px, transparent 18px),
    linear-gradient(#ffffff 6px, transparent 6px 12px, #ffffff 12px 18px, transparent 18px),
    rgba(255, 255, 255, 0.16);
  background-size: 18px 18px;
}

.qr-card small {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 720;
}

.qr-card strong {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}

.warehouse-orders {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.warehouse-orders article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 11px;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(31, 24, 45, 0.07);
}

.warehouse-orders b {
  font-size: 11px;
}

.warehouse-orders span {
  padding: 5px 8px;
  border-radius: 999px;
  color: #2455d6;
  font-size: 9px;
  font-weight: 820;
  background: #edf4ff;
}

.warehouse-orders article:nth-child(2) span {
  color: #9a5a00;
  background: #fff4d8;
}

.warehouse-orders article:nth-child(3) span {
  color: #16836d;
  background: #e9fbf6;
}

.issue-order {
  width: 100%;
  min-height: 42px;
  margin-top: 10px;
  border: 0;
  border-radius: 16px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
  background: linear-gradient(135deg, #1975ff, #003ee8);
  box-shadow: 0 16px 30px rgba(25, 117, 255, 0.22);
}

.issue-history {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.issue-history span {
  height: 25px;
  border-radius: 12px;
  background: rgba(78, 124, 255, 0.12);
}

.process {
  margin-bottom: 116px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(31, 24, 45, 0.09);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 10%, rgba(123, 53, 243, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 246, 253, 0.72));
  box-shadow: 0 28px 70px rgba(41, 32, 61, 0.1);
  backdrop-filter: blur(18px);
}

.timeline::before {
  content: "";
  position: absolute;
  top: 74px;
  left: 54px;
  right: 54px;
  height: 2px;
  background: linear-gradient(90deg, rgba(123, 53, 243, 0.12), rgba(123, 53, 243, 0.8), rgba(38, 198, 162, 0.32));
}

.timeline-card {
  position: relative;
  z-index: 1;
  min-height: 210px;
  padding: 18px;
  border: 1px solid rgba(31, 24, 45, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 36px rgba(31, 24, 45, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.timeline-card:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 53, 243, 0.22);
  box-shadow: 0 24px 50px rgba(64, 42, 116, 0.12);
}

.timeline-number {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(104, 98, 116, 0.42);
  font-size: 13px;
  font-weight: 850;
}

.timeline-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 42px;
  border: 7px solid #ffffff;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #8d52ff, #4b19c5);
  box-shadow: 0 16px 30px rgba(123, 53, 243, 0.24);
}

.timeline-icon::before,
.timeline-icon::after {
  content: "";
  position: absolute;
}

.timeline h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.15;
}

.timeline-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.icon-brief::before {
  width: 23px;
  height: 17px;
  border: 3px solid #ffffff;
  border-radius: 5px;
}

.icon-brief::after {
  top: 15px;
  width: 12px;
  height: 5px;
  border: 3px solid #ffffff;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}

.icon-design::before {
  width: 23px;
  height: 23px;
  border: 3px solid #ffffff;
  border-radius: 7px;
  transform: rotate(45deg);
}

.icon-design::after {
  width: 16px;
  height: 3px;
  border-radius: 999px;
  background: #ffffff;
}

.icon-code::before {
  width: 9px;
  height: 18px;
  border-left: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: translateX(-6px) rotate(45deg);
}

.icon-code::after {
  width: 9px;
  height: 18px;
  border-right: 3px solid #ffffff;
  border-top: 3px solid #ffffff;
  transform: translateX(6px) rotate(45deg);
}

.icon-test::before {
  width: 22px;
  height: 22px;
  border: 3px solid #ffffff;
  border-radius: 50%;
}

.icon-test::after {
  width: 16px;
  height: 8px;
  border-left: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: rotate(-45deg);
}

.icon-rocket::before {
  width: 13px;
  height: 25px;
  border-radius: 10px 10px 4px 4px;
  background: #ffffff;
  transform: rotate(38deg);
}

.icon-rocket::after {
  width: 16px;
  height: 16px;
  right: 11px;
  bottom: 11px;
  border-radius: 50% 0 50% 50%;
  background: rgba(255, 255, 255, 0.54);
}

.icon-care::before {
  width: 24px;
  height: 18px;
  border: 3px solid #ffffff;
  border-radius: 12px 12px 6px 6px;
}

.icon-care::after {
  width: 28px;
  height: 28px;
  border: 3px solid #ffffff;
  border-top-color: transparent;
  border-radius: 50%;
}

.timeline-card:nth-child(2) .timeline-icon {
  background: linear-gradient(135deg, #7b35f3, #4e7cff);
}

.timeline-card:nth-child(3) .timeline-icon {
  background: linear-gradient(135deg, #4e7cff, #26c6a2);
}

.timeline-card:nth-child(4) .timeline-icon {
  background: linear-gradient(135deg, #15121b, #7b35f3);
}

.timeline-card:nth-child(5) .timeline-icon {
  background: linear-gradient(135deg, #8d52ff, #ff6f91);
}

.timeline-card:nth-child(6) .timeline-icon {
  background: linear-gradient(135deg, #26c6a2, #4b19c5);
}

.pricing {
  margin-bottom: 88px;
}

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

.price-card {
  display: flex;
  min-height: 344px;
  flex-direction: column;
  padding: 30px;
  border-radius: var(--radius-xl);
}

.price-card strong {
  display: block;
  margin: 16px 0 18px;
  font-size: 34px;
  line-height: 1.05;
}

.price-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: auto;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 780;
  background: var(--soft);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.price-card a:hover,
.price-card a:focus-visible {
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(31, 24, 45, 0.08);
  transform: translateY(-2px);
}

.price-card-accent {
  color: #ffffff;
  border-color: transparent;
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 255, 255, 0.26), transparent 32%),
    linear-gradient(135deg, #8d52ff, #4b19c5);
  box-shadow: 0 34px 70px rgba(91, 35, 207, 0.28);
}

.price-card-accent p {
  color: rgba(255, 255, 255, 0.78);
}

.price-card-accent a {
  color: var(--violet-deep);
  background: #ffffff;
}

.price-card-accent a:hover,
.price-card-accent a:focus-visible {
  box-shadow: 0 16px 34px rgba(255, 255, 255, 0.22);
}

.faq {
  margin-bottom: 120px;
}

.faq .section-heading {
  max-width: 760px;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 12%, rgba(123, 53, 243, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(31, 24, 45, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-list details:hover {
  border-color: rgba(123, 53, 243, 0.2);
  box-shadow: 0 22px 58px rgba(31, 24, 45, 0.09);
  transform: translateY(-2px);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 22px 58px 22px 24px;
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 820;
  line-height: 1.25;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--violet-deep);
  background: rgba(123, 53, 243, 0.1);
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease;
}

.faq-list details[open] summary::after {
  background: rgba(123, 53, 243, 0.16);
  transform: translateY(-50%) rotate(45deg);
}

.faq-list p {
  margin: -6px 24px 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.final {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: 44px;
  align-items: start;
  margin-bottom: 70px;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 8%, rgba(123, 53, 243, 0.12), transparent 28%),
    radial-gradient(circle at 90% 82%, rgba(38, 198, 162, 0.12), transparent 24%),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.final-copy {
  position: sticky;
  top: 124px;
}

.final-copy > p {
  max-width: 520px;
  margin-top: 22px;
}

.messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.messengers a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 760;
  background: rgba(255, 255, 255, 0.78);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.messengers a:hover,
.messengers a:focus-visible {
  border-color: rgba(123, 53, 243, 0.22);
  box-shadow: 0 14px 30px rgba(31, 24, 45, 0.08);
  transform: translateY(-2px);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-card);
}

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

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 720;
}

.lead-form em {
  color: rgba(123, 53, 243, 0.78);
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
}

.lead-form small {
  margin-top: -2px;
  color: rgba(98, 90, 112, 0.78);
  font-size: 12px;
  line-height: 1.35;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(31, 24, 45, 0.12);
  border-radius: 18px;
  outline: 0;
  color: var(--ink);
  background: #ffffff;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lead-form input,
.lead-form select {
  min-height: 56px;
  padding: 0 16px;
}

.lead-form textarea {
  min-height: 132px;
  padding: 16px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(123, 53, 243, 0.58);
  box-shadow: 0 0 0 5px rgba(123, 53, 243, 0.1);
}

.lead-form input:hover,
.lead-form select:hover,
.lead-form textarea:hover {
  border-color: rgba(123, 53, 243, 0.26);
}

.lead-form input[aria-invalid="true"],
.lead-form select[aria-invalid="true"],
.lead-form textarea[aria-invalid="true"] {
  border-color: rgba(180, 35, 24, 0.5);
  background: rgba(255, 247, 246, 0.72);
  box-shadow: 0 0 0 5px rgba(180, 35, 24, 0.08);
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
}

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

.form-submit:disabled {
  cursor: progress;
  transform: none;
}

.form-submit.is-loading {
  color: #ffffff;
  opacity: 1;
  pointer-events: none;
  filter: none;
  box-shadow: 0 20px 44px rgba(123, 53, 243, 0.26);
}

.form-submit.is-loading span {
  color: #ffffff;
}

.form-submit.is-loading::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border: 2px solid rgba(255, 255, 255, 0.48);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.form-status[data-tone="success"] {
  color: #16836d;
}

.form-status[data-tone="error"] {
  color: #b42318;
}

.lead-success {
  display: grid;
  min-height: 430px;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 34px;
  border: 1px solid rgba(22, 131, 109, 0.16);
  border-radius: 26px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(38, 198, 162, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
}

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

.success-check {
  position: relative;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, #26c6a2, #16836d);
  box-shadow: 0 22px 48px rgba(22, 131, 109, 0.24);
}

.success-check::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 19px;
  width: 30px;
  height: 16px;
  border-left: 5px solid #ffffff;
  border-bottom: 5px solid #ffffff;
  transform: rotate(-45deg);
}

.lead-success h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.15;
}

.lead-success p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0 44px;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer img {
  padding: 8px 10px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(13, 10, 18, 0.96), rgba(31, 18, 50, 0.92));
  box-shadow: 0 16px 34px rgba(31, 24, 45, 0.1);
}

@media (min-width: 760px) and (max-width: 1060px) {
  .section-shell,
  .site-header {
    width: min(calc(100% - 40px), 900px);
  }

  .site-header {
    grid-template-columns: auto auto auto;
  }

  .nav {
    display: none;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #ffffff;
  }

  .menu-button span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
  }

  .mobile-menu {
    position: fixed;
    top: 98px;
    left: 20px;
    right: 20px;
    z-index: 45;
    display: none;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(18px);
  }

  .mobile-menu.is-open {
    display: grid;
  }

  .mobile-menu a {
    display: flex;
    justify-content: center;
    padding: 13px 10px;
    border-radius: 16px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 760;
    background: var(--soft);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 72px 0 52px;
  }

  .hero-copy {
    max-width: 760px;
  }

  h1 {
    font-size: 70px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .phone-front {
    right: 20%;
  }

  .phone-back {
    left: 18%;
  }

  .benefits {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 96px;
  }

  .split-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 96px;
  }

  .service-card,
  .featured-service {
    grid-column: auto;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    margin-bottom: 96px;
  }

  .project-card {
    grid-template-columns: 300px 1fr;
    grid-template-rows: auto;
    align-items: center;
    min-height: 630px;
    gap: 26px;
  }

  .project-phone {
    width: 250px;
    height: 520px;
    margin-top: 0;
  }

  .timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .timeline::before {
    display: none;
  }

  .timeline-card {
    min-height: 190px;
  }

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

  .price-card {
    min-height: 260px;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

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

  .final-copy {
    position: static;
  }
}

@media (max-width: 759px) {
  body {
    background:
      radial-gradient(circle at 90% 0%, rgba(123, 53, 243, 0.13), transparent 22rem),
      #ffffff;
  }

  body::before {
    background-size: 42px 42px;
  }

  .section-shell,
  .site-header {
    width: min(calc(100% - 28px), 560px);
  }

  .site-header {
    top: 8px;
    grid-template-columns: 1fr auto;
    min-height: 66px;
    gap: 12px;
    margin-top: 8px;
    padding: 8px 8px 8px 12px;
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px);
  }

  .brand img,
  .site-footer img {
    width: 136px;
  }

  .brand {
    padding: 6px 8px;
    border-radius: 17px;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #ffffff;
  }

  .menu-button span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
  }

  .mobile-menu {
    position: fixed;
    top: 84px;
    left: 14px;
    right: 14px;
    z-index: 45;
    display: none;
    gap: 6px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(18px);
  }

  .mobile-menu.is-open {
    display: grid;
  }

  .mobile-menu a {
    padding: 14px;
    border-radius: 16px;
    color: var(--ink);
    font-weight: 760;
    background: var(--soft);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 24px;
    padding: 54px 0 42px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
  }

  h1 {
    margin-bottom: 20px;
    font-size: 46px;
    line-height: 1;
  }

  .hero-subtitle {
    margin-bottom: 28px;
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 56px;
  }

  .hero-visual {
    min-height: 450px;
    margin-top: 8px;
    overflow: hidden;
  }

  .orbital-one {
    width: 190px;
    height: 190px;
    right: -20px;
  }

  .orbital-two {
    left: -22px;
    bottom: 72px;
  }

  .phone {
    width: 214px;
    height: 438px;
    border-radius: 36px;
    padding: 10px;
  }

  .phone::before {
    width: 70px;
    height: 20px;
    top: 15px;
  }

  .phone-screen {
    border-radius: 28px;
  }

  .phone-front {
    top: 0;
    right: 20px;
    transform: rotateY(-17deg) rotateX(7deg) rotateZ(2deg);
  }

  .phone-back {
    top: 52px;
    left: 8px;
    transform: rotateY(-20deg) rotateX(8deg) rotateZ(-8deg) translateZ(-70px);
  }

  .app-screen {
    padding: 43px 14px 14px;
  }

  .app-card {
    margin-top: 17px;
    padding: 16px;
    border-radius: 22px;
  }

  .app-card strong {
    font-size: 19px;
  }

  .app-card b {
    font-size: 27px;
  }

  .app-grid {
    gap: 9px;
    margin-top: 14px;
  }

  .app-grid div {
    min-height: 58px;
    border-radius: 17px;
  }

  .order-list span,
  .screen-topline {
    height: 38px;
    border-radius: 15px;
  }

  .metric-card strong {
    font-size: 34px;
  }

  .mini-chart {
    height: 145px;
    gap: 8px;
    padding: 14px;
  }

  .benefits {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 78px;
  }

  .benefits article {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 16px;
    min-height: auto;
    padding: 18px;
    border-radius: 22px;
  }

  .benefit-icon {
    margin-bottom: 0;
  }

  .benefits h2 {
    font-size: 17px;
  }

  .split-intro {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }

  .split-intro h2,
  .section-heading h2,
  .final h2 {
    font-size: 34px;
    line-height: 1.07;
  }

  .split-intro > p,
  .final-copy > p {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 78px;
  }

  .service-card,
  .featured-service {
    grid-column: auto;
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .service-icon {
    margin-bottom: 18px;
  }

  .service-card h3,
  .project-card h3,
  .price-card h3 {
    font-size: 21px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 78px;
  }

  .project-card {
    grid-template-rows: auto auto;
    min-height: 720px;
    padding: 22px;
    border-radius: 24px;
  }

  .project-phone {
    width: 232px;
    height: 480px;
    margin-top: 0;
    border-radius: 42px;
  }

  .case-screen {
    padding: 0;
    border-radius: 40px;
  }

  .image-screen {
    padding: 0;
  }

  .project-content h3 {
    font-size: 24px;
  }

  .project-content p {
    margin-bottom: 14px;
  }

  .project-content li {
    font-size: 13px;
  }

  .process,
  .pricing,
  .faq {
    margin-bottom: 78px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 24px;
  }

  .timeline::before {
    display: block;
    top: 34px;
    bottom: 34px;
    left: 43px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(123, 53, 243, 0.78), rgba(38, 198, 162, 0.24));
  }

  .timeline-card {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 16px;
    min-height: auto;
    padding: 16px;
  }

  .timeline-icon {
    grid-row: span 3;
    width: 52px;
    height: 52px;
    margin-bottom: 0;
    border-width: 6px;
    border-radius: 17px;
  }

  .timeline-number {
    position: static;
    grid-column: 2;
    align-self: end;
    font-size: 12px;
  }

  .timeline h3 {
    grid-column: 2;
    font-size: 17px;
  }

  .timeline-card p {
    grid-column: 2;
    font-size: 14px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .price-card {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .price-card strong {
    font-size: 29px;
  }

  .price-card a {
    margin-top: 24px;
  }

  .faq-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq-list details {
    border-radius: 20px;
  }

  .faq-list details:hover {
    transform: none;
  }

  .faq-list summary {
    min-height: 72px;
    padding: 18px 54px 18px 18px;
    font-size: 16px;
  }

  .faq-list summary::after {
    right: 18px;
  }

  .faq-list p {
    margin: -4px 18px 18px;
    font-size: 14px;
  }

  .final {
    grid-template-columns: 1fr;
    gap: 26px;
    width: min(calc(100% - 20px), 560px);
    margin-bottom: 46px;
    padding: 22px;
    border-radius: 26px;
  }

  .final-copy {
    position: static;
  }

  .messengers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 22px;
  }

  .lead-form {
    padding: 14px;
    border-radius: 22px;
  }

  .lead-form input,
  .lead-form select {
    min-height: 54px;
    border-radius: 16px;
  }

  .lead-form textarea {
    min-height: 118px;
    border-radius: 16px;
  }

  .lead-success {
    min-height: 340px;
    padding: 26px 18px;
    border-radius: 22px;
  }

  .success-check {
    width: 64px;
    height: 64px;
  }

  .success-check::after {
    top: 19px;
    left: 16px;
    width: 27px;
    height: 14px;
  }

  .lead-success h3 {
    font-size: 24px;
  }

  .site-footer {
    display: grid;
    justify-items: start;
    padding-bottom: 32px;
  }
}

@media (min-width: 760px) and (max-width: 1060px) {
  .hero-product-visual {
    min-height: 600px;
    max-width: 760px;
    width: 100%;
    justify-self: center;
  }

  .product-phone-shop {
    top: 142px;
    left: 76px;
  }

  .product-phone-delivery {
    top: 56px;
  }

  .product-phone-crm {
    top: 130px;
    right: 68px;
  }
}

@media (max-width: 759px) {
  .hero-product-visual {
    min-height: 520px;
    overflow: hidden;
  }

  .hero-product-visual::before {
    inset: 34px -28px 22px;
    border-radius: 34px;
  }

  .hero-glow-violet {
    width: 250px;
    height: 250px;
    top: 50px;
    right: 22px;
  }

  .hero-glow-blue {
    width: 190px;
    height: 190px;
    right: -10px;
    bottom: 70px;
  }

  .hero-glow-mint {
    width: 160px;
    height: 160px;
    left: 0;
    bottom: 80px;
  }

  .product-phone {
    width: 158px;
    height: 324px;
    padding: 8px;
    border-radius: 31px;
  }

  .product-phone::before {
    top: 13px;
    width: 54px;
    height: 16px;
  }

  .product-screen {
    border-radius: 24px;
  }

  .phone-status {
    padding: 34px 11px 8px;
    font-size: 8px;
  }

  .phone-status span:last-child {
    width: 25px;
    height: 8px;
  }

  .product-phone-shop {
    top: 128px;
    left: -6px;
    transform: rotateY(-18deg) rotateX(7deg) rotateZ(-9deg);
  }

  .product-phone-delivery {
    top: 42px;
    left: 50%;
    width: 182px;
    height: 374px;
    transform: translateX(-50%) rotateY(-5deg) rotateX(7deg) rotateZ(1deg);
  }

  .product-phone-crm {
    top: 124px;
    right: -4px;
    transform: rotateY(17deg) rotateX(7deg) rotateZ(9deg);
  }

  .shop-ui,
  .delivery-ui,
  .crm-ui {
    padding-inline: 9px;
    padding-bottom: 9px;
  }

  .shop-banner {
    min-height: 60px;
    padding: 12px;
    border-radius: 18px;
  }

  .shop-banner strong {
    font-size: 15px;
  }

  .shop-categories {
    gap: 5px;
    margin: 8px 0;
  }

  .shop-categories span {
    height: 18px;
  }

  .product-grid {
    gap: 6px;
  }

  .product-grid article {
    min-height: 73px;
    padding: 6px;
    border-radius: 14px;
  }

  .product-grid i {
    height: 32px;
    margin-bottom: 6px;
    border-radius: 10px;
  }

  .product-grid b {
    font-size: 8px;
  }

  .cart-bar {
    min-height: 34px;
    margin-top: 7px;
    border-radius: 13px;
    font-size: 9px;
  }

  .cart-bar strong {
    width: 19px;
    height: 19px;
  }

  .delivery-map {
    height: 158px;
    border-radius: 20px;
    background-size: 24px 24px, 24px 24px, auto, auto, auto;
  }

  .route-line {
    left: 30px;
    right: 30px;
    top: 78px;
    height: 52px;
    border-width: 3px;
  }

  .map-pin {
    width: 16px;
    height: 16px;
    border-width: 3px;
  }

  .pin-start { left: 24px; top: 58px; }
  .pin-courier { left: 82px; top: 94px; }
  .pin-finish { right: 24px; bottom: 34px; }

  .delivery-card {
    margin-top: -26px;
    padding: 12px;
    border-radius: 17px;
  }

  .delivery-card strong {
    font-size: 22px;
  }

  .delivery-progress {
    height: 6px;
    margin-top: 10px;
  }

  .delivery-steps {
    gap: 5px;
    margin-top: 9px;
  }

  .delivery-steps span {
    min-height: 32px;
    padding: 8px 4px;
    border-radius: 12px;
    font-size: 7px;
  }

  .crm-top {
    padding: 13px;
    border-radius: 18px;
  }

  .crm-top strong {
    font-size: 25px;
  }

  .crm-stats {
    gap: 5px;
    margin-top: 8px;
  }

  .crm-stats article {
    min-height: 47px;
    padding: 8px 5px;
    border-radius: 12px;
  }

  .crm-stats span {
    font-size: 6px;
  }

  .crm-stats b {
    font-size: 10px;
  }

  .sales-chart {
    height: 90px;
    gap: 5px;
    margin-top: 9px;
    padding: 10px;
    border-radius: 17px;
  }

  .crm-list {
    gap: 6px;
    margin-top: 9px;
  }

  .crm-list span {
    height: 24px;
    border-radius: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
