:root {
  --bg: #ffffff;
  --text: #0a0a0a;
  --muted: #6f7177;
  --soft: #f8f7f4;
  --soft-strong: #efeee9;
  --border: #deded8;
  --border-strong: #cfcfc8;
  --vk: #2787f5;
  --vk-soft: #eaf4ff;
  --success: #1f8b4c;
  --shadow: 0 24px 80px rgba(10, 10, 10, 0.08);
  --radius-card: 16px;
  --max: 1232px;
  font-family:
    Inter, "SF Pro Display", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 74% 18%, rgba(39, 135, 245, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fbfaf8 100%);
  color: var(--text);
}

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

.site-header {
  width: min(var(--max), calc(100% - 48px));
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand-logo-smartcrew {
  height: 28px;
}

.brand-logo-vk {
  height: 22px;
}

.collab-mark {
  color: rgba(10, 10, 10, 0.38);
  font-size: 18px;
  font-weight: 520;
  line-height: 1;
  transform: translateY(-1px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
}

.nav-links a {
  transition: color 150ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    background-color 150ms ease;
}

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

.button:focus-visible {
  outline: 3px solid rgba(39, 135, 245, 0.28);
  outline-offset: 3px;
}

.button-primary {
  background: var(--text);
  color: #fff;
}

.header-brief-button {
  position: relative;
  isolation: isolate;
  overflow: visible;
  white-space: nowrap;
}

.header-brief-mobile-line::before {
  content: " ";
}

.header-brief-button::before {
  position: absolute;
  inset: -4px;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background: conic-gradient(
    from 28deg,
    #2aa8ff,
    #ff78b7,
    #ffe045,
    #30c36b,
    #ff5248,
    #2aa8ff
  );
  opacity: 0;
  filter: blur(0);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    filter 180ms ease;
}

.header-brief-button:hover::before,
.header-brief-button:focus-visible::before {
  opacity: 1;
  transform: rotate(2deg) scale(1.015);
  filter: saturate(1.12);
}

.button-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--border-strong);
}

.button-large {
  min-height: 48px;
  padding: 0 22px;
}

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

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 64px));
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(460px, 1fr);
  grid-template-rows: auto auto;
  align-items: start;
  align-content: start;
  column-gap: 48px;
  row-gap: 0;
  padding: 56px 0 34px;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  max-width: 652px;
}

.hero-conversion {
  grid-column: 1;
  grid-row: 2;
  max-width: 652px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  border: 1px solid rgba(39, 135, 245, 0.18);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(234, 244, 255, 0.72);
  color: #165ea9;
  font-size: 13px;
  font-weight: 650;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 999px;
  background: var(--vk);
  box-shadow: 0 0 0 5px rgba(39, 135, 245, 0.13);
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 650px;
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 560;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 610px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.48;
  letter-spacing: -0.015em;
}

.hero-actions {
  margin-top: 34px;
}

.benchmarks {
  margin-top: 34px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.benchmarks + .hero-actions {
  margin-top: 28px;
}

.benchmarks-head {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.benchmarks-head span {
  color: var(--text);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benchmark-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
}

.benchmark-rail div {
  min-height: 94px;
  padding: 4px 20px 0 0;
}

.benchmark-rail div + div {
  border-left: 1px solid var(--border);
  padding-left: 20px;
}

.benchmark-rail dt {
  margin: 0;
  font-size: 28px;
  font-weight: 640;
  line-height: 1;
  letter-spacing: -0.04em;
}

.benchmark-rail dd {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-system {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: absolute;
  top: 66px;
  right: -15%;
  width: min(58vw, 760px);
  display: grid;
  gap: 14px;
  align-self: start;
  padding-top: 0;
  pointer-events: none;
}

.system-card,
.insight-card,
.illustration-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(248, 247, 244, 0.86);
  box-shadow: var(--shadow);
}

.illustration-card {
  position: relative;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.illustration-card img {
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
  border-radius: 0;
  filter: saturate(0.98) contrast(0.98);
  animation: hero-float 7s ease-in-out infinite;
}

.hero-handnote {
  position: absolute;
  z-index: 2;
  top: 73%;
  left: 2%;
  width: 238px;
  color: var(--text);
  font-family: Inter, "SF Pro Display", "Segoe UI", Arial, sans-serif;
  font-size: 23px;
  font-style: italic;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.05em;
  transform: rotate(-7deg);
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.9),
    0 0 18px rgba(255, 255, 255, 0.86);
  pointer-events: none;
}

.hero-handnote span {
  display: block;
  max-width: 220px;
}

.hero-handnote svg {
  position: absolute;
  top: 26px;
  left: 135px;
  width: 160px;
  height: auto;
  overflow: visible;
  fill: none;
  stroke: var(--text);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(3deg);
  filter: drop-shadow(0 3px 0 rgba(255, 255, 255, 0.95));
}

.system-card {
  padding: 20px;
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 4px 18px;
}

.card-kicker {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-header h2 {
  margin-top: 8px;
  font-size: 30px;
  font-weight: 560;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.status-pill {
  flex: 0 0 auto;
  border: 1px solid rgba(31, 139, 76, 0.16);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(31, 139, 76, 0.08);
  color: var(--success);
  font-size: 12px;
  font-weight: 700;
}

.flow-stack {
  display: grid;
  gap: 8px;
}

.flow-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.68);
}

.flow-step span {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--soft-strong);
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.flow-step strong {
  font-size: 15px;
  line-height: 1.1;
}

.flow-step p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.36;
}

.flow-step.is-active {
  border-color: rgba(39, 135, 245, 0.26);
  background: var(--vk-soft);
}

.flow-step.is-active span {
  background: var(--vk);
  color: #fff;
}

.chat-preview {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  border-radius: 18px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(39, 135, 245, 0.1), transparent),
    #fff;
}

.message {
  max-width: 82%;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.36;
}

