@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/Montserrat-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./assets/fonts/Montserrat-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./assets/fonts/Montserrat-Bold.ttf") format("truetype");
}

:root {
  color-scheme: dark;
  --bg: #020302;
  --panel: rgba(20, 20, 20, .72);
  --panel-strong: rgba(20, 20, 20, .86);
  --line: rgba(255, 255, 255, .1);
  --line-strong: rgba(227, 230, 1, .85);
  --text: #f7f7f3;
  --muted: rgba(247, 247, 243, .76);
  --muted-soft: rgba(247, 247, 243, .56);
  --acid: #e3e601;
  --green: #5cff5c;
  --blue: #010bff;
  --purple: #cb008d;
  --pink: #cb008d;
  --color-black: #000;
  --color-yellow: var(--acid);
  --color-blue: var(--blue);
  --color-magenta: var(--purple);
  --color-white: var(--text);
  --container: 1620px;
  --header-height: 112px;
  --motion-fast: 180ms;
  --motion-base: 420ms;
  --motion-slow: 720ms;
  --motion-hero: 1100ms;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --ease-sharp: cubic-bezier(.2, .8, .2, 1);
  font-family: "Montserrat", "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(227, 230, 1, .11), transparent 23rem),
    radial-gradient(circle at 74% 82%, rgba(203, 0, 141, .12), transparent 20rem),
    radial-gradient(circle at 95% 67%, rgba(1, 11, 255, .13), transparent 22rem),
    var(--bg);
  color: var(--text);
}

body::after {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  height: 4px;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, var(--acid) 0 74%, var(--pink) 74% 84%, var(--blue) 84% 94%, var(--acid) 94% 100%);
  opacity: .78;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}

.page-shell {
  overflow: hidden;
  min-height: 100svh;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px) 0 0 / 128px 128px,
    linear-gradient(180deg, rgba(255, 255, 255, .022) 1px, transparent 1px) 0 0 / 128px 128px;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  min-height: var(--header-height);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 3.1vw, 56px);
  border-bottom: 1px solid var(--line);
  animation: reveal-header 300ms var(--ease-out) both;
}

.site-header::before {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(227, 230, 1, .22), transparent);
}

.brand {
  width: fit-content;
}

.brand img {
  display: block;
  width: clamp(214px, 14.8vw, 260px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(32px, 3.5vw, 64px);
  margin-right: clamp(32px, 3.5vw, 64px);
  color: rgba(247, 247, 243, .86);
  font-size: 17px;
  line-height: 1;
}

.site-nav a,
.btn,
.btn-icon {
  transition:
    color var(--motion-fast) var(--ease-out),
    border-color var(--motion-fast) var(--ease-out),
    background var(--motion-fast) var(--ease-out),
    transform var(--motion-fast) var(--ease-out),
    box-shadow var(--motion-fast) var(--ease-out);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--acid);
}

.btn {
  --btn-height: 56px;
  --btn-padding-x: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: var(--btn-height);
  padding: 0 var(--btn-padding-x);
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
}

.btn-lg {
  --btn-height: 62px;
  --btn-padding-x: 32px;
  font-size: clamp(17px, 1.15vw, 19px);
}

.btn-md {
  --btn-height: 54px;
  --btn-padding-x: 24px;
  font-size: 16px;
}

.btn-primary {
  border-color: var(--acid);
  background: var(--acid);
  color: #050600;
  box-shadow: 0 0 0 rgba(227, 230, 1, 0);
}

.btn-secondary {
  border-color: rgba(227, 230, 1, .82);
  color: var(--text);
  background: rgba(0, 0, 0, .24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #f0f300;
  box-shadow: 0 0 28px rgba(227, 230, 1, .28);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--acid);
  color: var(--acid);
  background: rgba(227, 230, 1, .08);
  box-shadow: 0 0 16px rgba(227, 230, 1, .14);
}

.btn:active {
  transform: translateY(1px);
}

.btn-icon {
  display: inline-grid;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-items: center;
  font-family: Arial, "Segoe UI Symbol", sans-serif;
  font-size: 1.15em;
  line-height: 1;
}

.btn:hover .btn-icon,
.btn:focus-visible .btn-icon {
  transform: translate(2px, -2px);
}

.btn[disabled],
.btn[aria-disabled="true"] {
  opacity: .45;
  cursor: not-allowed;
  box-shadow: none;
  pointer-events: none;
}

.header-cta {
  min-width: 226px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(227, 230, 1, .42);
  border-radius: 8px;
  background: transparent;
  color: var(--acid);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(660px, 1.1fr);
  align-items: start;
  gap: clamp(24px, 3.6vw, 72px);
  max-width: var(--container);
  min-height: calc(100svh - var(--header-height));
  margin: 0 auto;
  padding: clamp(48px, 5.8vw, 86px) clamp(24px, 3.1vw, 56px) clamp(54px, 6vw, 92px);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: 1%;
  left: 40%;
  width: 170px;
  height: 760px;
  border: 1px solid rgba(255, 255, 255, .07);
  background: linear-gradient(140deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .015));
  opacity: .34;
  transform: rotate(39deg);
}

.hero::after {
  right: -9%;
  bottom: 10%;
  width: 60vw;
  height: 52vw;
  max-width: 900px;
  max-height: 760px;
  border: 1px solid rgba(227, 230, 1, .14);
  opacity: .44;
  transform: rotate(42deg);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 34px;
  color: var(--acid);
  font-size: clamp(18px, 1.4vw, 23px);
  line-height: 1.2;
  animation: reveal-up 520ms var(--ease-out) 100ms both;
}

.hero h1 {
  max-width: 730px;
  margin: 0;
  color: var(--text);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-size: clamp(42px, 3.9vw, 70px);
  font-weight: 500;
  hyphens: manual;
  letter-spacing: 0;
  line-height: 1.1;
  overflow-wrap: normal;
  word-break: normal;
  animation: reveal-up 650ms var(--ease-out) 180ms both;
}

.hero-text {
  max-width: 670px;
  margin: 30px 0 0;
  color: rgba(247, 247, 243, .78);
  font-size: clamp(18px, 1.45vw, 24px);
  hyphens: manual;
  line-height: 1.36;
  overflow-wrap: normal;
  word-break: normal;
  animation: reveal-up 560ms var(--ease-out) 300ms both;
}

.mobile-line-break {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  animation: reveal-up 460ms var(--ease-out) 420ms both;
}

.button {
  min-width: clamp(220px, 18vw, 274px);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0;
  width: max-content;
  max-width: calc(100vw - 80px);
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(247, 247, 243, .9);
  font-size: clamp(13px, .9vw, 15px);
  hyphens: manual;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 12px;
  border-right: 1px solid rgba(255, 255, 255, .28);
  white-space: nowrap;
  animation: reveal-up 440ms var(--ease-out) both;
}

.hero-features li:nth-child(1) {
  animation-delay: 520ms;
}

.hero-features li:nth-child(2) {
  animation-delay: 580ms;
}

.hero-features li:nth-child(3) {
  animation-delay: 640ms;
}

.hero-features li:nth-child(4) {
  animation-delay: 700ms;
}

.hero-features li:first-child {
  padding-left: 0;
}

.hero-features li::before {
  display: grid;
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  border: 2px solid var(--acid);
  border-radius: 50%;
  color: var(--acid);
  content: "\2713";
  font-size: 13px;
  line-height: 17px;
  place-items: center;
}

.hero-features li:last-child {
  border-right: 0;
}

.feature-short {
  display: none;
}

.hero-visual {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
  width: min(900px, 100%);
  min-height: 590px;
  padding-top: 18px;
  isolation: isolate;
  justify-self: end;
  transform: translateY(-34px);
}

.hero-visual::before {
  position: absolute;
  inset: 42px 0 22px 10%;
  z-index: -2;
  border: 1px solid rgba(255, 255, 255, .08);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, .06), transparent 35%),
    linear-gradient(320deg, rgba(227, 230, 1, .07), transparent 30%),
    rgba(255, 255, 255, .015);
  clip-path: polygon(24% 0, 100% 0, 74% 100%, 0 100%);
}

.rail {
  position: absolute;
  z-index: -1;
  width: 2px;
  border-radius: 8px;
  transform: rotate(42deg);
  transform-origin: bottom center;
}

.rail-main {
  top: 34px;
  left: 20%;
  width: 118px;
  height: 780px;
  border: 1px solid rgba(255, 255, 255, .06);
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .03));
  opacity: .36;
}

.rail-yellow {
  right: 1%;
  bottom: 0;
  height: 850px;
  background: linear-gradient(180deg, transparent, var(--acid), transparent);
  box-shadow: 0 0 18px rgba(227, 230, 1, .54);
}

.rail-blue {
  right: 16%;
  bottom: -72px;
  height: 620px;
  background: linear-gradient(180deg, transparent, var(--blue), transparent);
  box-shadow: 0 0 14px rgba(1, 11, 255, .46);
}

.rail-pink {
  right: 46%;
  bottom: -58px;
  height: 460px;
  background: linear-gradient(180deg, transparent, var(--pink), transparent);
  box-shadow: 0 0 16px rgba(203, 0, 141, .5);
}

.data-card {
  position: absolute;
  hyphens: manual;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .018)),
    var(--panel);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, .45),
    inset 0 1px 0 rgba(255, 255, 255, .05);
  backdrop-filter: blur(18px);
  font-variant-numeric: tabular-nums;
  animation: reveal-card 520ms var(--ease-out) both;
  transition:
    border-color var(--motion-fast) var(--ease-out),
    transform var(--motion-fast) var(--ease-out),
    box-shadow var(--motion-fast) var(--ease-out);
}

.card-label {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.25;
  overflow-wrap: normal;
  word-break: normal;
}

.muted {
  color: var(--muted-soft);
}

.card-conversions {
  top: 34px;
  left: 8%;
  z-index: 1;
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 22px;
  width: min(560px, calc(100% - 280px));
  min-height: 184px;
  padding: 22px 24px;
  animation-delay: 180ms;
}

.metric-stack {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
}

.metric-line {
  margin: 12px 0 0;
  font-size: 29px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.metric-line span {
  margin-left: 8px;
  color: var(--green);
  font-size: 14px;
}

.metric-line-conversions span {
  color: var(--acid);
}

.chart-line {
  position: relative;
  min-width: 0;
  min-height: 138px;
  border-left: 1px solid rgba(255, 255, 255, .09);
  background-image:
    radial-gradient(rgba(255, 255, 255, .13) 1px, transparent 1px);
  background-size: 14px 14px;
}

.chart-line svg {
  width: 100%;
  height: 100%;
}

.chart-area {
  opacity: 0;
  animation: chart-area-in 720ms var(--ease-out) 700ms forwards;
}

.chart-area-conversions {
  fill: rgba(227, 230, 1, .11);
}

.chart-badge {
  position: absolute;
  right: 3px;
  z-index: 1;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  transform-origin: right center;
  animation: badge-pop 320ms var(--ease-out) 1120ms both;
}

.chart-badge-conversions {
  top: 5px;
  border: 1px solid rgba(227, 230, 1, .34);
  background: rgba(227, 230, 1, .1);
  color: var(--acid);
}

.chart-badge-cpl {
  bottom: 5px;
  border: 1px solid rgba(93, 255, 114, .34);
  background: rgba(93, 255, 114, .1);
  color: var(--green);
}

.chart-series {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw-line 900ms var(--ease-out) 560ms forwards;
  vector-effect: non-scaling-stroke;
}

.chart-dots circle {
  opacity: 0;
  stroke: rgba(5, 6, 6, .78);
  stroke-width: 1.6;
  transform-box: fill-box;
  transform-origin: center;
  animation: pop-point 260ms var(--ease-out) 1040ms both;
}

.chart-point {
  opacity: 0;
  stroke: rgba(5, 6, 6, .82);
  stroke-width: 1.8;
  transform-box: fill-box;
  transform-origin: center;
  animation: pop-point 360ms var(--ease-out) 980ms both;
}

.chart-series-conversions {
  stroke: var(--acid);
  filter: drop-shadow(0 0 7px rgba(227, 230, 1, .25));
}

.chart-dots-conversions circle,
.chart-point-conversions {
  fill: var(--acid);
}

.chart-series-cpl {
  stroke: var(--green);
  stroke-width: 2.2;
  opacity: .92;
}

.chart-dots-cpl circle,
.chart-point-cpl {
  fill: var(--green);
}

.card-campaign {
  top: 126px;
  right: 0;
  z-index: 4;
  width: 214px;
  min-height: 308px;
  padding: 22px 18px;
  animation-delay: 240ms;
}

.campaign-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.campaign-head span {
  position: relative;
  color: var(--green);
  font-size: 11px;
}

.campaign-head span::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  vertical-align: 2px;
}

