:root {
  --about-bg: #08090d;
  --about-bg-soft: #0d0f14;
  --about-panel: #11141b;
  --about-panel-2: #151922;
  --about-ink: #f7f7fb;
  --about-muted: #9ba2b0;
  --about-muted-2: #707785;
  --about-line: rgba(255, 255, 255, 0.09);
  --about-line-strong: rgba(255, 255, 255, 0.16);
  --about-purple: #8b5cf6;
  --about-purple-bright: #a855f7;
  --about-pink: #e946ef;
  --about-cyan: #55d8ff;
  --about-green: #3de3aa;
  --about-amber: #ffb44d;
  --about-radius: 24px;
  --about-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--about-bg);
  color: var(--about-ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

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

.about-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid var(--about-line);
  background: rgba(8, 9, 13, 0.82);
  backdrop-filter: blur(20px) saturate(150%);
}

.about-header__inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 28px;
}

.about-brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
}

.about-brand img {
  width: 52px;
  height: 44px;
  object-fit: contain;
}

.about-brand > span {
  display: grid;
  line-height: 1.08;
}

.about-brand strong {
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.about-brand small {
  margin-top: 5px;
  color: var(--about-muted-2);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-navigation {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.about-navigation a {
  position: relative;
  padding: 28px 0 26px;
  color: #b5bbc7;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.about-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--about-purple), var(--about-pink));
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.about-navigation a:hover {
  color: white;
}

.about-navigation a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.about-header__cta {
  min-width: max-content;
  padding: 10px 14px;
  border: 1px solid rgba(168, 85, 247, 0.45);
  border-radius: 11px;
  background: rgba(139, 92, 246, 0.1);
  color: #e8dcff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.about-header__login {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  gap: 7px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
  color: white;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.about-header__login:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.about-header__login svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.about-header__phone {
  display: grid;
  min-width: max-content;
  color: white;
  line-height: 1.05;
  text-decoration: none;
}

.about-header__phone small {
  color: var(--about-muted-2);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-header__phone strong {
  margin-top: 4px;
  font-size: 12px;
}

.about-navigation__manager {
  display: none;
}

.about-menu-button {
  display: none;
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 94px;
  background:
    linear-gradient(180deg, rgba(8, 9, 13, 0) 76%, var(--about-bg) 100%),
    radial-gradient(circle at 10% 12%, rgba(139, 92, 246, 0.16), transparent 30%),
    radial-gradient(circle at 88% 40%, rgba(233, 70, 239, 0.12), transparent 34%);
}

.about-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(180deg, black, transparent 85%);
  pointer-events: none;
}

.about-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.55;
  pointer-events: none;
}

.about-hero__glow--one {
  top: 130px;
  left: -260px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  box-shadow: inset 0 0 150px rgba(168, 85, 247, 0.11);
}

.about-hero__glow--two {
  right: -180px;
  bottom: -240px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(85, 216, 255, 0.12);
  box-shadow: inset 0 0 170px rgba(85, 216, 255, 0.08);
}

.about-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 640px;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 0.95fr);
  gap: clamp(56px, 7vw, 104px);
}

.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #b693ff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-eyebrow > span {
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  box-shadow: 0 0 16px currentColor;
}

.about-hero h1,
.about-section-heading h2,
.about-wms__copy h2,
.about-calculation__copy h2,
.about-contact h2 {
  margin: 0;
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.about-hero h1 {
  max-width: 720px;
}

.about-hero__title-main {
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: clamp(76px, 7.7vw, 112px);
  letter-spacing: -0.085em;
  line-height: 0.86;
  white-space: nowrap;
}

.about-hero__title-main em {
  background: linear-gradient(110deg, #b8a2ff 0%, #e64bf0 54%, #ff96dd 100%);
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.about-hero__title-main b {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.44em;
  font-weight: 500;
  letter-spacing: 0;
}

.about-hero__title-sub {
  display: block;
  max-width: 650px;
  margin-top: 26px;
  font-size: clamp(33px, 3.2vw, 47px);
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.about-hero__lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: #aeb4c0;
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.65;
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.about-hero__manager {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 17px;
  color: var(--about-muted);
  font-size: 11px;
  text-decoration: none;
}

.about-hero__cta-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: -6px 0 14px;
  color: #9d91b3;
  font-size: 10px;
}

.about-hero__cta-note span {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #42d392;
  box-shadow: 0 0 0 4px rgba(66, 211, 146, 0.1);
}

.about-hero__manager strong {
  color: white;
  font-size: 13px;
}

.about-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.about-button svg {
  width: 18px;
  height: 18px;
}

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

.about-button--primary {
  background: linear-gradient(112deg, #7048ee, #a53df2 58%, #df41dc);
  box-shadow: 0 15px 36px rgba(141, 70, 234, 0.3);
  color: white;
}

.about-button--primary:hover {
  box-shadow: 0 20px 44px rgba(141, 70, 234, 0.42);
}

.about-button--ghost {
  border-color: var(--about-line-strong);
  background: rgba(255, 255, 255, 0.035);
  color: white;
}

.about-hero__proof {
  display: grid;
  max-width: 630px;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.about-hero__proof > div {
  display: grid;
  padding: 15px 16px;
  border: 1px solid var(--about-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.about-hero__proof strong {
  color: #ece6ff;
  font-size: 13px;
}

.about-hero__proof span {
  margin-top: 4px;
  color: var(--about-muted-2);
  font-size: 11px;
  line-height: 1.45;
}

.about-hero__visual {
  position: relative;
  min-height: 610px;
  perspective: 1200px;
}

.about-hero__photo {
  position: absolute;
  inset: 12px 0 88px 58px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 30px;
  background: var(--about-panel);
  box-shadow: var(--about-shadow);
}

.about-hero__photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 58%, rgba(8, 9, 13, 0.65)),
    linear-gradient(90deg, rgba(74, 26, 122, 0.16), transparent 48%);
  content: "";
}

.about-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__screen {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 0;
  width: 84%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
  background: #090c1d;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.48);
  transform: rotateY(-5deg) rotateZ(-1.2deg);
}

.about-window {
  display: flex;
  height: 28px;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #111525;
}

.about-window > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4d5364;
}

.about-window > span:first-child {
  background: #ef5b83;
}

.about-window > span:nth-child(2) {
  background: #f4bd50;
}

.about-window > span:nth-child(3) {
  background: #49cf98;
}

.about-window small {
  margin-left: auto;
  color: #656c7d;
  font-size: 8px;
  font-weight: 700;
}

.about-hero__screen > img {
  width: 100%;
  height: auto;
}

.about-hero__badge {
  position: absolute;
  z-index: 4;
  display: grid;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  background: rgba(13, 15, 20, 0.88);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.about-hero__badge--capacity {
  top: 36px;
  right: -18px;
}

.about-hero__badge--capacity strong {
  background: linear-gradient(110deg, #ba9fff, #f66ce8);
  background-clip: text;
  color: transparent;
  font-size: 25px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.about-hero__badge--capacity span {
  margin-top: 5px;
  color: var(--about-muted);
  font-size: 10px;
  font-weight: 700;
}

.about-hero__badge--location {
  bottom: 83px;
  left: 20px;
  display: flex;
  max-width: 244px;
  align-items: center;
  gap: 9px;
  color: #d7dae1;
  font-size: 11px;
  font-weight: 700;
}

.about-hero__badge--location svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: #c893ff;
}

.about-facts {
  position: relative;
  z-index: 4;
  border-top: 1px solid var(--about-line);
  border-bottom: 1px solid var(--about-line);
  background: rgba(255, 255, 255, 0.018);
}

.about-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-fact {
  display: grid;
  min-height: 144px;
  align-content: center;
  padding: 30px 34px;
  border-right: 1px solid var(--about-line);
}

.about-fact:first-child {
  border-left: 1px solid var(--about-line);
}

.about-fact strong {
  color: white;
  font-size: clamp(27px, 2.4vw, 36px);
  font-weight: 820;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.about-fact span {
  margin-top: 8px;
  color: var(--about-muted);
  font-size: 12px;
}

.about-section {
  position: relative;
  padding: clamp(90px, 10vw, 136px) 0;
}

.about-section-heading {
  max-width: 780px;
  margin-bottom: 54px;
}

.about-section-heading--split {
  display: grid;
  max-width: none;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 76px;
}

.about-section-heading h2,
.about-wms__copy h2,
.about-calculation__copy h2,
.about-contact h2 {
  font-size: clamp(38px, 4.4vw, 60px);
}

.about-section-heading > p:last-child,
.about-section-heading--split > p,
.about-wms__copy > p,
.about-calculation__copy > p,
.about-contact__copy > p:last-child {
  margin: 22px 0 0;
  color: var(--about-muted);
  font-size: 16px;
  line-height: 1.72;
}

.about-section-heading--split > p {
  margin: 0 0 5px;
}

.about-advantages {
  background:
    radial-gradient(circle at 83% 18%, rgba(139, 92, 246, 0.08), transparent 26%),
    var(--about-bg);
}

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

.about-advantage {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--about-line);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    var(--about-panel);
}

.about-advantage::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--card-accent);
  content: "";
  filter: blur(60px);
  opacity: 0.11;
}

.about-advantage--violet { --card-accent: var(--about-purple); }
.about-advantage--pink { --card-accent: var(--about-pink); }
.about-advantage--cyan { --card-accent: var(--about-cyan); }
.about-advantage--green { --card-accent: var(--about-green); }
.about-advantage--amber { --card-accent: var(--about-amber); }
.about-advantage--blue { --card-accent: #5a83ff; }

.about-advantage__number {
  color: #555c69;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.about-advantage__dot {
  display: block;
  width: 12px;
  height: 12px;
  margin-top: 38px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: var(--card-accent);
  box-shadow: 0 0 22px var(--card-accent);
}

.about-advantage h3 {
  margin: 22px 0 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.about-advantage p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--about-muted);
  font-size: 14px;
  line-height: 1.65;
}

.about-workflow {
  border-top: 1px solid var(--about-line);
  border-bottom: 1px solid var(--about-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent),
    var(--about-bg-soft);
}

.about-route {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
}

.about-route li {
  position: relative;
  padding: 0 17px 0 0;
}

.about-route li:not(:last-child)::after {
  position: absolute;
  top: 22px;
  right: 0;
  left: 52px;
  height: 1px;
  background: linear-gradient(90deg, rgba(168, 85, 247, 0.6), rgba(255, 255, 255, 0.07));
  content: "";
}

.about-route__step {
  position: relative;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(168, 85, 247, 0.45);
  border-radius: 50%;
  background: #15111e;
  box-shadow: 0 0 28px rgba(139, 92, 246, 0.14);
  color: #c8a9ff;
  font-size: 11px;
  font-weight: 850;
}

.about-route__body {
  padding-top: 24px;
}

.about-route h3 {
  margin: 0;
  font-size: 17px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.about-route p {
  margin: 10px 0 0;
  color: var(--about-muted-2);
  font-size: 12px;
  line-height: 1.6;
}

.about-pricing {
  background:
    radial-gradient(circle at 2% 30%, rgba(233, 70, 239, 0.07), transparent 24%),
    var(--about-bg);
}

.about-tabs {
  border: 1px solid var(--about-line);
  border-radius: 24px;
  background: var(--about-panel);
  box-shadow: var(--about-shadow);
}

.about-tab-list {
  display: flex;
  gap: 6px;
  padding: 8px;
  border-bottom: 1px solid var(--about-line);
  overflow-x: auto;
  scrollbar-width: none;
}

.about-tab-list::-webkit-scrollbar {
  display: none;
}

.about-tab-list button {
  min-width: max-content;
  padding: 11px 16px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--about-muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.about-tab-list button[aria-selected="true"] {
  background: linear-gradient(110deg, rgba(112, 72, 238, 0.32), rgba(223, 65, 220, 0.22));
  box-shadow: inset 0 0 0 1px rgba(185, 128, 255, 0.25);
  color: white;
}

.about-tab-panel {
  padding: clamp(24px, 4vw, 42px);
}

.about-price-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.about-price-head h3 {
  margin: 0;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.about-price-head p {
  margin: 7px 0 0;
  color: var(--about-muted);
  font-size: 13px;
}

.about-price-head > span {
  min-width: max-content;
  padding: 7px 10px;
  border: 1px solid var(--about-line);
  border-radius: 999px;
  color: var(--about-muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-price-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
}

.about-price-row {
  display: grid;
  min-height: 56px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 18px;
  border-top: 1px solid var(--about-line);
}

.about-price-row span {
  padding: 12px 0;
  color: #c3c7cf;
  font-size: 13px;
  line-height: 1.45;
}

.about-price-row strong {
  color: white;
  font-size: 13px;
  text-align: right;
}

.about-pricing__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 18px;
  padding: 24px 26px;
  border: 1px solid rgba(139, 92, 246, 0.24);
  border-radius: 17px;
  background: linear-gradient(110deg, rgba(139, 92, 246, 0.1), rgba(233, 70, 239, 0.055));
}

.about-pricing__foot > div {
  display: grid;
}

.about-pricing__foot strong {
  font-size: 15px;
}

.about-pricing__foot span {
  margin-top: 4px;
  color: var(--about-muted);
  font-size: 12px;
}

.about-logistics {
  border-top: 1px solid var(--about-line);
  background:
    radial-gradient(circle at 88% 4%, rgba(85, 216, 255, 0.06), transparent 28%),
    var(--about-bg-soft);
}

.about-tabs--logistics {
  box-shadow: none;
}

.about-logistics-table {
  overflow: hidden;
  border: 1px solid var(--about-line);
  border-radius: 15px;
}

.about-logistics-row {
  display: grid;
  min-height: 62px;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-top: 1px solid var(--about-line);
  grid-template-columns: minmax(220px, 1.65fr) repeat(4, minmax(110px, 0.7fr));
}

.about-logistics-row:first-child {
  border-top: 0;
}

.about-logistics-row--head {
  min-height: 40px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--about-muted-2);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-logistics-row strong {
  font-size: 13px;
}

.about-logistics-row span {
  color: #b2b7c1;
  font-size: 12px;
}

.about-logistics-row:not(.about-logistics-row--head) span:nth-child(2),
.about-logistics-row:not(.about-logistics-row--head) span:nth-child(3) {
  color: white;
  font-weight: 750;
}

.about-status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--about-green);
  box-shadow: 0 0 10px var(--about-green);
  vertical-align: middle;
}

.about-ozon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-zone {
  overflow: hidden;
  border: 1px solid var(--about-line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.018);
}

.about-zone__head {
  padding: 23px;
  border-bottom: 1px solid var(--about-line);
}

.about-zone__head > span {
  color: #d2b8ff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-zone h3 {
  margin: 6px 0 7px;
  font-size: 22px;
}

.about-zone p {
  margin: 0;
  color: var(--about-muted);
  font-size: 11px;
  line-height: 1.55;
}

.about-zone__prices {
  padding: 8px 23px 16px;
}

.about-zone__prices > div,
.about-terminal__prices > div {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--about-line);
}

.about-zone__prices > div:last-child,
.about-terminal__prices > div:last-child {
  border-bottom: 0;
}

.about-zone__prices span,
.about-terminal__prices span {
  color: var(--about-muted);
  font-size: 12px;
}

.about-zone__prices strong,
.about-terminal__prices strong {
  font-size: 12px;
}

.about-logistics-note {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  padding: 15px 17px;
  border: 1px solid rgba(85, 216, 255, 0.14);
  border-radius: 13px;
  background: rgba(85, 216, 255, 0.045);
  font-size: 12px;
}

.about-logistics-note strong {
  min-width: max-content;
  color: #bdefff;
}

.about-logistics-note span {
  color: var(--about-muted);
}

.about-region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.about-region {
  padding: 18px;
  border: 1px solid var(--about-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.018);
}

.about-region__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.about-region h3 {
  margin: 0;
  font-size: 16px;
}

.about-region__top > span {
  color: var(--about-muted-2);
  font-size: 9px;
  font-weight: 750;
}

.about-region dl {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
}

.about-region dl > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.about-region dt {
  color: var(--about-muted-2);
  font-size: 10px;
}

.about-region dd {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  text-align: right;
}

.about-terminal {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 14px;
  padding: 28px;
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 17px;
  background: linear-gradient(110deg, rgba(139, 92, 246, 0.07), transparent);
}

.about-terminal .about-eyebrow {
  margin-bottom: 10px;
}

.about-terminal h3 {
  margin: 0;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.about-terminal__prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 22px;
}

.about-logistics-table--fbs .about-logistics-row {
  grid-template-columns: 0.7fr 1.4fr repeat(3, 0.8fr);
}

.about-unit-calculator {
  border-top: 1px solid var(--about-line);
  border-bottom: 1px solid var(--about-line);
  background:
    radial-gradient(circle at 8% 8%, rgba(139, 92, 246, 0.15), transparent 28%),
    radial-gradient(circle at 92% 74%, rgba(85, 216, 255, 0.07), transparent 26%),
    #090b11;
}

.about-calculator {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
}

.about-calculator__workspace {
  display: grid;
  gap: 16px;
}

.about-calc-batch,
.about-calc-step,
.about-calculator__result {
  border: 1px solid var(--about-line);
  border-radius: 22px;
  background: rgba(17, 20, 27, 0.9);
  box-shadow: var(--about-shadow);
}

.about-calc-batch {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(190px, 0.45fr) 1fr;
  gap: 26px;
  padding: 24px;
}

.about-calc-batch__head {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.about-calc-batch__head > span,
.about-calc-step legend > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 11px;
  background: rgba(139, 92, 246, 0.1);
  color: #cbb3ff;
  font-size: 9px;
  font-weight: 850;
}

.about-calc-batch h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.about-calc-batch p {
  margin: 4px 0 0;
  color: var(--about-muted-2);
  font-size: 10px;
}

.about-calc-fields {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.about-calc-fields > label {
  display: grid;
  gap: 6px;
}

.about-calc-fields > label > span,
.about-calc-select > span {
  color: var(--about-muted);
  font-size: 9px;
  font-weight: 750;
}

.about-calc-fields > label > div {
  display: flex;
  min-width: 0;
  align-items: center;
  border: 1px solid var(--about-line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
}

.about-calc-fields input {
  min-width: 0;
  width: 100%;
  padding: 10px 4px 10px 11px;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
  font-size: 14px;
  font-weight: 800;
}

.about-calc-fields small {
  padding-right: 9px;
  color: var(--about-muted-2);
  font-size: 8px;
  font-weight: 750;
}

.about-calculator__steps {
  display: grid;
  gap: 16px;
}

.about-calc-step {
  min-width: 0;
  margin: 0;
  padding: 26px;
}

.about-calc-step legend {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 20px;
  padding: 0 10px 0 0;
}

.about-calc-step legend > span {
  background: linear-gradient(130deg, rgba(112, 72, 238, 0.23), rgba(223, 65, 220, 0.16));
}

.about-calc-step legend > div {
  display: grid;
}

.about-calc-step legend strong {
  font-size: 23px;
  letter-spacing: -0.035em;
}

.about-calc-step legend small {
  color: var(--about-muted-2);
  font-size: 10px;
}

.about-calc-operations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.about-calc-operation {
  display: grid;
  min-width: 0;
  min-height: 65px;
  align-items: center;
  grid-template-columns: 20px minmax(0, 1fr) max-content;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid var(--about-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease;
}

.about-calc-operation:has(input:checked) {
  border-color: rgba(168, 85, 247, 0.4);
  background: linear-gradient(110deg, rgba(139, 92, 246, 0.11), rgba(233, 70, 239, 0.045));
}

.about-calc-operation input,
.about-delivery-models input,
.about-delivery-kind input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.about-calc-operation__check {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: white;
}

.about-calc-operation input:checked + .about-calc-operation__check {
  border-color: transparent;
  background: linear-gradient(130deg, var(--about-purple), var(--about-pink));
}

.about-calc-operation input:checked + .about-calc-operation__check::after {
  width: 7px;
  height: 4px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
  transform: translateY(-1px) rotate(-45deg);
}

.about-calc-operation__copy {
  display: grid;
  min-width: 0;
}

.about-calc-operation__copy strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.about-calc-operation__copy small {
  margin-top: 2px;
  color: var(--about-muted-2);
  font-size: 8px;
}

.about-calc-operation > b {
  color: #d7c7ff;
  font-size: 9px;
  white-space: nowrap;
}

.about-calc-step__note {
  margin: 16px 0 0;
  color: var(--about-muted-2);
  font-size: 9px;
  line-height: 1.55;
}

.about-delivery-models {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.about-delivery-models label,
.about-delivery-kind label {
  cursor: pointer;
}

.about-delivery-models label > span {
  display: grid;
  min-height: 68px;
  align-content: center;
  padding: 10px 12px;
  border: 1px solid var(--about-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
}

.about-delivery-models input:checked + span {
  border-color: rgba(168, 85, 247, 0.5);
  background: linear-gradient(120deg, rgba(112, 72, 238, 0.25), rgba(223, 65, 220, 0.13));
}

.about-delivery-models strong {
  font-size: 12px;
}

.about-delivery-models small {
  margin-top: 3px;
  color: var(--about-muted-2);
  font-size: 8px;
}

.about-delivery-panel {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-top: 16px;
}

.about-calc-select {
  display: grid;
  gap: 6px;
}

.about-calc-select select {
  min-height: 45px;
  width: 100%;
  padding: 0 34px 0 13px;
  border: 1px solid var(--about-line);
  border-radius: 11px;
  outline: 0;
  background: #121620;
  color: white;
  font-size: 11px;
  font-weight: 750;
}

.about-delivery-kind {
  display: flex;
  padding: 4px;
  border: 1px solid var(--about-line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.018);
}

.about-delivery-kind span {
  display: grid;
  min-height: 35px;
  place-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--about-muted);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.about-delivery-kind input:checked + span {
  background: rgba(139, 92, 246, 0.22);
  color: white;
}

.about-delivery-kind input:disabled + span {
  cursor: not-allowed;
  opacity: 0.35;
}

.about-delivery-panel--none {
  grid-template-columns: 1fr;
  padding: 16px;
  border: 1px solid var(--about-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.about-delivery-panel--none strong {
  font-size: 12px;
}

.about-delivery-panel--none span {
  color: var(--about-muted-2);
  font-size: 10px;
}

.about-delivery-formula {
  display: grid;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(85, 216, 255, 0.14);
  border-radius: 12px;
  background: rgba(85, 216, 255, 0.04);
}

.about-delivery-formula small {
  color: var(--about-muted-2);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-delivery-formula strong {
  margin-top: 4px;
  color: #c8f2ff;
  font-size: 12px;
}

.about-calculator__result {
  position: sticky;
  top: 98px;
  padding: 25px;
  background:
    radial-gradient(circle at 92% 0, rgba(233, 70, 239, 0.14), transparent 34%),
    rgba(17, 20, 27, 0.96);
}

.about-calculator__result .about-eyebrow {
  margin-bottom: 12px;
}

.about-calculator__summary {
  color: var(--about-muted);
  font-size: 10px;
}

.about-calculator__breakdown {
  display: grid;
  gap: 0;
  margin: 22px 0;
}

.about-calculator__breakdown > div {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--about-line);
}

.about-calculator__breakdown > div:last-child {
  border-bottom: 1px solid var(--about-line);
}

.about-calculator__breakdown dt {
  color: var(--about-muted);
  font-size: 11px;
}

.about-calculator__breakdown dd {
  margin: 0;
  font-size: 13px;
  font-weight: 850;
}

.about-calculator__grand {
  display: grid;
  padding: 18px;
  border-radius: 15px;
  background: linear-gradient(120deg, #6541db, #9a3ce5 55%, #c93bc8);
}

.about-calculator__grand small,
.about-calculator__unit-grid small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-calculator__grand strong {
  margin-top: 5px;
  font-size: 36px;
  letter-spacing: -0.055em;
  line-height: 1;
}

.about-calculator__unit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 8px 0 18px;
}

.about-calculator__unit-grid > div {
  display: grid;
  min-width: 0;
  padding: 13px;
  border: 1px solid var(--about-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.about-calculator__unit-grid strong {
  margin-top: 3px;
  overflow: hidden;
  font-size: 16px;
  letter-spacing: -0.03em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.about-calculator__result .about-button {
  width: 100%;
}

.about-calculator__manager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding: 12px 13px;
  border: 1px solid var(--about-line);
  border-radius: 11px;
  color: var(--about-muted);
  font-size: 9px;
  text-decoration: none;
}

.about-calculator__manager strong {
  color: white;
  font-size: 12px;
}

.about-calculator__disclaimer {
  margin: 15px 0 0;
  color: var(--about-muted-2);
  font-size: 8px;
  line-height: 1.55;
}

.about-wms {
  overflow: hidden;
  border-top: 1px solid var(--about-line);
  border-bottom: 1px solid var(--about-line);
  background:
    radial-gradient(circle at 7% 32%, rgba(139, 92, 246, 0.16), transparent 28%),
    radial-gradient(circle at 95% 65%, rgba(85, 216, 255, 0.08), transparent 25%),
    #090b11;
}

.about-wms__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(340px, 0.72fr) minmax(540px, 1.2fr);
  gap: clamp(70px, 8vw, 120px);
}

.about-wms__copy > p {
  max-width: 530px;
}

.about-wms__copy ul {
  display: grid;
  gap: 17px;
  margin: 34px 0 36px;
  padding: 0;
  list-style: none;
}

.about-wms__copy li {
  display: grid;
  align-items: start;
  grid-template-columns: 34px 1fr;
  gap: 13px;
}

.about-wms__copy li > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 9px;
  color: #c3a3ff;
  font-size: 9px;
  font-weight: 850;
}

.about-wms__copy li > div {
  display: grid;
}

.about-wms__copy li strong {
  font-size: 14px;
}

.about-wms__copy li small {
  margin-top: 3px;
  color: var(--about-muted-2);
  font-size: 11px;
  line-height: 1.5;
}

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

.about-wms-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 17px;
  background: #080b1c;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
}

.about-wms-card img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
  object-position: top;
}

.about-wms-card--1 {
  grid-column: 1 / -1;
}

.about-wms-card--2 {
  width: auto;
}

.about-wms-card--3 {
  width: auto;
  opacity: 1;
}

.about-wms-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 62px;
}

.about-wms-strip figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--about-line);
  border-radius: 15px;
  background: #0a0d1c;
}

.about-wms-strip img {
  width: 100%;
  aspect-ratio: 1.76;
  object-fit: cover;
  object-position: top;
}

.about-wms-strip figcaption {
  padding: 12px 14px;
  border-top: 1px solid var(--about-line);
  color: #b7bcc6;
  font-size: 11px;
  font-weight: 750;
}

.about-warehouse {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent),
    var(--about-bg);
}

.about-gallery {
  display: grid;
  grid-auto-rows: 280px;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.about-gallery__item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--about-line);
  border-radius: 18px;
  background: var(--about-panel);
}

.about-gallery__item--1 {
  grid-column: span 6;
  grid-row: span 2;
}

.about-gallery__item--2,
.about-gallery__item--3 {
  grid-column: span 3;
}

.about-gallery__item--4,
.about-gallery__item--5,
.about-gallery__item--6 {
  grid-column: span 4;
}

.about-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.about-gallery__item:hover img {
  transform: scale(1.025);
}

.about-gallery figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  background: rgba(8, 9, 13, 0.76);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 11px;
  font-weight: 700;
}

.about-reputation {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--about-line);
  background:
    radial-gradient(circle at 86% 8%, rgba(255, 197, 61, 0.08), transparent 30%),
    radial-gradient(circle at 9% 72%, rgba(230, 43, 43, 0.07), transparent 26%),
    #0a0b0f;
}

.about-reputation::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(180deg, black, transparent 72%);
  pointer-events: none;
}

.about-reputation .about-shell {
  position: relative;
}

.about-reputation__feature {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(380px, 0.76fr) minmax(560px, 1.24fr);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 27px;
  background: rgba(17, 19, 25, 0.9);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.34);
}

.about-reputation__copy {
  position: relative;
  z-index: 2;
  padding: clamp(34px, 4.5vw, 58px);
  border-right: 1px solid var(--about-line);
}

.about-yandex-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: #d8dbe2;
  font-size: 12px;
}

