:root {
  --bg: #d6d6d6;
  --bg-2: #cfcfcf;
  --ink: #152033;
  --surface: #333333;
  --surface-2: #3a3a3a;
  --surface-deep: #2a2a2a;
  --line: rgba(21, 32, 51, 0.12);
  --line-dark: rgba(255, 255, 255, 0.1);
  --text: #152033;
  --text-dark: #e8edf5;
  --muted: #5a6474;
  --muted-dark: #9aa4b7;
  --mint: #3dffc8;
  --mint-ink: #0a8f6e;
  --mint-dim: rgba(61, 255, 200, 0.14);
  --violet: #7c6cff;
  --violet-dim: rgba(124, 108, 255, 0.18);
  --danger: #ff6b7a;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --font: "Inter", system-ui, sans-serif;
  --display: "Sora", "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3 { font-family: var(--display); letter-spacing: -0.04em; line-height: 1.12; margin: 0; }
p { margin: 0; }

.wrap {
  width: min(1470px, calc(100% - 40px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}

.skip:focus { left: 8px; background: #000; padding: 8px 12px; z-index: 99; }

.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(900px 500px at 12% -10%, rgba(124, 108, 255, 0.08), transparent 55%),
    radial-gradient(700px 420px at 90% 8%, rgba(61, 255, 200, 0.07), transparent 50%),
    linear-gradient(180deg, #e2e2e2 0%, #d6d6d6 45%, #cfcfcf 100%);
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.03) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.025) 0 1px, transparent 1px 3px);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 14px 0 0;
  background: transparent;
  border: 0;
  pointer-events: none;
}

.header__inner {
  pointer-events: auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 6px 8px 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(21, 32, 51, 0.1);
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 36px rgba(21, 32, 51, 0.1);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.header.is-scrolled .header__inner {
  background: rgba(255, 255, 255, 0.82);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.05em;
  flex-shrink: 0;
  color: #152033;
}

.logo svg { width: 32px; height: 32px; }
.logo span { color: var(--mint); }

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  padding: 3px;
  border-radius: 999px;
  background: rgba(21, 32, 51, 0.06);
  border: 1px solid rgba(21, 32, 51, 0.08);
}

.nav__drop { position: relative; }

.nav__tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 11px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #5a6474;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav__tab svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav__tab:hover,
.nav__tab.is-active,
.nav__drop.is-open .nav__tab {
  color: #04140f;
  background: rgba(255, 255, 255, 0.55);
}

.nav__tab.is-active {
  color: #04140f;
  background: var(--mint);
}

.nav__panel {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 300px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(21, 32, 51, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  z-index: 50;
}

.nav__drop:hover .nav__panel,
.nav__drop:focus-within .nav__panel,
.nav__drop.is-open .nav__panel {
  display: grid;
  gap: 2px;
}

.nav__panel-title {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #152033;
  margin-bottom: 4px;
}

.nav__panel-text {
  font-size: 13px;
  color: #5a6474;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 10px;
}

.nav__panel a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 10px;
  color: #152033;
  font-size: 13px;
  font-weight: 600;
}

.nav__panel a:hover {
  background: rgba(61, 255, 200, 0.28);
  color: #04140f;
}

#stages,
#services,
#process {
  scroll-margin-top: 108px;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--mint);
  color: #04140f;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.header__cta svg,
.header__login svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header .header__login {
  gap: 7px;
  color: #152033;
  border-color: rgba(21, 32, 51, 0.14);
  background: rgba(255, 255, 255, 0.35);
}

.header .header__login:hover {
  border-color: rgba(21, 32, 51, 0.28);
  color: #04140f;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(21, 32, 51, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.28);
  margin-left: auto;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #152033;
}

body:not(:has(.hero)) main {
  padding-top: 92px;
}

.hero {
  position: relative;
  isolation: isolate;
  padding: 108px 0 88px;
  overflow: hidden;
  background: #d6d6d6;
  color: #152033;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255, 255, 255, 0.55), transparent 60%),
    linear-gradient(180deg, #e2e2e2 0%, #d6d6d6 45%, #cfcfcf 100%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  will-change: transform;
}

.hero__orb--a {
  width: 420px;
  height: 420px;
  left: -8%;
  top: -10%;
  background: radial-gradient(circle, rgba(61, 255, 200, 0.35), transparent 68%);
  animation: hero-orb-a 14s ease-in-out infinite;
}

.hero__orb--b {
  width: 380px;
  height: 380px;
  right: -6%;
  top: 18%;
  background: radial-gradient(circle, rgba(124, 108, 255, 0.28), transparent 68%);
  animation: hero-orb-b 18s ease-in-out infinite;
}

.hero__orb--c {
  width: 300px;
  height: 300px;
  left: 35%;
  bottom: -12%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 70%);
  animation: hero-orb-c 16s ease-in-out infinite;
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  mix-blend-mode: multiply;
  background-image:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.03) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.025) 0 1px, transparent 1px 3px);
  animation: hero-grain 8s steps(4) infinite;
}

.hero__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, #d6d6d6);
}

@keyframes hero-orb-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 28px) scale(1.08); }
}

@keyframes hero-orb-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-36px, -24px) scale(1.1); }
}

@keyframes hero-orb-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -30px) scale(1.06); }
}

@keyframes hero-grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-1%, 1%); }
  50% { transform: translate(1%, -1%); }
  75% { transform: translate(-1%, -1%); }
  100% { transform: translate(0, 0); }
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero__copy h1 {
  color: #121826;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.05;
  margin-bottom: 22px;
}

@media (min-width: 901px) {
  .hero__copy h1 {
    font-size: clamp(64px, 5.2vw, 92px);
  }
}

.hero__copy h1 em {
  color: #0a8f6e;
}

.hero-rotate {
  display: inline-grid;
  vertical-align: bottom;
  overflow: hidden;
  height: 1.15em;
  min-width: 5.5ch;
  max-width: 100%;
  transition: width 0.45s ease;
}

.hero-rotate__word {
  grid-area: 1 / 1;
  white-space: nowrap;
  color: #0a8f6e;
  transform: translateY(0);
  opacity: 1;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease;
}

.hero-rotate__word.is-out {
  transform: translateY(-115%);
  opacity: 0;
}

.hero-rotate__word.is-prep {
  transform: translateY(115%);
  opacity: 0;
  transition: none;
}

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

.hero__copy .lead {
  color: #5b677a;
}

.hero-pitch {
  display: grid;
  gap: 26px;
  max-width: 560px;
  margin-top: 6px;
  animation: hero-pitch-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.12s;
}

@keyframes hero-pitch-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-pitch__lead {
  margin: 0;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.55;
  color: #4a5568;
  letter-spacing: -0.01em;
}