.campaign-budget {
  margin: 10px 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: 20px;
  white-space: nowrap;
}

.campaign-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.campaign-list div {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.campaign-list dt,
.campaign-list dd {
  margin: 0;
  font-size: 14px;
}

.campaign-list dt {
  color: var(--muted);
}

.campaign-list dd {
  color: var(--text);
  white-space: nowrap;
}

.mini-bars {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 4px;
  height: 44px;
  margin-top: 24px;
  width: 100%;
}

.mini-bars span {
  display: block;
  width: 3px;
  min-height: 8px;
  border-radius: 3px 3px 0 0;
  background: var(--acid);
  box-shadow: 0 0 9px rgba(227, 230, 1, .34);
  transform-origin: bottom;
  animation: bar-grow-y 520ms var(--ease-out) 760ms both;
}

.card-traffic {
  top: 226px;
  left: 8%;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  align-items: center;
  gap: 16px;
  width: min(560px, calc(100% - 280px));
  min-height: 190px;
  padding: 22px 24px;
  animation-delay: 300ms;
}

.traffic-bars {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.traffic-row {
  display: grid;
  grid-template-columns: 9px minmax(105px, 1fr) minmax(58px, 70px) 34px;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  line-height: 1.2;
}

.traffic-row b {
  position: relative;
  display: block;
  height: 9px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, .1);
}

.traffic-row b::before {
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: currentColor;
  content: "";
  box-shadow: 0 0 16px currentColor;
  transform-origin: left center;
  animation: bar-grow-x 520ms var(--ease-out) 720ms both;
}

.traffic-row strong {
  font-weight: 500;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.dot-yellow {
  color: var(--acid);
  background: var(--acid);
}

.traffic-row:has(.dot-yellow) b {
  color: var(--acid);
}

.dot-blue {
  color: var(--blue);
  background: var(--blue);
}

.traffic-row:has(.dot-blue) b {
  color: var(--blue);
}

.dot-purple {
  color: var(--purple);
  background: var(--purple);
}

.traffic-row:has(.dot-purple) b {
  color: var(--purple);
}

.dot-gray {
  color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .42);
}

.traffic-row:has(.dot-gray) b {
  color: rgba(255, 255, 255, .42);
}

.donut {
  --donut-reveal: 0deg;
  position: relative;
  display: grid;
  width: 120px;
  height: 120px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(20, 21, 22, .98) 0 45%, transparent 46%),
    conic-gradient(
      var(--acid) 0 52%,
      var(--blue) 52% 76%,
      var(--purple) 76% 92%,
      rgba(255, 255, 255, .42) 92% 100%
    );
  box-shadow: inset 0 0 0 17px rgba(255, 255, 255, .06);
  transform-origin: center;
  animation: romi-in 700ms var(--ease-out) 660ms both;
  isolation: isolate;
}

.donut::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: conic-gradient(transparent 0 var(--donut-reveal), rgba(30, 30, 30, .94) var(--donut-reveal) 360deg);
  content: "";
  -webkit-mask: radial-gradient(circle, transparent 0 45%, #000 46% 100%);
  mask: radial-gradient(circle, transparent 0 45%, #000 46% 100%);
  pointer-events: none;
  animation: donut-fill 900ms var(--ease-out) 720ms forwards;
}

.donut span {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  font-size: 35px;
  line-height: .9;
}

.donut small {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  color: var(--muted);
  font-size: 13px;
}

.card-funnel {
  top: 420px;
  left: 8%;
  z-index: 3;
  width: min(650px, calc(100% - 110px));
  min-height: 128px;
  padding: 20px 22px;
  animation-delay: 360ms;
}

.funnel-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(104px, 1fr));
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.funnel-flow i {
  display: none;
  color: var(--muted);
  font-style: normal;
}

.funnel-flow div {
  min-height: 64px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
  animation: funnel-step 420ms var(--ease-out) both;
}

.funnel-flow div:nth-of-type(1) {
  animation-delay: 820ms;
}

.funnel-flow div:nth-of-type(2) {
  animation-delay: 900ms;
}

.funnel-flow div:nth-of-type(3) {
  animation-delay: 980ms;
}

.funnel-flow div:nth-of-type(4) {
  animation-delay: 1060ms;
}

.funnel-flow span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.funnel-flow strong {
  display: block;
  margin-top: 8px;
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
}

.funnel-flow .is-active {
  border-color: var(--acid);
  box-shadow:
    0 0 18px rgba(227, 230, 1, .24),
    inset 0 0 20px rgba(227, 230, 1, .08);
  animation: sales-pulse 520ms var(--ease-out) 1180ms both;
}

.card-economics {
  min-height: 132px;
  padding: 20px 22px;
  animation-delay: 420ms;
}

.economics-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.economics-head span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(227, 230, 1, .38);
  border-radius: 4px;
  color: var(--acid);
  background: rgba(227, 230, 1, .08);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.economics-grid {
  display: grid;
  grid-template-columns: minmax(150px, 1.28fr) repeat(2, minmax(130px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.economics-item {
  min-height: 64px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
}

.economics-primary {
  border-color: rgba(227, 230, 1, .64);
  box-shadow:
    0 0 18px rgba(227, 230, 1, .16),
    inset 0 0 20px rgba(227, 230, 1, .06);
}

.economics-item span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.economics-item strong {
  display: block;
  margin-top: 8px;
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
}

.hero-visual > .data-card {
  position: relative;
  inset: auto;
  width: 100%;
  z-index: 2;
}

.card-conversions {
  grid-column: 1 / 8;
  grid-row: 1;
}

.card-traffic {
  grid-column: 1 / 8;
  grid-row: 2;
}

.card-campaign {
  grid-column: 8 / 13;
  grid-row: 1 / span 2;
  align-self: stretch;
}

.card-funnel {
  grid-column: 1 / 13;
  grid-row: 3;
}

.card-economics {
  grid-column: 1 / 13;
  grid-row: 4;
}

.diagnostics {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, .74fr) minmax(700px, 1.26fr);
  gap: clamp(42px, 5.5vw, 96px);
  align-items: center;
  max-width: var(--container);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(70px, 5.8vw, 96px) clamp(24px, 3.1vw, 56px) clamp(76px, 6vw, 104px);
  isolation: isolate;
}

.diagnostics::before {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.diagnostics::before {
  top: 5%;
  right: 8%;
  width: min(760px, 56vw);
  height: min(760px, 56vw);
  border: 1px solid rgba(227, 230, 1, .11);
  opacity: .42;
  transform: rotate(45deg);
}

.diagnostics-copy,
.diagnostics-panel {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.diagnostics-panel::before {
  position: absolute;
  top: -28px;
  right: 0;
  left: 0;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227, 230, 1, .62), rgba(1, 11, 255, .5), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

.section-kicker {
  margin: 0 0 34px;
  color: var(--acid);
  font-size: clamp(17px, 1.25vw, 22px);
  font-weight: 500;
  letter-spacing: .02em;
}

.diagnostics h2 {
  max-width: 640px;
  margin: 0;
  color: var(--text);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-size: clamp(48px, 4.7vw, 84px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
}

.diagnostics-text {
  max-width: 700px;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.38;
}

.diagnostics-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 650px;
  margin-top: 44px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .018)),
    rgba(14, 14, 14, .7);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, .42),
    inset 0 1px 0 rgba(255, 255, 255, .04);
  backdrop-filter: blur(14px);
  font-variant-numeric: tabular-nums;
}

.diagnostics-stats div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  min-width: 0;
}

.diagnostics-stats strong {
  color: var(--acid);
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: .9;
}

.diagnostics-stats span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
}

.diagnostics-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.diagnostics-actions .button {
  width: 280px;
  min-width: 0;
}

.diagnostics-actions .btn-secondary {
  width: 220px;
}

.diagnostics-panel {
  display: grid;
  gap: 28px;
  min-width: 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
}

.problem-card {
  --accent: var(--acid);
  position: relative;
  min-height: 174px;
  padding: 24px 24px 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .016)),
    var(--panel);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, .42),
    inset 0 1px 0 rgba(255, 255, 255, .05);
  backdrop-filter: blur(16px);
  transition:
    border-color 180ms var(--ease-out),
    background-color 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.problem-card::before {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  content: "";
  opacity: .75;
}

.problem-card-wide:nth-child(1) {
  grid-column: 1 / 4;
}

.problem-card-wide:nth-child(2) {
  grid-column: 4 / 7;
}

.problem-card:nth-child(3) {
  grid-column: 1 / 3;
}

.problem-card:nth-child(4) {
  grid-column: 3 / 5;
}

.problem-card:nth-child(5) {
  grid-column: 5 / 7;
}

.problem-card:not(.problem-card-wide) .problem-head {
  min-height: 64px;
  align-items: flex-start;
}

.problem-blue {
  --accent: var(--blue);
}

.problem-yellow {
  --accent: var(--acid);
}

.problem-pink {
  --accent: var(--pink);
}

.problem-head {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.problem-number {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: clamp(24px, 1.9vw, 34px);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 18px color-mix(in srgb, var(--accent) 48%, transparent);
}

.problem-head h3 {
  min-width: 0;
  margin: 0;
  color: var(--text);
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 700;
  line-height: 1.2;
}

.problem-head small {
  flex: 0 0 auto;
  margin-left: auto;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #050600;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.problem-blue .problem-head small {
  color: var(--text);
}

.problem-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.46;
}

.has-js .diagnostics:not(.is-visible)::before {
  opacity: .16;
  transform: rotate(45deg) scale(.985);
}

.has-js .diagnostics .section-kicker,
.has-js .diagnostics h2,
.has-js .diagnostics .diagnostics-text,
.has-js .diagnostics .diagnostics-stats,
.has-js .diagnostics .diagnostics-actions,
.has-js .diagnostics .problem-card,
.has-js .diagnostics .diagnostic-chain {
  opacity: 0;
  transform: translateY(16px);
}

.has-js .diagnostics .problem-card {
  transform: translateY(18px) scale(.98);
}

.has-js .diagnostics .diagnostic-chain {
  transform: translateY(14px);
}

.has-js .diagnostics .problem-card::before {
  opacity: 0;
}

.has-js .diagnostics .chain-flow div,
.has-js .diagnostics .chain-flow i {
  opacity: .65;
}

.has-js .diagnostics.is-visible::before {
  animation: diagnostic-field-in 500ms cubic-bezier(.16, 1, .3, 1) backwards;
}