.message-user {
  justify-self: end;
  border-bottom-right-radius: 6px;
  background: var(--vk);
  color: #fff;
}

.message-brand {
  justify-self: start;
  border-bottom-left-radius: 6px;
  background: var(--soft);
  color: #232323;
}

.insight-card {
  display: grid;
  gap: 10px;
  padding: 20px 22px;
  background: #0d0d0d;
  color: #fff;
  box-shadow: none;
}

.insight-card span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-card strong {
  max-width: 430px;
  font-size: 22px;
  font-weight: 560;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.insight-card p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.46;
}

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

.problem-section {
  padding-top: 56px;
}

.section-header {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-header.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-kicker,
.card-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--vk);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-header h2,
.section-copy h2,
.final-cta h2 {
  max-width: 820px;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 560;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.section-header p,
.section-copy p,
.final-cta p {
  max-width: 690px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.55fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.approach-layout .section-header {
  margin-bottom: 0;
}

.approach-layout .section-header h2 {
  max-width: 780px;
}

.approach-layout .experience-card {
  min-height: auto;
}

.approach-layout .experience-card > strong {
  font-size: clamp(74px, 9vw, 118px);
}

.problem-grid,
.workflow-grid,
.cases-grid,
.launch-grid,
.split-section,
.fit-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 20px;
}

.large-card,
.quote-card,
.experience-card,
.signal-card,
.evidence-card,
.definition-card,
.funnel-visual,
.asset-placeholder,
.table-card,
.launch-card,
.module-grid article {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
}

.experience-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  padding: 32px;
  background:
    radial-gradient(circle at 82% 18%, rgba(39, 135, 245, 0.18), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
}

.experience-card::after {
  position: absolute;
  right: -70px;
  bottom: -86px;
  width: 240px;
  height: 240px;
  content: "";
  border: 28px solid rgba(39, 135, 245, 0.12);
  border-radius: 999px;
}

.experience-card > strong {
  display: block;
  margin: 18px 0 16px;
  font-size: clamp(86px, 12vw, 148px);
  font-weight: 560;
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.experience-card p {
  position: relative;
  z-index: 1;
  max-width: 470px;
}

.pulse-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pulse-list span {
  border: 1px solid rgba(39, 135, 245, 0.2);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.76);
  color: #165ea9;
  font-size: 13px;
  font-weight: 720;
}

.signal-card {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 24px;
  min-height: 380px;
  overflow: hidden;
  padding: 30px;
  background: #0b0b0b;
  color: #fff;
}

.signal-card::before {
  position: absolute;
  inset: auto -70px -90px auto;
  width: 260px;
  height: 260px;
  content: "";
  border-radius: 999px;
  background: rgba(39, 135, 245, 0.26);
  filter: blur(8px);
}

.signal-card > span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-card strong {
  position: relative;
  z-index: 1;
  font-size: 27px;
  font-weight: 560;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.signal-ladder {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
}

.signal-ladder i {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-style: normal;
  font-weight: 690;
}

.signal-ladder i::after {
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 999px;
  background: var(--vk);
  box-shadow: 0 0 0 5px rgba(39, 135, 245, 0.16);
}

.evidence-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 22px;
  background:
    radial-gradient(circle at 82% 14%, rgba(39, 135, 245, 0.16), transparent 32%),
    #0d0d0d;
  color: #fff;
}

.evidence-head {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  max-width: 430px;
  margin-bottom: 18px;
}

.evidence-head span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evidence-head strong {
  font-size: 26px;
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.evidence-showcase {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(150px, 0.72fr);
  gap: 12px;
}

.evidence-stack {
  display: grid;
  gap: 12px;
}

.evidence-tile,
.evidence-post {
  margin: 0;
}

.evidence-tile {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.evidence-tile img,
.evidence-tile video,
.evidence-post img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.evidence-tile-main img {
  aspect-ratio: 1.18;
  object-position: top center;
}

.evidence-stack .evidence-tile img,
.evidence-stack .evidence-tile video {
  aspect-ratio: 1.42;
  object-position: top center;
}

.evidence-stack .evidence-tile img[src$=".gif"] {
  width: min(82%, 178px);
  aspect-ratio: 1;
  margin: 12px auto 0;
  border-radius: 999px;
  object-fit: cover;
}

.evidence-tile figcaption {
  padding: 9px 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.evidence-post {
  position: absolute;
  right: 18px;
  bottom: -86px;
  z-index: 1;
  width: 58%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  opacity: 0.3;
  transform: rotate(-2deg);
}

.evidence-post img {
  aspect-ratio: 1.45;
  object-position: bottom center;
}

.proof-board {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 26px;
  background:
    radial-gradient(circle at 76% 16%, rgba(39, 135, 245, 0.2), transparent 32%),
    #0d0d0d;
  color: #fff;
}

.proof-board-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 18px;
}

.proof-board-head span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-board-head strong {
  max-width: 560px;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 560;
  line-height: 1;
  letter-spacing: -0.04em;
  text-align: right;
}

.proof-cjm {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.proof-cjm::before {
  position: absolute;
  top: 116px;
  right: 9%;
  left: 9%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(39, 135, 245, 0.16), rgba(39, 135, 245, 0.72), rgba(255, 255, 255, 0.12));
}

.cjm-card {
  position: relative;
  z-index: 1;
  min-width: 0;
  margin: 0;
  display: grid;
  grid-template-rows: 30px 1fr auto;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.cjm-card > span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--vk);
  color: #fff;
  font-size: 12px;
  font-weight: 820;
  box-shadow: 0 0 0 7px rgba(39, 135, 245, 0.13);
}

.cjm-card img,
.cjm-card video {
  width: 100%;
  align-self: center;
  justify-self: center;
  display: block;
}

.cjm-card img {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  object-fit: contain;
}

.cjm-card video {
  width: min(100%, 210px);
  aspect-ratio: 1;
  border-radius: 999px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.cjm-evidence-stack {
  align-self: center;
  justify-self: center;
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.cjm-video-backplate {
  width: min(100%, 156px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08), 0 18px 42px rgba(0, 0, 0, 0.22);
}

.cjm-video-backplate video {
  width: 100%;
  background: #fff;
}

.cjm-card-scale img {
  width: 100%;
  max-height: 118px;
  padding: 0;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}

.cjm-card:not(.cjm-card-video) img {
  aspect-ratio: 1.05;
  padding: 8px;
}

.cjm-card.cjm-card-survey img {
  height: 240px;
  aspect-ratio: auto;
  padding: 0;
  object-fit: contain;
  object-position: center;
}

.cjm-card figcaption {
  min-height: 42px;
  display: flex;
  align-items: end;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.large-card {
  min-height: 360px;
  padding: 32px;
}

.large-card p,
.quote-card p,
.definition-card p,
.asset-placeholder p,
.launch-card p,
.module-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.mini-funnel {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 40px 0;
}

.mini-funnel span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--soft);
  font-size: 14px;
  font-weight: 700;
}

.mini-funnel i {
  width: 36px;
  height: 1px;
  background: var(--border-strong);
}

.quote-card {
  display: grid;
  align-content: end;
  gap: 16px;
  min-height: 360px;
  padding: 30px;
  background: #0d0d0d;
  color: #fff;
}

.quote-card span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-card strong {
  font-size: 25px;
  font-weight: 560;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.split-section,
.fit-section {
  align-items: center;
}

.speed-callout {
  position: relative;
  max-width: 430px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(39, 135, 245, 0.2);
  border-radius: 22px;
  padding: 20px 22px;
  background:
    radial-gradient(circle at 92% 12%, rgba(39, 135, 245, 0.16), transparent 38%),
    rgba(234, 244, 255, 0.78);
}

.speed-callout::after {
  position: absolute;
  right: -34px;
  bottom: -38px;
  width: 116px;
  height: 116px;
  content: "";
  border: 18px solid rgba(39, 135, 245, 0.12);
  border-radius: 999px;
}

.speed-callout span {
  position: relative;
  z-index: 1;
  display: block;
  color: #165ea9;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.speed-callout strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 10px;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 620;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.section-copy {
  max-width: 700px;
}

.funnel-flow {
  position: relative;
  display: grid;
  gap: 12px;
  max-width: 650px;
  margin-top: 26px;
}

.funnel-flow::before {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 17px;
  content: "";
  border-left: 1px solid rgba(39, 135, 245, 0.22);
}

.funnel-flow div {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.funnel-flow span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid rgba(39, 135, 245, 0.2);
  border-radius: 999px;
  background: rgba(234, 244, 255, 0.88);
  color: #165ea9;
  font-size: 13px;
  font-weight: 760;
}

.funnel-flow p {
  max-width: 510px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.42;
  letter-spacing: -0.01em;
}

.definition-card {
  padding: 30px;
  background: var(--soft);
}

.funnel-visual {
  position: relative;
  min-height: 470px;
  margin: 0;
  display: grid;
  align-items: center;
  overflow: visible;
  border: 0;
  background: transparent;
}

.funnel-visual::before {
  position: absolute;
  inset: 9% -4% 6% 4%;
  content: "";
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 191, 215, 0.34), transparent 36%),
    radial-gradient(circle at 70% 22%, rgba(39, 135, 245, 0.12), transparent 36%);
  filter: blur(4px);
}

.funnel-visual img {
  position: relative;
  z-index: 1;
  width: min(116%, 700px);
  max-width: none;
  height: auto;
  transform: translateX(-4%);
  animation: soft-float 8s ease-in-out infinite;
}

.conversion-callout {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  margin: -40px 0 0 18px;
  border: 1px solid rgba(39, 135, 245, 0.22);
  border-radius: 22px;
  padding: 20px 22px;
  background:
    radial-gradient(circle at 92% 10%, rgba(39, 135, 245, 0.16), transparent 36%),
    rgba(255, 255, 255, 0.9);
  color: var(--text);
  box-shadow: 0 18px 60px rgba(10, 10, 10, 0.08);
}

.conversion-callout span {
  display: block;
  color: var(--vk);
  font-size: clamp(54px, 6vw, 78px);
  font-weight: 650;
  line-height: 0.82;
  letter-spacing: -0.07em;
}

.conversion-callout strong {
  display: block;
  max-width: 300px;
  margin-top: 12px;
  font-size: 19px;
  font-weight: 620;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.definition-card > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.definition-card strong {
  display: block;
  margin-top: 24px;
  font-size: 27px;
  font-weight: 560;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

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

.not-list p {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 12px;
  background: #fff;
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
}

.step-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.workflow-section .section-header {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.62fr);
  gap: 32px;
  align-items: end;
}

.workflow-section .section-header p {
  margin-top: 0;
}

.workflow-grid {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(39, 135, 245, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.64);
}

.step-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  border: 0;
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 28px rgba(10, 10, 10, 0.035);
}

.step-list span,
.module-grid article span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--vk-soft);
  color: var(--vk);
  font-size: 12px;
  font-weight: 800;
}