.hero-pitch__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-pitch__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.hero-pitch__btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.hero-pitch__btn--primary {
  background: #121826;
  color: #3dffc8;
  box-shadow: 0 14px 34px rgba(18, 24, 38, 0.18);
}

.hero-pitch__btn--primary:hover {
  transform: translateY(-2px);
  background: #0b101a;
  box-shadow: 0 18px 40px rgba(18, 24, 38, 0.24);
}

.hero-pitch__btn--primary:hover svg {
  transform: translateX(3px);
}

.hero-pitch__btn--ghost {
  background: transparent;
  color: #152033;
  border: 1px solid rgba(21, 32, 51, 0.16);
  backdrop-filter: blur(8px);
}

.hero-pitch__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(21, 32, 51, 0.28);
}

.hero-metrics {
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(21, 32, 51, 0.12);
}

.hero-metrics li {
  display: grid;
  gap: 4px;
  padding: 4px 18px 0 0;
  position: relative;
}

.hero-metrics li + li {
  padding-left: 18px;
  border-left: 1px solid rgba(21, 32, 51, 0.1);
}

.hero-metrics strong {
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: -0.03em;
  color: #121826;
  line-height: 1.15;
}

.hero-metrics span {
  font-size: 13px;
  color: #6b7a90;
  line-height: 1.35;
}

@media (max-width: 560px) {
  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero-metrics li,
  .hero-metrics li + li {
    padding: 0;
    border-left: 0;
    padding-left: 12px;
    border-left: 2px solid #0a8f6e;
  }
}

.hero .kicker {
  color: #0a8f6e;
  border-color: rgba(15, 32, 51, 0.1);
  background: rgba(255, 255, 255, 0.55);
}

.hero .kicker i {
  background: #0a8f6e;
  box-shadow: 0 0 12px rgba(10, 143, 110, 0.45);
}

.hero .btn--ghost {
  color: #152033;
  border-color: rgba(21, 32, 51, 0.16);
  background: rgba(255, 255, 255, 0.45);
}

.hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.75);
}

.hero .stat {
  border-color: rgba(21, 32, 51, 0.1);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}

.hero .stat strong {
  color: #121826;
}

.hero .stat span {
  color: #6b7a90;
}

.hero-aria {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  min-height: 420px;
}

.hero-aria__frame {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1;
  z-index: 1;
}

.hero-aria__aura {
  position: absolute;
  inset: -22%;
  z-index: 0;
  pointer-events: none;
  display: grid;
  place-items: center;
}

.hero-aria__aura > * {
  grid-area: 1 / 1;
}

.hero-aria__pulse {
  width: 68%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(10, 143, 110, 0.28);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
  animation: hero-aura-pulse 4.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  opacity: 0;
}

.hero-aria__pulse:nth-child(2) { animation-delay: 1.6s; }
.hero-aria__pulse:nth-child(3) { animation-delay: 3.2s; }

.hero-aria__orbit {
  width: 92%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px dashed rgba(18, 24, 38, 0.18);
  border-top-color: rgba(10, 143, 110, 0.55);
  border-right-color: rgba(10, 143, 110, 0.18);
  animation: hero-aura-spin 18s linear infinite;
}

.hero-aria__orbit--rev {
  width: 78%;
  border-style: dotted;
  border-color: rgba(18, 24, 38, 0.12);
  border-bottom-color: rgba(61, 255, 200, 0.55);
  animation-duration: 26s;
  animation-direction: reverse;
}

.hero-aria__sweep {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(61, 255, 200, 0.16) 28deg,
    transparent 70deg,
    transparent 360deg
  );
  mask-image: radial-gradient(circle, transparent 42%, #000 46%, #000 58%, transparent 62%);
  -webkit-mask-image: radial-gradient(circle, transparent 42%, #000 46%, #000 58%, transparent 62%);
  animation: hero-aura-spin 9s linear infinite;
  opacity: 0.85;
}

.hero-aria__stripes {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(18, 24, 38, 0.05) 0deg 6deg,
    transparent 6deg 14deg
  );
  mask-image: radial-gradient(circle, transparent 40%, #000 48%, #000 70%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle, transparent 40%, #000 48%, #000 70%, transparent 78%);
  animation: hero-aura-spin 40s linear infinite reverse;
  opacity: 0.7;
}

.hero-aria__dot {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  animation: hero-aura-spin 10s linear infinite;
}

.hero-aria__dot::before {
  content: "";
  position: absolute;
  top: 7%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: #0a8f6e;
  box-shadow: 0 0 12px rgba(61, 255, 200, 0.7);
}

.hero-aria__dot--b {
  animation-duration: 14s;
  animation-direction: reverse;
}

.hero-aria__dot--b::before {
  top: 14%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background: #121826;
  box-shadow: 0 0 10px rgba(18, 24, 38, 0.35);
}

.hero-aria__stage {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: translateZ(0);
}

.hero-aria__canvas {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .45s ease;
}

.hero-aria.is-ready .hero-aria__canvas {
  opacity: 1;
}

.hero-aria__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 24, 38, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #eef2f8;
  font-size: 12px;
  font-weight: 600;
}

.hero-aria__badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px var(--mint);
  animation: hero-aria-pulse 1.8s ease-in-out infinite;
}

@keyframes hero-aria-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

@keyframes hero-aura-pulse {
  0% { transform: scale(0.72); opacity: 0; }
  18% { opacity: 0.7; }
  70% { opacity: 0.15; }
  100% { transform: scale(1.28); opacity: 0; }
}

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

@media (prefers-reduced-motion: reduce) {
  .hero-aria__pulse,
  .hero-aria__orbit,
  .hero-aria__sweep,
  .hero-aria__stripes,
  .hero-aria__dot {
    animation: none !important;
  }
  .hero-aria__pulse { opacity: 0.25; transform: scale(1); }
  .hero-aria__pulse:nth-child(n + 2) { display: none; }
}

.hero-aria__caption {
  position: relative;
  z-index: 1;
  max-width: 340px;
  text-align: center;
  color: #5b677a;
  font-size: 14px;
  line-height: 1.45;
}

@media (min-width: 901px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
    gap: 32px;
  }
  .hero-aria {
    min-width: 0;
    min-height: 0;
    justify-items: end;
    overflow: visible;
  }
  .hero-aria__frame {
    width: min(520px, 100%);
  }
  .hero-aria__caption {
    max-width: 400px;
    text-align: right;
  }
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 32, 51, 0.1);
  background: rgba(255, 255, 255, 0.55);
  color: var(--mint-ink);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.kicker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint-ink);
  box-shadow: 0 0 12px rgba(10, 143, 110, 0.45);
}

h1 {
  font-size: clamp(36px, 5vw, 62px);
  margin-bottom: 18px;
}

h1 em {
  font-style: normal;
  color: var(--mint);
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 28px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}

