:root {
  --bg: #07090c;
  --bg-2: #0b1015;
  --panel: rgba(15, 21, 27, 0.74);
  --panel-strong: rgba(18, 25, 31, 0.9);
  --text: #f4f6f4;
  --muted: #9aa4a6;
  --muted-2: #667073;
  --line: rgba(198, 255, 46, 0.2);
  --line-cyan: rgba(24, 229, 255, 0.24);
  --lime: #c8ff2e;
  --lime-2: #9bea00;
  --cyan: #18e5ff;
  --orange: #ff6b2a;
  --shadow-lime: 0 0 48px rgba(198, 255, 46, 0.2);
  --shadow-cyan: 0 0 52px rgba(24, 229, 255, 0.18);
  --radius: 8px;
  --max: 1500px;
  --header-h: 86px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(198, 255, 46, 0.12), transparent 28rem),
    radial-gradient(circle at 18% 32%, rgba(24, 229, 255, 0.08), transparent 25rem),
    linear-gradient(180deg, #040608 0%, var(--bg) 46%, #0a0e10 100%);
  color: var(--text);
  font-family: Manrope, Arial, sans-serif;
}

body.is-loading {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 220;
  border: 1px solid var(--lime);
  border-radius: 4px;
  background: #05090b;
  color: var(--lime);
  padding: 12px 16px;
  font-weight: 800;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

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

button {
  border: 0;
}

::selection {
  background: var(--lime);
  color: #080a0d;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(198, 255, 46, 0.16), transparent 26rem),
    radial-gradient(circle at 30% 62%, rgba(24, 229, 255, 0.1), transparent 22rem),
    linear-gradient(145deg, #030608, #07100f 58%, #030608);
  transition: opacity 520ms ease, visibility 520ms ease, transform 520ms cubic-bezier(.2,.8,.2,1);
}

.page-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(198, 255, 46, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 229, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  opacity: 0.55;
}

.page-loader.is-hiding {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
}

.loader-shell {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100vw - 48px));
  min-width: 0;
  padding: clamp(24px, 5vw, 40px);
  border: 1px solid rgba(198, 255, 46, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(13, 20, 23, 0.88), rgba(4, 8, 10, 0.82));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.54), var(--shadow-lime);
  backdrop-filter: blur(18px);
}

.loader-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.loader-brand .brand-mark {
  grid-template-columns: repeat(3, 6px);
  gap: 4px;
}

.loader-brand .brand-mark span {
  width: 6px;
  height: 30px;
  animation: loaderBars 1s ease-in-out infinite;
}

.loader-brand .brand-mark span:nth-child(2) {
  animation-delay: 120ms;
}

.loader-brand .brand-mark span:nth-child(3) {
  animation-delay: 240ms;
}

.loader-brand strong {
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 24px;
}

.loader-copy {
  display: grid;
  gap: 10px;
  margin-top: clamp(30px, 6vw, 48px);
}

.loader-copy span {
  color: var(--lime);
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.loader-track {
  position: relative;
  height: 3px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.loader-track span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lime), var(--cyan), var(--orange));
  box-shadow: 0 0 24px rgba(198, 255, 46, 0.64);
  transform-origin: left;
  animation: loaderTrack 1.5s cubic-bezier(.2,.8,.2,1) both;
}

.loader-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  color: rgba(244, 246, 244, 0.62);
  font-size: 13px;
  font-weight: 800;
  list-style: none;
}

.loader-steps li {
  position: relative;
  opacity: 0.45;
  transform: translateY(8px);
  animation: loaderStep 620ms cubic-bezier(.2,.8,.2,1) both;
}

.loader-steps li:nth-child(1) {
  animation-delay: 130ms;
}

.loader-steps li:nth-child(2) {
  animation-delay: 360ms;
}

.loader-steps li:nth-child(3) {
  animation-delay: 650ms;
}

.loader-steps li:nth-child(4) {
  animation-delay: 940ms;
}

.site-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 460px;
  height: 460px;
  margin: 0;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(198,255,46,0.12), rgba(24,229,255,0.06) 34%, transparent 68%);
  filter: blur(10px);
  transition: opacity 180ms ease;
}

.cursor-glow.is-visible {
  opacity: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  height: var(--header-h);
  padding: 0 clamp(20px, 4vw, 62px);
  background: linear-gradient(180deg, rgba(4, 6, 8, 0.86), rgba(4, 6, 8, 0.48) 72%, transparent);
  backdrop-filter: blur(16px);
  transition: height 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(4, 6, 8, 0.86);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(3, 9px);
  gap: 6px;
  transform: skewX(-14deg);
}

.brand-mark span {
  display: block;
  width: 9px;
  height: 35px;
  background: #f7f8f2;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.brand-mark span:first-child {
  background: var(--lime);
  box-shadow: 0 0 22px rgba(198, 255, 46, 0.5);
}

.brand-name {
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: 0;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 4.5vw, 68px);
  color: rgba(244, 246, 244, 0.66);
  font-size: 15px;
  font-weight: 600;
}

.nav a {
  position: relative;
  padding: 12px 0;
  transition: color 180ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--lime);
  transition: transform 220ms ease;
}

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

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-email {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 2px;
  color: rgba(244, 246, 244, 0.72);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.header-email svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(24, 229, 255, 0.3));
}

.header-email:hover,
.header-email:focus-visible {
  color: var(--cyan);
  transform: translateY(-1px);
}

@media (max-width: 1120px) {
  .header-email { display: none; }
}

.header-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 56px;
  padding: 0 28px;
  overflow: hidden;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta {
  min-width: 288px;
  border: 1px solid var(--lime);
  color: var(--lime);
  box-shadow: inset 0 0 22px rgba(198, 255, 46, 0.08);
}

.header-cta::before,
.header-cta::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-color: var(--lime);
}

.header-cta::before {
  top: -1px;
  left: -1px;
  border-top: 3px solid;
  border-left: 3px solid;
}

.header-cta::after {
  right: -1px;
  bottom: -1px;
  border-right: 3px solid;
  border-bottom: 3px solid;
}

.header-cta svg,
.button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: rgba(198, 255, 46, 0.1);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(540px, 1.14fr);
  align-items: center;
  min-height: 100vh;
  padding: calc(var(--header-h) + 64px) clamp(20px, 4vw, 62px) 0;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(198, 255, 46, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 229, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 62% 48%, black, transparent 70%);
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: 100%;
  min-width: 0;
  max-width: 760px;
  padding-bottom: 18vh;
}