.step-list strong {
  font-size: 17px;
  line-height: 1.16;
}

.step-list p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.asset-placeholder {
  min-height: 100%;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(39, 135, 245, 0.08), transparent 48%),
    var(--soft);
}

.workflow-grid .asset-placeholder {
  border: 0;
  background:
    radial-gradient(circle at 72% 22%, rgba(39, 135, 245, 0.18), transparent 30%),
    #0d0d0d;
  color: #fff;
}

.workflow-grid .asset-placeholder p {
  color: rgba(255, 255, 255, 0.66);
}

.asset-placeholder span {
  width: fit-content;
  border: 1px dashed rgba(39, 135, 245, 0.36);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--vk);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.asset-placeholder strong {
  max-width: 440px;
  font-size: 28px;
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.journey-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border: 0;
  border-radius: 0;
  padding: 30px 0 10px;
  background: transparent;
}

.journey-line::before {
  position: absolute;
  top: 47px;
  right: 7%;
  left: 3%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(39, 135, 245, 0.16), rgba(39, 135, 245, 0.76), rgba(10, 10, 10, 0.18));
}

.journey-line div {
  position: relative;
  min-height: 120px;
  padding-right: 18px;
}

.journey-line div:not(:last-child)::after {
  display: none;
}

.journey-line span {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: block;
  border: 8px solid var(--vk-soft);
  border-radius: 999px;
  background: var(--vk);
  transition: transform 180ms ease;
}