.btn--primary { background: var(--mint); color: #04140f; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(21, 32, 51, 0.16);
}

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

.stat {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
}

.stat strong { display: block; font-size: 20px; font-family: var(--display); }
.stat span { color: var(--muted); font-size: 13px; }

.panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.chat {
  background: #242424;
  border-radius: 18px;
  overflow: hidden;
}

.chat__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

.chat__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.chat__body { padding: 16px; display: grid; gap: 12px; }

.bubble {
  max-width: 86%;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 14px;
}

.bubble--user {
  margin-left: auto;
  background: var(--violet-dim);
  border: 1px solid rgba(124, 108, 255, 0.28);
}

.bubble--ai {
  background: var(--mint-dim);
  border: 1px solid rgba(61, 255, 200, 0.22);
}

.section { padding: 72px 0; }
.section--alt {
  background: var(--surface-deep);
  color: var(--text-dark);
}
.section--alt .section__head p { color: var(--muted-dark); }
.section--alt .section__head h2 em { color: var(--mint); }

.services-band {
  position: relative;
  padding: 28px 0 72px;
  background: #d6d6d6;
  color: #152033;
}

.services-band__head {
  display: block;
  width: 100%;
  max-width: none;
  margin-bottom: 28px;
  padding: 22px 26px 20px;
  border-radius: 20px;
  background:
    radial-gradient(420px 180px at 100% 0%, rgba(61, 255, 200, 0.08), transparent 55%),
    linear-gradient(165deg, var(--surface-2) 0%, var(--surface-deep) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 36px rgba(18, 24, 38, 0.14);
}

.services-band__head .eyebrow {
  color: #3dffc8;
}

.services-band__head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin: 8px 0 10px;
  color: #f3f6fb;
}

.services-band__head p {
  color: #9aa4b7;
  font-size: 17px;
  margin: 0;
}

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

.service-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px 24px 22px;
  border-radius: 24px;
  background:
    radial-gradient(420px 180px at 100% 0%, rgba(61, 255, 200, 0.08), transparent 55%),
    linear-gradient(165deg, var(--surface-2) 0%, var(--surface-deep) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(18, 24, 38, 0.14);
  color: #e8edf5;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-tile::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 255, 200, 0.12), transparent 68%);
  pointer-events: none;
}

.service-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(61, 255, 200, 0.28);
  box-shadow: 0 24px 56px rgba(18, 24, 38, 0.28);
}

.service-tile__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.service-tile__num {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(61, 255, 200, 0.75);
}

.service-tile__ico {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(61, 255, 200, 0.12);
  color: #3dffc8;
}

.service-tile__ico svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-tile h3 {
  font-size: clamp(20px, 1.6vw, 24px);
  margin: 0 0 8px;
  color: #f3f6fb;
  letter-spacing: -0.03em;
}

.service-tile__price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin: 0 0 12px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(61, 255, 200, 0.1);
  color: #9aa4b7;
  font-size: 13px;
  font-weight: 600;
}

.service-tile__price strong {
  color: #3dffc8;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.service-tile p {
  margin: 0 0 14px;
  color: #9aa4b7;
  font-size: 15px;
  line-height: 1.55;
}

.service-tile__list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 8px;
  flex: 1;
}

.service-tile__list li {
  position: relative;
  padding-left: 14px;
  color: #c5ccd8;
  font-size: 14px;
  line-height: 1.45;
}

.service-tile__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3dffc8;
}

.service-tile__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: auto;
}

.service-tile__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  background: #3dffc8;
  color: #04140f;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(61, 255, 200, 0.18);
}

.service-tile__btn:hover {
  transform: translateY(-1px);
  background: #7dffd6;
  box-shadow: 0 14px 28px rgba(61, 255, 200, 0.24);
}

.service-tile__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 2px;
  font-size: 14px;
  font-weight: 700;
  color: #3dffc8;
  transition: gap 0.2s ease, color 0.2s ease;
}

.service-tile__link:hover {
  gap: 12px;
  color: #7dffd6;
}

@media (max-width: 900px) {
  .services-band__grid {
    grid-template-columns: 1fr;
  }
  .services-band {
    padding-top: 12px;
  }
}

.section__head { max-width: 640px; margin-bottom: 36px; }
.section__head h2 { font-size: clamp(28px, 3.4vw, 42px); margin: 8px 0 12px; }
.section__head h2 em { font-style: normal; color: var(--mint-ink); }
.section__head p { color: var(--muted); font-size: 17px; }

.eyebrow {
  color: var(--violet);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cards, .grid-3, .grid-2 { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }

.card {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  background: var(--surface);
  color: var(--text-dark);
}

.card h3 { font-size: 20px; margin: 10px 0 8px; color: var(--text-dark); }
.card p, .card li { color: var(--muted-dark); font-size: 15px; }
.card ul { margin: 12px 0 0; padding-left: 18px; }
.card .btn--ghost {
  color: var(--text-dark);
  border-color: var(--line-dark);
}
.card--hot {
  border-color: rgba(61, 255, 200, 0.35);
  background: linear-gradient(180deg, rgba(61, 255, 200, 0.1), var(--surface));
}

.section--alt .card,
.section--alt .price,
.section--alt .faq details {
  background: var(--surface-2);
}

.ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--mint-dim);
  color: var(--mint);
}

.ico svg { width: 22px; height: 22px; }

.steps { counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.section--alt .step { border-color: var(--line-dark); }

.step__n {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  background: var(--violet-dim);
  color: #c9c2ff;
}

.prices { align-items: stretch; }
.prices--4 { grid-template-columns: repeat(4, 1fr); }

.price {
  position: relative;
  padding: 24px 24px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  color: #f2f2f2;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.price__badge {
  align-self: flex-start;
  min-height: 26px;
  margin: 0 0 14px;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 18px;
  color: #04140f;
  background: var(--mint);
}

.price__badge--empty {
  visibility: hidden;
  background: transparent;
  padding: 4px 11px;
}

.price__trial {
  align-self: flex-start;
  margin: 0 0 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #04140f;
  background: var(--mint);
}

.price--feat {
  border-color: rgba(61, 255, 200, 0.45);
  background:
    linear-gradient(165deg, rgba(61, 255, 200, 0.16) 0%, transparent 42%),
    var(--surface-2, #3a3a3a);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(61, 255, 200, 0.12);
}

.price h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.price__sum {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 12px 0 8px;
  color: #fff;
}

.price__sum span {
  display: inline-block;
  margin-left: 4px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  color: #9aeee0;
  vertical-align: 0.35em;
}

.price__note,
.price > p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #c8c8c8;
}

.price ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: grid;
  gap: 10px;
  flex: 1;
}

.price ul li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.45;
  color: #d6d6d6;
}

.price ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3dffc8;
  box-shadow: 0 0 0 3px rgba(61, 255, 200, 0.15);
}