.about-yandex-mark > span {
  display: grid;
  width: 33px;
  height: 33px;
  border-radius: 9px;
  background: #fc3f1d;
  box-shadow: 0 10px 26px rgba(252, 63, 29, 0.21);
  color: white;
  font-size: 19px;
  font-weight: 850;
  place-items: center;
}

.about-yandex-mark strong {
  font-weight: 780;
}

.about-reputation__copy h2 {
  max-width: 560px;
  margin: 13px 0 20px;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.about-reputation__copy > p:not(.about-eyebrow) {
  max-width: 540px;
  margin: 0;
  color: var(--about-muted);
  font-size: 14px;
}

.about-yandex-rating {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 30px 0 26px;
}

.about-yandex-rating > strong {
  font-size: 58px;
  font-weight: 820;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.about-yandex-rating > div {
  display: grid;
  gap: 4px;
}

.about-review-stars {
  color: #ffcc32;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.about-yandex-rating small {
  color: #8e96a5;
  font-size: 10px;
  font-weight: 700;
}

.about-reputation__address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
  padding: 15px 0;
  border-top: 1px solid var(--about-line);
  border-bottom: 1px solid var(--about-line);
}

.about-reputation__address svg {
  width: 20px;
  min-width: 20px;
  margin-top: 2px;
  color: #fc6f55;
}

.about-reputation__address > div {
  display: grid;
  gap: 3px;
}

.about-reputation__address small {
  color: var(--about-muted-2);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-reputation__address strong {
  max-width: 470px;
  color: #eceef2;
  font-size: 12px;
  line-height: 1.45;
}

.about-reputation__address span {
  color: #8e96a5;
  font-size: 10px;
}

.about-button--yandex {
  width: 100%;
  justify-content: space-between;
  border: 1px solid rgba(252, 63, 29, 0.58);
  background: #fc3f1d;
  box-shadow: 0 14px 34px rgba(252, 63, 29, 0.2);
  color: white;
}

.about-button--yandex:hover {
  border-color: #ff7258;
  background: #e93718;
}

.about-map-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #191a1e;
}

.about-map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: saturate(0.82) contrast(1.03);
}