.has-js .diagnostics.is-visible .section-kicker,
.has-js .diagnostics.is-visible h2,
.has-js .diagnostics.is-visible .diagnostics-text,
.has-js .diagnostics.is-visible .diagnostics-stats,
.has-js .diagnostics.is-visible .diagnostics-actions,
.has-js .diagnostics.is-visible .problem-card,
.has-js .diagnostics.is-visible .diagnostic-chain {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.has-js .diagnostics.is-visible .section-kicker {
  animation: diagnostic-reveal 500ms cubic-bezier(.16, 1, .3, 1) backwards;
}

.has-js .diagnostics.is-visible h2 {
  animation: diagnostic-reveal 650ms cubic-bezier(.16, 1, .3, 1) 100ms backwards;
}

.has-js .diagnostics.is-visible .diagnostics-text {
  animation: diagnostic-reveal 550ms cubic-bezier(.16, 1, .3, 1) 220ms backwards;
}

.has-js .diagnostics.is-visible .diagnostics-stats {
  animation: diagnostic-reveal 560ms cubic-bezier(.16, 1, .3, 1) 300ms backwards;
}

.has-js .diagnostics.is-visible .diagnostics-actions {
  animation: diagnostic-reveal 560ms cubic-bezier(.16, 1, .3, 1) 400ms backwards;
}

.has-js .diagnostics.is-visible .problem-card,
.has-js .diagnostics.is-visible .diagnostic-chain {
  animation: diagnostic-card-in 420ms cubic-bezier(.16, 1, .3, 1) backwards;
}

.has-js .diagnostics.is-visible .problem-card:nth-child(1) {
  animation-delay: 80ms;
}

.has-js .diagnostics.is-visible .problem-card:nth-child(2) {
  animation-delay: 120ms;
}

.has-js .diagnostics.is-visible .problem-card:nth-child(3) {
  animation-delay: 100ms;
}

.has-js .diagnostics.is-visible .problem-card:nth-child(4) {
  animation-delay: 140ms;
}

.has-js .diagnostics.is-visible .problem-card:nth-child(5) {
  animation-delay: 160ms;
}

.has-js .diagnostics.is-visible .problem-card::before {
  opacity: .75;
  animation: diagnostic-line-flash 520ms cubic-bezier(.16, 1, .3, 1) backwards;
}

.has-js .diagnostics.is-visible .problem-card:nth-child(1)::before {
  animation-delay: 180ms;
}

.has-js .diagnostics.is-visible .problem-card:nth-child(2)::before {
  animation-delay: 220ms;
}

.has-js .diagnostics.is-visible .problem-card:nth-child(3)::before {
  animation-delay: 200ms;
}

.has-js .diagnostics.is-visible .problem-card:nth-child(4)::before {
  animation-delay: 240ms;
}

.has-js .diagnostics.is-visible .problem-card:nth-child(5)::before {
  animation-delay: 260ms;
}

.has-js .diagnostics.is-visible .diagnostic-chain {
  animation-delay: 180ms;
}

.has-js .diagnostics.is-visible .chain-flow div,
.has-js .diagnostics.is-visible .chain-flow i {
  opacity: 1;
  animation: none;
}

.has-js .diagnostics.is-visible .chain-flow > :nth-child(1) {
  animation-delay: 900ms;
}

.has-js .diagnostics.is-visible .chain-flow > :nth-child(2) {
  animation-delay: 960ms;
}

.has-js .diagnostics.is-visible .chain-flow > :nth-child(3) {
  animation-delay: 1020ms;
}

.has-js .diagnostics.is-visible .chain-flow > :nth-child(4) {
  animation-delay: 1080ms;
}

.has-js .diagnostics.is-visible .chain-flow > :nth-child(5) {
  animation-delay: 1140ms;
}

.has-js .diagnostics.is-visible .chain-flow > :nth-child(6) {
  animation-delay: 1200ms;
}

.has-js .diagnostics.is-visible .chain-flow > :nth-child(7) {
  animation-delay: 1260ms;
}

.has-js .diagnostics.is-visible .chain-flow > :nth-child(8) {
  animation-delay: 1320ms;
}

.has-js .diagnostics.is-visible .chain-flow > :nth-child(9) {
  animation-delay: 1380ms;
}

.has-js .diagnostics.is-visible .chain-flow > :nth-child(10) {
  animation-delay: 1440ms;
}

.has-js .diagnostics.is-visible .chain-flow > :nth-child(11) {
  animation-delay: 1500ms;
}

.has-js .diagnostics.is-visible .chain-result {
  animation: diagnostic-result-glow 420ms cubic-bezier(.16, 1, .3, 1) 300ms backwards;
}

.has-js .diagnostics.is-visible .diagnostics-panel::before {
  animation:
    diagnostic-scan-in 780ms cubic-bezier(.16, 1, .3, 1) 360ms both,
    diagnostic-idle-scan 12s linear 4s infinite;
}

.diagnostic-chain {
  position: relative;
  min-width: 0;
  padding: 6px 0 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.chain-head h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(24px, 1.8vw, 31px);
  line-height: 1.18;
}

.chain-head p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
}

.chain-flow {
  display: grid;
  grid-template-columns: minmax(128px, 1.15fr) auto minmax(96px, .86fr) auto minmax(116px, 1.04fr) auto minmax(82px, .74fr) auto minmax(132px, 1.18fr) auto minmax(100px, .9fr);
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  min-width: 0;
}

.chain-flow div {
  min-height: 74px;
  padding: 15px 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
}

.chain-flow .is-active {
  border-color: var(--acid);
  box-shadow:
    0 0 18px rgba(227, 230, 1, .2),
    inset 0 0 20px rgba(227, 230, 1, .06);
}

.chain-flow strong,
.chain-flow span {
  display: block;
}

.chain-flow strong {
  color: var(--text);
  font-size: 16px;
  line-height: 1.18;
}

.chain-flow span {
  margin-top: 8px;
  color: var(--muted-soft);
  font-size: 13px;
}

.chain-flow i {
  color: var(--muted);
  font-style: normal;
}

.chain-result {
  margin: 20px 0 0;
  padding: 10px 0 0;
  background: linear-gradient(90deg, rgba(227, 230, 1, .12), transparent 72%) 0 0 / 100% 1px no-repeat;
  color: var(--acid);
  font-size: 16px;
  line-height: 1.35;
}

.methodology {
  position: relative;
  display: grid;
  grid-template-columns: minmax(560px, .82fr) minmax(720px, 1.18fr);
  gap: clamp(36px, 4.2vw, 70px);
  align-items: start;
  max-width: var(--container);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(112px, 7.2vw, 136px) clamp(24px, 3.1vw, 56px) clamp(74px, 6.5vw, 104px);
  scroll-margin-top: 32px;
  isolation: isolate;
}

.methodology::before,
.methodology::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.methodology::before {
  top: 13%;
  left: 32%;
  width: 210px;
  height: min(760px, 72vw);
  border: 1px solid rgba(255, 255, 255, .065);
  background: linear-gradient(140deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .012));
  opacity: .32;
  transform: rotate(29deg);
}

.methodology::after {
  right: -8%;
  bottom: 8%;
  width: min(780px, 54vw);
  height: min(780px, 54vw);
  border: 1px solid rgba(227, 230, 1, .1);
  opacity: .38;
  transform: rotate(45deg);
}

.methodology-copy,
.methodology-map {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.methodology h2 {
  max-width: 680px;
  margin: 0;
  color: var(--text);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-size: clamp(42px, 3.15vw, 56px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.06;
}

.methodology-text {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.24vw, 21px);
  line-height: 1.36;
}

.methodology-points {
  display: grid;
  gap: 10px;
  max-width: 660px;
  margin-top: 22px;
}

.methodology-point {
  --point-accent: var(--acid);
  position: relative;
  padding: 12px 18px 12px 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent, color-mix(in srgb, var(--point-accent) 58%, transparent), transparent) 18px 0 / calc(100% - 36px) 2px no-repeat,
    linear-gradient(90deg, color-mix(in srgb, var(--point-accent) 5.5%, transparent), transparent 38%),
    linear-gradient(140deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .012)),
    rgba(16, 16, 16, .72);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .05),
    inset 0 12px 24px color-mix(in srgb, var(--point-accent) 2.5%, transparent);
  backdrop-filter: blur(14px);
  transition:
    border-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.methodology-point::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--point-accent);
  content: "";
  box-shadow: none;
}

.methodology-point-yellow {
  --point-accent: var(--acid);
}

.methodology-point-blue,
.methodology-point-pink {
  --point-accent: rgba(92, 101, 255, .72);
}

.methodology-point-pink {
  --point-accent: rgba(216, 32, 160, .72);
}

.methodology-point h3 {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.22;
}

.methodology-point p {
  margin: 5px 0 0;
  color: var(--muted-soft);
  font-size: 14px;
  line-height: 1.32;
}

.methodology-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  margin-top: 20px;
}

.methodology-actions .button {
  --btn-padding-x: 26px;
  flex: 0 1 auto;
  min-width: 0;
}

.methodology-map {
  display: grid;
  gap: 6px;
  align-content: start;
  align-self: start;
  min-height: 0;
  margin-top: clamp(18px, 2.2vw, 38px);
  padding: 30px 24px 18px;
}

.methodology-map::before {
  position: absolute;
  inset: 34px 0 24px;
  z-index: 0;
  border-radius: 8px;
  background:
    radial-gradient(rgba(255, 255, 255, .075) 1px, transparent 1px) 0 0 / 14px 14px,
    linear-gradient(140deg, rgba(227, 230, 1, .022), transparent 44%),
    rgba(0, 0, 0, .12);
  content: "";
  opacity: .62;
}

.methodology-map::after {
  display: none;
}

.methodology-map-title {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--acid);
  font-size: clamp(20px, 1.55vw, 25px);
  line-height: 1.15;
}

.methodology-map-subtitle {
  position: relative;
  z-index: 2;
  margin: 5px 0 0;
  color: var(--muted-soft);
  font-size: 14px;
  line-height: 1.35;
}

.methodology-lines {
  display: none;
}

.methodology-lines path {
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  vector-effect: non-scaling-stroke;
}

.methodology-lines .line-yellow {
  stroke: rgba(227, 230, 1, .72);
}

.methodology-lines .line-blue,
.methodology-lines .line-pink {
  stroke: rgba(227, 230, 1, .42);
}

.method-node {
  --node-accent: var(--acid);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 62px minmax(118px, .5fr) minmax(210px, 1fr);
  column-gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 60px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-left-color: color-mix(in srgb, var(--node-accent) 48%, rgba(255, 255, 255, .1));
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent, rgba(227, 230, 1, .58), transparent) 18px 0 / calc(100% - 36px) 2px no-repeat,
    linear-gradient(90deg, color-mix(in srgb, var(--node-accent) 6%, transparent), transparent 34%),
    linear-gradient(140deg, rgba(255, 255, 255, .058), rgba(255, 255, 255, .012)),
    rgba(18, 18, 18, .82);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, .38),
    inset 0 1px 0 rgba(255, 255, 255, .06),
    inset 0 12px 26px rgba(227, 230, 1, .03);
  backdrop-filter: blur(16px);
  transition:
    border-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.method-node:not(.node-decision)::before {
  display: none;
}

.method-node:not(.node-decision)::after {
  display: none;
}

.method-node span {
  color: var(--node-accent);
  font-size: clamp(22px, 1.65vw, 28px);
  font-weight: 700;
  line-height: .98;
  text-shadow: none;
}

.method-node h3 {
  min-width: 0;
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.18;
}

.method-node p {
  grid-column: 3;
  margin: 0;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, .1);
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.24;
}

.node-traffic {
  --node-accent: var(--acid);
}

.node-site {
  --node-accent: var(--acid);
}

.node-metrika,
.node-chat,
.node-operator,
.node-crm,
.node-decision {
  --node-accent: var(--acid);
}

.methodology-result {
  position: relative;
  z-index: 2;
  margin: 8px 0 0;
  padding: 8px 0 0;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(227, 230, 1, .12), transparent 72%) 0 0 / 100% 1px no-repeat;
  color: var(--acid);
  font-size: 12.5px;
  line-height: 1.22;
}

.has-js .methodology:not(.is-visible) .methodology-lines path {
  stroke-dashoffset: 1;
}

.has-js .methodology.is-visible .methodology-lines path {
  animation: method-line-impulse 780ms var(--ease-out) both;
}

.has-js .methodology.is-visible .method-node {
  animation: method-node-impulse 620ms var(--ease-out) backwards;
}

.has-js .methodology.is-visible .node-traffic,
.has-js .methodology.is-visible .methodology-lines path:nth-child(1) {
  animation-delay: 90ms;
}

.has-js .methodology.is-visible .node-site,
.has-js .methodology.is-visible .methodology-lines path:nth-child(2) {
  animation-delay: 210ms;
}

.has-js .methodology.is-visible .node-metrika,
.has-js .methodology.is-visible .methodology-lines path:nth-child(3) {
  animation-delay: 330ms;
}

.has-js .methodology.is-visible .node-chat,
.has-js .methodology.is-visible .methodology-lines path:nth-child(4) {
  animation-delay: 450ms;
}