.price .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

.price .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.price .btn--ghost:hover {
  border-color: rgba(61, 255, 200, 0.45);
  background: rgba(61, 255, 200, 0.08);
  color: #fff;
}

.price--feat .btn--primary {
  box-shadow: 0 8px 24px rgba(61, 255, 200, 0.25);
}

@media (max-width: 900px) {
  .price--feat { transform: none; }
}

.faq details {
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  padding: 16px 18px;
  background: var(--surface);
  margin-bottom: 10px;
  color: var(--text-dark);
}

.faq summary {
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }
.faq p { color: var(--muted-dark); margin-top: 10px; }

.cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line-dark);
  background:
    radial-gradient(420px 180px at 0% 0%, rgba(61, 255, 200, 0.1), transparent 55%),
    radial-gradient(380px 160px at 100% 0%, rgba(124, 108, 255, 0.12), transparent 50%),
    var(--surface);
  color: var(--text-dark);
}

.cta h2 { color: var(--text-dark); }
.cta .lead { color: var(--muted-dark); }

.form {
  display: grid;
  gap: 12px;
}

.form label { font-size: 13px; color: var(--muted); display: grid; gap: 6px; }

.form input, .form textarea, .form select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #2f2f2f;
  padding: 12px 14px;
  outline: none;
}

.form input:focus, .form textarea:focus, .form select:focus {
  border-color: rgba(61, 255, 200, 0.5);
}

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

.form__hint { font-size: 12px; color: var(--muted); }
.form__msg { min-height: 20px; font-size: 14px; }
.form__msg.is-ok { color: var(--mint); }
.form__msg.is-err { color: var(--danger); }

.contacts { color: var(--muted-dark); display: grid; gap: 8px; margin-top: 18px; }
.contacts a { color: var(--text-dark); }

.footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 64px 0 0;
  color: var(--muted-dark);
  font-size: 14px;
  background:
    radial-gradient(700px 280px at 12% 0%, rgba(61, 255, 200, 0.08), transparent 55%),
    linear-gradient(180deg, #303030 0%, #242424 55%, #1f1f1f 100%);
}

.footer__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer__mark {
  position: absolute;
  right: -2%;
  bottom: -18%;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(120px, 22vw, 280px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.045);
  opacity: 0.9;
  user-select: none;
  white-space: nowrap;
}

.footer__stripes {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background:
    repeating-linear-gradient(
      -18deg,
      transparent 0 18px,
      rgba(255, 255, 255, 0.035) 18px 19px
    );
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 85%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 85%);
}

.footer__inner-wrap,
.footer > .wrap {
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
  gap: 36px 28px;
  padding-bottom: 40px;
}

.footer__brand {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  color: var(--text-dark);
  letter-spacing: -0.04em;
}

.footer__logo svg {
  width: 32px;
  height: 32px;
}

.footer__logo span { color: var(--mint); }

.footer__about {
  color: #9aa4b7;
  line-height: 1.55;
  max-width: 300px;
}

.footer__credit {
  margin: 0;
  max-width: 320px;
  font-size: 12px;
  line-height: 1.5;
  color: #7a8496;
}

.footer__credit a {
  color: var(--mint);
  font-weight: 600;
}

.footer__credit a:hover {
  text-decoration: underline;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px 0 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #e8edf5;
  font-size: 13px;
  font-weight: 600;
  transition: border-color .15s ease, background .15s ease, color .15s ease, transform .15s ease;
}

.footer__social a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: #3dffc8;
}

.footer__social a:hover {
  border-color: rgba(61, 255, 200, 0.35);
  background: rgba(61, 255, 200, 0.1);
  color: #fff;
  transform: translateY(-1px);
}

.footer__col {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer__title {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f3f6fb;
}

.footer__col a {
  color: #9aa4b7;
  transition: color .15s ease;
}

.footer__col a:hover { color: var(--mint); }

.footer__col a.is-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__soon {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b7a8ff;
  background: rgba(124, 108, 255, 0.16);
  border-radius: 999px;
  padding: 2px 7px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  line-height: 1.5;
  color: #7a8496;
}

.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.footer__legal-links a { color: #9aa4b7; }
.footer__legal-links a:hover { color: var(--mint); }

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  .footer__brand { grid-column: 1 / -1; }
  .footer__mark {
    right: -8%;
    font-size: clamp(100px, 28vw, 180px);
    opacity: 0.7;
  }
}

@media (max-width: 560px) {
  .footer { padding-top: 48px; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__about { max-width: none; }
  .footer__social a span { display: none; }
  .footer__social a {
    width: 40px;
    padding: 0;
    justify-content: center;
  }
}

.legal { max-width: 720px; padding: 80px 0; }
.legal h1 { font-size: 36px; margin-bottom: 16px; }
.legal h2 { font-size: 22px; margin: 28px 0 10px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; }
.legal a { color: var(--mint); }

.page-soon {
  max-width: 640px;
  padding: 100px 0 80px;
}
.page-soon .kicker { margin-bottom: 16px; }
.page-soon h1 { font-size: clamp(32px, 5vw, 44px); margin-bottom: 14px; }
.page-soon .lead { color: var(--muted); margin-bottom: 24px; }
.page-soon .actions { display: flex; flex-wrap: wrap; gap: 10px; }

.thanks {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 20px;
}

.thanks h1 { font-size: 42px; margin-bottom: 12px; }

@media (max-width: 1100px) {
  .prices--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1120px) {
  .nav__tab span { display: none; }
  .nav__tab {
    width: 36px;
    padding: 0;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .hero__grid, .grid-3, .grid-2, .cta, .prices--4 { grid-template-columns: 1fr; }
  .price--feat { transform: none; }
  .nav { display: none; }
  .burger { display: block; }
  .hero-aria {
    order: -1;
    min-height: 0;
    margin-bottom: 8px;
  }
  .hero-aria__frame {
    width: min(340px, 86vw);
  }
  body.is-open .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    padding: 10px;
    border-radius: 20px;
    background: rgba(42, 42, 42, 0.96);
    border: 1px solid var(--line-dark);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }
  body.is-open .nav__tab {
    width: auto;
    height: 46px;
    padding: 0 14px;
    justify-content: flex-start;
    border-radius: 14px;
    font-size: 15px;
    color: var(--muted-dark);
  }
  body.is-open .nav__tab span { display: inline; }
  body.is-open .nav__tab svg { width: 18px; height: 18px; }
  body.is-open .nav__panel {
    display: grid;
    position: static;
    width: auto;
    margin: 4px 0 8px;
    box-shadow: none;
    background: var(--surface-2);
    border-color: var(--line-dark);
  }
  body.is-open .nav__panel-title,
  body.is-open .nav__panel a {
    color: var(--text-dark);
  }
  .header__cta {
    height: 40px;
    padding: 0 12px;
    font-size: 13px;
    margin-left: auto;
  }
  .burger { margin-left: 0; }
  .stats { grid-template-columns: 1fr; }
}

.wa-lead-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  background: rgba(120, 120, 120, 0.42);
  backdrop-filter: blur(14px) saturate(1.05);
}

.wa-lead-overlay.is-open {
  display: flex;
  animation: wa-lead-fade 0.28s ease;
}

body.lead-open { overflow: hidden; }

@keyframes wa-lead-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.wa-lead {
  position: relative;
  width: min(820px, 100%);
  max-height: none;
  overflow: hidden;
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: start;
  gap: 0;
  padding: 0;
  border-radius: 28px;
  border: 1px solid rgba(21, 32, 51, 0.1);
  background:
    linear-gradient(165deg, #ececec 0%, #d8d8d8 48%, #d2d2d2 100%);
  box-shadow:
    0 28px 80px rgba(21, 32, 51, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  color: #152033;
  animation: wa-lead-rise 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  scrollbar-width: none;
}

@keyframes wa-lead-rise {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.wa-lead__glow {
  position: absolute;
  inset: auto auto -20% -15%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 255, 200, 0.28), transparent 68%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}

.wa-lead__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(21, 32, 51, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: #152033;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.wa-lead__close svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.wa-lead__close:hover {
  background: #fff;
  transform: rotate(90deg);
}

.wa-lead__intro {
  position: relative;
  z-index: 1;
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
}

.wa-lead__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(10, 143, 110, 0.22);
  background: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0a8f6e;
}

.wa-lead__kicker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0a8f6e;
  box-shadow: 0 0 0 4px rgba(61, 255, 200, 0.28);
  animation: hero-aria-pulse 1.8s ease-in-out infinite;
}

.wa-lead__intro h2 {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.05;
  margin: 0 0 12px;
  color: #121826;
  letter-spacing: -0.04em;
}

.wa-lead__intro p {
  color: #5b677a;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.wa-lead__bullets {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.wa-lead__bullets li {
  position: relative;
  padding-left: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #152033;
}

.wa-lead__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0a8f6e;
}