.about-map-card__bar {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  left: 16px;
  display: flex;
  min-height: 47px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 10px 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  background: rgba(9, 10, 14, 0.9);
  box-shadow: 0 13px 34px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
}

.about-map-card__bar > span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: white;
  font-size: 11px;
  font-weight: 780;
}

.about-map-card__bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fc3f1d;
  box-shadow: 0 0 0 5px rgba(252, 63, 29, 0.13);
}

.about-map-card__bar a {
  padding: 7px 10px;
  border-radius: 8px;
  background: white;
  color: #16171a;
  font-size: 9px;
  font-weight: 850;
  text-decoration: none;
}

.about-reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin: 62px 0 22px;
}

.about-reviews-head > div {
  display: grid;
}

.about-reviews-head small {
  color: #7e8592;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-reviews-head h3 {
  margin: 6px 0 0;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.about-reviews-head > a,
.about-reviews-cta > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d5d8de;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.about-reviews-head svg,
.about-reviews-cta svg {
  width: 17px;
}

.about-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.about-review-card {
  display: flex;
  min-height: 248px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--about-line);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 44%),
    rgba(16, 18, 23, 0.82);
  transition: border-color 180ms ease, transform 180ms ease;
}

.about-review-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.about-review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.about-review-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #7e8592;
  font-size: 9px;
  font-weight: 750;
}