.journey-line div:hover span {
  transform: scale(1.12);
}

.journey-line p {
  max-width: 150px;
  margin-top: 18px;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.need-method {
  display: grid;
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.need-thesis {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 26px;
  padding: 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(39, 135, 245, 0.3), transparent 34%),
    #0d0d0d;
  color: #fff;
}

.need-thesis::after {
  position: absolute;
  right: -72px;
  bottom: -72px;
  width: 210px;
  height: 210px;
  content: "";
  border: 32px solid rgba(39, 135, 245, 0.16);
  border-radius: 999px;
}

.need-thesis span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.need-thesis strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 380px;
  margin-top: 24px;
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 560;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.need-thesis p {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.42;
  letter-spacing: -0.01em;
}

.need-ladder {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.need-ladder li {
  position: relative;
  min-height: 204px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px 18px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 247, 244, 0.64));
}

.need-ladder li::before {
  position: absolute;
  inset: auto 14px 14px auto;
  width: 58px;
  height: 58px;
  content: "";
  border-radius: 999px;
  background: rgba(39, 135, 245, 0.08);
}

.need-ladder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--vk);
  color: #fff;
  font-size: 13px;
  font-weight: 780;
}

.need-ladder strong {
  display: block;
  max-width: 190px;
  margin-top: 28px;
  font-size: clamp(20px, 1.45vw, 24px);
  font-weight: 620;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.need-ladder p {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  margin: 0;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 620;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

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

.system-section .section-header {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.55fr);
  gap: 24px;
  align-items: end;
}

.system-section .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.system-section .section-header h2 {
  grid-column: 1;
  max-width: 760px;
}

.methodology-note {
  grid-column: 2;
  overflow: hidden;
  border: 1px solid rgba(39, 135, 245, 0.18);
  border-radius: 22px;
  padding: 20px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 120, 183, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(234, 244, 255, 0.88), rgba(255, 255, 255, 0.76));
}

.methodology-note span {
  color: var(--vk);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.methodology-note strong {
  display: block;
  margin-top: 9px;
  font-size: 22px;
  font-weight: 610;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.methodology-note strong:first-child {
  margin-top: 0;
}

.methodology-note p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.module-grid article {
  min-height: 275px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.module-grid article:nth-child(even) {
  transform: translateY(24px);
}

.module-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(10, 10, 10, 0.07);
}

.module-grid article:nth-child(even):hover {
  transform: translateY(16px);
}

.module-grid h3 {
  margin: 34px 0 12px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  border-radius: 28px;
  padding: 26px;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 191, 215, 0.18), transparent 34%),
    #0d0d0d;
}

.pill-cloud span,
.model-tags span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 15px;
  background: #fff;
  font-size: 14px;
  font-weight: 650;
}

.pill-cloud span {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.pill-cloud span:nth-child(3n + 1) {
  transform: translateY(-8px);
}

.pill-cloud span:nth-child(3n) {
  background: rgba(39, 135, 245, 0.22);
}

.table-card {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(10, 10, 10, 0.06);
}

.table-row {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 1fr);
  min-width: 760px;
}

.table-row span {
  border-bottom: 1px solid var(--border);
  padding: 18px;
  color: var(--muted);
  font-size: 14px;
}

.table-row span + span {
  border-left: 1px solid var(--border);
}

.table-row.table-head span {
  background: var(--soft);
  color: var(--text);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cases-section {
  position: relative;
}

.economy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
  gap: 20px;
  align-items: stretch;
}

.benchmark-table-card,
.economy-impact-card,
.client-proof {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(10, 10, 10, 0.05);
}

.benchmark-table-card {
  overflow: hidden;
}

.economy-impact-card span,
.client-proof-head span,
.ordinary-businesses > span {
  color: var(--vk);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benchmark-table {
  overflow-x: auto;
}

.benchmark-row {
  display: grid;
  grid-template-columns: minmax(210px, 1.1fr) minmax(130px, 0.5fr) minmax(260px, 1.2fr);
  min-width: 720px;
}

.benchmark-row > span,
.benchmark-row > strong {
  display: flex;
  align-items: center;
  min-height: 70px;
  border-top: 1px solid var(--border);
  padding: 16px 20px;
}

.benchmark-row > span + span,
.benchmark-row > span + strong,
.benchmark-row > strong + span {
  border-left: 1px solid var(--border);
}

.benchmark-row span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.28;
}

.benchmark-row strong {
  color: var(--text);
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 620;
  line-height: 1;
  letter-spacing: -0.055em;
}

.benchmark-row-head {
  background: rgba(246, 248, 251, 0.92);
}

.benchmark-row-head > span {
  min-height: 46px;
  color: var(--text);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.economy-impact-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 100%;
  overflow: hidden;
  padding: 30px;
  background:
    radial-gradient(circle at 88% 16%, rgba(39, 135, 245, 0.26), transparent 32%),
    #0d0d0d;
  color: #fff;
}

.economy-impact-card::after {
  position: absolute;
  right: -68px;
  bottom: -76px;
  width: 210px;
  height: 210px;
  content: "";
  border: 28px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.economy-impact-card span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.58);
}

.economy-impact-card strong {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  font-size: clamp(92px, 13vw, 154px);
  font-weight: 620;
  line-height: 0.78;
  letter-spacing: -0.09em;
}