.wa-lead__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 22px;
  padding-top: 0;
}

.wa-lead__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(21, 32, 51, 0.12);
  background: rgba(255, 255, 255, 0.62);
  color: #152033;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.wa-lead__contacts a:hover {
  background: #fff;
  border-color: rgba(10, 143, 110, 0.35);
  color: #0a8f6e;
  transform: translateX(2px);
}

.wa-lead__contacts svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wa-lead__form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 20px 20px 16px;
  margin: 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 36px rgba(21, 32, 51, 0.08);
  backdrop-filter: blur(10px);
  align-self: start;
  height: auto;
}

.wa-lead__form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 4px;
  margin-bottom: 2px;
  border-bottom: 1px solid rgba(21, 32, 51, 0.08);
  padding-bottom: 12px;
}

.wa-lead__form-head span {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  color: #121826;
  letter-spacing: -0.02em;
}

.wa-lead__form-head strong {
  font-size: 12px;
  font-weight: 700;
  color: #0a8f6e;
  background: rgba(61, 255, 200, 0.18);
  padding: 5px 10px;
  border-radius: 999px;
}

.wa-lead__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.wa-lead__field {
  display: grid;
  gap: 6px;
  margin: 0;
  border: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 600;
  color: #6b7a90;
}

.wa-lead__field legend {
  padding: 0;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #6b7a90;
}

.wa-lead__hint-inline {
  margin-left: 6px;
  font-weight: 500;
  color: #9aa4b2;
  text-transform: none;
  letter-spacing: 0;
}

.wa-lead__box {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(21, 32, 51, 0.12);
  background: #f4f5f7;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wa-lead__box:focus-within {
  border-color: rgba(10, 143, 110, 0.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(61, 255, 200, 0.18);
}

.wa-lead__box svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: #8a96a8;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wa-lead__box:focus-within svg { stroke: #0a8f6e; }

.wa-lead__box input {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 10px 0;
  outline: none;
  color: #121826;
}

.wa-lead__box input::placeholder,
.wa-lead__field textarea::placeholder {
  color: #9aa4b2;
}

.wa-lead__field textarea {
  width: 100%;
  min-height: 92px;
  resize: vertical;
  border-radius: 16px;
  border: 1px solid rgba(21, 32, 51, 0.12);
  background: #f4f5f7;
  padding: 12px 14px;
  outline: none;
  color: #121826;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wa-lead__field textarea:focus {
  border-color: rgba(10, 143, 110, 0.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(61, 255, 200, 0.18);
}

.wa-lead__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wa-lead__chips button {
  height: 36px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(21, 32, 51, 0.12);
  background: #eef0f3;
  color: #152033;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.wa-lead__chips button:hover {
  border-color: rgba(10, 143, 110, 0.35);
  background: #fff;
}

.wa-lead__chips button.is-on {
  border-color: transparent;
  background: #121826;
  color: #3dffc8;
  box-shadow: 0 8px 20px rgba(18, 24, 38, 0.18);
}

.wa-lead__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  background: #121826;
  color: #3dffc8;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(18, 24, 38, 0.18);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.wa-lead__submit:hover {
  transform: translateY(-2px);
  background: #0b101a;
  box-shadow: 0 18px 40px rgba(18, 24, 38, 0.24);
}

.wa-lead__submit svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.wa-lead__submit:hover svg {
  transform: translateX(3px);
}

.wa-lead__submit:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.wa-lead__hint {
  font-size: 12px;
  color: #6b7a90;
  margin: 0;
}

.wa-lead__hint a {
  color: #0a8f6e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.wa-lead .form__msg {
  color: #152033;
  min-height: 0;
  margin: 0;
}

.wa-lead .form__msg:empty {
  display: none;
}

.wa-lead .form__msg.is-err {
  color: #c43b4c;
}

.cta--banner {
  grid-template-columns: 1.2fr auto;
  align-items: center;
}

@media (max-width: 720px) {
  .wa-lead-overlay { align-items: stretch; padding: 0; }
  .wa-lead {
    width: 100%;
    max-height: 100dvh;
    overflow: auto;
    grid-template-columns: 1fr;
    border-radius: 0;
    padding: 0;
  }
  .wa-lead__intro { padding: 64px 18px 8px; }
  .wa-lead__form { margin: 8px 10px 12px; }
  .wa-lead__contacts { flex-direction: row; flex-wrap: wrap; padding-top: 18px; }
  .wa-lead__row { grid-template-columns: 1fr; }
  .cta--banner { grid-template-columns: 1fr; }
}

@media (min-width: 721px) {
  .wa-lead-overlay { align-items: center; }
}

.service-hero {
  padding: 8px 0 40px;
}

.service-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  max-width: 14ch;
  margin: 10px 0 16px;
}