.about-review-source i {
  display: grid;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: #fc3f1d;
  color: white;
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  place-items: center;
}

.about-review-card blockquote {
  flex: 1;
  margin: 25px 0 28px;
  color: #d9dce2;
  font-size: 14px;
  line-height: 1.65;
}

.about-review-card footer {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 15px;
  border-top: 1px solid var(--about-line);
}

.about-review-card footer > span {
  display: grid;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: #191c24;
  color: white;
  font-size: 12px;
  font-weight: 850;
  place-items: center;
}

.about-review-card footer > div {
  display: grid;
}

.about-review-card footer strong {
  font-size: 11px;
}

.about-review-card footer small {
  margin-top: 1px;
  color: var(--about-muted-2);
  font-size: 8px;
}

.about-reviews-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
}

.about-reviews-cta > div {
  display: grid;
}

.about-reviews-cta strong {
  font-size: 12px;
}

.about-reviews-cta span {
  color: var(--about-muted-2);
  font-size: 10px;
}

.about-reviews-cta > a {
  min-width: max-content;
  padding: 9px 12px;
  border-radius: 9px;
  background: #fc3f1d;
  color: white;
}

.about-calculation {
  border-top: 1px solid var(--about-line);
  background:
    radial-gradient(circle at 15% 25%, rgba(233, 70, 239, 0.08), transparent 28%),
    var(--about-bg-soft);
}