.economy-impact-card p {
  position: relative;
  z-index: 1;
  max-width: 330px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.42;
}

.client-proof {
  display: grid;
  gap: 22px;
  margin-top: 20px;
  padding: 28px;
}

.client-proof-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: 20px;
  align-items: end;
}

.client-proof-head strong {
  justify-self: end;
  max-width: 500px;
  font-size: clamp(26px, 3.1vw, 42px);
  font-weight: 580;
  line-height: 1;
  letter-spacing: -0.055em;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 98px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 248, 251, 0.78));
}

.client-logo-card img {
  display: block;
  max-width: 92%;
  max-height: 58px;
  object-fit: contain;
}

.client-logo-card:nth-child(3) img,
.client-logo-card:nth-child(7) img,
.client-logo-card:nth-child(9) img {
  max-width: 94%;
  max-height: 46px;
}

.client-logo-card:nth-child(8) img {
  max-height: 52px;
}

.client-logo-card:nth-child(10) img {
  max-width: 58%;
  max-height: 78px;
}

.ordinary-businesses {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

.ordinary-businesses div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ordinary-businesses i {
  border: 1px solid rgba(39, 135, 245, 0.2);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(234, 244, 255, 0.72);
  color: #165ea9;
  font-size: 14px;
  font-style: normal;
  font-weight: 720;
}

.launch-card {
  padding: 30px;
}

.launch-card.is-primary {
  background: #0d0d0d;
  color: #fff;
}

.launch-card > span {
  color: var(--vk);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-card h3 {
  margin: 12px 0;
  font-size: 34px;
  font-weight: 560;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.launch-card strong {
  display: block;
  margin-bottom: 20px;
  font-size: 24px;
}

.launch-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.model-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 80px;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px;
  background:
    radial-gradient(circle at 80% 20%, rgba(39, 135, 245, 0.14), transparent 28%),
    #0d0d0d;
  color: #fff;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.68);
}

.final-cta .button-primary {
  flex: 0 0 auto;
  background: #fff;
  color: #0d0d0d;
}

body.modal-open {
  overflow: hidden;
}

.site-footer {
  padding: 0 0 38px;
}

.footer-inner {
  width: min(100% - 48px, var(--max));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr) minmax(260px, 0.64fr);
  gap: 20px;
  margin: 0 auto;
  border-radius: 30px;
  padding: 28px;
  background:
    radial-gradient(circle at 78% 10%, rgba(39, 135, 245, 0.22), transparent 32%),
    #0d0d0d;
  color: #fff;
}

.footer-brand,
.footer-contact-card,
.footer-legal {
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-brand {
  display: grid;
  align-content: space-between;
  gap: 24px;
}

.footer-brand .brand {
  width: fit-content;
  filter: invert(1) grayscale(1) brightness(2.8);
}

.footer-brand .collab-mark {
  color: rgba(255, 255, 255, 0.46);
}

.footer-brand p,
.footer-legal p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.45;
}

.footer-contact-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.footer-contact-photo {
  width: 104px;
  height: 104px;
  border: 3px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  object-fit: cover;
  object-position: 50% 28%;
}

.footer-contact-card div,
.footer-legal {
  display: grid;
  align-content: center;
  gap: 10px;
}

.footer-contact-card span,
.footer-legal span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact-card strong {
  font-size: 28px;
  font-weight: 580;
  line-height: 1;
  letter-spacing: -0.045em;
}

.footer-contact-card a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 680;
  transition: color 150ms ease;
}

.footer-contact-card a:hover {
  color: #fff;
}

.telegram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.telegram-link img {
  width: 22px;
  height: 22px;
  border-radius: 999px;
}

.cost-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}

.cost-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.cost-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.48);
  backdrop-filter: blur(14px);
}