.hero h1 {
  margin: 0;
  max-width: 790px;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(46px, 4.6vw, 84px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.hero h1::after {
  content: "_";
  color: var(--lime);
  text-shadow: var(--shadow-lime);
}

.hero h1.is-typewriter {
  position: relative;
}

.hero h1.is-typewriter::after {
  content: none;
}

.typewriter-measure {
  visibility: hidden;
}

.typewriter-live {
  position: absolute;
  inset: 0;
}

.typewriter-cursor {
  display: inline-block;
  color: var(--lime);
  text-shadow: var(--shadow-lime);
  animation: typewriterCursor 760ms steps(1, end) infinite;
}

.hero-copy p {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(244, 246, 244, 0.68);
  font-size: clamp(19px, 1.75vw, 25px);
  line-height: 1.42;
}

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

.button {
  min-width: 260px;
  min-height: 70px;
}

.button-primary {
  background: linear-gradient(135deg, var(--lime), var(--lime-2));
  color: #071006;
  box-shadow: 0 18px 48px rgba(198, 255, 46, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 58px rgba(198, 255, 46, 0.36);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button-secondary {
  border: 1px solid rgba(24, 229, 255, 0.72);
  color: var(--cyan);
  background: rgba(3, 12, 15, 0.42);
  box-shadow: inset 0 0 24px rgba(24, 229, 255, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(24, 229, 255, 0.1);
  transform: translateY(-3px);
}

.hero-system {
  position: relative;
  z-index: 3;
  min-width: 0;
  min-height: min(760px, 68vh);
  perspective: 1200px;
  transform-style: preserve-3d;
}

.system-grid {
  position: absolute;
  inset: 12% -8% 0 -8%;
  transform: rotateX(62deg) rotateZ(-11deg);
  transform-origin: center bottom;
  border: 1px solid rgba(198, 255, 46, 0.1);
  background:
    linear-gradient(rgba(198, 255, 46, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 229, 255, 0.12) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.46;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 78%, transparent);
}

.signal-line {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: drop-shadow(0 0 14px currentColor);
}

.signal-line-lime {
  right: 4%;
  bottom: 20%;
  width: 86%;
  height: 35%;
  color: rgba(198, 255, 46, 0.88);
  border-bottom: 3px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-8deg) skewX(-20deg);
}

.signal-line-cyan {
  right: 16%;
  bottom: 10%;
  width: 36%;
  height: 18%;
  color: rgba(24, 229, 255, 0.86);
  border: 3px solid currentColor;
  border-top-color: transparent;
  transform: rotate(4deg);
}

.browser-plane {
  position: absolute;
  z-index: 1;
  top: 5%;
  right: 4%;
  width: min(720px, 74vw);
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 62% 42%, rgba(198, 255, 46, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(17, 24, 29, 0.94), rgba(5, 9, 11, 0.92));
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.52), var(--shadow-lime);
  transform: rotateX(10deg) rotateY(-16deg) rotateZ(6deg);
}

.browser-plane::before {
  content: "";
  position: absolute;
  inset: 58px 0 0;
  background:
    linear-gradient(rgba(198, 255, 46, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 255, 46, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 88%);
}

.browser-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
}

.browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
}

.browser-bar span:nth-child(2) {
  background: var(--lime);
}

.browser-bar span:nth-child(3) {
  background: var(--muted);
}

.browser-bar strong {
  margin-left: 9px;
  color: rgba(244, 246, 244, 0.82);
  font-size: 13px;
}

.browser-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 32px;
  padding: 54px 38px 48px;
}

.browser-content h2 {
  margin: 0;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(34px, 3.1vw, 54px);
  line-height: 1.08;
}

.browser-content h2 span {
  color: var(--lime);
}

.browser-content p {
  max-width: 270px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.browser-content ul {
  display: grid;
  gap: 17px;
  margin: 6px 0 0;
  padding: 0;
  color: rgba(244, 246, 244, 0.62);
  font-size: 14px;
  list-style: none;
}

.browser-content li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.browser-content li span {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  border: 1px solid var(--cyan);
}

.stage-card,
.code-chip,
.result-chip {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(14, 20, 25, 0.92), rgba(6, 11, 13, 0.86));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
}

.stage-card {
  z-index: 4;
  width: 210px;
  min-height: 158px;
  overflow: hidden;
  padding: 22px;
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(var(--stage-enter-x, 0), var(--stage-enter-y, 0), var(--stage-enter-z, 0)) scale(0.82) var(--stage-transform);
  transform-origin: center;
  will-change: transform, opacity, filter;
}

.stage-card::before {
  content: "";
  position: absolute;
  inset: -35% -60%;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.2), transparent 58%);
  opacity: 0;
  transform: translateX(-40%);
}

.stage-card svg {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stage-card h3 {
  position: relative;
  z-index: 1;
  margin: 14px 0 8px;
  font-size: 18px;
}

.stage-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.stage-strategy {
  --stage-delay: 0ms;
  --stage-enter-x: -92px;
  --stage-enter-y: 92px;
  --stage-transform: rotateX(9deg) rotateY(-18deg) rotateZ(8deg);
  left: 12%;
  top: 44%;
  color: var(--lime);
  border-color: rgba(198, 255, 46, 0.72);
  box-shadow: var(--shadow-lime), 0 18px 48px rgba(0, 0, 0, 0.42);
}

.stage-design {
  --stage-delay: 140ms;
  --stage-enter-x: -32px;
  --stage-enter-y: 84px;
  --stage-transform: rotateX(8deg) rotateY(-9deg) rotateZ(3deg);
  left: 35%;
  top: 50%;
  color: var(--cyan);
  border-color: rgba(24, 229, 255, 0.72);
  box-shadow: var(--shadow-cyan), 0 18px 48px rgba(0, 0, 0, 0.42);
}

.stage-dev {
  --stage-delay: 290ms;
  --stage-enter-x: 42px;
  --stage-enter-y: 74px;
  --stage-enter-z: -70px;
  --stage-transform: translateZ(120px) rotateX(9deg) rotateY(-6deg) rotateZ(4deg);
  z-index: 6;
  right: 35%;
  top: 31%;
  color: var(--cyan);
  border-color: rgba(24, 229, 255, 0.72);
  box-shadow: var(--shadow-cyan), 0 18px 48px rgba(0, 0, 0, 0.42);
}

.stage-launch {
  --stage-delay: 450ms;
  --stage-enter-x: 112px;
  --stage-enter-y: 52px;
  --stage-enter-z: -70px;
  --stage-transform: translateZ(140px) rotateX(10deg) rotateY(-14deg) rotateZ(6deg);
  z-index: 7;
  right: 3%;
  top: 29%;
  color: var(--orange);
  border-color: rgba(255, 107, 42, 0.72);
  box-shadow: 0 0 42px rgba(255, 107, 42, 0.16), 0 18px 48px rgba(0, 0, 0, 0.42);
}

.hero-system.is-assembled .stage-card {
  animation: stageAssemble 780ms cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: var(--stage-delay);
}

.hero-system.is-assembled .stage-card::before {
  animation: stageSweep 820ms cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: calc(var(--stage-delay) + 160ms);
}

.code-chip {
  left: 4%;
  bottom: 11%;
  width: 280px;
  padding: 18px;
  color: var(--lime);
  font-family: "Space Grotesk", Consolas, monospace;
  font-size: 13px;
  line-height: 1.5;
  transform: rotateX(18deg) rotateY(-20deg) rotateZ(-10deg);
}

.code-chip span,
.code-chip strong {
  display: block;
}

.code-chip span {
  color: rgba(244, 246, 244, 0.54);
}

.result-chip {
  left: 39%;
  bottom: 4%;
  width: 160px;
  padding: 17px;
  transform: rotateX(14deg) rotateY(-18deg) rotateZ(10deg);
}

.result-chip span {
  color: var(--muted);
  font-size: 12px;
}

.result-chip strong {
  display: block;
  margin-top: 6px;
  color: var(--lime);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 30px;
}

.result-chip i {
  display: block;
  height: 32px;
  margin-top: 8px;
  background:
    linear-gradient(135deg, transparent 45%, var(--lime) 46%, var(--lime) 52%, transparent 53%),
    linear-gradient(90deg, rgba(198, 255, 46, 0.08) 1px, transparent 1px);
  background-size: 100% 100%, 20px 20px;
}

.cursor-beam {
  position: absolute;
  z-index: 5;
  right: 21%;
  bottom: 5%;
  width: 82px;
  height: 128px;
  background:
    radial-gradient(circle at 50% 88%, rgba(24, 229, 255, 0.8), transparent 30%),
    linear-gradient(180deg, rgba(198, 255, 46, 0.92), rgba(24, 229, 255, 0.2));
  clip-path: polygon(18% 0, 86% 58%, 58% 62%, 82% 100%, 57% 100%, 35% 66%, 9% 82%);
  filter: drop-shadow(0 0 18px var(--cyan));
  transform: rotate(-15deg);
}

.mobile-process {
  display: none;
}

.mobile-copy,
.mobile-section-copy {
  display: none;
}

.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: 0;
  padding: 28px clamp(20px, 4vw, 62px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(12, 18, 21, 0.98), rgba(13, 22, 26, 0.92));
  box-shadow: 0 -20px 70px rgba(0, 0, 0, 0.36);
}

.hero-strip p,
.hero-strip div {
  margin: 0;
  min-height: 86px;
  padding-right: 28px;
}

.hero-strip div {
  padding-left: 28px;
  border-left: 1px dashed rgba(198, 255, 46, 0.18);
}

.hero-strip p {
  max-width: 420px;
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 800;
  line-height: 1.16;
}

.hero-strip p span {
  color: var(--lime);
}

.hero-strip strong {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
}

.hero-strip div span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.section,
.contact {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(88px, 10vw, 150px) clamp(20px, 4vw, 62px);
}

.section-head {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: clamp(26px, 5vw, 86px);
  align-items: start;
  margin-bottom: 54px;
}

.section-head.compact {
  max-width: 1120px;
}

.section-index {
  color: var(--lime);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.section h2,
.contact h2 {
  margin: 0;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(30px, 3.3vw, 50px);
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: pretty;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.service-card {
  height: 100%;
  min-height: 360px;
  padding: clamp(24px, 3vw, 36px);
  background:
    linear-gradient(180deg, rgba(14, 20, 25, 0.92), rgba(7, 11, 14, 0.94)),
    var(--bg-2);
}

.service-card > span,
.outcome-card > span {
  color: var(--cyan);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.service-card h3,
.outcome-card h3,
.process-rail h3 {
  margin: 70px 0 16px;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1.1;
}

.service-card p,
.outcome-card p,
.process-rail p,
.trust-points p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.outcome {
  position: relative;
}

.outcome::before {
  content: "";
  position: absolute;
  inset: 11% 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 255, 46, 0.38), rgba(24, 229, 255, 0.32), transparent);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(198, 255, 46, 0.2), rgba(24, 229, 255, 0.18));
}