.about-calculation__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(300px, 0.68fr) minmax(580px, 1fr);
  gap: clamp(70px, 8vw, 120px);
}

.about-calculation__copy {
  position: sticky;
  top: 118px;
}

.about-calculation__copy > p {
  max-width: 450px;
}

.about-calculation__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.about-calculation__meta span {
  padding: 7px 10px;
  border: 1px solid var(--about-line);
  border-radius: 999px;
  color: var(--about-muted);
  font-size: 10px;
  font-weight: 750;
}

.about-calc-card {
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 23px;
  background:
    linear-gradient(145deg, rgba(139, 92, 246, 0.08), transparent 24%),
    var(--about-panel);
  box-shadow: var(--about-shadow);
}

.about-calc-card__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
  padding: 28px;
  border-bottom: 1px solid var(--about-line);
}

.about-calc-card__head small {
  color: #cba9ff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-calc-card__head h3 {
  margin: 6px 0 6px;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.about-calc-card__head p {
  margin: 0;
  color: var(--about-muted);
  font-size: 11px;
}

.about-calc-card__head > span {
  padding: 7px 10px;
  border: 1px solid rgba(168, 85, 247, 0.28);
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.08);
  color: #d2bcff;
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.about-calc-table {
  padding: 10px 28px;
}

.about-calc-row {
  display: grid;
  min-height: 51px;
  align-items: center;
  grid-template-columns: minmax(0, 1.6fr) minmax(110px, 0.75fr) minmax(82px, 0.48fr);
  gap: 18px;
  border-bottom: 1px solid var(--about-line);
}

.about-calc-row--head {
  min-height: 34px;
  color: var(--about-muted-2);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-calc-row strong,
.about-calc-row span {
  font-size: 11px;
}

.about-calc-row strong {
  color: #d7dae1;
}

.about-calc-row:not(.about-calc-row--head) span:nth-child(2) {
  color: var(--about-muted);
}

.about-calc-row:not(.about-calc-row--head) span:last-child {
  color: white;
  font-weight: 800;
  text-align: right;
}

.about-calc-total {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 0 28px;
  overflow: hidden;
  border: 1px solid rgba(196, 114, 255, 0.27);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
}

.about-calc-total > div {
  display: grid;
  padding: 18px 20px;
  background: linear-gradient(110deg, rgba(112, 72, 238, 0.72), rgba(223, 65, 220, 0.65));
}

.about-calc-total small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-calc-total strong {
  margin-top: 4px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.about-calc-card__note {
  margin: 0;
  padding: 18px 28px 24px;
  color: var(--about-muted-2);
  font-size: 10px;
  line-height: 1.55;
}

.about-contact {
  padding: 0 0 clamp(90px, 10vw, 136px);
  background: var(--about-bg-soft);
}

.about-contact__card {
  position: relative;
  display: grid;
  overflow: hidden;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.4fr);
  gap: 80px;
  padding: clamp(42px, 6vw, 76px);
  border: 1px solid rgba(209, 144, 255, 0.3);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 5%, rgba(255, 255, 255, 0.16), transparent 25%),
    linear-gradient(120deg, #5f32d3, #8f32d6 58%, #cc3bc7);
  box-shadow: 0 32px 90px rgba(110, 49, 196, 0.3);
}

.about-contact__noise {
  position: absolute;
  inset: 0;
  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: 34px 34px;
  mask-image: linear-gradient(90deg, black, transparent 78%);
  opacity: 0.2;
}

.about-contact__copy,
.about-contact__actions {
  position: relative;
  z-index: 2;
}

.about-contact .about-eyebrow {
  color: #e6d6ff;
}

.about-contact__copy > p:last-child {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.75);
}

.about-contact__actions {
  display: grid;
}

.about-contact__telegram {
  display: grid;
  gap: 9px;
}

.about-button--white {
  background: white;
  box-shadow: 0 14px 30px rgba(39, 12, 81, 0.22);
  color: #4f239a;
}

.about-button--telegram {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(17, 10, 44, 0.18);
  color: white;
}

.about-button--telegram:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(17, 10, 44, 0.28);
}