.has-js .methodology.is-visible .node-operator,
.has-js .methodology.is-visible .methodology-lines path:nth-child(5) {
  animation-delay: 570ms;
}

.has-js .methodology.is-visible .node-crm,
.has-js .methodology.is-visible .methodology-lines path:nth-child(6) {
  animation-delay: 690ms;
}

.has-js .methodology.is-visible .node-decision,
.has-js .methodology.is-visible .methodology-lines path:nth-child(7),
.has-js .methodology.is-visible .methodology-lines path:nth-child(8) {
  animation-delay: 810ms;
}

.has-js .methodology.is-visible .methodology-result {
  animation: method-result-impulse 520ms var(--ease-out) 1040ms both;
}

.services-system {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, .76fr) minmax(760px, 1.24fr);
  gap: clamp(36px, 4.2vw, 70px);
  align-items: start;
  max-width: var(--container);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(104px, 7vw, 132px) clamp(24px, 3.1vw, 56px) clamp(82px, 6vw, 110px);
  scroll-margin-top: 32px;
  isolation: isolate;
}

.services-system::before,
.services-system::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.services-system::before {
  top: 18%;
  left: -5%;
  width: min(680px, 50vw);
  height: min(680px, 50vw);
  border: 1px solid rgba(227, 230, 1, .08);
  opacity: .42;
  transform: rotate(45deg);
}

.services-system::after {
  right: 5%;
  bottom: 12%;
  width: min(520px, 38vw);
  height: min(520px, 38vw);
  border: 1px solid rgba(255, 255, 255, .055);
  background: linear-gradient(140deg, rgba(255, 255, 255, .04), transparent 52%);
  opacity: .42;
  transform: rotate(28deg);
}

.services-copy,
.services-panel {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.services-system h2 {
  max-width: 680px;
  margin: 0;
  color: var(--text);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-size: clamp(42px, 3.25vw, 58px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.06;
}

.services-text {
  max-width: 690px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.22vw, 21px);
  line-height: 1.38;
}

.services-rules {
  display: grid;
  gap: 10px;
  max-width: 660px;
  margin-top: 26px;
}

.services-rules article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(227, 230, 1, .09), transparent 44%),
    linear-gradient(140deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .012)),
    rgba(16, 16, 16, .74);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .05);
  backdrop-filter: blur(14px);
  transition:
    border-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.services-rules span {
  color: var(--acid);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.services-rules h3 {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.24;
}

.services-rules p {
  margin: 5px 0 0;
  color: var(--muted-soft);
  font-size: 13px;
  line-height: 1.34;
}

.services-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  margin-top: 22px;
}

.services-actions .button {
  --btn-padding-x: 26px;
  flex: 0 1 auto;
  min-width: 0;
}

.services-panel {
  display: grid;
  gap: 16px;
  align-content: start;
  margin-top: clamp(18px, 2.2vw, 38px);
}

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

.service-card {
  position: relative;
  min-height: 168px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(227, 230, 1, .08), transparent 0) 0 0 / 100% 2px no-repeat,
    linear-gradient(140deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .014)),
    rgba(18, 18, 18, .82);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, .36),
    inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(16px);
}

.service-card::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 0, rgba(227, 230, 1, .16), transparent 34%),
    linear-gradient(90deg, rgba(227, 230, 1, .035), transparent 52%);
  content: "";
  opacity: .9;
  pointer-events: none;
}

.service-number,
.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
}

.service-number {
  display: block;
  color: var(--acid);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.service-card h3 {
  margin: 16px 0 0;
  color: var(--text);
  font-size: 19px;
  line-height: 1.16;
}

.service-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.34;
}

.service-flow-card {
  padding: 24px 24px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 8px;
  background:
    radial-gradient(rgba(255, 255, 255, .075) 1px, transparent 1px) 0 0 / 14px 14px,
    linear-gradient(140deg, rgba(255, 255, 255, .062), rgba(255, 255, 255, .014)),
    rgba(18, 18, 18, .84);
  box-shadow:
    0 20px 62px rgba(0, 0, 0, .42),
    inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(16px);
}

.service-flow-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.service-flow-head h3 {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  line-height: 1.18;
}

.service-flow-head p {
  max-width: 660px;
  margin: 6px 0 0;
  color: var(--muted-soft);
  font-size: 14px;
  line-height: 1.36;
}

.service-flow {
  display: grid;
  grid-template-columns: minmax(94px, 1fr) auto minmax(92px, 1fr) auto minmax(122px, 1.24fr) auto minmax(92px, 1fr) auto minmax(92px, 1fr);
  gap: 8px;
  align-items: center;
  margin-top: 22px;
}

.service-flow div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 74px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .016)),
    rgba(22, 22, 22, .8);
}

.service-flow .is-active {
  border-color: rgba(227, 230, 1, .78);
  box-shadow:
    0 0 24px rgba(227, 230, 1, .16),
    inset 0 0 26px rgba(227, 230, 1, .055);
}

.service-flow strong {
  color: var(--text);
  font-size: 15px;
  line-height: 1.18;
}

.service-flow span {
  margin-top: 8px;
  color: var(--muted-soft);
  font-size: 12.5px;
  line-height: 1.25;
}

.service-flow i {
  color: var(--muted);
  font-style: normal;
}

.service-flow-result {
  margin: 18px 0 0;
  padding: 10px 0 0;
  background: linear-gradient(90deg, rgba(227, 230, 1, .12), transparent 72%) 0 0 / 100% 1px no-repeat;
  color: var(--acid);
  font-size: 14px;
  line-height: 1.34;
}

.has-js .services-system .section-kicker,
.has-js .services-system h2,
.has-js .services-system .services-text,
.has-js .services-system .services-rules article,
.has-js .services-system .services-actions,
.has-js .services-system .service-card,
.has-js .services-system .service-flow-card {
  opacity: 0;
  transform: translateY(20px);
}

.has-js .services-system.is-visible .section-kicker,
.has-js .services-system.is-visible h2,
.has-js .services-system.is-visible .services-text,
.has-js .services-system.is-visible .services-rules article,
.has-js .services-system.is-visible .services-actions,
.has-js .services-system.is-visible .service-card,
.has-js .services-system.is-visible .service-flow-card {
  animation: reveal-up 620ms var(--ease-out) both;
}

.has-js .services-system.is-visible .section-kicker {
  animation-delay: 60ms;
}

.has-js .services-system.is-visible h2 {
  animation-delay: 120ms;
}

.has-js .services-system.is-visible .services-text {
  animation-delay: 190ms;
}

.has-js .services-system.is-visible .services-rules article:nth-child(1) {
  animation-delay: 250ms;
}

.has-js .services-system.is-visible .services-rules article:nth-child(2) {
  animation-delay: 320ms;
}

.has-js .services-system.is-visible .services-rules article:nth-child(3) {
  animation-delay: 390ms;
}

.has-js .services-system.is-visible .services-actions {
  animation-delay: 460ms;
}

.has-js .services-system.is-visible .service-card:nth-child(1) {
  animation-delay: 180ms;
}

.has-js .services-system.is-visible .service-card:nth-child(2) {
  animation-delay: 250ms;
}

.has-js .services-system.is-visible .service-card:nth-child(3) {
  animation-delay: 320ms;
}

.has-js .services-system.is-visible .service-card:nth-child(4) {
  animation-delay: 390ms;
}

.has-js .services-system.is-visible .service-card:nth-child(5) {
  animation-delay: 460ms;
}

.has-js .services-system.is-visible .service-card:nth-child(6) {
  animation-delay: 530ms;
}

.has-js .services-system.is-visible .service-flow-card {
  animation-delay: 610ms;
}

.contact-final {
  padding-bottom: clamp(72px, 5.8vw, 96px);
}

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

.control-list {
  display: grid;
  gap: 10px;
  max-width: 660px;
  margin-top: 28px;
}

.control-list article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 15px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(227, 230, 1, .09), transparent 44%),
    linear-gradient(140deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .012)),
    rgba(16, 16, 16, .74);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .05);
  backdrop-filter: blur(14px);
}

.control-list span {
  color: var(--acid);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.control-list h3 {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.22;
}

.control-list p {
  margin: 6px 0 0;
  color: var(--muted-soft);
  font-size: 13px;
  line-height: 1.34;
}

.contact-form {
  align-self: start;
  margin-top: 0;
  padding: clamp(24px, 2.4vw, 34px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0, rgba(227, 230, 1, .11), transparent 28%),
    linear-gradient(140deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .018)),
    rgba(18, 18, 18, .88);
  box-shadow:
    0 26px 78px rgba(0, 0, 0, .48),
    inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.contact-form-head .section-kicker {
  margin-bottom: 18px;
  font-size: 15px;
}

.contact-form-head h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 2.4vw, 42px);
  line-height: 1.08;
}

.contact-form-head p {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.38;
}

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

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-fields label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-fields label:nth-child(3),
.contact-fields label:nth-child(4) {
  grid-column: 1 / -1;
}

.contact-fields input,
.contact-fields textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition:
    border-color var(--motion-fast) var(--ease-out),
    box-shadow var(--motion-fast) var(--ease-out);
}

.contact-fields input {
  height: 48px;
  padding: 0 14px;
}

.contact-fields textarea {
  min-height: 116px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-fields input::placeholder,
.contact-fields textarea::placeholder {
  color: rgba(247, 247, 243, .38);
}

.contact-fields input:focus,
.contact-fields textarea:focus {
  border-color: rgba(227, 230, 1, .75);
  box-shadow: 0 0 0 3px rgba(227, 230, 1, .08);
}

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

.contact-note {
  margin: 14px 0 0;
  color: var(--muted-soft);
  font-size: 12px;
  line-height: 1.35;
}

.contact-note a,
.form-policy-note a {
  color: var(--acid);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-policy-note {
  margin: 10px 0 0;
  color: var(--muted-soft);
  font-size: 12px;
  line-height: 1.35;
}

.site-footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(190px, .8fr) minmax(320px, 1.3fr) auto auto;
  gap: 28px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 26px clamp(24px, 3.1vw, 56px) 38px;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  display: block;
  width: clamp(174px, 12vw, 220px);
  height: auto;
}

.site-footer p {
  max-width: 560px;
  margin: 0;
  color: var(--muted-soft);
  font-size: 13px;
  line-height: 1.38;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer a {
  transition: color var(--motion-fast) var(--ease-out);
}

.site-footer a:hover {
  color: var(--acid);
}

.footer-audit {
  color: var(--acid);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.footer-legal {
  grid-column: 1 / -1;
  max-width: 980px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgba(247, 247, 243, .44);
  font-size: 11px;
  line-height: 1.45;
}

.policy-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(72px, 7vw, 112px) clamp(20px, 4vw, 56px) clamp(80px, 8vw, 120px);
}

.policy-page h1 {
  max-width: 840px;
  margin: 0;
  color: var(--text);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.06;
}

.policy-lead {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.45;
}

.policy-card {
  margin-top: 28px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .015)),
    rgba(18, 18, 18, .86);
  box-shadow:
    0 22px 68px rgba(0, 0, 0, .42),
    inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(16px);
}

.policy-card h2 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.18;
}

.policy-card h3 {
  margin: 22px 0 8px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.25;
}