.service-hero h1 em {
  font-style: normal;
  color: var(--mint-ink);
}

.service-hero .lead {
  max-width: 58ch;
  color: var(--muted);
  font-size: 18px;
}

.service-hero .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.service-meta span {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(21, 32, 51, 0.12);
  background: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.service-switch .card {
  display: flex;
  flex-direction: column;
}

.service-switch .btn { margin-top: auto; }

#how { scroll-margin-top: 108px; }

/* ——— 404 ——— */
.page-404-body {
  overflow-x: hidden;
}

.page-404 {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 220px);
  display: grid;
  align-items: center;
  padding: 40px 0 80px;
  overflow: hidden;
}

.page-404__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% 35%, rgba(255, 255, 255, 0.55), transparent 62%),
    linear-gradient(180deg, #e4e4e4 0%, #d6d6d6 50%, #cfcfcf 100%);
}

.page-404__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.55;
  will-change: transform;
}

.page-404__orb--a {
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  left: -8%;
  top: 8%;
  background: radial-gradient(circle, rgba(61, 255, 200, 0.32), transparent 68%);
  animation: page404-orb-a 16s ease-in-out infinite;
}

.page-404__orb--b {
  width: min(420px, 60vw);
  height: min(420px, 60vw);
  right: -6%;
  bottom: 4%;
  background: radial-gradient(circle, rgba(18, 24, 38, 0.16), transparent 70%);
  animation: page404-orb-b 18s ease-in-out infinite;
}

.page-404__grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(21, 32, 51, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 32, 51, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  animation: page404-grid 22s linear infinite;
}

.page-404__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  top: 28%;
  background: linear-gradient(90deg, transparent, rgba(61, 255, 200, 0.55), transparent);
  box-shadow: 0 0 24px rgba(61, 255, 200, 0.35);
  animation: page404-scan 4.8s ease-in-out infinite;
  opacity: 0.7;
}

.page-404__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.page-404__stage {
  --px: 0px;
  --py: 0px;
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}

.page-404__digits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 1.2vw, 14px);
  transform: translate(var(--px), var(--py));
  transition: transform 0.05s linear;
  user-select: none;
}

.page-404__digit {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(110px, 18vw, 220px);
  line-height: 0.85;
  letter-spacing: -0.08em;
  color: #121826;
  text-shadow: 0 18px 50px rgba(18, 24, 38, 0.12);
  animation: page404-float 5.5s ease-in-out infinite;
}

.page-404__digit:nth-child(2) {
  animation-delay: -1.6s;
  color: #0a8f6e;
}

.page-404__digit:nth-child(3) {
  animation-delay: -3.2s;
}

.page-404__digit--zero {
  position: relative;
}

.page-404__digit--zero::after {
  content: "";
  position: absolute;
  inset: 18% 12%;
  border-radius: 50%;
  border: 2px solid rgba(61, 255, 200, 0.55);
  box-shadow:
    0 0 0 8px rgba(61, 255, 200, 0.08),
    inset 0 0 30px rgba(61, 255, 200, 0.12);
  animation: page404-pulse 2.4s ease-in-out infinite;
}

.page-404__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(360px, 70%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(21, 32, 51, 0.1);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35),
    inset 0 0 40px rgba(255, 255, 255, 0.18);
  pointer-events: none;
  z-index: -1;
}

.page-404__copy {
  max-width: 520px;
  animation: page404-copy-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.08s;
}

.page-404__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(21, 32, 51, 0.1);
  background: rgba(18, 24, 38, 0.88);
  color: #d7ffef;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.page-404__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3dffc8;
  box-shadow: 0 0 10px #3dffc8;
  animation: page404-dot 1.4s ease-in-out infinite;
}

.page-404__status span {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.page-404__status span.is-swap {
  opacity: 0;
  transform: translateY(-4px);
}

.page-404__copy h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.05;
  color: #121826;
  margin: 0 0 16px;
}

.page-404__lead {
  margin: 0 0 28px;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
  color: #4a5568;
  max-width: 42ch;
}

.page-404__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.page-404__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(21, 32, 51, 0.12);
}

.page-404__links a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: #152033;
  opacity: 0.72;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.page-404__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: #0a8f6e;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.page-404__links a:hover {
  opacity: 1;
  color: #0a8f6e;
}

.page-404__links a:hover::after {
  transform: scaleX(1);
}

@keyframes page404-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(-1.5deg); }
}

@keyframes page404-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes page404-scan {
  0% { top: 18%; opacity: 0; }
  15% { opacity: 0.8; }
  50% { top: 62%; opacity: 0.55; }
  85% { opacity: 0.8; }
  100% { top: 18%; opacity: 0; }
}

@keyframes page404-grid {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 48px, 48px 0; }
}

@keyframes page404-orb-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(36px, 24px) scale(1.08); }
}

@keyframes page404-orb-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-28px, -20px) scale(1.1); }
}

@keyframes page404-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.8); }
}

@keyframes page404-copy-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .page-404__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  .page-404__stage { min-height: 220px; order: -1; }
  .page-404__copy { max-width: none; margin: 0 auto; }
  .page-404__lead { margin-left: auto; margin-right: auto; }
  .page-404__cta,
  .page-404__links { justify-content: center; }
  .page-404__digit { font-size: clamp(96px, 28vw, 150px); }
}

@media (prefers-reduced-motion: reduce) {
  .page-404__digit,
  .page-404__orb,
  .page-404__grid,
  .page-404__scan,
  .page-404__digit--zero::after,
  .page-404__status i,
  .page-404__copy {
    animation: none !important;
  }
}

/* ——— Contact FAB (left) ——— */
.wa-fab {
  position: fixed;
  left: 18px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
}

.wa-fab__stack,
.wa-fab__toggle {
  pointer-events: auto;
}

.wa-fab__stack {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  pointer-events: none;
}

.wa-fab.is-open .wa-fab__stack {
  pointer-events: auto;
}

.wa-fab__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px 0 8px;
  border: 1px solid rgba(21, 32, 51, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(21, 32, 51, 0.14);
  color: #152033;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transform: translateY(16px) scale(0.92);
  opacity: 0;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  transition-delay: calc(var(--i, 0) * 45ms);
}

.wa-fab.is-open .wa-fab__item {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.wa-fab__item:hover {
  background: #fff;
  border-color: rgba(10, 143, 110, 0.35);
  box-shadow: 0 14px 32px rgba(21, 32, 51, 0.18);
}

.wa-fab__ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: #121826;
  color: #3dffc8;
}