.outcome-card {
  position: relative;
  min-height: 330px;
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 18%, rgba(24, 229, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(14, 20, 25, 0.96), rgba(7, 11, 14, 0.96));
}

.outcome-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(198, 255, 46, 0.22);
  transform: rotate(18deg);
}

.outcome-card.accent {
  background:
    radial-gradient(circle at 72% 20%, rgba(198, 255, 46, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(20, 30, 22, 0.96), rgba(7, 11, 14, 0.96));
}

.outcome-card h3 {
  margin-top: 86px;
}

.process {
  max-width: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(24, 229, 255, 0.08), transparent 34rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent);
}

.process .section-head,
.process-rail {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.process-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 255, 46, 0.28), rgba(24, 229, 255, 0.22), transparent);
}

.process-rail::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 38%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(198, 255, 46, 0.3), rgba(24, 229, 255, 0.18), transparent);
  filter: blur(10px);
  opacity: 0;
  transform: translateX(-60%);
}

.process-rail.is-visible::before {
  opacity: 1;
  animation: processScan 2.4s cubic-bezier(.2,.7,.2,1) 260ms both;
}

.process-rail article {
  position: relative;
  z-index: 1;
  min-height: 330px;
  padding: clamp(22px, 3vw, 34px);
  background: #080d11;
}

.process-rail span {
  color: var(--lime);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.process-rail h3 {
  margin-top: 96px;
}

.trust-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(34px, 7vw, 92px);
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid rgba(198, 255, 46, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 20%, rgba(198, 255, 46, 0.12), transparent 36%),
    linear-gradient(135deg, rgba(18, 25, 31, 0.92), rgba(7, 11, 14, 0.92));
  box-shadow: var(--shadow-lime);
}

.trust-panel h2 {
  margin-top: 22px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.14;
}

.trust-points {
  display: grid;
  gap: 24px;
  align-content: center;
}

.trust-points strong {
  color: var(--text);
}

.contact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(34px, 7vw, 100px);
  align-items: start;
  padding-top: clamp(96px, 12vw, 170px);
}

.contact-copy {
  grid-column: 1;
  grid-row: 1;
  position: sticky;
  top: 120px;
}

.contact h2 {
  margin-top: 20px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.14;
}

.contact-copy p {
  max-width: 560px;
  margin-top: 26px;
  font-size: 18px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 22px;
  color: var(--lime);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  text-shadow: var(--shadow-lime);
}

.contact-email:hover,
.contact-email:focus-visible {
  color: var(--cyan);
}

.faq-list {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  gap: 10px;
  max-width: 600px;
  margin-top: 34px;
}