.cost-modal__dialog {
  position: relative;
  width: min(860px, 100%);
  max-height: min(92vh, 920px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 28px;
  padding: 34px;
  background:
    radial-gradient(circle at 82% 10%, rgba(39, 135, 245, 0.14), transparent 30%),
    radial-gradient(circle at 18% 24%, rgba(255, 191, 215, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 34px 120px rgba(10, 10, 10, 0.24);
  transform: translateY(18px) scale(0.98);
  transition: transform 180ms ease;
}

.cost-modal.is-open .cost-modal__dialog {
  transform: none;
}

.cost-modal.is-result .cost-modal__dialog {
  width: min(980px, 100%);
  padding: 22px;
  overflow: hidden;
}

.cost-modal.is-result .cost-modal__head,
.cost-modal.is-result .cost-progress {
  display: none;
}

.cost-modal.is-result .cost-form {
  margin-top: 0;
}

.cost-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.cost-modal__head {
  max-width: 650px;
  padding-right: 46px;
}

.cost-modal__head h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 560;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.cost-modal__head p {
  max-width: 560px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.cost-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 30px;
  padding: 10px 0;
}

.cost-progress::before {
  position: absolute;
  top: 50%;
  right: 10%;
  left: 10%;
  height: 2px;
  content: "";
  background: rgba(10, 10, 10, 0.12);
  transform: translateY(-50%);
}

.cost-progress::after {
  position: absolute;
  top: 50%;
  left: 10%;
  width: var(--progress-width, 0%);
  height: 2px;
  content: "";
  background: var(--vk);
  transform: translateY(-50%);
  transition: width 180ms ease;
}

.cost-progress span {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: center;
  background: transparent;
  color: var(--muted);
  font-size: 0;
  font-weight: 760;
  text-align: center;
}

.cost-progress span::before {
  position: relative;
  z-index: 2;
  width: 18px;
  height: 18px;
  content: "";
  border: 2px solid rgba(10, 10, 10, 0.14);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.82);
}

.cost-progress span.is-active {
  color: var(--text);
}

.cost-progress span.is-active::before {
  border-color: var(--vk);
  background: var(--vk);
  box-shadow:
    0 0 0 6px rgba(234, 244, 255, 0.96),
    0 0 0 10px rgba(39, 135, 245, 0.08);
}

.cost-form {
  margin-top: 28px;
}

.cost-step {
  display: none;
}

.cost-step.is-active {
  display: block;
}

.cost-step h3 {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 560;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.option-grid,
.lead-scale {
  display: grid;
  gap: 10px;
}

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

.option-grid-region,
.lead-scale {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lead-scale {
  position: relative;
  gap: 0;
  margin-top: 8px;
  padding: 34px 0 6px;
}

.lead-scale::before {
  position: absolute;
  top: 42px;
  right: 12.5%;
  left: 12.5%;
  height: 4px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(39, 135, 245, 0.24), rgba(39, 135, 245, 0.72));
}

.option-grid label,
.lead-scale label {
  position: relative;
  display: block;
}

.option-grid input,
.lead-scale input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-grid span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 14px;
  font-weight: 690;
  text-align: center;
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    background-color 150ms ease;
}

.lead-scale span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 20px;
  cursor: pointer;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
  text-align: center;
  transition: color 150ms ease;
}

.lead-scale span::before {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  content: "";
  border: 3px solid #fff;
  border-radius: 999px;
  background: rgba(39, 135, 245, 0.72);
  box-shadow:
    0 0 0 1px rgba(39, 135, 245, 0.24),
    0 8px 18px rgba(39, 135, 245, 0.16);
  transition:
    transform 150ms ease,
    background-color 150ms ease;
}

.option-grid span:hover {
  transform: translateY(-1px);
  border-color: rgba(39, 135, 245, 0.34);
}

.lead-scale span:hover {
  color: var(--text);
}

.lead-scale span:hover::before {
  transform: scale(1.12);
}

.option-grid input:checked + span {
  border-color: rgba(39, 135, 245, 0.44);
  background: var(--vk-soft);
  color: #165ea9;
  box-shadow: inset 0 0 0 1px rgba(39, 135, 245, 0.18);
}

.lead-scale input:checked + span {
  color: #165ea9;
}

.lead-scale input:checked + span::before {
  transform: scale(1.28);
  background: var(--vk);
  box-shadow:
    0 0 0 7px rgba(234, 244, 255, 0.96),
    0 0 0 11px rgba(39, 135, 245, 0.12);
}

.lead-scale {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
  padding: 0;
}

.lead-scale::before,
.lead-scale span::before {
  display: none;
}

.lead-scale span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  cursor: pointer;
  font-size: 14px;
  font-weight: 690;
  text-align: center;
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    background-color 150ms ease;
}

.lead-scale span:hover {
  transform: translateY(-1px);
  border-color: rgba(39, 135, 245, 0.34);
  color: var(--text);
}

.lead-scale input:checked + span {
  border-color: rgba(39, 135, 245, 0.44);
  background: var(--vk-soft);
  color: #165ea9;
  box-shadow: inset 0 0 0 1px rgba(39, 135, 245, 0.18);
}

.field-line {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.field-line span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 690;
}

.field-line input {
  min-height: 54px;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  font: inherit;
  outline: none;
}

.field-line input:focus {
  border-color: rgba(39, 135, 245, 0.52);
  box-shadow: 0 0 0 4px rgba(39, 135, 245, 0.12);
}

.form-error {
  min-height: 20px;
  margin: 18px 0 0;
  color: #b62929;
  font-size: 14px;
  font-weight: 650;
}

.cost-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
}

.cost-actions [data-prev-step] {
  visibility: hidden;
}

.cost-actions.can-go-back [data-prev-step] {
  visibility: visible;
}

.cost-actions.is-result [data-next-step] {
  display: none;
}

.cost-modal.is-result .cost-actions {
  display: none;
}

.cost-result {
  border-radius: 24px;
  padding: 18px;
  background:
    radial-gradient(circle at 80% 18%, rgba(39, 135, 245, 0.16), transparent 30%),
    #0d0d0d;
  color: #fff;
}

.result-label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-cost {
  display: block;
  margin-top: 8px;
  font-size: clamp(34px, 4.4vw, 48px);
  font-weight: 560;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.result-summary,
.result-goal {
  max-width: 680px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.42;
}

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

.result-grid > div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.result-grid h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
}

.result-grid ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.4;
}

.book-call {
  width: fit-content;
  margin-top: 12px;
  background: #fff;
  color: #0d0d0d;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(-0.6deg);
  }
}