.wa-fab__ico svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wa-fab__item--tg .wa-fab__ico { background: #229ED9; color: #fff; }
.wa-fab__item--viber .wa-fab__ico { background: #7360f2; color: #fff; }
.wa-fab__item--phone .wa-fab__ico { background: #0a8f6e; color: #fff; }
.wa-fab__item--lead .wa-fab__ico { background: #121826; color: #3dffc8; }

.wa-fab__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px 0 8px;
  border: 1px solid rgba(21, 32, 51, 0.12);
  border-radius: 999px;
  background: #121826;
  color: #3dffc8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(18, 24, 38, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wa-fab__toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(18, 24, 38, 0.28);
}

.wa-fab__toggle-ico {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(61, 255, 200, 0.12);
  display: grid;
  place-items: center;
}

.wa-fab__toggle-ico svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  grid-area: 1 / 1;
  transition: opacity 0.2s ease, transform 0.25s ease;
}

.wa-fab__icon-close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.7);
}

.wa-fab.is-open .wa-fab__icon-chat {
  opacity: 0;
  transform: rotate(90deg) scale(0.7);
}

.wa-fab.is-open .wa-fab__icon-close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.wa-fab.is-open .wa-fab__toggle {
  background: #0b101a;
}

body.lead-open .wa-fab,
body.is-open .wa-fab {
  opacity: 0.35;
  pointer-events: none;
}

@media (max-width: 560px) {
  .wa-fab {
    left: 12px;
    bottom: 16px;
  }
  .wa-fab__toggle-text {
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    padding: 0;
  }
  .wa-fab__toggle {
    padding: 0 8px;
    width: 52px;
    justify-content: center;
  }
  .wa-fab__label {
    display: none;
  }
  .wa-fab__item {
    padding: 0;
    width: 46px;
    justify-content: center;
  }
  .wa-fab__ico {
    width: 46px;
    height: 46px;
    border-radius: 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-fab__item,
  .wa-fab__toggle,
  .wa-fab__toggle-ico svg {
    transition: none !important;
  }
}

/* ——— Contacts page ——— */
.contacts-page {
  padding: 108px 0 80px;
  background: #d6d6d6;
  color: #152033;
}

.contacts-page__hero {
  max-width: 720px;
  margin-bottom: 28px;
}

.contacts-page__hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 10px 0 14px;
  color: #121826;
  letter-spacing: -0.04em;
}

.contacts-page__lead {
  margin: 0 0 24px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: #5b677a;
  max-width: 52ch;
}

.contacts-page__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contacts-page__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.contact-card {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 180px;
  padding: 22px 20px;
  border-radius: 22px;
  background:
    radial-gradient(280px 140px at 100% 0%, rgba(61, 255, 200, 0.1), transparent 55%),
    linear-gradient(165deg, var(--surface-2) 0%, var(--surface-deep) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(18, 24, 38, 0.14);
  color: #e8edf5;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(61, 255, 200, 0.28);
  box-shadow: 0 22px 48px rgba(18, 24, 38, 0.22);
}

.contact-card__ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(61, 255, 200, 0.12);
  color: #3dffc8;
  margin-bottom: 6px;
}

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