.faq-list h3 {
  margin: 0 0 8px;
  color: var(--lime);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 18px;
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(6, 11, 13, 0.64);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.faq-list details[open] {
  border-color: rgba(198, 255, 46, 0.34);
  background: rgba(10, 18, 15, 0.82);
  box-shadow: 0 0 28px rgba(198, 255, 46, 0.08);
}

.faq-list summary {
  cursor: pointer;
  padding: 17px 18px;
  color: var(--text);
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--lime);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list summary:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.faq-list details p {
  margin: 0;
  padding: 0 18px 18px;
  color: rgba(244, 246, 244, 0.68);
  font-size: 15px;
}

.contact-form {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(15, 22, 27, 0.94), rgba(8, 12, 15, 0.92));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form label span {
  color: rgba(244, 246, 244, 0.68);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: rgba(4, 8, 10, 0.66);
  color: var(--text);
  outline: none;
  padding: 17px 18px;
  font-size: 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form select.project-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.project-select {
  position: relative;
  z-index: 4;
}

.project-select.is-open {
  z-index: 12;
}

.project-select__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background:
    radial-gradient(circle at 18% 0%, rgba(198, 255, 46, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(5, 13, 12, 0.96), rgba(5, 9, 12, 0.9));
  color: var(--text);
  cursor: pointer;
  outline: none;
  padding: 0 18px;
  font: inherit;
  font-size: 16px;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.project-select__button:hover,
.project-select__button:focus-visible,
.project-select.is-open .project-select__button {
  border-color: var(--lime);
  background:
    radial-gradient(circle at 18% 0%, rgba(198, 255, 46, 0.2), transparent 36%),
    linear-gradient(135deg, rgba(8, 20, 14, 0.98), rgba(5, 10, 12, 0.94));
  box-shadow: 0 0 0 3px rgba(198, 255, 46, 0.1), var(--shadow-lime);
}

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

.project-select__value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-select__icon {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(198, 255, 46, 0.22);
  border-radius: 999px;
  color: var(--lime);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.project-select__icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-select.is-open .project-select__icon {
  transform: rotate(180deg);
  border-color: rgba(198, 255, 46, 0.62);
  background: rgba(198, 255, 46, 0.1);
}

.project-select__menu {
  position: absolute;
  right: 0;
  left: 0;
  top: calc(100% + 8px);
  display: grid;
  gap: 6px;
  max-height: 280px;
  margin: 0;
  padding: 8px;
  overflow: auto;
  border: 1px solid rgba(198, 255, 46, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 0%, rgba(198, 255, 46, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(14, 22, 24, 0.98), rgba(5, 9, 11, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.48), var(--shadow-lime);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top;
  transition: opacity 160ms ease, transform 160ms ease;
}

.project-select.is-drop-up .project-select__menu {
  top: auto;
  bottom: calc(100% + 8px);
  transform: translateY(8px) scale(0.98);
  transform-origin: bottom;
}

.project-select.is-open .project-select__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.project-select__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: rgba(244, 246, 244, 0.82);
  cursor: pointer;
  padding: 0 12px;
  font-size: 15px;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.project-select__option::after {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: transparent;
  box-shadow: 0 0 0 1px rgba(198, 255, 46, 0.24);
}

.project-select__option:hover,
.project-select__option.is-active {
  border-color: rgba(198, 255, 46, 0.24);
  background: rgba(198, 255, 46, 0.08);
  color: var(--text);
  transform: translateX(2px);
}

.project-select__option.is-selected {
  color: var(--lime);
  background: rgba(198, 255, 46, 0.12);
}

.project-select__option.is-selected::after {
  background: var(--lime);
  box-shadow: 0 0 16px rgba(198, 255, 46, 0.78);
}

.project-select.is-invalid .project-select__button {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 42, 0.1);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(154, 164, 166, 0.58);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--lime);
  background: rgba(4, 8, 10, 0.9);
  box-shadow: 0 0 0 3px rgba(198, 255, 46, 0.1);
}

.contact-form .is-invalid {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 42, 0.1);
}

.contact-form.is-sending {
  pointer-events: none;
}

.contact-form .button {
  width: 100%;
  margin-top: 10px;
}

.contact-form .button:disabled {
  opacity: 0.76;
}

.form-status {
  min-height: 26px;
  margin: 0;
  color: var(--lime);
  font-weight: 700;
  line-height: 1.5;
}

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

.form-status.is-success {
  color: var(--lime);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 4vw, 62px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.site-footer .brand-name {
  font-size: 28px;
  color: var(--text);
}

.site-footer .brand-mark {
  grid-template-columns: repeat(3, 6px);
  gap: 4px;
}

.site-footer .brand-mark span {
  width: 6px;
  height: 24px;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.footer-email {
  color: var(--cyan);
  font-weight: 700;
  text-decoration: none;
}

.footer-email:hover,
.footer-email:focus-visible,
.site-footer > a:last-child {
  color: var(--lime);
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(.2,.7,.2,1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes loaderBars {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.76;
  }
  50% {
    transform: translateY(-7px);
    opacity: 1;
  }
}

@keyframes loaderTrack {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes loaderStep {
  to {
    opacity: 1;
    transform: translateY(0);
    color: var(--text);
  }
}

@keyframes stageAssemble {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(var(--stage-enter-x, 0), var(--stage-enter-y, 0), var(--stage-enter-z, 0)) scale(0.82) var(--stage-transform);
  }
  64% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, -10px, 36px) scale(1.04) var(--stage-transform);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: var(--stage-transform);
  }
}

@keyframes stageSweep {
  0% {
    opacity: 0;
    transform: translateX(-45%);
  }
  40% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translateX(45%);
  }
}

@keyframes processScan {
  from {
    transform: translateX(-65%);
  }
  to {
    transform: translateX(225%);
  }
}

@keyframes softPulse {
  0%,
  100% {
    opacity: 0.72;
    filter: drop-shadow(0 0 12px currentColor);
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 24px currentColor);
  }
}

@keyframes typewriterCursor {
  0%,
  48% {
    opacity: 1;
  }
  49%,
  100% {
    opacity: 0;
  }
}

.signal-line,
.cursor-beam {
  animation: softPulse 3.8s ease-in-out infinite;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--header-h) + 42px);
  }

  .hero-copy {
    padding-bottom: 24px;
  }

  .hero-system {
    min-height: 640px;
    margin-top: -20px;
  }

  .hero-strip {
    position: relative;
    margin: 0 calc(clamp(20px, 4vw, 62px) * -1);
  }

  .service-grid,
  .outcome-grid,
  .process-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 76px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    justify-content: space-between;
  }

  .brand-name {
    font-size: 28px;
  }

  .nav {
    display: none;
  }

  .header-email {
    display: inline-flex;
    justify-self: end;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(24, 229, 255, 0.28);
    border-radius: 4px;
  }

  .header-email span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .header-cta {
    min-width: 190px;
    min-height: 48px;
    padding: 0 18px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: clamp(36px, 8.4vw, 68px);
  }

  .hero-system {
    min-height: 600px;
    transform: scale(0.88);
    transform-origin: center top;
    margin: 0 -8vw -70px;
  }

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

  .hero-strip p {
    grid-column: 1 / -1;
    max-width: none;
    min-height: auto;
    margin-bottom: 18px;
  }

  .hero-strip div {
    border-left: 0;
    border-top: 1px dashed rgba(198, 255, 46, 0.18);
    padding: 18px 18px 0 0;
  }

  .section-head,
  .contact,
  .trust-panel {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    grid-column: auto;
    grid-row: auto;
    position: static;
  }

  .contact-form,
  .faq-list {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 78px;
  }

  #hero,
  #services,
  #outcome,
  #process,
  #contact {
    scroll-margin-top: 78px;
  }

  body {
    background:
      radial-gradient(circle at 50% 4%, rgba(198, 255, 46, 0.11), transparent 18rem),
      radial-gradient(circle at 100% 26%, rgba(24, 229, 255, 0.06), transparent 16rem),
      linear-gradient(180deg, #030507 0%, #070a0d 42%, #05080a 100%);
  }

  .cursor-glow {
    display: none;
  }

  .site-header {
    height: 70px;
    padding: 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(3, 6, 8, 0.84);
    backdrop-filter: blur(18px);
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    grid-template-columns: repeat(3, 6px);
    gap: 4px;
  }

  .brand-mark span {
    width: 6px;
    height: 28px;
  }

  .brand-name {
    font-size: 25px;
  }

  .header-cta {
    min-width: auto;
    width: 48px;
    min-height: 48px;
    padding: 0;
    border-color: rgba(198, 255, 46, 0.68);
    background: rgba(198, 255, 46, 0.06);
  }

  .header-cta span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .header-cta::before,
  .header-cta::after {
    width: 10px;
    height: 10px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 92px 16px 40px;
    overflow: visible;
  }

  .hero::before {
    background:
      linear-gradient(rgba(198, 255, 46, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(24, 229, 255, 0.035) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(180deg, black 0%, transparent 82%);
  }

  .hero-copy {
    max-width: 100%;
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 12.8vw, 52px);
    line-height: 0.98;
    text-wrap: pretty;
  }

  .mobile-trim {
    display: none;
  }

  .hero-copy p {
    max-width: 100%;
    margin-top: 16px;
    color: rgba(244, 246, 244, 0.72);
    font-size: 17px;
    line-height: 1.42;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 6px;
    font-size: 16px;
  }

  .button-secondary {
    min-height: 42px;
    border-color: transparent;
    background: transparent;
    color: var(--cyan);
    box-shadow: none;
  }

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

  .hero-system {
    display: none;
  }

  .mobile-process {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin: 22px 0 0;
    padding: 16px 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(12, 18, 23, 0.92), rgba(4, 8, 10, 0.84));
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  }

  .mobile-process h2,
  .mobile-process > p {
    grid-column: 1 / -1;
  }

  .mobile-process h2 {
    margin: 0 0 16px;
    font-family: "Space Grotesk", Manrope, sans-serif;
    font-size: 20px;
    line-height: 1.1;
  }

  .mobile-process article {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 7px;
    min-width: 0;
    padding: 0 3px;
    text-align: center;
  }

  .mobile-process article::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 50%;
    z-index: 0;
    width: 100%;
    height: 1px;
    background: rgba(198, 255, 46, 0.42);
  }

  .mobile-process article:first-of-type::before {
    left: 50%;
    width: 50%;
  }

  .mobile-process article:last-of-type::before {
    left: 0;
    width: 50%;
  }

  .mobile-process article::after {
    content: "";
    position: relative;
    z-index: 1;
    grid-row: 1;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid currentColor;
    background: #081014;
    box-shadow: 0 0 18px rgba(198, 255, 46, 0.2);
  }

  .mobile-process article:nth-of-type(2),
  .mobile-process article:nth-of-type(3),
  .mobile-process article:nth-of-type(4) {
    color: var(--cyan);
  }

  .mobile-process article:nth-of-type(5) {
    color: var(--orange);
  }

  .mobile-process span {
    position: absolute;
    top: 7px;
    z-index: 2;
    color: var(--lime);
    font-family: "Space Grotesk", Manrope, sans-serif;
    font-size: 10px;
    font-weight: 800;
  }

  .mobile-process strong {
    margin-top: 7px;
    color: rgba(244, 246, 244, 0.82);
    font-size: 10px;
    line-height: 1.25;
  }

  .mobile-process p {
    margin: 16px 0 0;
    padding: 12px 13px;
    border-left: 3px solid var(--orange);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(244, 246, 244, 0.82);
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-strip {
    display: none;
  }

  .section,
  .contact {
    padding: 50px 16px;
  }

  .section-head {
    display: block;
    margin-bottom: 24px;
  }

  .section h2,
  .contact h2 {
    font-size: clamp(27px, 8.2vw, 34px);
    line-height: 1.12;
  }

  .desktop-copy {
    display: none;
  }

  .mobile-copy,
  .mobile-section-copy {
    display: block;
  }

  .mobile-section-copy {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
  }

  .section-index {
    display: block;
    margin-bottom: 16px;
  }

  .services {
    padding-top: 38px;
  }

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

  .service-card {
    position: relative;
    min-height: 130px;
    padding: 16px 14px 38px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background:
      radial-gradient(circle at 24px 28px, rgba(198, 255, 46, 0.1), transparent 34px),
      linear-gradient(145deg, rgba(15, 22, 28, 0.94), rgba(7, 11, 14, 0.92));
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  }

  .service-card::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 13px;
    height: 13px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    color: rgba(244, 246, 244, 0.62);
    transform: rotate(-45deg);
  }

  .service-card > span {
    position: relative;
    display: block;
    width: 32px;
    height: 30px;
    border: 1px solid currentColor;
    border-radius: 5px;
    color: var(--cyan);
    font-size: 0;
    letter-spacing: 0;
  }

  .service-card > span::before,
  .service-card > span::after {
    content: "";
    position: absolute;
    inset: auto;
    border-color: currentColor;
  }

  .service-card > span::before {
    left: 7px;
    right: 7px;
    top: 8px;
    height: 2px;
    border-top: 2px solid currentColor;
  }

  .service-card > span::after {
    left: 7px;
    right: 7px;
    bottom: 8px;
    height: 6px;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
  }

  .service-card:nth-child(1) > span,
  .service-card:nth-child(4) > span {
    color: var(--lime);
  }

  .service-card:nth-child(3) > span,
  .service-card:nth-child(6) > span {
    color: var(--orange);
  }

  .service-card h3 {
    max-width: calc(100% - 8px);
    margin: 18px 0 0;
    overflow-wrap: anywhere;
    font-size: clamp(18px, 4.8vw, 20px);
    line-height: 1.15;
  }

  .service-card p {
    display: none;
  }

  .outcome {
    padding-top: 34px;
    padding-bottom: 46px;
  }

  .outcome::before {
    display: none;
  }

  .outcome-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid rgba(198, 255, 46, 0.2);
    border-left: 3px solid var(--lime);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(13, 20, 24, 0.94), rgba(6, 11, 13, 0.92));
    box-shadow: var(--shadow-lime);
    overflow: hidden;
  }

  .outcome-card {
    min-height: auto;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
  }

  .outcome-card:nth-child(n+4) {
    display: none;
  }

  .outcome-card:last-child,
  .outcome-card:nth-child(3) {
    border-bottom: 0;
  }

  .outcome-card::after {
    display: none;
  }

  .outcome-card > span {
    color: var(--lime);
    font-size: 11px;
  }

  .outcome-card h3 {
    margin: 10px 0 7px;
    font-size: 19px;
  }

  .outcome-card p {
    font-size: 14px;
    line-height: 1.55;
  }

  .process {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .process-rail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    border-left: 1px solid rgba(198, 255, 46, 0.28);
    padding-left: 18px;
    background: transparent;
  }

  .process-rail::before {
    display: none;
  }

  .process-rail article {
    min-height: auto;
    padding: 14px 0 14px 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .process-rail article::before {
    content: "";
    position: absolute;
    left: -26px;
    top: 22px;
    width: 13px;
    height: 13px;
    border-radius: 999px;
    background: var(--lime);
    box-shadow: 0 0 18px rgba(198, 255, 46, 0.5);
  }

  .process-rail article:nth-child(3)::before,
  .process-rail article:nth-child(4)::before {
    background: var(--cyan);
    box-shadow: 0 0 18px rgba(24, 229, 255, 0.42);
  }

  .process-rail article:nth-child(5)::before {
    background: var(--orange);
    box-shadow: 0 0 18px rgba(255, 107, 42, 0.42);
  }

  .process-rail span {
    color: var(--lime);
    font-size: 12px;
  }

  .process-rail h3 {
    margin: 6px 0 5px;
    font-size: 20px;
  }

  .process-rail p {
    display: none;
  }

  .trust,
  .trust-panel {
    display: none;
  }

  .contact {
    gap: 20px;
    padding-top: 46px;
  }

  .contact-copy {
    order: 1;
    position: static;
  }

  .contact-copy .section-index {
    margin-bottom: 18px;
  }

  .contact h2 {
    font-size: clamp(28px, 8.4vw, 35px);
  }

  .contact-copy p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.56;
  }

  .contact-email {
    margin-top: 16px;
    font-size: 16px;
  }

  .contact-form {
    order: 2;
    gap: 20px;
    padding: 16px;
    border-color: rgba(255, 255, 255, 0.13);
    background:
      radial-gradient(circle at 88% 0%, rgba(24, 229, 255, 0.08), transparent 46%),
      linear-gradient(180deg, rgba(16, 22, 27, 0.95), rgba(7, 11, 14, 0.95));
  }

  .project-select__menu {
    max-height: min(238px, calc(100vh - 104px));
  }

  .faq-list {
    order: 3;
    margin-top: 0;
  }

  .faq-list summary {
    min-height: 48px;
    padding: 14px;
    font-size: 14px;
  }

  .site-footer {
    display: grid;
    justify-items: start;
    padding: 28px 16px;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 440px) {
  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(37px, 11.5vw, 46px);
  }

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

  .mobile-process {
    padding: 15px 9px;
  }

  .mobile-process strong {
    font-size: 9px;
  }

  .hero-system {
    display: none;
  }

  .service-grid {
    gap: 9px;
  }

  .service-card {
    min-height: 124px;
    padding: 15px 12px 36px;
  }

  .service-card h3 {
    font-size: clamp(16px, 4.7vw, 18px);
  }

  .contact-form {
    gap: 18px;
    padding: 16px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .project-select__button {
    min-height: 56px;
    padding-inline: 16px;
    font-size: 15px;
  }

  .project-select__button {
    min-height: 58px;
  }

  .project-select__menu {
    max-height: min(224px, calc(100vh - 96px));
  }
}

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

  .cursor-glow {
    display: none;
  }

  .hero-system.is-assembled .stage-card {
    animation: none !important;
    opacity: 1;
    filter: none;
    transform: var(--stage-transform);
  }

  .stage-card::before {
    display: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Approved visual direction: operating core + editorial system map. */
.hero-system {
  min-height: min(700px, 68vh);
  overflow: visible;
}

.hero-system .system-grid {
  inset: 10% -12% 2% -12%;
  transform: rotateX(62deg) rotateZ(-10deg);
  opacity: 0.34;
}

.system-connectors {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.connector {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 9px currentColor);
  opacity: 0.82;
  stroke-dasharray: 9 13;
  animation: connectorFlow 4.5s linear infinite;
}

.connector-data,
.connector-security {
  color: var(--lime);
  stroke: var(--lime);
}

.connector-integrations,
.connector-automation {
  color: var(--cyan);
  stroke: var(--cyan);
}

.connector-development {
  color: var(--orange);
  stroke: var(--orange);
}

.connector-dot {
  fill: var(--bg);
  stroke-width: 3;
  filter: drop-shadow(0 0 8px currentColor);
  animation: connectorDotPulse 2.8s ease-in-out infinite;
}

.connector-dot-data,
.connector-dot-security { stroke: var(--lime); color: var(--lime); }
.connector-dot-integrations,
.connector-dot-automation { stroke: var(--cyan); color: var(--cyan); }
.connector-dot-development { stroke: var(--orange); color: var(--orange); }

.system-core {
  position: absolute;
  z-index: 5;
  top: 45%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 178px;
  height: 178px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(198, 255, 46, 0.94);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 34%, rgba(198, 255, 46, 0.16), transparent 42%),
    linear-gradient(145deg, rgba(17, 25, 26, 0.98), rgba(5, 10, 12, 0.95));
  box-shadow: 0 0 0 7px rgba(198, 255, 46, 0.08), 0 0 54px rgba(198, 255, 46, 0.28), 0 28px 70px rgba(0, 0, 0, 0.54);
  text-align: center;
  will-change: transform;
}