.about-contact__phones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.about-contact__phones a {
  display: grid;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.07);
  color: white;
  text-decoration: none;
}

.about-contact__phones small {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
}

.about-contact__phones strong {
  margin-top: 3px;
  font-size: 12px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.about-contact__actions small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.about-footer {
  padding: 58px 0 26px;
  border-top: 1px solid var(--about-line);
  background: #06070a;
}

.about-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.8fr 0.72fr;
  gap: 56px;
}

.about-brand--footer img {
  width: 62px;
  height: 52px;
}

.about-footer__grid > div:first-child > p {
  max-width: 280px;
  margin: 18px 0 0;
  color: var(--about-muted-2);
  font-size: 12px;
}

.about-footer__column {
  display: grid;
  align-content: start;
  gap: 8px;
  color: var(--about-muted);
  font-size: 12px;
}

.about-footer__column > small {
  margin-bottom: 6px;
  color: #5f6673;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-footer__column > strong {
  color: white;
  font-size: 13px;
}

.about-footer__column a {
  text-decoration: none;
}

.about-footer__phone {
  color: white;
  font-size: 14px;
  font-weight: 800;
}

.about-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--about-line);
  color: #555c68;
  font-size: 9px;
}

@media (max-width: 1120px) {
  .about-navigation {
    gap: 14px;
  }

  .about-navigation a {
    font-size: 11px;
  }

  .about-header__cta {
    display: none;
  }

  .about-header__phone {
    display: none;
  }

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

  .about-hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.78fr);
    gap: 48px;
  }

  .about-route {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 52px;
  }

  .about-route li:nth-child(3)::after {
    display: none;
  }

  .about-region-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-wms__grid {
    grid-template-columns: 0.8fr 1fr;
    gap: 55px;
  }

  .about-reputation__feature {
    grid-template-columns: minmax(350px, 0.82fr) minmax(470px, 1.18fr);
  }

}