@keyframes soft-float {
  0%,
  100% {
    transform: translateX(-4%) translateY(0);
  }

  50% {
    transform: translateX(-4%) translateY(-12px);
  }
}

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

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 34px;
    padding: 54px 0 56px;
  }

  .hero-copy {
    grid-column: auto;
    grid-row: auto;
    max-width: none;
    text-align: center;
  }

  .hero-conversion {
    grid-column: auto;
    grid-row: auto;
    max-width: none;
  }

  .hero-lead {
    margin-right: auto;
    margin-left: auto;
    font-size: 18px;
  }

  .hero-actions {
    justify-content: center;
  }

  .benchmark-rail {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
  }

  .benchmarks-head {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-system {
    grid-column: auto;
    grid-row: auto;
    position: static;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    pointer-events: auto;
  }

  .illustration-card img {
    width: min(94%, 560px);
    margin: -10px auto 0;
  }

  .hero-handnote {
    top: 56%;
    left: 10%;
    width: 205px;
    font-size: 21px;
  }

  .hero-handnote svg {
    top: 24px;
    left: 116px;
    width: 132px;
  }

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

  .problem-section {
    padding-top: 46px;
  }

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

  .section-header {
    margin-bottom: 30px;
  }

  .workflow-section .section-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .workflow-section .section-header p {
    margin-top: 0;
  }

  .problem-grid,
  .workflow-grid,
  .cases-grid,
  .launch-grid,
  .split-section,
  .fit-section {
    grid-template-columns: 1fr;
  }

  .large-card,
  .experience-card,
  .signal-card,
  .evidence-card,
  .quote-card {
    min-height: auto;
  }

  .evidence-showcase {
    grid-template-columns: 1fr;
  }

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

  .evidence-post {
    display: none;
  }

  .proof-board-head {
    display: grid;
    gap: 10px;
  }

  .proof-board-head strong {
    text-align: left;
  }

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

  .proof-cjm::before {
    display: none;
  }

  .funnel-visual {
    min-height: auto;
    justify-items: center;
  }

  .funnel-visual img {
    width: min(100%, 680px);
    transform: none;
  }

  .conversion-callout {
    margin: -10px auto 0;
  }

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

  .system-section .section-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .system-section .section-header h2,
  .methodology-note {
    grid-column: 1;
  }

  .journey-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 0;
  }

  .journey-line div:nth-child(3)::after {
    display: none;
  }

  .need-method {
    grid-template-columns: 1fr;
  }

  .need-thesis {
    min-height: auto;
  }

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

  .need-ladder li {
    min-height: 220px;
  }

  .need-ladder strong {
    max-width: 220px;
    writing-mode: initial;
    transform: none;
  }

  .table-card {
    overflow-x: auto;
  }

  .economy-layout,
  .client-proof-head,
  .ordinary-businesses {
    grid-template-columns: 1fr;
  }

  .client-proof-head strong {
    justify-self: start;
  }

  .economy-impact-card {
    min-height: 320px;
  }

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

  .final-cta {
    display: grid;
  }

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

  .footer-brand,
  .footer-contact-card,
  .footer-legal {
    min-height: auto;
  }

  .option-grid,
  .option-grid-region,
  .lead-scale,
  .result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 24px, var(--max));
    height: 76px;
    gap: 8px;
  }

  .brand {
    gap: 6px;
    flex: 0 1 auto;
  }

  .brand-logo-smartcrew {
    height: 22px;
    max-width: 92px;
  }

  .brand-logo-vk {
    height: 17px;
    max-width: 64px;
  }

  .collab-mark {
    font-size: 13px;
  }

  .header-actions .button-secondary {
    display: none;
  }

  .header-actions .button-primary {
    min-height: 42px;
    max-width: 168px;
    padding: 0 12px;
    flex-direction: column;
    font-size: 11.5px;
    line-height: 14px;
    text-align: center;
    white-space: normal;
  }

  .header-brief-mobile-line {
    display: block;
  }

  .header-brief-mobile-line::before {
    content: "";
  }

  .hero {
    min-height: auto;
    padding: 34px 0 40px;
  }

  h1 {
    font-size: clamp(46px, 17vw, 66px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-handnote {
    top: 49%;
    left: 7%;
    width: 128px;
    font-size: 12.5px;
    line-height: 1.02;
  }

  .hero-handnote span {
    max-width: 124px;
  }

  .hero-handnote svg {
    top: 16px;
    left: 73px;
    width: 78px;
    stroke-width: 7;
  }

  .hero-actions,
  .header-actions {
    gap: 8px;
  }

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

  .benchmarks + .hero-actions {
    margin-top: 24px;
  }

  .benchmark-rail {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benchmark-rail div {
    min-height: auto;
    border-left: 0;
    padding: 0 0 0 16px;
    border-left: 2px solid var(--border);
  }

  .benchmark-rail div + div {
    padding-left: 16px;
    border-left: 2px solid var(--border);
  }

  .client-proof {
    padding: 22px;
  }

  .benchmark-row {
    grid-template-columns: minmax(190px, 1fr) minmax(116px, 0.5fr) minmax(220px, 1fr);
    min-width: 560px;
  }

  .benchmark-row > span,
  .benchmark-row > strong {
    min-height: 64px;
    padding: 14px;
  }

  .economy-impact-card {
    min-height: 270px;
    padding: 24px;
  }

  .economy-impact-card strong {
    font-size: clamp(76px, 26vw, 108px);
  }

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

  .client-logo-card {
    min-height: 84px;
    padding: 16px;
  }

  .client-logo-card img {
    max-height: 48px;
  }

  .ordinary-businesses i {
    font-size: 13px;
  }

  .site-footer {
    padding-bottom: 28px;
  }

  .footer-inner {
    width: min(100% - 32px, var(--max));
    border-radius: 24px;
    padding: 18px;
  }

  .footer-brand,
  .footer-contact-card,
  .footer-legal {
    border-radius: 18px;
    padding: 18px;
  }

  .footer-contact-card {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
  }

  .footer-contact-photo {
    width: 82px;
    height: 82px;
  }

  .footer-contact-card strong {
    font-size: 24px;
  }

  .funnel-flow {
    gap: 14px;
    margin-top: 22px;
  }

  .split-section .section-copy h2 {
    font-size: clamp(34px, 11vw, 44px);
    line-height: 1;
  }

  .funnel-flow::before {
    display: none;
  }

  .funnel-flow div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .funnel-flow span {
    width: fit-content;
    min-height: 32px;
    padding: 0 14px;
  }

  .funnel-flow p {
    font-size: 16px;
    line-height: 1.38;
  }

  .conversion-callout {
    width: 100%;
    padding: 18px;
  }

  .conversion-callout span {
    font-size: 58px;
  }

  .conversion-callout strong {
    max-width: none;
    font-size: 17px;
  }

  .card-header {
    display: grid;
  }

  .illustration-card img {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }

  .system-card,
  .insight-card {
    border-radius: 20px;
  }

  .section-shell {
    padding: 64px 0;
  }

  .section-header h2,
  .section-copy h2,
  .final-cta h2 {
    font-size: 38px;
  }

  .split-section .section-copy h2 {
    font-size: 34px;
    line-height: 1;
  }

  .section-header p,
  .section-copy p,
  .final-cta p {
    font-size: 16px;
  }

  .large-card,
  .experience-card,
  .signal-card,
  .evidence-card,
  .proof-board,
  .quote-card,
  .definition-card,
  .funnel-visual,
  .asset-placeholder,
  .launch-card {
    border-radius: 18px;
    padding: 22px;
  }

  .mini-funnel {
    align-items: stretch;
    flex-direction: column;
    margin: 28px 0;
  }

  .mini-funnel i {
    width: 1px;
    height: 24px;
    margin-left: 22px;
  }

  .quote-card strong,
  .signal-card strong,
  .evidence-head strong,
  .definition-card strong,
  .asset-placeholder strong {
    font-size: 24px;
  }

  .evidence-stack {
    grid-template-columns: 1fr;
  }

  .evidence-tile-main img,
  .evidence-stack .evidence-tile img,
  .evidence-stack .evidence-tile video {
    aspect-ratio: auto;
    max-height: 360px;
    object-fit: contain;
    background: #fff;
  }

  .evidence-stack .evidence-tile img[src$=".gif"] {
    width: min(82%, 260px);
    max-height: none;
    background: transparent;
  }

  .proof-board {
    padding: 20px;
  }

  .proof-cjm {
    grid-template-columns: 1fr;
  }

  .cjm-card {
    grid-template-rows: 30px auto auto;
  }

  .cjm-card video {
    width: min(78%, 260px);
  }

  .cjm-video-backplate {
    width: min(78%, 240px);
  }

  .cjm-video-backplate video {
    width: 100%;
  }

  .cjm-card-scale img {
    max-height: 130px;
  }

  .cjm-card figcaption {
    min-height: auto;
    font-size: 15px;
    text-align: center;
    justify-content: center;
  }

  .cjm-card:not(.cjm-card-video) img {
    aspect-ratio: auto;
    max-height: 360px;
  }

  .cjm-card.cjm-card-survey img {
    height: 240px;
    aspect-ratio: auto;
    max-height: 240px;
    object-fit: contain;
  }

  .experience-card > strong {
    font-size: 86px;
  }

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

  .journey-line {
    grid-template-columns: 1fr;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
  }

  .journey-line::before {
    display: none;
  }

  .journey-line div {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    min-height: auto;
    padding: 0;
  }

  .journey-line div:not(:last-child)::after {
    display: block;
    position: absolute;
    content: "";
    background: var(--border-strong);
    top: 36px;
    bottom: -20px;
    left: 17px;
    width: 1px;
    height: auto;
  }

  .journey-line div:nth-child(3)::after {
    display: block;
  }

  .journey-line p {
    max-width: none;
    margin-top: 7px;
  }

  .need-method {
    gap: 14px;
  }

  .need-thesis {
    border-radius: 22px;
    padding: 20px;
  }

  .need-thesis strong {
    margin-top: 18px;
    font-size: 30px;
    line-height: 0.98;
  }

  .need-thesis p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.34;
  }

  .need-ladder {
    grid-template-columns: 1fr;
  }

  .need-ladder li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 8px 12px;
    align-items: start;
    min-height: auto;
    padding: 16px;
  }

  .need-ladder li::before {
    top: 16px;
    right: 16px;
    bottom: auto;
  }

  .need-ladder strong {
    margin-top: 0;
    font-size: 22px;
  }

  .need-ladder p {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-column: 2;
    margin-top: 0;
    font-size: 15px;
  }

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

  .module-grid article {
    min-height: auto;
  }

  .module-grid article:nth-child(even),
  .module-grid article:nth-child(even):hover {
    transform: none;
  }

  .pill-cloud span:nth-child(3n + 1) {
    transform: none;
  }

  .pill-cloud span,
  .model-tags span {
    padding: 10px 12px;
    font-size: 13px;
  }

  .final-cta {
    margin-bottom: 40px;
    border-radius: 22px;
    padding: 28px;
  }

  .cost-modal {
    padding: 10px;
  }

  .cost-modal__dialog {
    max-height: 94vh;
    border-radius: 24px;
    padding: 24px;
  }

  .cost-modal.is-result .cost-modal__dialog {
    max-height: 98vh;
    padding: 10px;
  }

  .cost-modal.is-result .cost-result {
    border-radius: 20px;
    padding: 14px;
  }

  .cost-modal.is-result .result-cost {
    font-size: 30px;
    letter-spacing: -0.045em;
  }

  .cost-modal.is-result .result-summary,
  .cost-modal.is-result .result-goal {
    margin-top: 6px;
    font-size: 12.5px;
    line-height: 1.22;
  }

  .cost-modal.is-result .result-grid {
    gap: 6px;
    margin-top: 8px;
  }

  .cost-modal.is-result .result-grid > div {
    border-radius: 16px;
    padding: 10px 12px;
  }

  .cost-modal.is-result .result-grid h3 {
    margin-bottom: 4px;
    font-size: 15px;
  }

  .cost-modal.is-result .result-grid ul {
    gap: 2px;
    padding-left: 16px;
    font-size: 12px;
    line-height: 1.16;
  }

  .cost-modal.is-result .book-call {
    min-height: 44px;
    margin-top: 8px;
  }

  .cost-modal__head {
    padding-right: 38px;
  }

  .cost-progress {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 22px;
  }

  .option-grid,
  .option-grid-region,
  .lead-scale,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .cost-actions {
    position: sticky;
    bottom: -24px;
    margin-right: -24px;
    margin-bottom: -24px;
    margin-left: -24px;
    padding: 14px 24px 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.96) 24%);
  }

  .cost-result {
    padding: 22px;
  }

  .book-call {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .brand-logo-smartcrew {
    height: 20px;
    max-width: 82px;
  }

  .brand-logo-vk {
    height: 15px;
    max-width: 56px;
  }

  .header-actions .button-primary {
    max-width: 150px;
    padding: 0 10px;
    font-size: 10.8px;
    line-height: 13px;
  }
}

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