.system-core::before,
.system-core::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(198, 255, 46, 0.24);
  border-radius: 34px;
  transform: rotate(45deg);
}

.system-core::after {
  inset: -20px;
  border-color: rgba(24, 229, 255, 0.14);
  transform: rotate(45deg) scale(0.84);
}

.system-core__mark {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 6px;
  transform: skewX(-14deg);
}

.system-core__mark i {
  display: block;
  width: 10px;
  height: 31px;
  background: var(--lime);
}

.system-core__mark i:nth-child(2) { background: #f3f7f3; }
.system-core__mark i:nth-child(3) { background: var(--cyan); }

.system-core strong {
  position: relative;
  z-index: 1;
  margin-top: 13px;
  color: rgba(244, 246, 244, 0.92);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 15px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.system-core__pulse {
  position: absolute;
  z-index: 1;
  right: 23px;
  bottom: 22px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(198, 255, 46, 0.1), 0 0 18px var(--lime);
  animation: corePulse 2s ease-in-out infinite;
}

.system-node {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  width: 208px;
  min-height: 106px;
  padding: 18px 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(18, 27, 31, 0.94), rgba(7, 12, 15, 0.9));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42), inset 0 0 24px rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(12px);
  will-change: transform;
}

.system-node::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 35%);
  pointer-events: none;
}

.system-node__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  border-radius: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 21px;
  line-height: 1;
}

.system-node h3,
.system-node p {
  position: relative;
  margin: 0;
}

.system-node h3 {
  color: rgba(244, 246, 244, 0.92);
  font-size: 16px;
  line-height: 1.1;
}

.system-node p {
  margin-top: 9px;
  color: rgba(244, 246, 244, 0.56);
  font-size: 12px;
  line-height: 1.45;
}

.system-node-data { top: 4%; left: 5%; color: var(--lime); border-color: rgba(198, 255, 46, 0.36); }
.system-node-integrations { top: 4%; right: 3%; color: var(--cyan); border-color: rgba(24, 229, 255, 0.34); }
.system-node-automation { top: 49%; left: 0; color: var(--cyan); border-color: rgba(24, 229, 255, 0.34); }
.system-node-development { top: 50%; right: 0; color: var(--orange); border-color: rgba(255, 107, 42, 0.36); }
.system-node-security { bottom: 1%; left: 50%; color: var(--lime); border-color: rgba(198, 255, 46, 0.34); transform: translateX(-50%); }

.system-signal {
  position: absolute;
  right: 4%;
  bottom: 1%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(244, 246, 244, 0.52);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.system-signal span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px var(--lime);
  animation: corePulse 2s ease-in-out infinite;
}

@keyframes connectorFlow { to { stroke-dashoffset: -110; } }
@keyframes connectorDotPulse { 50% { opacity: 0.52; transform: scale(0.72); } }
@keyframes corePulse { 50% { opacity: 0.48; box-shadow: 0 0 0 8px rgba(198, 255, 46, 0.04), 0 0 9px var(--lime); } }

@media (max-width: 1120px) {
  .system-node { width: 190px; }
  .system-node-data { left: 2%; }
  .system-node-integrations { right: 1%; }
  .system-node-development { right: 1%; }
}