.policy-card p,
.policy-card li,
.policy-card dd {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.policy-card p {
  margin: 10px 0 0;
}

.policy-card ul,
.policy-card ol {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding-left: 22px;
}

.policy-card dl {
  display: grid;
  grid-template-columns: minmax(180px, .42fr) minmax(0, 1fr);
  gap: 10px 18px;
  margin: 16px 0 0;
}

.policy-card dt {
  color: var(--muted-soft);
  font-size: 14px;
}

.policy-card dd {
  margin: 0;
}

.policy-card a {
  color: var(--acid);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.has-js .services-system .control-list article,
.has-js .services-system .contact-form {
  opacity: 0;
  transform: translateY(20px);
}

.has-js .services-system.is-visible .control-list article,
.has-js .services-system.is-visible .contact-form {
  opacity: 1;
  transform: none;
  animation: reveal-up 620ms var(--ease-out) backwards;
}

.has-js .services-system.is-visible .control-list article:nth-child(1) {
  animation-delay: 250ms;
}

.has-js .services-system.is-visible .control-list article:nth-child(2) {
  animation-delay: 320ms;
}

.has-js .services-system.is-visible .control-list article:nth-child(3) {
  animation-delay: 390ms;
}

.has-js .services-system.is-visible .contact-form {
  animation-delay: 260ms;
}

.has-js .contact-final .section-kicker,
.has-js .contact-final h2,
.has-js .contact-final .services-text,
.has-js .contact-final .control-list article,
.has-js .contact-final .contact-form {
  opacity: 1;
  transform: none;
  animation: none;
}

body.quiz-open {
  overflow: hidden;
}

body.lead-open {
  overflow: hidden;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  padding: clamp(16px, 3vw, 34px);
  place-items: center;
}

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

.lead-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 74% 20%, rgba(227, 230, 1, .12), transparent 24rem),
    radial-gradient(circle at 72% 84%, rgba(203, 0, 141, .13), transparent 22rem),
    rgba(0, 0, 0, .78);
  cursor: pointer;
}

.lead-dialog {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-height: calc(100svh - 40px);
  padding: clamp(22px, 3vw, 34px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0, rgba(227, 230, 1, .12), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(180deg, rgba(255, 255, 255, .022) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(140deg, rgba(255, 255, 255, .074), rgba(255, 255, 255, .018)),
    rgba(8, 9, 9, .97);
  box-shadow: 0 32px 96px rgba(0, 0, 0, .72);
}

.lead-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  line-height: 1;
  place-items: center;
}

.lead-dialog-head {
  padding-right: 54px;
}

.lead-dialog-head .section-kicker {
  margin-bottom: 18px;
  font-size: 15px;
}

.lead-dialog-head h2 {
  max-width: 640px;
  margin: 0;
  color: var(--text);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.06;
}

.lead-dialog-head p:last-child {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.42;
}

.lead-form {
  margin-top: 26px;
}

.lead-form .contact-fields {
  margin-top: 0;
}

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

.cookie-consent {
  position: fixed;
  right: clamp(14px, 2vw, 24px);
  bottom: 16px;
  left: clamp(14px, 2vw, 24px);
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .018)),
    rgba(12, 13, 13, .94);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, .5),
    inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(14px);
}

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

.cookie-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.cookie-consent button {
  display: inline-grid;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  place-items: center;
}

.cookie-primary {
  border: 1px solid var(--acid);
  background: var(--acid);
  color: #050505;
}

.cookie-consent a {
  color: var(--acid);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.approach-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  padding: 32px;
  place-items: center;
}

.approach-modal[hidden] {
  display: none;
}

.approach-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(227, 230, 1, .12), transparent 26rem),
    radial-gradient(circle at 78% 84%, rgba(203, 0, 141, .14), transparent 24rem),
    rgba(0, 0, 0, .78);
  cursor: pointer;
}

.approach-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, .55fr) minmax(520px, .8fr);
  gap: 34px;
  width: min(1120px, 100%);
  max-height: calc(100svh - 64px);
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(180deg, rgba(255, 255, 255, .022) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(140deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .018)),
    rgba(8, 9, 9, .96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .72);
}

.approach-dialog::before {
  position: absolute;
  right: 10%;
  bottom: -24%;
  z-index: -1;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(227, 230, 1, .12);
  content: "";
  opacity: .5;
  transform: rotate(45deg);
}

.approach-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(0, 0, 0, .38);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  line-height: 1;
  place-items: center;
}

.approach-dialog-head {
  align-self: center;
  min-width: 0;
  padding-right: 10px;
}

.approach-dialog-head h2 {
  max-width: 430px;
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
}

.approach-dialog-head p:last-child {
  max-width: 430px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.42;
}

.quiz-shell {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.quiz-track {
  min-width: 0;
}

.quiz-step {
  display: none;
}

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

.quiz-card {
  min-width: 0;
  min-height: 400px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .018)),
    var(--panel-strong);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, .48),
    inset 0 1px 0 rgba(255, 255, 255, .05);
  backdrop-filter: blur(18px);
  font-variant-numeric: tabular-nums;
  animation: reveal-card var(--motion-base) var(--ease-out) both;
}

.quiz-card-conversions {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  align-items: center;
}

.quiz-card-conversions .chart-line {
  min-height: 230px;
}

.quiz-card .chart-series {
  animation: draw-line 760ms var(--ease-out) 120ms forwards;
}

.quiz-card .chart-point {
  animation: pop-point 260ms var(--ease-out) 860ms both;
}

.quiz-card .chart-badge {
  animation: badge-pop 260ms var(--ease-out) 880ms both;
}

.quiz-card-campaign .campaign-list {
  margin-top: 18px;
}

.quiz-card-campaign .mini-bars {
  height: 118px;
  margin-top: 42px;
}

.quiz-card-campaign .mini-bars span {
  width: 7px;
}

.quiz-card-traffic {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 32px;
  align-items: center;
}

.quiz-card-traffic .traffic-bars {
  gap: 18px;
}

.quiz-card-traffic .traffic-row {
  grid-template-columns: 10px minmax(142px, 1.1fr) minmax(90px, .9fr) 42px;
}

.quiz-card-traffic .donut {
  width: 180px;
  height: 180px;
}

.quiz-card-traffic .donut span {
  font-size: 46px;
}

.quiz-card-traffic .donut small {
  margin-top: -46px;
}

.quiz-card-funnel {
  display: grid;
  align-content: center;
}

.quiz-card-funnel .funnel-flow {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 24px;
}

.quiz-card-funnel .funnel-flow i {
  display: block;
  justify-self: center;
  transform: rotate(90deg);
}

.quiz-card-economics {
  min-height: 0;
}

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

.diagnostic-quiz-card {
  display: grid;
  align-content: center;
  gap: 26px;
  min-height: 400px;
  padding: 42px;
}

.diagnostic-quiz-card .problem-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.diagnostic-quiz-card .problem-number {
  font-size: clamp(38px, 4vw, 54px);
}

.diagnostic-quiz-card .problem-head h3 {
  max-width: 460px;
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1.06;
}

.diagnostic-quiz-card .problem-head small {
  align-self: start;
}

.diagnostic-quiz-card p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.42;
}

.diagnostic-quiz-final {
  display: grid;
  gap: 10px;
  min-height: 0;
  padding: 20px;
  align-content: start;
}

.diagnostic-quiz-final .chain-head h3 {
  font-size: clamp(24px, 2.1vw, 30px);
}

.diagnostic-quiz-final .chain-head p {
  max-width: 620px;
}

.diagnostic-quiz-flow {
  display: grid;
  gap: 4px;
  margin-top: 0;
}

.diagnostic-quiz-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr) 22px minmax(128px, 1.12fr);
  align-items: center;
  gap: 10px;
}

.diagnostic-quiz-row div {
  min-width: 0;
  min-height: 56px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
}

.diagnostic-quiz-row .is-active {
  border-color: var(--acid);
  box-shadow:
    0 0 18px rgba(227, 230, 1, .2),
    inset 0 0 20px rgba(227, 230, 1, .06);
}

.diagnostic-quiz-row strong,
.diagnostic-quiz-row span {
  display: block;
}

.diagnostic-quiz-row strong {
  color: var(--text);
  font-size: 15px;
  line-height: 1.18;
}

.diagnostic-quiz-row span {
  margin-top: 4px;
  color: var(--muted-soft);
  font-size: 12px;
  line-height: 1.2;
}

.diagnostic-quiz-row i,
.diagnostic-quiz-down {
  color: var(--muted);
  font-style: normal;
  line-height: 1;
  text-align: center;
}

.diagnostic-quiz-down {
  width: 34px;
  height: 18px;
  margin: -4px auto;
  color: var(--acid);
  opacity: .9;
}

.diagnostic-quiz-final .chain-result {
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
}

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

.audit-fields label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
}

.audit-fields label:last-child {
  grid-column: 1 / -1;
}

.audit-fields input,
.audit-fields textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition:
    border-color var(--motion-fast) var(--ease-out),
    box-shadow var(--motion-fast) var(--ease-out);
}

.audit-fields input {
  height: 42px;
  padding: 0 12px;
}

.audit-fields textarea {
  min-height: 54px;
  padding: 11px 12px;
  resize: vertical;
}

.audit-fields input::placeholder,
.audit-fields textarea::placeholder {
  color: rgba(247, 247, 243, .38);
}

.audit-fields input:focus,
.audit-fields textarea:focus {
  border-color: rgba(227, 230, 1, .75);
  box-shadow: 0 0 0 3px rgba(227, 230, 1, .08);
}

.quiz-submit {
  width: 100%;
  margin-top: 12px;
}

.diagnostic-quiz-final .quiz-submit {
  --btn-height: 54px;
  font-size: 16px;
}

.quiz-controls {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  gap: 18px;
  align-items: center;
}

.quiz-controls > div {
  display: grid;
  gap: 10px;
  justify-items: center;
  color: var(--muted);
  font-size: 14px;
}

.quiz-nav {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(227, 230, 1, .5);
  border-radius: 8px;
  background: rgba(0, 0, 0, .26);
  color: var(--acid);
  cursor: pointer;
  font: inherit;
  font-size: 22px;
  line-height: 1;
  place-items: center;
}

.quiz-nav:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.quiz-dots {
  display: flex;
  gap: 8px;
}

.quiz-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
}

.quiz-dots i.is-active {
  background: var(--acid);
  box-shadow: 0 0 14px rgba(227, 230, 1, .36);
}