@media (max-width: 900px) {
  body.about-menu-open {
    overflow: hidden;
  }

  .about-shell {
    width: min(680px, calc(100% - 32px));
  }

  .about-header__inner {
    min-height: 68px;
  }

  .about-menu-button {
    display: grid;
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 12px 10px;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--about-line);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.035);
    color: white;
  }

  .about-menu-button > span:not(.sr-only) {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .about-menu-button[aria-expanded="true"] > span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .about-menu-button[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .about-navigation {
    position: fixed;
    z-index: 99;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    gap: 0;
    overflow: hidden;
    margin: 0;
    border-bottom: 1px solid var(--about-line);
    background: rgba(8, 9, 13, 0.98);
    opacity: 0;
    transition: max-height 220ms ease, opacity 160ms ease;
  }

  .about-navigation.is-open {
    max-height: calc(100vh - 68px);
    padding: 10px 16px 22px;
    opacity: 1;
  }

  .about-navigation a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--about-line);
    font-size: 14px;
  }

  .about-navigation a::after {
    display: none;
  }

  .about-navigation__manager {
    display: block;
    color: #e1d4ff !important;
  }

  .about-navigation__login {
    color: white !important;
    font-weight: 850 !important;
  }

  .about-header__login {
    display: none;
  }

  .about-hero {
    padding-top: 120px;
  }

  .about-hero__grid,
  .about-section-heading--split,
  .about-calculator,
  .about-wms__grid,
  .about-reputation__feature,
  .about-calculation__grid,
  .about-contact__card {
    grid-template-columns: 1fr;
  }

  .about-hero__grid {
    gap: 62px;
  }

  .about-hero__visual {
    min-height: 570px;
  }

  .about-hero__photo {
    left: 44px;
  }

  .about-facts__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-fact {
    min-height: 124px;
  }

  .about-section-heading--split {
    gap: 0;
  }

  .about-section-heading--split > p {
    margin-top: 22px;
  }

  .about-advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-price-table {
    grid-template-columns: 1fr;
  }

  .about-calculator__result {
    position: static;
  }

  .about-logistics-row {
    min-width: 800px;
  }

  .about-logistics-table {
    overflow-x: auto;
  }

  .about-ozon-grid,
  .about-terminal {
    grid-template-columns: 1fr;
  }

  .about-terminal {
    gap: 24px;
  }

  .about-wms__grid {
    gap: 40px;
  }

  .about-calculation__copy {
    position: static;
  }

  .about-reputation__copy {
    border-right: 0;
    border-bottom: 1px solid var(--about-line);
  }

  .about-map-card,
  .about-map-card iframe {
    min-height: 440px;
  }

  .about-review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-calculation__grid {
    gap: 52px;
  }

  .about-contact__card {
    gap: 40px;
  }

  .about-footer__grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (max-width: 620px) {
  .about-shell {
    width: min(100% - 24px, 520px);
  }

  .about-brand img {
    width: 48px;
    height: 40px;
  }

  .about-brand small {
    display: none;
  }

  .about-hero {
    padding: 106px 0 70px;
  }

  .about-hero h1 {
    font-size: inherit;
  }

  .about-hero__title-main {
    gap: 10px;
    font-size: clamp(66px, 19vw, 84px);
  }

  .about-hero__title-sub {
    margin-top: 22px;
    font-size: clamp(31px, 9.8vw, 42px);
  }

  .about-hero__lead {
    font-size: 16px;
  }

  .about-hero__actions {
    display: grid;
  }

  .about-button {
    width: 100%;
  }

  .about-hero__proof {
    grid-template-columns: 1fr;
  }

  .about-hero__visual {
    min-height: 430px;
  }

  .about-hero__photo {
    inset: 0 0 48px 20px;
    border-radius: 22px;
  }

  .about-hero__screen {
    right: 16px;
    width: 72%;
  }

  .about-hero__badge--capacity {
    top: 18px;
    right: -3px;
  }

  .about-hero__badge--location {
    bottom: 45px;
    left: 0;
    max-width: 210px;
  }

  .about-fact {
    min-height: 112px;
    padding: 20px 16px;
  }

  .about-fact strong {
    font-size: 25px;
  }

  .about-fact span {
    font-size: 10px;
  }

  .about-section {
    padding: 82px 0;
  }

  .about-section-heading {
    margin-bottom: 38px;
  }

  .about-section-heading h2,
  .about-wms__copy h2,
  .about-calculation__copy h2,
  .about-contact h2 {
    font-size: clamp(34px, 10.5vw, 46px);
  }

  .about-advantage-grid,
  .about-region-grid {
    grid-template-columns: 1fr;
  }

  .about-advantage {
    min-height: auto;
  }

  .about-route {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .about-route li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 0 0 34px;
  }

  .about-route li:not(:last-child)::after {
    top: 44px;
    right: auto;
    bottom: 0;
    left: 21px;
    display: block;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.6), rgba(255, 255, 255, 0.07));
  }

  .about-route__body {
    padding-top: 2px;
  }

  .about-tab-panel {
    padding: 20px 16px;
  }

  .about-tab-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .about-tab-list button {
    min-width: 0;
    width: 100%;
  }

  .about-price-head {
    display: grid;
  }

  .about-price-head > span {
    justify-self: start;
  }

  .about-price-row {
    min-height: 62px;
    align-items: start;
    padding: 12px 0;
  }

  .about-price-row span {
    padding: 0;
    font-size: 12px;
  }

  .about-price-row strong {
    font-size: 12px;
  }

  .about-pricing__foot {
    display: grid;
  }

  .about-ozon-grid {
    grid-template-columns: 1fr;
  }

  .about-logistics-table {
    display: grid;
    gap: 10px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .about-logistics-row {
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
    padding: 16px;
    border: 1px solid var(--about-line);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.018);
  }

  .about-logistics-row--head {
    display: none;
  }

  .about-logistics-row strong {
    grid-column: 1 / -1;
    padding-bottom: 11px;
    font-size: 14px;
  }

  .about-logistics-row span {
    display: block;
    padding: 9px 0;
    border-top: 1px solid var(--about-line);
    line-height: 1.4;
  }

  .about-logistics-row span::before {
    display: block;
    margin-bottom: 3px;
    color: var(--about-muted-2);
    content: attr(data-label);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .about-logistics-table--fbs .about-logistics-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-logistics-note {
    display: grid;
  }

  .about-calc-batch {
    grid-template-columns: 1fr;
  }

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

  .about-calc-fields > label:last-child {
    grid-column: 1 / -1;
  }

  .about-calc-operations {
    grid-template-columns: 1fr;
  }

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

  .about-delivery-panel {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .about-delivery-kind {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .about-terminal {
    padding: 20px;
  }

  .about-terminal__prices {
    grid-template-columns: 1fr;
  }

  .about-wms__stage {
    grid-template-columns: 1fr;
  }

  .about-wms-card--1 {
    grid-column: auto;
  }

  .about-wms-strip {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .about-gallery {
    grid-auto-rows: 270px;
    grid-template-columns: 1fr;
  }

  .about-gallery__item--1,
  .about-gallery__item--2,
  .about-gallery__item--3,
  .about-gallery__item--4,
  .about-gallery__item--5,
  .about-gallery__item--6 {
    grid-column: auto;
    grid-row: auto;
  }

  .about-reputation__feature {
    border-radius: 20px;
  }

  .about-reputation__copy {
    padding: 30px 22px;
  }

  .about-reputation__copy h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .about-yandex-rating > strong {
    font-size: 50px;
  }

  .about-map-card,
  .about-map-card iframe {
    min-height: 380px;
  }

  .about-map-card__bar {
    right: 10px;
    left: 10px;
  }

  .about-map-card__bar > span {
    font-size: 10px;
  }

  .about-map-card__bar a {
    display: none;
  }

  .about-reviews-head {
    align-items: start;
    margin-top: 46px;
  }

  .about-reviews-head > a {
    padding-top: 7px;
  }

  .about-review-grid {
    width: calc(100vw - 12px);
    grid-auto-columns: minmax(284px, 84vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    margin-right: -12px;
    padding: 0 12px 12px 0;
    scroll-snap-type: x mandatory;
  }

  .about-review-card {
    min-height: 260px;
    scroll-snap-align: start;
  }

  .about-reviews-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .about-reviews-cta > a {
    justify-content: space-between;
  }

  .about-calc-card__head {
    display: grid;
    padding: 22px 18px;
  }

  .about-calc-card__head > span {
    justify-self: start;
  }

  .about-calc-table {
    padding: 8px 18px;
  }

  .about-calc-row {
    min-height: 62px;
    grid-template-columns: minmax(0, 1.3fr) minmax(78px, 0.62fr);
    gap: 12px;
  }

  .about-calc-row:not(.about-calc-row--head) span:nth-child(2) {
    display: none;
  }

  .about-calc-row--head span:nth-child(2) {
    display: none;
  }

  .about-calc-total {
    margin: 0 18px;
  }

  .about-calc-total strong {
    font-size: 21px;
  }

  .about-calc-card__note {
    padding: 17px 18px 22px;
  }

  .about-contact {
    padding-bottom: 0;
  }

  .about-contact__card {
    width: 100%;
    padding: 42px 24px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .about-footer__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-footer__bottom {
    display: grid;
  }
}

body.about-lead-open {
  overflow: hidden;
}

.about-lead-modal {
  position: fixed;
  z-index: 400;
  inset: 0;
  display: grid;
  overflow: auto;
  padding: 28px;
  place-items: center;
}

.about-lead-modal__backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(2, 3, 7, 0.82);
  backdrop-filter: blur(16px);
  cursor: default;
}

.about-lead-dialog {
  position: relative;
  display: grid;
  width: min(1080px, 100%);
  max-height: calc(100vh - 56px);
  overflow: auto;
  grid-template-columns: minmax(310px, 0.78fr) minmax(520px, 1.22fr);
  border: 1px solid var(--about-line-strong);
  border-radius: 26px;
  background: #0c0e13;
  box-shadow: 0 44px 140px rgba(0, 0, 0, 0.66);
  isolation: isolate;
}

.about-lead-dialog::before {
  position: absolute;
  z-index: -1;
  width: 460px;
  height: 460px;
  top: -280px;
  left: -170px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.18);
  filter: blur(80px);
  content: "";
}

.about-lead-dialog__close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 10px;
  place-items: center;
  border: 1px solid var(--about-line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--about-muted);
  cursor: pointer;
}

.about-lead-dialog__close:hover {
  border-color: var(--about-line-strong);
  color: white;
}

.about-lead-dialog__intro {
  position: sticky;
  top: 0;
  align-self: stretch;
  min-height: 100%;
  padding: 60px 46px 46px;
  border-right: 1px solid var(--about-line);
  background:
    linear-gradient(180deg, rgba(139, 92, 246, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.012);
}

.about-lead-dialog__number {
  margin-bottom: 64px;
  color: rgba(255, 255, 255, 0.12);
  font-size: 68px;
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 1;
}

.about-lead-dialog__intro h2,
.about-lead-success h2 {
  margin: 18px 0 16px;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.about-lead-dialog__intro > p:not(.about-eyebrow),
.about-lead-success > p:not(.about-eyebrow) {
  margin: 0;
  color: var(--about-muted);
  font-size: 14px;
  line-height: 1.65;
}

.about-lead-dialog__promise {
  display: grid;
  gap: 10px;
  margin-top: 36px;
}

.about-lead-dialog__promise span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c7ccd6;
  font-size: 11px;
  font-weight: 650;
}

.about-lead-dialog__promise span::before {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--about-green);
  box-shadow: 0 0 0 4px rgba(61, 227, 170, 0.08);
  content: "";
}

.about-lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 18px 14px;
  padding: 58px 58px 46px 42px;
}

.about-lead-field,
.about-lead-choice {
  display: grid;
  min-width: 0;
  gap: 7px;
  margin: 0;
  padding: 0;
  border: 0;
}

.about-lead-field--wide,
.about-lead-choice {
  grid-column: 1 / -1;
}

.about-lead-field > span,
.about-lead-choice legend {
  color: #c7ccd6;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.about-lead-field b,
.about-lead-choice b {
  color: var(--about-pink);
}

.about-lead-field input,
.about-lead-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--about-line);
  border-radius: 11px;
  outline: 0;
  background: rgba(255, 255, 255, 0.035);
  color: white;
  font: inherit;
  font-size: 13px;
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.about-lead-field textarea {
  min-height: 86px;
  resize: vertical;
}

.about-lead-field input::placeholder,
.about-lead-field textarea::placeholder {
  color: #5f6672;
}

.about-lead-field input:focus,
.about-lead-field textarea:focus {
  border-color: rgba(168, 85, 247, 0.7);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.12);
}