@media (max-width: 980px) {
  .hero-system { min-height: 610px; }
  .system-node { width: 184px; }
  .system-core { width: 164px; height: 164px; }
  .system-signal { right: 8%; }
}

@media (max-width: 720px) {
  .mobile-trim { display: inline; }
  .hero-system { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .connector,
  .connector-dot,
  .system-core__pulse,
  .system-signal span { animation: none; }
}

/* Services: light reference-inspired surface, kept inside the WebЦех system. */
.services {
  max-width: none;
  padding-top: clamp(78px, 9vw, 132px);
  padding-bottom: clamp(82px, 9vw, 132px);
  background: #edf2f6;
  color: #132744;
}

.services .section-head,
.services .service-grid,
.services .section-actions {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.services .section-head {
  row-gap: 16px;
  margin-bottom: 30px;
}

.services .section-index {
  color: #ed7139;
}

.services .section-head h2 {
  color: #102746;
}

.section-intro {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(16, 39, 70, 0.68);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.55;
}

.services .section-head .section-intro {
  grid-column: 2;
}

.services .service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  border: 0;
  background: transparent;
}

.services .service-card {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 28px 28px 25px;
  border: 1px solid rgba(16, 39, 70, 0.08);
  border-top: 5px solid #2674c6;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(24, 53, 86, 0.07);
  color: #132744;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.services .service-card:hover,
.services .service-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(237, 113, 57, 0.45);
  box-shadow: 0 20px 38px rgba(24, 53, 86, 0.16);
}

.services .service-card__index {
  color: #2674c6;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.services .service-card h3 {
  margin: 42px 0 14px;
  color: #ed7139;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 700;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.services .service-card p {
  margin: 0;
  color: #183b67;
  font-size: 16px;
  line-height: 1.58;
}

.services .service-card__price {
  display: block;
  margin-top: auto;
  padding-top: 25px;
  color: #25313f;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.section-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.section-actions .button {
  min-width: 260px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: currentColor;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.text-link span {
  color: var(--orange);
  font-size: 22px;
  line-height: 1;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--orange);
  transform: translateX(3px);
}

/* Process: six readable steps, with the reference's calm editorial rhythm. */
.process .section-head .section-intro {
  grid-column: 2;
}

.process-rail {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  background: none;
}

.process-rail::before {
  display: none;
}

.process-rail article {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 27px 26px 25px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-top: 3px solid var(--cyan);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(13, 24, 31, 0.96), rgba(7, 13, 17, 0.94));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.process-rail article:nth-child(2),
.process-rail article:nth-child(5) { border-top-color: var(--lime); }

.process-rail article:nth-child(3),
.process-rail article:nth-child(6) { border-top-color: var(--orange); }

.process-rail article:hover,
.process-rail article:focus-within {
  transform: translateY(-6px);
  border-color: rgba(24, 229, 255, 0.42);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.3);
}

.process-rail span {
  color: var(--orange);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.process-rail h3 {
  margin: 44px 0 13px;
  color: rgba(244, 246, 244, 0.94);
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.14;
}

.process-rail p {
  margin: 0;
  color: rgba(244, 246, 244, 0.62);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 1120px) {
  .services .service-grid,
  .process-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .services { padding-top: 52px; padding-bottom: 62px; }
  .services .section-head .section-intro,
  .process .section-head .section-intro { grid-column: auto; }
  .section-intro { margin-top: 14px; font-size: 16px; }
  .services .service-grid,
  .process-rail { grid-template-columns: 1fr; gap: 14px; }
  .services .service-card { min-height: 280px; padding: 24px 21px 22px; border-radius: 20px; }
  .services .service-card h3 { margin: 27px 0 12px; font-size: clamp(24px, 8.2vw, 31px); }
  .services .service-card p { display: block; font-size: 15px; }
  .services .service-card__price { padding-top: 22px; }
  .section-actions { display: grid; align-items: stretch; gap: 13px; margin-top: 26px; }
  .section-actions .button { width: 100%; min-width: 0; }
  .section-actions .text-link { justify-content: center; min-height: 42px; }
  .process { padding-top: 58px; padding-bottom: 64px; }
  .process-rail article { min-height: 0; padding: 22px 21px 23px; border-radius: 17px; }
  .process-rail h3 { margin: 22px 0 9px; font-size: 21px; }
  .process-rail p { display: block; font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .services .service-card,
  .process-rail article,
  .text-link { transition: none; }
}

@media (min-width: 1121px) {
  .hero { padding-bottom: clamp(118px, 13vh, 156px); }
  .hero-copy { padding-bottom: 0; }
  .hero-strip { padding-top: 20px; padding-bottom: 20px; }
  .hero-strip p { font-size: clamp(22px, 1.8vw, 30px); }
  .hero-strip p,
  .hero-strip div { min-height: 70px; }
  .system-node-security { bottom: 10%; }
  .system-signal { bottom: 10%; }
}

@media (max-width: 1120px) {
  .hero-copy { padding-bottom: 0; }
  .hero-system { overflow: hidden; }
}

@media (max-width: 720px) {
  .hero { padding-bottom: 40px; }
}

/* Services follow the dark WebЦех visual language rather than the light reference surface. */
.services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(24, 229, 255, 0.09), transparent 28rem),
    radial-gradient(circle at 12% 78%, rgba(198, 255, 46, 0.07), transparent 24rem),
    #070b0f;
  color: rgba(244, 246, 244, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(198, 255, 46, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 229, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 82%);
}

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

.services .section-index {
  color: var(--lime);
}

.services .section-head h2 {
  color: rgba(244, 246, 244, 0.96);
}

.services .section-intro {
  color: rgba(244, 246, 244, 0.62);
}

.services .service-card {
  min-height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-top: 3px solid var(--cyan);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 10%, rgba(24, 229, 255, 0.08), transparent 13rem),
    linear-gradient(145deg, rgba(16, 25, 31, 0.96), rgba(7, 12, 16, 0.95));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3), inset 0 0 28px rgba(255, 255, 255, 0.018);
  color: rgba(244, 246, 244, 0.92);
}

.services .service-card:nth-child(1),
.services .service-card:nth-child(4) {
  border-top-color: var(--lime);
}

.services .service-card:nth-child(3) {
  border-top-color: var(--orange);
}

.services .service-card:nth-child(5) {
  border-top-color: var(--cyan);
}

.services .service-card:hover,
.services .service-card:focus-within {
  border-color: rgba(198, 255, 46, 0.5);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.42), 0 0 32px rgba(198, 255, 46, 0.08);
}

.services .service-card__index {
  color: var(--cyan);
}

.services .service-card:nth-child(1) .service-card__index,
.services .service-card:nth-child(4) .service-card__index {
  color: var(--lime);
}

.services .service-card:nth-child(3) .service-card__index {
  color: var(--orange);
}

.services .service-card h3 {
  margin-top: 42px;
  color: rgba(244, 246, 244, 0.96);
  font-size: clamp(23px, 2vw, 30px);
}

.services .service-card h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 15px;
  background: var(--cyan);
  box-shadow: 0 0 14px currentColor;
}

.services .service-card:nth-child(1) h3::after,
.services .service-card:nth-child(4) h3::after { background: var(--lime); }
.services .service-card:nth-child(3) h3::after { background: var(--orange); }

.services .service-card p {
  color: rgba(244, 246, 244, 0.64);
}

.services .service-card__price {
  color: var(--lime);
  font-family: "Space Grotesk", Manrope, sans-serif;
}

.services .section-actions .text-link {
  color: rgba(244, 246, 244, 0.8);
}

@media (max-width: 720px) {
  .services .service-card { min-height: 280px; }
  .services .service-card h3 { margin-top: 27px; }
  .services .section-head {
    row-gap: 0;
    margin-bottom: 25px;
  }
}

/* Selected work and the in-progress SIEM product. */
.cases {
  max-width: none;
  background:
    radial-gradient(circle at 12% 14%, rgba(198, 255, 46, 0.06), transparent 26rem),
    #080d11;
}

.cases .section-head,
.cases .case-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

/* Hero density and interactive data-flow treatment. */
.hero {
  display: block;
  padding-inline: 0;
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(430px, 0.86fr) minmax(620px, 1.14fr);
  align-items: center;
  gap: clamp(24px, 3vw, 56px);
  width: min(1500px, calc(100% - clamp(40px, 8vw, 124px)));
  min-height: calc(100vh - var(--header-h) - 112px);
  margin: 0 auto;
}

.hero-stage .hero-copy {
  max-width: 650px;
  padding-bottom: 0;
}