.contact-card__ico--tg { background: rgba(34, 158, 217, 0.18); color: #7ec8ef; }
.contact-card__ico--vb { background: rgba(115, 96, 242, 0.18); color: #b5a8ff; }
.contact-card__ico--mail { background: rgba(255, 255, 255, 0.08); color: #e8edf5; }

.contact-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9aa4b7;
}

.contact-card__value {
  font-family: var(--display);
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f3f6fb;
  word-break: break-word;
}

.contact-card__hint {
  margin-top: auto;
  font-size: 13px;
  color: #3dffc8;
  font-weight: 600;
}

.contacts-page__bottom {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.contacts-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 24px;
  border-radius: 22px;
  background:
    radial-gradient(360px 160px at 100% 0%, rgba(61, 255, 200, 0.08), transparent 55%),
    linear-gradient(165deg, var(--surface-2) 0%, var(--surface-deep) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(18, 24, 38, 0.14);
  color: #e8edf5;
}

.contacts-panel .eyebrow { color: #3dffc8; }

.contacts-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.4vw, 32px);
  color: #f3f6fb;
}

.contacts-panel__facts {
  display: grid;
  gap: 14px;
  margin: 8px 0 0;
}

.contacts-panel__facts div {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contacts-panel__facts dt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9aa4b7;
}

.contacts-panel__facts dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #e8edf5;
}

.contacts-panel__facts a {
  color: #3dffc8;
  font-weight: 600;
}

.contacts-panel__facts a:hover { color: #7dffd6; }

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

.contacts-panel__list li {
  position: relative;
  padding-left: 14px;
  color: #c5ccd8;
  font-size: 15px;
  line-height: 1.45;
}

.contacts-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3dffc8;
}

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

@media (max-width: 900px) {
  .contacts-page { padding: 96px 0 64px; }
  .contacts-page__bottom { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .contacts-page__grid { grid-template-columns: 1fr; }
}

/* ——— About page ——— */
.about-page {
  padding: 108px 0 80px;
  background: #d6d6d6;
  color: #152033;
}

.about-page__hero {
  max-width: 780px;
  margin-bottom: 28px;
}

.about-page__hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 10px 0 14px;
  color: #121826;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.about-page__lead,
.about-page__text {
  margin: 0;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.55;
  color: #5b677a;
}

.about-page__lead { max-width: 54ch; margin-bottom: 24px; }

.contacts-panel .about-page__text {
  color: #9aa4b7;
  margin-bottom: 8px;
}

.about-page__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.about-page__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.about-stat {
  display: grid;
  gap: 6px;
  padding: 20px 18px;
  border-radius: 20px;
  background:
    linear-gradient(165deg, var(--surface-2) 0%, var(--surface-deep) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(18, 24, 38, 0.12);
}

.about-stat strong {
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.03em;
  color: #3dffc8;
}

.about-stat span {
  font-size: 13px;
  line-height: 1.4;
  color: #9aa4b7;
}

.about-page__split,
.about-page__ecosystem {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  margin-bottom: 28px;
}

.about-page__block {
  margin-bottom: 28px;
}

.about-page__head {
  max-width: 640px;
  margin-bottom: 18px;
}

.about-page__head .eyebrow { color: #0a8f6e; }

.about-page__head h2 {
  margin: 8px 0 10px;
  font-size: clamp(28px, 3.2vw, 40px);
  color: #121826;
}

.about-page__head p {
  margin: 0;
  color: #5b677a;
  font-size: 16px;
  line-height: 1.5;
}

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

.about-step {
  display: grid;
  gap: 8px;
  padding: 20px 18px;
  border-radius: 20px;
  background:
    linear-gradient(165deg, var(--surface-2) 0%, var(--surface-deep) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 160px;
}

.about-step span {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(61, 255, 200, 0.75);
}

.about-step h3 {
  margin: 0;
  font-size: 18px;
  color: #f3f6fb;
}

.about-step p {
  margin: 0;
  color: #9aa4b7;
  font-size: 14px;
  line-height: 1.45;
}

.about-links {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.about-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3dffc8;
  font-weight: 700;
  font-size: 15px;
}

.about-links a:hover { color: #7dffd6; }

@media (max-width: 1100px) {
  .about-page__stats,
  .about-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .about-page { padding: 96px 0 64px; }
  .about-page__split,
  .about-page__ecosystem { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .about-page__stats,
  .about-steps { grid-template-columns: 1fr; }
}

/* ===== Docs / knowledge base ===== */
.docs-page {
  padding: 112px 0 72px;
}

.docs-page__hero {
  max-width: 720px;
  margin-bottom: 28px;
}

.docs-page__hero h1 {
  font-family: Sora, sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 10px 0 14px;
}

.docs-page__lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  max-width: 54ch;
  margin-bottom: 22px;
}

.docs-page__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.docs-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 36px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.docs-toc a {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.docs-toc a:hover {
  background: var(--surface);
  color: #fff;
  border-color: transparent;
}

.docs-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.docs-side__sticky {
  position: sticky;
  top: 96px;
  padding: 16px;
  border-radius: 16px;
  background: var(--surface);
  color: #eee;
}

.docs-side__label {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3dffc8;
  font-weight: 700;
}

.docs-side ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.docs-side a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  color: #cfcfcf;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.35;
}

.docs-side a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.docs-content {
  display: grid;
  gap: 18px;
}

.docs-card {
  scroll-margin-top: 96px;
  padding: 28px 28px 26px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
}

.docs-card .eyebrow {
  color: #0a8f6e;
  margin-bottom: 8px;
}

.docs-card h2 {
  font-family: Sora, sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.docs-card h3 {
  font-size: 16px;
  margin: 18px 0 8px;
}

.docs-card > p,
.docs-card li,
.docs-note {
  color: var(--muted);
  line-height: 1.55;
}

.docs-card > p { margin: 0 0 12px; }

.docs-card a {
  color: #0a8f6e;
  font-weight: 600;
}

.docs-card code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
  padding: 1px 6px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.06);
  color: #1a1a1a;
}

.docs-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  counter-reset: docs-step;
}

.docs-steps li {
  counter-increment: docs-step;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.docs-steps li::before {
  content: counter(docs-step);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--surface);
  color: #3dffc8;
  font-weight: 700;
  font-size: 14px;
}

.docs-steps strong,
.docs-steps span {
  grid-column: 2;
  min-width: 0;
}

.docs-steps strong {
  display: block;
  color: #111;
  margin-bottom: 4px;
}

.docs-steps span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.docs-olist {
  margin: 0 0 14px;
  padding-left: 1.2em;
  color: var(--muted);
}

.docs-olist li { margin-bottom: 8px; }

.docs-ul {
  margin: 0 0 12px;
  padding-left: 1.15em;
}

.docs-ul li { margin-bottom: 8px; }

.docs-callout {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--surface);
  color: #e8e8e8;
  font-size: 14px;
  line-height: 1.5;
}

.docs-callout strong { color: #3dffc8; }
.docs-callout code {
  background: rgba(255, 255, 255, 0.08);
  color: #b7f7e4;
}

.docs-callout--soft {
  background: rgba(61, 255, 200, 0.12);
  color: #1a1a1a;
  border: 1px solid rgba(10, 143, 110, 0.2);
}

.docs-callout--soft strong { color: #0a8f6e; }
.docs-callout--soft code {
  background: rgba(0, 0, 0, 0.06);
  color: #1a1a1a;
}

.docs-code {
  margin: 12px 0 16px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  color: #b7f7e4;
  overflow: auto;
  font-size: 13px;
  line-height: 1.5;
}

.docs-code code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: none;
  padding: 0;
  color: inherit;
}

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

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

.docs-tile {
  padding: 16px;
  border-radius: 14px;
  background: var(--surface);
  color: #ddd;
}

.docs-tile span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3dffc8;
  font-weight: 700;
  margin-bottom: 6px;
}

.docs-tile h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 16px;
}

.docs-tile p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #bdbdbd;
}

.docs-tile a { color: #7dffd6; }

.docs-note {
  margin: 10px 0 0;
  font-size: 14px;
}

.docs-faq {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.docs-faq details {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0 14px;
}

.docs-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 0;
  font-weight: 600;
  color: #111;
}

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

.docs-faq summary::after {
  content: "+";
  float: right;
  color: #0a8f6e;
  font-weight: 700;
}

.docs-faq details[open] summary::after { content: "–"; }

.docs-faq details p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.docs-bottom {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

@media (max-width: 980px) {
  .docs-layout { grid-template-columns: 1fr; }
  .docs-side { display: none; }
  .docs-grid { grid-template-columns: 1fr; }
  .docs-bottom { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .docs-page { padding: 96px 0 56px; }
  .docs-card { padding: 22px 18px; }
  .docs-steps li { grid-template-columns: 32px 1fr; }
  .docs-grid--2 { grid-template-columns: 1fr; }
}

/* Legal facts list (privacy etc.) */
.docs-facts {
  margin: 0 0 14px;
  display: grid;
  gap: 10px;
}

.docs-facts > div {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  gap: 8px 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.docs-facts dt {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0a8f6e;
}

.docs-facts dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 560px) {
  .docs-facts > div {
    grid-template-columns: 1fr;
  }
}

/* Docs / legal tables */
.docs-table-wrap {
  margin: 14px 0 16px;
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.55);
}

.docs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.45;
}

.docs-table th,
.docs-table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.docs-table th {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0a8f6e;
  background: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.docs-table td { color: var(--muted); }

.docs-table tr:last-child td { border-bottom: none; }

.docs-table code {
  font-size: 12px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .docs-table th:nth-child(3),
  .docs-table td:nth-child(3) {
    /* keep all columns; horizontal scroll via wrap */
  }
}

/* Homepage launch stages */
.stages-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.stage-card {
  position: relative;
  padding: 22px 18px 20px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #e8e8e8;
  min-height: 100%;
}

.stage-card__n {
  display: block;
  margin-bottom: 14px;
  font-family: var(--display), Sora, sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #3dffc8;
  line-height: 1;
}

.stage-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: #fff;
}

.stage-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #bdbdbd;
}

.stage-card code {
  font-size: 0.92em;
  padding: 1px 5px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  color: #b7f7e4;
}

.stage-card--accent {
  background: linear-gradient(165deg, #3a3a3a 0%, #2a2a2a 55%, #1f3d34 100%);
  border-color: rgba(61, 255, 200, 0.22);
}

.stages-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

@media (max-width: 1100px) {
  .stages-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .stages-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .stages-grid { grid-template-columns: 1fr; }
}