.about-lead-field input.is-invalid {
  border-color: rgba(255, 93, 115, 0.72);
}

.about-lead-field small,
.about-lead-choice small,
.about-lead-consent-error {
  min-height: 13px;
  color: #ff7e91;
  font-size: 9px;
}

.about-lead-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-lead-choice legend {
  width: 100%;
  margin-bottom: 1px;
}

.about-lead-choice label {
  cursor: pointer;
}

.about-lead-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.about-lead-choice label span {
  display: block;
  padding: 8px 11px;
  border: 1px solid var(--about-line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.025);
  color: #aeb4c0;
  font-size: 10px;
  font-weight: 720;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
}

.about-lead-choice input:checked + span {
  border-color: rgba(168, 85, 247, 0.58);
  background: rgba(139, 92, 246, 0.14);
  color: white;
}

.about-lead-choice input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.18);
}

.about-lead-honeypot {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
}

.about-lead-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--about-muted);
  font-size: 10px;
  line-height: 1.5;
}

.about-lead-consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  flex: 0 0 16px;
  accent-color: var(--about-purple);
}

.about-lead-consent a {
  color: white;
  text-underline-offset: 3px;
}

.about-lead-consent-error {
  grid-column: 1 / -1;
  margin-top: -14px;
}

.about-lead-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 2px;
  padding-top: 20px;
  border-top: 1px solid var(--about-line);
}

.about-lead-form__footer > div {
  display: grid;
  gap: 3px;
}

.about-lead-form__footer strong {
  font-size: 11px;
}

.about-lead-form__footer span {
  color: var(--about-muted-2);
  font-size: 9px;
}

.about-lead-form__footer .about-button {
  min-width: 188px;
  justify-content: center;
}

.about-lead-form__footer .about-button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.about-lead-form__error {
  padding: 10px 12px;
  border: 1px solid rgba(255, 93, 115, 0.28);
  border-radius: 9px;
  background: rgba(255, 93, 115, 0.07);
  color: #ff9aaa;
  font-size: 10px;
}

.about-lead-success {
  grid-column: 1 / -1;
  min-height: 570px;
  padding: 84px min(10vw, 120px);
  text-align: center;
}

.about-lead-success__icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto 30px;
  padding: 17px;
  place-items: center;
  border: 1px solid rgba(61, 227, 170, 0.3);
  border-radius: 18px;
  background: rgba(61, 227, 170, 0.09);
  color: var(--about-green);
}

.about-lead-success h2:focus {
  outline: 0;
}

.about-lead-success__actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.about-contact__direct {
  align-self: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  text-underline-offset: 4px;
}

.about-contact__direct:hover {
  color: white;
}

.about-legal {
  min-height: 100vh;
  padding: 150px 0 90px;
}

.about-legal__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(520px, 1.2fr);
  gap: 90px;
}

.about-legal__layout > aside {
  position: sticky;
  top: 130px;
  align-self: start;
}

.about-legal__layout h1 {
  margin: 18px 0;
  font-size: clamp(38px, 5vw, 68px);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.about-legal__layout aside > p:last-child {
  color: var(--about-muted);
  font-size: 14px;
}

.about-legal__document {
  overflow: hidden;
  border: 1px solid var(--about-line);
  border-radius: 22px;
  background: var(--about-panel);
}

.about-legal__document section {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0 18px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--about-line);
}

.about-legal__document section > small {
  grid-row: 1 / 3;
  color: var(--about-purple-bright);
  font-weight: 800;
}

.about-legal__document h2 {
  margin: 0 0 10px;
  font-size: 19px;
}

.about-legal__document p {
  margin: 0 0 10px;
  color: var(--about-muted);
  font-size: 13px;
}

.about-legal__document p:last-child {
  margin-bottom: 0;
}

.about-legal__document a {
  color: white;
}

.about-legal__updated {
  margin: 0;
  padding: 17px 32px;
  color: var(--about-muted-2);
  font-size: 9px;
}

@media (max-width: 900px) {
  .about-lead-modal {
    padding: 14px;
  }

  .about-lead-dialog {
    max-height: calc(100vh - 28px);
    grid-template-columns: 1fr;
  }

  .about-lead-dialog__intro {
    position: static;
    min-height: auto;
    padding: 38px 34px 28px;
    border-right: 0;
    border-bottom: 1px solid var(--about-line);
  }

  .about-lead-dialog__number {
    display: none;
  }

  .about-lead-dialog__promise {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 24px;
  }

  .about-lead-form {
    padding: 34px;
  }

  .about-legal__layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-legal__layout > aside {
    position: static;
  }
}

@media (max-width: 620px) {
  .about-lead-modal {
    display: block;
    padding: 0;
  }

  .about-lead-dialog {
    min-height: 100%;
    max-height: none;
    border-width: 0;
    border-radius: 0;
  }

  .about-lead-dialog__close {
    position: fixed;
    top: 12px;
    right: 12px;
    background: rgba(12, 14, 19, 0.9);
  }

  .about-lead-dialog__intro {
    padding: 54px 22px 25px;
  }

  .about-lead-dialog__intro h2,
  .about-lead-success h2 {
    font-size: 32px;
  }

  .about-lead-dialog__promise {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .about-lead-form {
    grid-template-columns: 1fr;
    padding: 28px 22px 42px;
  }

  .about-lead-field--wide,
  .about-lead-choice,
  .about-lead-consent-error {
    grid-column: auto;
  }

  .about-lead-form__footer {
    display: grid;
  }

  .about-lead-success {
    min-height: 100vh;
    padding: 110px 24px 60px;
  }

  .about-lead-success__actions {
    display: grid;
  }

  .about-legal {
    padding: 116px 0 60px;
  }

  .about-legal__document section {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .about-legal__document section > small {
    grid-row: auto;
    margin-bottom: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