.hero-stage .hero-system {
  width: 100%;
  min-height: min(650px, 66vh);
}

.data-packet {
  filter: drop-shadow(0 0 4px currentColor) drop-shadow(0 0 12px currentColor);
}

.data-packet--lime { color: var(--lime); fill: var(--lime); }
.data-packet--cyan { color: var(--cyan); fill: var(--cyan); }
.data-packet--orange { color: var(--orange); fill: var(--orange); }

.system-node {
  outline: none;
  cursor: default;
  transition: border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.connector {
  transition: opacity 180ms ease, stroke-width 180ms ease, filter 180ms ease;
}

.hero-system.has-active-node .system-node:not(.is-active),
.hero-system.has-active-node .connector:not(.is-active) {
  opacity: 0.34;
  filter: saturate(0.55);
}

.system-node.is-active,
.system-node:focus-visible {
  border-color: currentColor;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.48), 0 0 28px color-mix(in srgb, currentColor 24%, transparent);
}

.connector.is-active {
  opacity: 1;
  stroke-width: 4;
  filter: drop-shadow(0 0 14px currentColor);
}

.system-core.is-reacting {
  box-shadow: 0 0 0 9px rgba(198, 255, 46, 0.11), 0 0 76px rgba(198, 255, 46, 0.42), 0 28px 70px rgba(0, 0, 0, 0.54);
}

/* Editorial pricing registry from the approved concept. */
.services {
  display: grid;
  grid-template-columns: minmax(250px, 350px) minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: clamp(56px, 7vw, 132px);
  align-items: start;
  padding-inline: max(clamp(20px, 4vw, 62px), calc((100% - var(--max)) / 2));
}

.services .section-head,
.services .service-grid,
.services .section-actions {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.services .section-head {
  display: block;
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}

.services .section-index {
  display: block;
  margin-bottom: 28px;
}

.services .section-head h2 {
  max-width: 330px;
  font-size: clamp(40px, 3.5vw, 64px);
  line-height: 0.98;
}

.services .section-head .section-intro {
  grid-column: auto;
  max-width: 320px;
  margin-top: 28px;
}

.services .service-grid {
  display: block;
  grid-column: 2;
  grid-row: 1 / span 2;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 42px 4px minmax(0, 1fr) minmax(150px, auto) 28px;
  gap: 18px;
  align-items: center;
  min-height: 70px;
  padding: 8px 10px 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(244, 246, 244, 0.94);
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.service-row::before {
  content: "";
  position: absolute;
  inset: 5px 0;
  z-index: -1;
  border: 1px solid transparent;
  background: linear-gradient(90deg, rgba(198, 255, 46, 0.055), rgba(24, 229, 255, 0.025));
  opacity: 0;
  transition: opacity 180ms ease, border-color 180ms ease;
}

.service-row:hover::before,
.service-row:focus-visible::before {
  border-color: rgba(198, 255, 46, 0.22);
  opacity: 1;
}

.service-row:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.service-row__index {
  color: rgba(244, 246, 244, 0.48);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 13px;
  font-style: italic;
}

.service-row i {
  width: 4px;
  height: 24px;
  background: var(--lime);
  box-shadow: 0 0 13px rgba(198, 255, 46, 0.38);
}

.service-row:nth-child(3n + 2) i { background: var(--cyan); box-shadow: 0 0 13px rgba(24, 229, 255, 0.38); }
.service-row:nth-child(3n) i { background: var(--orange); box-shadow: 0 0 13px rgba(255, 107, 42, 0.38); }

.service-row h3,
.service-row strong {
  margin: 0;
  font-family: "Space Grotesk", Manrope, sans-serif;
  line-height: 1.2;
}

.service-row h3 {
  color: inherit;
  font-size: clamp(17px, 1.25vw, 21px);
}

.service-row strong {
  color: rgba(244, 246, 244, 0.94);
  font-size: clamp(15px, 1.1vw, 18px);
  white-space: nowrap;
}

.service-row svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.service-row:nth-child(3n + 2) svg { stroke: var(--cyan); }
.service-row:nth-child(3n) svg { stroke: var(--orange); }
.service-row:hover svg,
.service-row:focus-visible svg { transform: translateX(4px); }

.services .section-actions {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  margin-top: 34px;
}

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

@media (min-width: 1800px) {
  .hero-stage {
    grid-template-columns: 560px 800px;
    justify-content: space-between;
  }
}

@media (max-width: 1120px) {
  .hero-stage {
    grid-template-columns: 1fr;
    gap: 20px;
    width: min(820px, calc(100% - 48px));
    min-height: auto;
  }

  .hero-stage .hero-copy {
    max-width: 720px;
    padding-top: 40px;
  }

  .hero-stage .hero-system {
    width: min(760px, 100%);
    min-height: 610px;
    margin-inline: auto;
  }

  .services {
    grid-template-columns: minmax(220px, 290px) minmax(0, 1fr);
    column-gap: 40px;
  }

  .service-row {
    grid-template-columns: 34px 4px minmax(0, 1fr) minmax(135px, auto) 24px;
    gap: 12px;
  }
}

@media (max-width: 820px) {
  .services {
    display: block;
  }

  .services .section-head {
    margin-bottom: 34px;
  }

  .services .section-head h2,
  .services .section-head .section-intro {
    max-width: 620px;
  }

  .services .section-actions {
    margin-top: 28px;
  }
}

@media (max-width: 720px) {
  html,
  body { overflow-x: clip; }

  .hero-stage {
    display: block;
    width: calc(100% - 40px);
  }

  .hero-stage .hero-copy {
    padding-top: 0;
  }

  .services .section-index {
    margin-bottom: 18px;
  }

  .services .section-head h2 {
    max-width: 100%;
    font-size: clamp(36px, 11vw, 50px);
    overflow-wrap: anywhere;
  }

  .services .section-head .section-intro { max-width: 100%; }

  .service-row {
    grid-template-columns: 30px 3px minmax(0, 1fr) 22px;
    gap: 11px;
    min-height: 86px;
    padding: 11px 4px;
  }

  .service-row i { height: 30px; }

  .service-row h3 {
    align-self: end;
    font-size: 17px;
  }

  .service-row strong {
    grid-column: 3;
    align-self: start;
    margin-top: -4px;
    color: var(--lime);
    font-size: 14px;
  }

  .service-row svg {
    grid-column: 4;
    grid-row: 1 / span 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .data-packets { display: none; }
  .system-node,
  .connector,
  .service-row,
  .service-row::before,
  .service-row svg { transition: none; }
}

.cases .section-head .section-intro {
  grid-column: 2;
  margin: 0 0 5px;
  color: rgba(244, 246, 244, 0.62);
}

.cases .section-head {
  row-gap: 16px;
  margin-bottom: 30px;
}

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

.case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 365px;
  padding: 27px 27px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-top: 3px solid var(--cyan);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 8%, rgba(24, 229, 255, 0.1), transparent 14rem),
    linear-gradient(145deg, rgba(15, 25, 31, 0.96), rgba(7, 12, 16, 0.96));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.case-card:nth-child(1) { border-top-color: var(--lime); }
.case-card:nth-child(3) { border-top-color: var(--orange); }

.case-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -56px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(24, 229, 255, 0.16);
  transform: rotate(45deg);
  pointer-events: none;
}

.case-card:hover,
.case-card:focus-within {
  transform: translateY(-7px);
  border-color: rgba(24, 229, 255, 0.46);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.4), 0 0 28px rgba(24, 229, 255, 0.08);
}

.case-card--progress {
  background:
    radial-gradient(circle at 82% 12%, rgba(198, 255, 46, 0.14), transparent 15rem),
    linear-gradient(145deg, rgba(18, 29, 23, 0.98), rgba(7, 13, 16, 0.96));
}

.case-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--cyan);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-card:nth-child(1) .case-card__meta span:first-child { color: var(--lime); }
.case-card:nth-child(3) .case-card__meta span:first-child { color: var(--orange); }

.case-card h3 {
  max-width: 340px;
  margin: 54px 0 15px;
  color: rgba(244, 246, 244, 0.96);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.case-card p {
  margin: 0;
  color: rgba(244, 246, 244, 0.62);
  font-size: 15px;
  line-height: 1.58;
}

.case-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.case-card__tags span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  color: rgba(244, 246, 244, 0.62);
  font-size: 11px;
  line-height: 1;
}

.case-card__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 26px;
  color: var(--lime);
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.case-card:nth-child(2) .case-card__link { color: var(--cyan); }
.case-card:nth-child(3) .case-card__link { color: var(--orange); }