@property --donut-reveal {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@media (hover: hover) and (pointer: fine) {
  .data-card:hover {
    border-color: rgba(255, 255, 255, .18);
    transform: translateY(-2px);
    box-shadow:
      0 24px 70px rgba(0, 0, 0, .48),
      inset 0 1px 0 rgba(255, 255, 255, .08);
  }

  .problem-card:hover {
    border-color: color-mix(in srgb, var(--accent) 35%, rgba(255, 255, 255, .16));
    background:
      linear-gradient(140deg, rgba(255, 255, 255, .078), rgba(255, 255, 255, .022)),
      rgba(22, 22, 22, .82);
    transform: translateY(-4px);
  }

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

  .methodology-point:hover,
  .method-node:hover,
  .control-list article:hover,
  .contact-form:hover {
    border-color: rgba(227, 230, 1, .32);
    transform: translateY(-3px);
    box-shadow:
      0 24px 70px rgba(0, 0, 0, .46),
      inset 0 1px 0 rgba(255, 255, 255, .08);
  }

  .methodology-point:hover {
    box-shadow:
      0 24px 70px rgba(0, 0, 0, .44),
      inset 0 1px 0 rgba(255, 255, 255, .08),
      inset 0 14px 28px color-mix(in srgb, var(--point-accent) 4%, transparent);
  }

  .method-node:hover {
    border-color: rgba(227, 230, 1, .42);
  }

  .contact-form:hover {
    border-color: rgba(227, 230, 1, .24);
  }

  .has-js .methodology.is-visible .method-node:hover,
  .has-js .services-system.is-visible .control-list article:hover,
  .has-js .services-system.is-visible .contact-form:hover {
    transform: translateY(-3px);
  }
}

@keyframes reveal-header {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

@keyframes reveal-card {
  from {
    opacity: .34;
    transform: translateY(10px) scale(.99);
  }

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

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes chart-area-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pop-point {
  from {
    opacity: 0;
    transform: scale(.66);
  }

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

@keyframes badge-pop {
  from {
    opacity: 0;
    transform: translateY(4px) scale(.92);
  }

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

@keyframes romi-in {
  from {
    opacity: 0;
    transform: scale(.94);
  }

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

@keyframes donut-fill {
  to {
    --donut-reveal: 360deg;
  }
}

@keyframes bar-grow-x {
  from {
    opacity: .55;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes bar-grow-y {
  from {
    opacity: .55;
    transform: scaleY(.08);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes funnel-step {
  from {
    opacity: .55;
    transform: translateY(5px);
  }

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

@keyframes sales-pulse {
  0%,
  100% {
    box-shadow:
      0 0 18px rgba(227, 230, 1, .24),
      inset 0 0 20px rgba(227, 230, 1, .08);
  }

  45% {
    box-shadow:
      0 0 30px rgba(227, 230, 1, .34),
      inset 0 0 28px rgba(227, 230, 1, .12);
  }
}

@keyframes diagnostic-field-in {
  from {
    opacity: .16;
    transform: rotate(45deg) scale(.985);
  }

  to {
    opacity: .42;
    transform: rotate(45deg) scale(1);
  }
}

@keyframes diagnostic-reveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

@keyframes diagnostic-card-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.98);
  }

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

@keyframes diagnostic-line-flash {
  0% {
    opacity: 0;
    filter: brightness(1);
  }

  42% {
    opacity: 1;
    filter: brightness(1.7);
  }

  100% {
    opacity: .75;
    filter: brightness(1);
  }
}

@keyframes diagnostic-signal {
  0% {
    opacity: .35;
    border-color: rgba(255, 255, 255, .1);
  }

  44% {
    opacity: 1;
    border-color: rgba(227, 230, 1, .56);
  }

  100% {
    opacity: 1;
  }
}

@keyframes diagnostic-result-glow {
  0% {
    color: var(--acid);
    text-shadow: none;
  }

  45% {
    color: var(--acid);
    text-shadow: 0 0 16px rgba(227, 230, 1, .38);
  }

  100% {
    color: var(--acid);
    text-shadow: none;
  }
}

@keyframes diagnostic-scan-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: .46;
    transform: translateY(0);
  }
}

@keyframes diagnostic-idle-scan {
  0%,
  86%,
  100% {
    opacity: 0;
    transform: translateY(-18px);
  }

  90% {
    opacity: .2;
  }

  94% {
    opacity: .1;
    transform: translateY(24px);
  }
}

@keyframes method-line-impulse {
  0% {
    opacity: .18;
    stroke-dashoffset: 1;
  }

  60% {
    opacity: .92;
  }

  100% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes method-node-impulse {
  0% {
    border-color: rgba(255, 255, 255, .12);
    border-left-color: rgba(227, 230, 1, .34);
    transform: translateY(5px);
    box-shadow:
      0 18px 54px rgba(0, 0, 0, .38),
      inset 0 1px 0 rgba(255, 255, 255, .06),
      inset 0 12px 26px rgba(227, 230, 1, .03);
  }

  48% {
    border-color: rgba(227, 230, 1, .2);
    border-left-color: rgba(227, 230, 1, .52);
    transform: translateY(0);
    box-shadow:
      0 20px 58px rgba(0, 0, 0, .42),
      inset 0 1px 0 rgba(255, 255, 255, .06),
      inset 0 14px 30px rgba(227, 230, 1, .045),
      0 0 16px rgba(227, 230, 1, .1);
  }

  100% {
    border-color: rgba(255, 255, 255, .11);
    border-left-color: rgba(227, 230, 1, .34);
    transform: translateY(0);
    box-shadow:
      0 18px 54px rgba(0, 0, 0, .38),
      inset 0 1px 0 rgba(255, 255, 255, .06),
      inset 0 12px 26px rgba(227, 230, 1, .03);
  }
}

@keyframes method-result-impulse {
  0% {
    border-color: rgba(227, 230, 1, .2);
    box-shadow: 0 0 0 rgba(227, 230, 1, 0);
  }

  55% {
    border-color: rgba(227, 230, 1, .72);
    box-shadow: 0 0 24px rgba(227, 230, 1, .14);
  }

  100% {
    border-color: rgba(227, 230, 1, .35);
    box-shadow: 0 0 0 rgba(227, 230, 1, 0);
  }
}

@media (min-width: 980px) {
  .funnel-flow {
    grid-template-columns: minmax(104px, 1fr) auto minmax(104px, 1fr) auto minmax(104px, 1fr) auto minmax(104px, 1fr);
  }

  .funnel-flow i {
    display: block;
  }
}

@media (min-width: 1501px) {
  .hero {
    grid-template-columns: minmax(720px, .9fr) minmax(760px, 1fr);
    gap: 40px;
  }

  .hero h1 {
    max-width: 780px;
    font-size: clamp(64px, 3.7vw, 74px);
  }

  .hero-text {
    max-width: 700px;
  }
}

@media (min-width: 1281px) and (max-width: 1500px) {
  .hero {
    min-height: min(calc(100svh - var(--header-height)), 920px);
  }

  .diagnostics {
    grid-template-columns: minmax(500px, .72fr) minmax(690px, 1.28fr);
    gap: 28px;
    align-items: start;
    padding-top: 72px;
    padding-bottom: 78px;
  }

  .methodology {
    grid-template-columns: minmax(440px, .58fr) minmax(650px, 1.42fr);
    gap: 28px;
    align-items: start;
    padding-top: 88px;
    padding-bottom: 78px;
  }

  .services-system {
    grid-template-columns: minmax(430px, .6fr) minmax(675px, 1.4fr);
    gap: 28px;
    align-items: start;
    padding-top: 88px;
    padding-bottom: 78px;
  }

  .diagnostics h2 {
    max-width: 500px;
    font-size: clamp(46px, 3.55vw, 52px);
    line-height: 1.06;
  }

  .diagnostics-text {
    max-width: 500px;
    margin-top: 28px;
    font-size: 17px;
    line-height: 1.36;
  }

  .diagnostics-stats {
    gap: 12px;
    margin-top: 34px;
    padding: 20px 22px;
  }

  .diagnostics-stats div {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }

  .diagnostics-stats strong {
    font-size: 34px;
  }

  .diagnostics-stats span {
    font-size: 12.5px;
  }

  .diagnostics-actions {
    gap: 14px;
    margin-top: 30px;
  }

  .diagnostics-actions .button {
    --btn-padding-x: 22px;
    width: 250px;
    font-size: 15px;
  }

  .diagnostics-actions .btn-secondary {
    width: 194px;
  }

  .methodology h2 {
    max-width: 470px;
    font-size: clamp(38px, 3.15vw, 46px);
    line-height: 1.05;
  }

  .services-system h2 {
    max-width: 500px;
    font-size: clamp(38px, 3.15vw, 48px);
    line-height: 1.05;
  }

  .methodology-text {
    max-width: 470px;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.32;
  }

  .services-text {
    max-width: 500px;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.32;
  }

  .methodology-points {
    gap: 10px;
    max-width: 470px;
    margin-top: 18px;
  }

  .services-rules {
    gap: 10px;
    max-width: 500px;
    margin-top: 18px;
  }

  .methodology-point {
    padding: 10px 14px 10px 18px;
  }

  .services-rules article {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 10px 14px;
  }

  .methodology-point h3 {
    font-size: 16px;
  }

  .services-rules h3 {
    font-size: 15.5px;
  }

  .methodology-point p {
    margin-top: 5px;
    font-size: 12.5px;
    line-height: 1.3;
  }

  .services-rules p {
    font-size: 12.5px;
    line-height: 1.3;
  }

  .methodology-actions {
    display: grid;
    grid-template-columns: minmax(190px, .9fr) minmax(246px, 1.1fr);
    gap: 10px;
    margin-top: 20px;
    max-width: 470px;
  }

  .services-actions {
    gap: 12px;
    margin-top: 20px;
  }

  .methodology-actions .button {
    --btn-height: 54px;
    --btn-padding-x: 16px;
    justify-content: space-between;
    width: 100%;
    font-size: 14px;
    gap: 8px;
  }

  .services-actions .button {
    --btn-height: 54px;
    --btn-padding-x: 20px;
    font-size: 15px;
  }

  .methodology-map {
    min-height: 0;
    margin-top: clamp(14px, 1.8vw, 28px);
  }

  .services-panel {
    gap: 12px;
    margin-top: clamp(14px, 1.8vw, 28px);
  }

  .service-grid {
    gap: 12px;
  }

  .service-card {
    min-height: 150px;
    padding: 16px;
  }

  .service-number {
    font-size: 24px;
  }

  .service-card h3 {
    margin-top: 14px;
    font-size: 18px;
  }

  .service-card p {
    font-size: 12.5px;
    line-height: 1.3;
  }

  .service-flow-card {
    padding: 20px;
  }

  .service-flow {
    grid-template-columns: minmax(82px, 1fr) auto minmax(82px, 1fr) auto minmax(114px, 1.2fr) auto minmax(82px, 1fr) auto minmax(82px, 1fr);
    gap: 6px;
    margin-top: 18px;
  }

  .service-flow div {
    min-height: 66px;
    padding: 12px;
  }

  .service-flow strong {
    font-size: 13.5px;
  }

  .service-flow span,
  .service-flow-result {
    font-size: 12.5px;
  }

  .method-node {
    padding: 8px 14px;
  }

  .method-node h3 {
    font-size: 18px;
  }

  .method-node p {
    font-size: 12.5px;
  }

  .problem-grid {
    gap: 16px;
  }

  .problem-card {
    min-height: 158px;
    padding: 20px;
  }

  .problem-card:not(.problem-card-wide) .problem-head {
    min-height: 62px;
  }

  .problem-card p {
    margin-top: 16px;
    font-size: 13.5px;
    line-height: 1.38;
  }

  .diagnostic-chain {
    padding: 4px 0 0;
  }

  .chain-head h3 {
    font-size: 24px;
  }

  .chain-head p {
    font-size: 14px;
  }

  .chain-flow {
    grid-template-columns: minmax(116px, 1.15fr) auto minmax(78px, .78fr) auto minmax(96px, .96fr) auto minmax(70px, .7fr) auto minmax(112px, 1.12fr) auto minmax(78px, .78fr);
    gap: 6px;
    margin-top: 24px;
  }

  .chain-flow div {
    min-height: 70px;
    padding-inline: 14px;
  }

  .chain-result {
    margin-top: 20px;
    font-size: 14px;
  }
}

@media (min-width: 1101px) and (max-width: 1280px) {
  .hero {
    grid-template-columns: minmax(500px, .88fr) minmax(620px, 1.12fr);
    gap: 26px;
    min-height: min(calc(100svh - var(--header-height)), 860px);
    padding-top: 58px;
  }

  .hero h1 {
    max-width: 540px;
    font-size: clamp(46px, 4.1vw, 54px);
  }

  .hero-text {
    max-width: 560px;
    margin-top: 24px;
    font-size: 18px;
  }

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

  .button {
    min-width: 230px;
  }

  .hero-features {
    margin-top: 38px;
  }

  .hero-visual {
    width: min(100%, 660px);
    min-height: 560px;
    transform: translateY(-8px);
  }

  .diagnostics {
    grid-template-columns: minmax(420px, .72fr) minmax(650px, 1.28fr);
    gap: 24px;
    align-items: start;
    min-height: 100svh;
    padding-top: 74px;
    padding-bottom: 72px;
  }

  .diagnostics-copy {
    max-width: 440px;
  }

  .diagnostics h2 {
    max-width: 440px;
    font-size: clamp(40px, 4.1vw, 52px);
    line-height: 1.06;
  }

  .diagnostics-text {
    max-width: 430px;
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.34;
  }

  .diagnostics-stats {
    margin-top: 30px;
    padding: 20px 22px;
  }

  .diagnostics-actions {
    gap: 14px;
    margin-top: 28px;
  }

  .diagnostics-actions .button {
    --btn-padding-x: 18px;
    width: 226px;
    font-size: 15px;
  }

  .diagnostics-actions .btn-secondary {
    width: 176px;
  }

  .problem-grid {
    gap: 16px;
  }

  .problem-card {
    min-height: 154px;
    padding: 19px;
  }

  .problem-card p {
    margin-top: 15px;
    font-size: 13.5px;
    line-height: 1.36;
  }

  .diagnostic-chain {
    padding: 4px 0 0;
  }

  .chain-flow {
    grid-template-columns: minmax(92px, 1fr) auto minmax(76px, .8fr) auto minmax(92px, 1fr) auto minmax(64px, .68fr) auto minmax(96px, 1.05fr) auto minmax(72px, .78fr);
    gap: 6px;
    margin-top: 24px;
  }

  .chain-flow div {
    min-height: 68px;
    padding: 12px 12px;
  }

  .chain-flow strong {
    font-size: 14px;
  }

  .chain-flow span {
    margin-top: 6px;
    font-size: 12px;
  }

  .methodology {
    grid-template-columns: minmax(420px, .58fr) minmax(650px, 1.42fr);
    gap: 24px;
    align-items: start;
    min-height: 100svh;
    padding-top: 42px;
    padding-bottom: 72px;
  }

  .methodology-copy {
    max-width: 440px;
  }

  .methodology h2 {
    max-width: 440px;
    font-size: clamp(34px, 3.45vw, 42px);
    line-height: 1.04;
  }

  .methodology-text {
    max-width: 430px;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.3;
  }

  .methodology-points {
    max-width: 440px;
    gap: 8px;
    margin-top: 14px;
  }

  .methodology-point {
    padding: 9px 13px 9px 18px;
  }

  .methodology-point h3 {
    font-size: 15.5px;
  }

  .methodology-point p {
    font-size: 12px;
  }

  .methodology-actions {
    display: grid;
    grid-template-columns: minmax(176px, .82fr) minmax(236px, 1.18fr);
    gap: 10px;
    margin-top: 16px;
    max-width: 440px;
  }

  .methodology-actions .button {
    --btn-height: 48px;
    --btn-padding-x: 14px;
    justify-content: space-between;
    width: 100%;
    font-size: 13.5px;
    gap: 8px;
  }

  .methodology-map {
    width: 100%;
    margin: 0;
  }

  .services-system {
    grid-template-columns: minmax(420px, .62fr) minmax(620px, 1.38fr);
    gap: 24px;
    align-items: start;
    min-height: 100svh;
    padding-top: 58px;
    padding-bottom: 72px;
  }

  .services-copy {
    max-width: 440px;
  }

  .services-system h2 {
    max-width: 440px;
    font-size: clamp(34px, 3.45vw, 42px);
    line-height: 1.04;
  }

  .services-text {
    max-width: 430px;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.3;
  }

  .services-rules {
    max-width: 440px;
    gap: 8px;
    margin-top: 14px;
  }

  .services-rules article {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 9px 13px;
  }

  .services-rules span {
    font-size: 20px;
  }

  .services-rules h3 {
    font-size: 15.5px;
  }

  .services-rules p {
    font-size: 12px;
  }

  .services-actions {
    gap: 12px;
    margin-top: 16px;
  }

  .services-actions .button {
    --btn-height: 48px;
    --btn-padding-x: 18px;
    font-size: 14.5px;
  }

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

  .service-card {
    min-height: 134px;
    padding: 15px;
  }

  .service-number {
    font-size: 22px;
  }

  .service-card h3 {
    margin-top: 12px;
    font-size: 17px;
  }

  .service-card p {
    font-size: 12px;
    line-height: 1.28;
  }

  .service-flow-card {
    padding: 18px;
  }

  .service-flow-head h3 {
    font-size: 21px;
  }

  .service-flow {
    grid-template-columns: minmax(82px, 1fr) auto minmax(82px, 1fr) auto minmax(104px, 1.2fr) auto minmax(82px, 1fr) auto minmax(82px, 1fr);
    gap: 6px;
    margin-top: 16px;
  }

  .service-flow div {
    min-height: 64px;
    padding: 11px;
  }

  .service-flow strong {
    font-size: 13px;
  }

  .service-flow span,
  .service-flow-result {
    font-size: 12px;
  }
}

@media (max-width: 1100px) {
  :root {
    --header-height: 104px;
  }

  .site-nav {
    gap: 30px;
    margin-right: 30px;
    font-size: 16px;
  }

  .header-cta {
    min-width: 210px;
  }

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

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

  .hero-visual {
    width: min(100%, 860px);
    margin: 0 auto;
    transform: translateY(0);
  }

  .diagnostics {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .methodology {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .services-system {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .diagnostics-copy {
    max-width: 840px;
  }

  .methodology-copy {
    max-width: 860px;
  }

  .services-copy {
    max-width: 860px;
  }

  .diagnostics h2 {
    max-width: 760px;
  }

  .methodology h2 {
    max-width: 820px;
  }

  .services-system h2 {
    max-width: 820px;
  }

  .diagnostics-text {
    max-width: 760px;
    margin-top: 34px;
  }

  .methodology-text {
    max-width: 760px;
    margin-top: 34px;
  }

  .services-text {
    max-width: 760px;
    margin-top: 34px;
  }

  .methodology-map {
    width: min(100%, 960px);
    margin: 0 auto;
  }

  .services-panel {
    width: min(100%, 960px);
    margin: 0 auto;
  }

  .approach-dialog {
    grid-template-columns: 1fr;
    width: min(820px, 100%);
    overflow: auto;
  }

  .approach-dialog-head {
    align-self: auto;
    padding-right: 44px;
  }

  .approach-dialog-head h2,
  .approach-dialog-head p:last-child {
    max-width: 680px;
  }
}

@media (min-width: 861px) and (max-width: 1500px) {
  .hero h1 {
    max-width: 562px;
  }

  .hero-features {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    width: max-content;
    max-width: 100%;
    font-size: 13px;
  }

  .hero-features li {
    gap: 5px;
    padding: 0 6px;
    border-right: 1px solid rgba(255, 255, 255, .28);
    white-space: nowrap;
  }

  .hero-features li::before {
    flex-basis: 18px;
    width: 18px;
    height: 18px;
    font-size: 11px;
    line-height: 14px;
  }

  .hero-features li:first-child {
    padding-left: 0;
  }

  .hero-features li:last-child {
    padding-right: 0;
    border-right: 0;
  }

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

  .card-conversions {
    top: 20px;
    min-height: 172px;
    padding: 20px 22px;
  }

  .chart-line {
    min-height: 126px;
  }

  .card-campaign {
    right: 0;
    z-index: 1;
    width: 190px;
    padding: 20px 16px 20px 28px;
  }

  .card-traffic {
    top: 208px;
    grid-template-columns: minmax(0, 1fr) 104px;
    gap: 12px;
    min-height: 176px;
    padding: 18px;
  }

  .card-traffic .traffic-bars {
    gap: 10px;
  }

  .card-traffic .traffic-row {
    grid-template-columns: 8px minmax(86px, 1fr) minmax(42px, 56px) 30px;
    gap: 7px;
    font-size: 12px;
  }

  .donut {
    width: 104px;
    height: 104px;
    box-shadow: inset 0 0 0 14px rgba(255, 255, 255, .06);
  }

  .donut span {
    font-size: 29px;
  }

  .donut small {
    margin-top: -30px;
    font-size: 12px;
  }

  .card-funnel {
    top: 394px;
    min-height: 118px;
    padding: 18px 20px;
  }

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

  .funnel-flow div {
    min-height: 58px;
    padding: 11px 12px;
  }

  .funnel-flow strong {
    margin-top: 7px;
    font-size: 16px;
  }

}

@media (min-width: 1281px) and (max-width: 1500px) {
  .hero-visual {
    gap: 10px;
    min-height: 520px;
    padding-top: 0;
    transform: translateY(-46px);
  }

  .card-conversions {
    min-height: 154px;
    padding: 18px 20px;
  }

  .metric-stack {
    gap: 14px;
  }

  .metric-line {
    margin-top: 10px;
    font-size: 26px;
  }

  .chart-line {
    min-height: 110px;
  }

  .card-campaign {
    padding: 18px 16px 18px 24px;
  }

  .campaign-head {
    margin-bottom: 22px;
  }

  .campaign-budget {
    margin: 8px 0 14px;
    padding-bottom: 14px;
  }

  .campaign-list {
    gap: 11px;
  }

  .mini-bars {
    height: 38px;
    margin-top: 18px;
  }

  .card-traffic {
    grid-template-columns: minmax(0, 1fr) 96px;
    min-height: 154px;
    padding: 18px 20px;
  }

  .card-traffic .traffic-bars {
    gap: 9px;
  }

  .card-traffic .traffic-row {
    grid-template-columns: 8px minmax(86px, 1fr) minmax(40px, 52px) 30px;
  }

  .card-traffic .donut {
    width: 96px;
    height: 96px;
    box-shadow: inset 0 0 0 13px rgba(255, 255, 255, .06);
  }

  .card-traffic .donut span {
    font-size: 27px;
  }

  .card-traffic .donut small {
    margin-top: -28px;
    font-size: 11px;
  }

  .card-funnel {
    min-height: 104px;
    padding: 16px 20px;
  }

  .funnel-flow {
    gap: 8px;
    margin-top: 12px;
  }

  .funnel-flow div {
    min-height: 52px;
    padding: 10px 12px;
  }

  .funnel-flow span,
  .economics-item span {
    font-size: 12px;
  }

  .funnel-flow strong {
    margin-top: 6px;
    font-size: 15.5px;
  }

  .card-economics {
    min-height: 118px;
    padding: 16px 20px;
  }

  .economics-head span {
    min-height: 24px;
    font-size: 12px;
  }

  .economics-grid {
    gap: 10px;
    margin-top: 12px;
  }

  .economics-item {
    min-height: 52px;
    padding: 10px 12px;
  }

  .economics-item strong {
    margin-top: 6px;
    font-size: 16px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 86px;
  }

  .approach-modal {
    display: none !important;
  }

  .has-js .diagnostics::before,
  .has-js .diagnostics .section-kicker,
  .has-js .diagnostics h2,
  .has-js .diagnostics .diagnostics-text,
  .has-js .diagnostics .diagnostics-stats,
  .has-js .diagnostics .diagnostics-actions,
  .has-js .diagnostics .problem-card,
  .has-js .diagnostics .diagnostic-chain,
  .has-js .diagnostics .chain-flow div,
  .has-js .diagnostics .chain-flow i,
  .has-js .services-system .section-kicker,
  .has-js .services-system h2,
  .has-js .services-system .services-text,
  .has-js .services-system .services-rules article,
  .has-js .services-system .services-actions,
  .has-js .services-system .service-card,
  .has-js .services-system .service-flow-card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .has-js .diagnostics .problem-card::before {
    opacity: .75 !important;
    animation: none !important;
  }

  .has-js .diagnostics-panel::before {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: var(--header-height);
  }

  .brand img {
    width: 190px;
  }

  .menu-toggle {
    position: relative;
    z-index: 12;
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    z-index: 11;
    display: none;
    flex-direction: column;
    gap: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(227, 230, 1, .24);
    border-radius: 8px;
    background: rgba(5, 6, 6, .96);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .6);
  }

  .menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .eyebrow {
    margin-bottom: 22px;
  }

  .hero h1 {
    font-size: clamp(34px, 9.6vw, 52px);
    line-height: 1.08;
  }

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

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

  .hero-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    margin-top: 34px;
    width: 100%;
    max-width: 100%;
    font-size: 13px;
  }

  .hero-features li {
    width: auto;
    padding: 0;
    border-right: 0;
    white-space: nowrap;
  }

  .hero-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
  }

  .hero-visual::before,
  .rail {
    display: none;
  }

  .data-card {
    position: static;
    width: 100%;
  }

  .hero-visual > .data-card {
    grid-column: 1;
    grid-row: auto;
    position: static;
    width: 100%;
    align-self: auto;
  }

  .card-conversions {
    order: 1;
  }

  .card-campaign {
    order: 2;
  }

  .card-traffic {
    order: 3;
  }

  .card-funnel {
    order: 4;
  }

  .card-economics {
    order: 5;
  }

  .card-conversions {
    grid-template-columns: 1fr;
  }

  .card-traffic {
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 16px;
    align-items: center;
  }

  .card-campaign {
    min-height: auto;
  }

  .chart-line {
    min-height: 180px;
  }

  .donut {
    margin: 0;
  }

  .funnel-flow {
    grid-template-columns: 1fr;
  }

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

  .diagnostics {
    gap: 42px;
    padding-top: 70px;
    padding-bottom: 86px;
  }

  .methodology {
    gap: 42px;
    padding-top: 76px;
    padding-bottom: 86px;
  }

  .services-system {
    gap: 42px;
    padding-top: 76px;
    padding-bottom: 86px;
  }

  .diagnostics::before {
    top: 18%;
    right: -42%;
    width: 120vw;
    height: 120vw;
  }

  .methodology::before {
    top: 9%;
    left: auto;
    right: -18%;
    width: 34vw;
    height: 110vw;
  }

  .methodology::after {
    right: -45%;
    bottom: 14%;
    width: 116vw;
    height: 116vw;
  }

  .services-system::before {
    top: 12%;
    left: auto;
    right: -44%;
    width: 118vw;
    height: 118vw;
  }

  .services-system::after {
    right: auto;
    bottom: 8%;
    left: -28%;
    width: 74vw;
    height: 74vw;
  }

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

  .diagnostics h2 {
    font-size: clamp(38px, 10vw, 56px);
  }

  .methodology h2 {
    font-size: clamp(36px, 9.2vw, 54px);
  }

  .services-system h2 {
    font-size: clamp(36px, 9.2vw, 54px);
  }

  .diagnostics-text {
    margin-top: 28px;
    font-size: 18px;
  }

  .methodology-text {
    margin-top: 28px;
    font-size: 18px;
  }

  .services-text {
    margin-top: 28px;
    font-size: 18px;
  }

  .methodology-points {
    gap: 12px;
    margin-top: 34px;
  }

  .services-rules {
    gap: 12px;
    margin-top: 34px;
  }

  .methodology-point {
    padding: 18px 18px 18px 22px;
  }

  .services-rules article {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 18px;
  }

  .methodology-actions {
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
  }

  .services-actions {
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
  }

  .methodology-actions .button {
    width: 100%;
  }

  .services-actions .button {
    width: 100%;
  }

  .diagnostics-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 36px;
    padding: 20px;
  }

  .diagnostics-stats div {
    grid-template-columns: 64px 1fr;
  }

  .diagnostics-actions {
    gap: 14px;
    margin-top: 34px;
  }

  .diagnostics-actions .button,
  .diagnostics-actions .btn-secondary {
    width: 100%;
  }

  .diagnostics-actions .method-icon {
    font-size: 0;
  }

  .diagnostics-actions .method-icon::before {
    content: "↓";
    font-size: 18px;
    line-height: 1;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .problem-card,
  .problem-card-wide:nth-child(1),
  .problem-card-wide:nth-child(2),
  .problem-card:nth-child(3),
  .problem-card:nth-child(4),
  .problem-card:nth-child(5) {
    grid-column: 1;
  }

  .problem-card {
    min-height: auto;
    padding: 20px;
  }

  .service-card {
    min-height: auto;
    padding: 20px;
  }

  .service-flow-card {
    padding: 20px;
  }

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

  .service-flow div {
    min-height: 68px;
  }

  .service-flow i {
    justify-self: center;
    transform: rotate(90deg);
  }

  .problem-head {
    align-items: flex-start;
  }

  .problem-head small {
    margin-top: 3px;
  }

  .diagnostic-chain {
    padding: 4px 0 0;
  }

  .chain-flow {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 24px;
  }

  .chain-flow i {
    justify-self: center;
    transform: rotate(90deg);
  }

  .chain-flow div {
    min-height: 68px;
    padding: 14px;
  }

  .methodology-map {
    display: grid;
    gap: 14px;
    min-height: auto;
    padding-top: 0;
  }

  .methodology-map::before {
    inset: -20px -16px -20px;
  }

  .methodology-map::after,
  .methodology-lines {
    display: none;
  }

  .methodology-map-title,
  .methodology-map-subtitle,
  .method-node,
  .methodology-result {
    position: relative;
    inset: auto;
  }

  .methodology-map-title {
    margin-top: 8px;
  }

  .method-node {
    width: 100%;
    min-height: auto;
    padding: 20px;
  }

  .method-node p {
    grid-column: 1 / -1;
    margin-top: 14px;
    font-size: 14px;
  }

  .methodology-result {
    width: 100%;
    margin: 2px 0 0;
    padding: 10px 0 0;
  }

}

@media (max-width: 520px) {
  body {
    background:
      radial-gradient(circle at 75% 20%, rgba(227, 230, 1, .1), transparent 16rem),
      radial-gradient(circle at 70% 84%, rgba(203, 0, 141, .12), transparent 16rem),
      var(--bg);
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand img {
    width: 164px;
  }

  .hero {
    padding-inline: 16px;
  }

  .diagnostics {
    padding-inline: 16px;
  }

  .methodology {
    padding-inline: 16px;
  }

  .services-system {
    padding-inline: 16px;
  }

  .hero h1 {
    font-size: clamp(32px, 8.8vw, 35px);
    line-height: 1.08;
  }

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

  .mobile-line-break {
    display: block;
  }

  .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
    font-size: 12px;
  }

  .hero-features li {
    gap: 6px;
    min-height: 26px;
  }

  .hero-features li::before {
    flex-basis: 18px;
    width: 18px;
    height: 18px;
    font-size: 11px;
    line-height: 14px;
  }

  .feature-full {
    display: none;
  }

  .feature-short {
    display: inline;
  }

  .hero-visual {
    margin-top: 14px;
  }

  .card-conversions {
    min-height: auto;
  }

  .card-conversions .metric-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .card-conversions .card-label {
    font-size: 13px;
  }

  .card-conversions .metric-line {
    margin-top: 8px;
    font-size: 26px;
  }

  .card-conversions .metric-line span {
    display: block;
    margin: 6px 0 0;
  }

  .chart-line {
    min-height: 142px;
  }

  .traffic-row {
    grid-template-columns: 8px minmax(76px, 1fr) minmax(34px, 48px) 28px;
    gap: 6px;
    font-size: 12px;
  }

  .card-traffic {
    grid-template-columns: minmax(0, 1fr) 96px;
    gap: 12px;
  }

  .card-conversions,
  .card-traffic,
  .card-funnel,
  .card-economics,
  .card-campaign {
    padding: 18px;
  }

  .card-traffic .donut {
    width: 96px;
    height: 96px;
    box-shadow: inset 0 0 0 13px rgba(255, 255, 255, .06);
  }

  .card-traffic .donut span {
    font-size: 27px;
  }

  .card-traffic .donut small {
    margin-top: -28px;
    font-size: 11px;
  }

  .section-kicker {
    font-size: 15px;
  }

  .diagnostics h2 {
    font-size: clamp(34px, 9vw, 39px);
    line-height: 1.1;
  }

  .methodology h2 {
    font-size: clamp(33px, 8.9vw, 39px);
    line-height: 1.1;
  }

  .services-system h2 {
    font-size: clamp(33px, 8.9vw, 39px);
    line-height: 1.1;
  }

  .diagnostics-text {
    font-size: 17px;
  }

  .methodology-text {
    font-size: 17px;
  }

  .services-text {
    font-size: 17px;
  }

  .diagnostics-stats span {
    font-size: 13px;
  }

  .problem-head {
    flex-wrap: wrap;
  }

  .problem-head h3 {
    flex: 1 1 calc(100% - 72px);
  }

  .problem-head small {
    margin-left: 0;
  }

  .problem-card p,
  .chain-head p,
  .chain-result,
  .methodology-point p,
  .method-node p,
  .methodology-result,
  .services-rules p,
  .service-card p,
  .service-flow-head p,
  .service-flow-result {
    font-size: 14px;
  }

  .services-rules article {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 16px;
  }

  .service-number {
    font-size: 24px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-flow-head h3 {
    font-size: 22px;
  }

  .method-node {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 14px;
    padding: 18px;
  }

  .method-node h3 {
    font-size: 18px;
  }

  .chain-head h3 {
    font-size: 23px;
  }
}

@media (min-width: 1281px) and (max-width: 1500px) {
  .control-list {
    gap: 10px;
    max-width: 500px;
    margin-top: 18px;
  }

  .control-list article {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 10px 14px;
  }

  .control-list h3 {
    font-size: 15.5px;
  }

  .control-list p {
    font-size: 12.5px;
    line-height: 1.3;
  }

  .contact-form {
    padding: 24px;
  }

  .contact-form-head h3 {
    font-size: 34px;
  }

  .contact-form-head p {
    font-size: 14px;
  }

  .contact-fields {
    gap: 12px;
    margin-top: 20px;
  }

  .contact-fields input {
    height: 44px;
  }

  .contact-fields textarea {
    min-height: 94px;
  }
}

@media (min-width: 1101px) and (max-width: 1280px) {
  .control-list {
    max-width: 440px;
    gap: 8px;
    margin-top: 14px;
  }

  .control-list article {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 9px 13px;
  }

  .control-list span {
    font-size: 20px;
  }

  .control-list h3 {
    font-size: 15.5px;
  }

  .control-list p {
    font-size: 12px;
  }

  .contact-form {
    padding: 22px;
  }

  .contact-form-head h3 {
    font-size: 30px;
  }

  .contact-form-head p {
    font-size: 13.5px;
  }

  .contact-fields {
    gap: 10px;
    margin-top: 18px;
  }

  .contact-fields input {
    height: 42px;
  }

  .contact-fields textarea {
    min-height: 82px;
  }
}

@media (max-width: 1100px) {
  .control-list {
    max-width: 760px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 860px) {
  .has-js .services-system .control-list article,
  .has-js .services-system .contact-form {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .lead-modal {
    padding: 12px;
    place-items: end center;
  }

  .lead-dialog {
    width: 100%;
    max-height: calc(100svh - 24px);
    padding: 20px;
  }

  .lead-close {
    top: 12px;
    right: 12px;
  }

  .lead-dialog-head {
    padding-right: 48px;
  }

  .lead-dialog-head h2 {
    font-size: clamp(30px, 8.4vw, 40px);
  }

  .lead-dialog-head p:last-child {
    font-size: 15px;
  }

  .cookie-consent {
    grid-template-columns: 1fr;
    gap: 10px;
    bottom: 12px;
    padding: 14px;
  }

  .cookie-consent button {
    width: 100%;
  }

  .control-list {
    gap: 12px;
    margin-top: 34px;
  }

  .control-list article {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 18px;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-final {
    padding-top: 44px;
    scroll-margin-top: 0;
  }

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

  .contact-fields label {
    grid-column: 1;
  }

  .site-footer {
    padding-inline: 16px;
  }
}

@media (max-width: 520px) {
  .contact-form-head h3 {
    font-size: 28px;
  }

  .contact-form-head p,
  .control-list p,
  .contact-fields input,
  .contact-fields textarea {
    font-size: 14px;
  }

  .control-list article {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .site-header,
  .eyebrow,
  .hero h1,
  .hero-text,
  .hero-actions,
  .hero-features li,
  .data-card,
  .donut,
  .chart-point,
  .chart-badge,
  .funnel-flow div,
  .traffic-row b::before,
  .mini-bars span {
    opacity: 1 !important;
    transform: none !important;
  }

  .diagnostics .section-kicker,
  .diagnostics h2,
  .diagnostics-text,
  .diagnostics-stats,
  .diagnostics-actions,
  .problem-card,
  .diagnostic-chain,
  .chain-flow div,
  .chain-flow i,
  .services-system .section-kicker,
  .services-system h2,
  .services-text,
  .services-rules article,
  .services-actions,
  .service-card,
  .service-flow-card {
    opacity: 1 !important;
    transform: none !important;
  }

  .diagnostics-panel::before {
    display: none;
  }

  .chart-series {
    stroke-dashoffset: 0 !important;
  }

  .donut,
  .donut::before {
    --donut-reveal: 360deg;
  }
}

@media (min-width: 1101px) and (max-width: 1500px) {
  .diagnostics,
  .methodology,
  .services-system {
    min-height: auto;
  }

  .methodology-actions {
    grid-template-columns: minmax(204px, .9fr) minmax(252px, 1.1fr);
    max-width: 466px;
  }

  .methodology-actions .button {
    --btn-padding-x: 12px;
    gap: 8px;
    overflow: hidden;
  }

  .methodology-actions .btn-icon {
    flex-basis: 16px;
    width: 16px;
    height: 16px;
    margin-left: auto;
    font-size: 1.08em;
  }
}

@media (min-width: 1501px) {
  .hero {
    min-height: min(calc(100svh - var(--header-height)), 980px);
  }

  .diagnostics,
  .methodology,
  .services-system {
    min-height: auto;
  }
}