.case-card__link span {
  font-size: 20px;
  line-height: 1;
}

.case-card__link:hover,
.case-card__link:focus-visible {
  color: #fff;
  transform: translateX(3px);
}

@media (max-width: 1120px) {
  .case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .cases .section-head {
    row-gap: 0;
    margin-bottom: 25px;
  }
  .cases .section-head .section-intro {
    grid-column: auto;
    margin-top: 14px;
  }
  .case-grid { grid-template-columns: 1fr; gap: 14px; }
  .case-card { min-height: 320px; padding: 23px 21px 22px; border-radius: 17px; }
  .case-card h3 { margin-top: 34px; font-size: clamp(23px, 7.6vw, 29px); }
  .case-card p { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .case-card,
  .case-card__link { transition: none; }
}

/* Process refinement: tighter hierarchy and stronger step controls. */
.process {
  background:
    radial-gradient(circle at 14% 12%, rgba(24, 229, 255, 0.1), transparent 28rem),
    radial-gradient(circle at 86% 88%, rgba(198, 255, 46, 0.06), transparent 25rem),
    #080d11;
}

.process .section-head {
  align-items: end;
  row-gap: 16px;
  margin-bottom: 36px;
}

.process .section-head h2 {
  max-width: 720px;
}

.process .section-head .section-intro {
  align-self: end;
  margin: 0 0 5px;
  color: rgba(244, 246, 244, 0.62);
}

.process-rail {
  gap: 14px;
}

.process-rail article {
  min-height: 268px;
  padding: 23px 24px 22px;
  border-top-width: 4px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 8%, rgba(24, 229, 255, 0.07), transparent 12rem),
    linear-gradient(145deg, rgba(13, 24, 31, 0.98), rgba(7, 13, 17, 0.96));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24), inset 0 0 22px rgba(255, 255, 255, 0.018);
}

.process-rail article:nth-child(2),
.process-rail article:nth-child(5) {
  background:
    radial-gradient(circle at 88% 8%, rgba(198, 255, 46, 0.08), transparent 12rem),
    linear-gradient(145deg, rgba(16, 27, 25, 0.98), rgba(7, 13, 17, 0.96));
}

.process-rail article:nth-child(3),
.process-rail article:nth-child(6) {
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 107, 42, 0.08), transparent 12rem),
    linear-gradient(145deg, rgba(27, 23, 22, 0.98), rgba(7, 13, 17, 0.96));
}

.process-rail span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: rgba(3, 8, 11, 0.58);
  color: var(--orange);
  font-size: 17px;
  line-height: 1;
  box-shadow: 0 0 18px rgba(255, 107, 42, 0.08);
}

.process-rail article:nth-child(1) span,
.process-rail article:nth-child(4) span { color: var(--cyan); }
.process-rail article:nth-child(2) span,
.process-rail article:nth-child(5) span { color: var(--lime); }

.process-rail h3 {
  margin: 28px 0 10px;
  font-size: clamp(20px, 1.65vw, 24px);
  line-height: 1.12;
}

.process-rail p {
  color: rgba(244, 246, 244, 0.68);
  font-size: 15px;
  line-height: 1.52;
}

/* Header alignment and a calmer heading scale. */
.site-header {
  grid-template-columns: auto minmax(320px, 1fr) auto auto;
}

.header-cta {
  min-width: 210px;
  min-height: 50px;
  padding-inline: 22px;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(42px, 3.8vw, 68px);
  line-height: 0.98;
}

.section h2,
.contact h2,
.services .section-head h2 {
  font-size: clamp(28px, 2.7vw, 42px);
  line-height: 1.1;
}

.trust-panel h2 {
  font-size: clamp(28px, 2.8vw, 42px);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: clamp(34px, 10.5vw, 44px);
  }

  .section h2,
  .contact h2,
  .services .section-head h2 {
    font-size: clamp(27px, 8.6vw, 36px);
  }
}

@media (max-width: 440px) {
  .hero h1 {
    font-size: clamp(32px, 9.8vw, 40px);
  }
}

.process .section-actions {
  max-width: var(--max);
  margin: 18px auto 0;
}

@media (max-width: 720px) {
  .process .section-head {
    row-gap: 0;
    margin-bottom: 25px;
  }
  .process .section-head .section-intro { margin-top: 14px; }
  .process-rail article { min-height: 0; padding: 20px 20px 21px; }
  .process-rail span { width: 44px; height: 44px; font-size: 15px; }
  .process-rail h3 { margin: 20px 0 9px; }
}

/* Mobile composition: compact header, full-width hero and readable timeline. */
@media (max-width: 720px) {
  :root { --header-h: 68px; }

  .site-header,
  .site-header.is-scrolled {
    grid-template-columns: auto 1fr 48px;
    gap: 10px;
    height: 68px;
    padding: 0 max(14px, env(safe-area-inset-left));
  }

  .brand { gap: 9px; }
  .brand-name { font-size: 24px; }

  .header-email {
    justify-self: end;
    width: 42px;
    height: 42px;
  }

  .header-cta {
    width: 48px;
    min-width: 48px;
    max-width: 48px;
    min-height: 46px;
    padding: 0;
    gap: 0;
  }

  .header-cta svg { width: 21px; height: 21px; }

  .hero {
    padding: 96px 20px 42px;
  }

  .hero-stage {
    width: 100%;
  }

  .hero h1 {
    max-width: 350px;
    font-size: clamp(34px, 10vw, 40px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    text-wrap: balance;
  }

  .hero-copy p {
    max-width: 350px;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 24px;
  }

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

  .hero-actions .button-primary {
    min-height: 56px;
  }

  .hero-actions .button-secondary {
    min-height: 48px;
  }

  .mobile-process {
    margin-top: 26px;
    padding: 18px 12px 16px;
    border-radius: 14px;
  }

  .mobile-process h2 {
    margin-bottom: 18px;
    font-size: 19px;
  }

  .mobile-process article {
    gap: 8px;
    padding-inline: 2px;
  }

  .mobile-process strong {
    font-size: 10px;
    line-height: 1.2;
  }

  .mobile-process p {
    margin-top: 18px;
    padding: 12px 13px;
    font-size: 14px;
    line-height: 1.45;
  }

  .section,
  .contact {
    padding-inline: 20px;
  }

  .section h2,
  .contact h2,
  .services .section-head h2 {
    max-width: 100%;
    font-size: clamp(28px, 8.2vw, 34px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    overflow-wrap: normal;
  }
}

@media (max-width: 380px) {
  .site-header,
  .site-header.is-scrolled {
    grid-template-columns: auto 1fr 44px;
    gap: 7px;
    padding-inline: 12px;
  }

  .brand-name { font-size: 22px; }
  .header-email { width: 40px; height: 40px; }
  .header-cta { width: 44px; min-width: 44px; max-width: 44px; min-height: 44px; }
  .hero { padding-inline: 16px; }
  .section, .contact { padding-inline: 16px; }
  .mobile-process { padding-inline: 9px; }
  .mobile-process strong { font-size: 9px; }
}

/* Stable services registry on narrow Safari viewports. */
@media (max-width: 720px) {
  .services .service-grid {
    display: block;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    overflow: visible;
  }

  .service-row {
    display: grid;
    grid-template-columns: 30px 4px minmax(0, 1fr) 28px;
    grid-template-rows: auto auto;
    column-gap: 11px;
    row-gap: 5px;
    min-height: 86px;
    padding: 14px 4px;
  }

  .service-row__index {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: start;
    padding-top: 3px;
  }

  .service-row > i {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: stretch;
    width: 4px;
    height: auto;
    min-height: 36px;
  }

  .service-row h3 {
    grid-column: 3;
    grid-row: 1;
    align-self: end;
    min-width: 0;
    font-size: clamp(16px, 4.5vw, 18px);
    line-height: 1.18;
    overflow-wrap: break-word;
  }

  .service-row strong {
    grid-column: 3;
    grid-row: 2;
    align-self: start;
    min-width: 0;
    margin: 0;
    font-size: 14px;
    line-height: 1.25;
    white-space: normal;
  }

  .service-row svg {
    grid-column: 4;
    grid-row: 1 / 3;
    align-self: center;
    justify-self: end;
    width: 23px;
    height: 23px;
  }

  .service-row:last-child {
    margin-bottom: 2px;
  }
}

@media (max-width: 380px) {
  .service-row {
    grid-template-columns: 27px 3px minmax(0, 1fr) 24px;
    column-gap: 9px;
    padding-block: 13px;
  }

  .service-row h3 { font-size: 16px; }
  .service-row strong { font-size: 13px; }
  .service-row svg { width: 21px; height: 21px; }
}
