@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/shared/fonts/sora-latin-400-800.woff2") format("woff2");
}

:root {
  color-scheme: only dark;
  --bg0: #020912;
  --bg1: #051526;
  --bg2: #0a263e;
  --card: rgba(7, 22, 37, 0.76);
  --card-soft: rgba(7, 22, 37, 0.5);
  --stroke: rgba(46, 88, 124, 0.62);
  --stroke-strong: rgba(62, 123, 173, 0.9);
  --txt: #e6f6ff;
  --muted: #a7c7dc;
  --muted-2: #7fa5bf;
  --aqua: #00d9b5;
  --violet: #3b91ff;
  --mag: #79e3ff;
  --mint: #6affc4;
  --danger: #ff6d9c;
  --radius: 20px;
  --shadow: 0 24px 68px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--header-h, 88px);
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--txt);
  background:
    radial-gradient(1200px 820px at -8% -18%, rgba(53, 127, 188, 0.28), transparent 60%),
    radial-gradient(1020px 660px at 104% -12%, rgba(0, 217, 181, 0.19), transparent 64%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x: hidden;
}

body:has(.hero) {
  padding-top: 0;
}

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

img,
svg {
  display: block;
}

strong {
  font-weight: 700;
}

.mono {
  font-family: "JetBrains Mono", Consolas, monospace;
}

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

.container {
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(13px);
  background: linear-gradient(180deg, rgba(2, 13, 24, 0.95), rgba(2, 13, 24, 0.74));
  border-bottom: 1px solid rgba(42, 92, 132, 0.55);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

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

.brand__mark {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  background: center / contain no-repeat url("/shared/brand/zenkeix-logo-mark-96.webp");
  filter: drop-shadow(0 10px 22px rgba(34, 117, 214, 0.22));
}

.brand__text {
  display: grid;
}

.brand__name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand__sub {
  color: var(--muted-2);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #ffffff;
}

.nav a.is-active {
  color: #ffffff;
  text-shadow: 0 0 16px rgba(121, 227, 255, 0.35);
}

.topbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--stroke);
  border-radius: 13px;
  background: rgba(11, 12, 28, 0.7);
  color: var(--txt);
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

.mobile {
  border-top: 1px solid rgba(62, 69, 120, 0.5);
  background: rgba(8, 9, 24, 0.87);
}

.mobile__inner {
  padding: 14px 0 20px;
  display: grid;
  gap: 12px;
}

.mobile__inner a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.mobile__inner a.is-active {
  color: #ffffff;
}

.mobile__inner .btn {
  margin-top: 4px;
}

.btn {
  --service-ring-angle: 0deg;
  --btn-fill: linear-gradient(180deg, var(--bg0), var(--bg1));
  border: 1px solid transparent;
  background:
    var(--btn-fill) padding-box,
    conic-gradient(
      from var(--service-ring-angle),
      rgba(0, 217, 181, 0.95) 0deg,
      rgba(214, 250, 255, 0.98) 48deg,
      rgba(84, 172, 255, 0.96) 104deg,
      rgba(59, 145, 255, 0.97) 186deg,
      rgba(0, 217, 181, 0.95) 262deg,
      rgba(59, 145, 255, 0.97) 324deg,
      rgba(0, 217, 181, 0.95) 360deg
    ) border-box;
  color: var(--txt);
  border-radius: 14px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  animation: serviceRingSpin 2.4s linear infinite;
  transition: transform 0.16s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: transparent;
  animation-duration: 1.8s;
}

.btn--primary {
  --btn-fill: linear-gradient(125deg, rgba(0, 217, 181, 0.3), rgba(59, 145, 255, 0.24), rgba(121, 227, 255, 0.2));
  box-shadow:
    0 12px 36px rgba(0, 217, 181, 0.14),
    0 15px 40px rgba(59, 145, 255, 0.14);
}

.btn--ghost {
  --btn-fill: linear-gradient(180deg, var(--bg0), var(--bg1));
}

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

@keyframes serviceRingSpin {
  to {
    --service-ring-angle: 360deg;
  }
}

.btn--lg {
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 14px;
}

.btn--full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h, 88px) + 70px) 0 34px;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: -80px -90px -120px;
  background:
    radial-gradient(620px 440px at 14% 20%, rgba(11, 68, 112, 0.4), transparent 70%),
    radial-gradient(980px 640px at 52% 8%, rgba(0, 217, 181, 0.16), transparent 68%),
    radial-gradient(900px 680px at 76% 24%, rgba(59, 145, 255, 0.24), transparent 66%);
  background-size: auto, auto, auto;
  background-position: center;
  filter: brightness(0.52) saturate(0.98) contrast(1.05);
  transform: scale(1.04);
  z-index: 0;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(4, 5, 14, 0.95) 0%, rgba(4, 5, 14, 0.75) 46%, rgba(4, 5, 14, 0.9) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 20px;
  align-items: start;
}

.badge {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(62, 69, 120, 0.72);
  background: rgba(11, 12, 28, 0.52);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.badge__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--aqua), var(--violet));
  box-shadow: 0 0 0 4px rgba(56, 227, 255, 0.14);
}

h1 {
  margin: 16px 0 14px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.grad {
  color: #f7fbff;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .grad {
    background: linear-gradient(93deg, var(--aqua), #9fd2ff, var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

.lead {
  margin: 0;
  max-width: 63ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.hero__actions {
  margin: 24px 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

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

.proof__item {
  border: 1px solid rgba(62, 69, 120, 0.7);
  border-radius: 16px;
  background: rgba(12, 13, 31, 0.5);
  padding: 12px;
}

.proof__kpi {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.proof__lbl {
  margin: 3px 0 0;
  font-size: 11px;
  color: var(--muted-2);
  line-height: 1.45;
}

.hero__panel {
  position: sticky;
  top: 95px;
}

.engineering-board {
  border: 1px solid rgba(56, 227, 255, 0.24);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(11, 12, 30, 0.82), rgba(11, 12, 30, 0.6));
  box-shadow:
    0 24px 54px rgba(0, 8, 20, 0.45),
    inset 0 1px 0 rgba(56, 227, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 16px;
}

.engineering-board__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.engineering-board__head h2 {
  margin: 0;
  color: var(--txt);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 800;
  font-style: normal;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.engineering-board__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--aqua);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.01em;
}

.engineering-board__status::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 0 rgba(56, 227, 255, 0.64);
  animation: pulse 1.6s infinite;
}

#marketCanvas {
  display: block;
  width: 100%;
  height: auto;
  min-height: 240px;
  background: linear-gradient(180deg, #0f1f29 0%, #08131b 100%);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.engineering-board__services {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.engineering-service {
  border: 1px solid rgba(62, 69, 120, 0.72);
  border-radius: 999px;
  background: rgba(11, 12, 30, 0.66);
  color: var(--muted);
  font-family: "Sora", "Segoe UI", sans-serif;
  padding: 8px 10px;
  text-align: center;
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.panel {
  border: 1px solid rgba(56, 227, 255, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(11, 12, 30, 0.72), rgba(11, 12, 30, 0.46));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  padding: 16px;
}

.panel__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.pulse {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 0 rgba(56, 227, 255, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(56, 227, 255, 0.68);
  }
  70% {
    box-shadow: 0 0 0 13px rgba(56, 227, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(56, 227, 255, 0);
  }
}

.panel__title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}

.panel__sub {
  margin: 3px 0 0;
  font-size: 12px;
  color: var(--muted-2);
}

.meter {
  display: grid;
  gap: 10px;
}

.meter__row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.bar {
  height: 10px;
  border: 1px solid rgba(62, 69, 120, 0.7);
  border-radius: 999px;
  background: rgba(5, 6, 15, 0.72);
  overflow: hidden;
}

.bar__fill {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--aqua), var(--violet), var(--mag));
}

.tagrow {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  border: 1px solid rgba(62, 69, 120, 0.7);
  border-radius: 999px;
  background: rgba(11, 12, 30, 0.55);
  padding: 6px 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.strip {
  padding: 22px 0 30px;
}

.strip__inner {
  border-top: 1px solid rgba(62, 69, 120, 0.4);
  border-bottom: 1px solid rgba(62, 69, 120, 0.4);
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.strip__label {
  margin: 0;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.strip__items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  flex-wrap: wrap;
}

.pill {
  border: 1px solid rgba(62, 69, 120, 0.66);
  border-radius: 999px;
  background: rgba(13, 15, 35, 0.44);
  color: var(--muted);
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 700;
}

/* Language switch hard override: desktop top-right, mobile bottom-left */
.lang-header-switch {
  position: fixed !important;
  z-index: 130 !important;
}

@media (max-width: 900px) {
  .lang-header-switch {
    left: 12px !important;
    right: auto !important;
    bottom: 12px !important;
    top: auto !important;
  }
}

@media (min-width: 901px) {
  .lang-header-switch {
    top: 18px !important;
    right: 18px !important;
    left: auto !important;
    bottom: auto !important;
  }
}

.strip__supported {
  width: 100%;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(62, 69, 120, 0.32);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.platform-logos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.platform-logo {
  margin: 0;
  min-width: 168px;
  border-radius: 13px;
  border: 1px solid rgba(59, 145, 255, 0.24);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.platform-logo img {
  display: block;
  width: auto;
  height: 22px;
  max-width: 122px;
  object-fit: contain;
}

.platform-logo figcaption {
  color: #0b2940;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

.section.section--metrics {
  padding: 4px 0 8px;
}

.section.section--metrics::before {
  background: transparent;
  border: 0;
}

.metrics {
  border: 1px solid rgba(44, 95, 133, 0.66);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(2, 26, 49, 0.94), rgba(3, 21, 40, 0.94));
  box-shadow: 0 12px 28px rgba(0, 7, 18, 0.34);
  overflow: hidden;
}

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric {
  position: relative;
  text-align: center;
  padding: 18px 14px 16px;
  border-right: 1px solid rgba(44, 95, 133, 0.4);
}

.metric:last-child {
  border-right: 0;
}

.metric::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(0, 217, 181, 0.12), rgba(59, 145, 255, 0.08));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
  pointer-events: none;
}

.metric:hover::before {
  transform: scaleX(1);
}

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

.metric__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: rgba(0, 226, 188, 0.95);
  background: rgba(4, 42, 73, 0.7);
  border: 1px solid rgba(54, 120, 167, 0.56);
}

.metric__icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric__value {
  margin: 0 0 6px;
  font-size: clamp(34px, 2.8vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.94;
  color: #f5fcff;
}

.metric__number {
  font-variant-numeric: tabular-nums;
}

.metric__suffix {
  margin-left: 2px;
  font-size: 0.55em;
  color: var(--aqua);
  vertical-align: top;
  position: relative;
  top: -0.32em;
}

.metric__title {
  margin: 0 0 6px;
  color: #dff0ff;
  font-size: 14px;
  line-height: 1.28;
  font-weight: 600;
}

.metric__copy {
  margin: 0 auto;
  max-width: 27ch;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.section--ratings {
  padding-top: 10px;
  padding-bottom: 12px;
}

.section--ratings::before {
  background: transparent;
  border: 0;
}

.ratings {
  border: 1px solid rgba(44, 95, 133, 0.66);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(2, 26, 49, 0.9), rgba(3, 21, 40, 0.9));
  box-shadow: 0 18px 44px rgba(0, 7, 18, 0.42);
  padding: 22px 24px;
}

.ratings__kicker {
  margin: 0 0 8px;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ratings__row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ratings__value {
  margin: 0;
  line-height: 1;
}

.ratings__score {
  font-size: clamp(34px, 4.2vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.ratings__outof {
  margin-left: 2px;
  color: var(--muted);
  font-size: 0.54em;
  font-weight: 700;
}

.ratings__stars {
  position: relative;
  display: inline-block;
  font-size: clamp(24px, 3vw, 30px);
  letter-spacing: 0.12em;
  line-height: 1;
  color: rgba(127, 165, 191, 0.3);
}

.ratings__stars::before {
  content: "\2605\2605\2605\2605\2605";
}

.ratings__stars::after {
  content: "\2605\2605\2605\2605\2605";
  position: absolute;
  left: 0;
  top: 0;
  width: 98%;
  overflow: hidden;
  white-space: nowrap;
  background: linear-gradient(90deg, #00d9b5, #79e3ff, #3b91ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.ratings__note {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.testimonials {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.testimonial {
  border: 1px solid rgba(44, 95, 133, 0.62);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(4, 24, 45, 0.88), rgba(3, 19, 36, 0.88));
  box-shadow: 0 14px 34px rgba(0, 8, 20, 0.34);
  padding: 16px 16px 14px;
}

.testimonial__stars {
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 1;
  background: linear-gradient(90deg, #ffb22c, #ffd45c, #fff1a6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 6px rgba(255, 210, 92, 0.28));
}

.testimonial__quote {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.testimonial__author {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: #e8f4ff;
}

.testimonial__country {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.03em;
}

.section {
  position: relative;
  padding: 72px 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 10, 25, 0.84), rgba(9, 10, 25, 0.66));
  border-top: 1px solid rgba(62, 69, 120, 0.2);
  border-bottom: 1px solid rgba(62, 69, 120, 0.2);
  pointer-events: none;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section--alt::before {
  background:
    radial-gradient(1000px 640px at 10% 0%, rgba(59, 145, 255, 0.16), transparent 65%),
    radial-gradient(900px 640px at 90% 4%, rgba(0, 217, 181, 0.12), transparent 64%),
    linear-gradient(180deg, rgba(8, 21, 35, 0.88), rgba(8, 21, 35, 0.7));
}

.section__header {
  margin-bottom: 28px;
}

.section__header h2 {
  margin: 0 0 9px;
  font-size: clamp(27px, 2.6vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.section__header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 76ch;
}

.section__header--tight {
  margin-bottom: 18px;
}

.grid {
  display: grid;
  gap: 16px;
}

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

.stack-services-grid {
  margin-top: 24px;
}

.card {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 15, 35, 0.78), rgba(13, 15, 35, 0.58));
  box-shadow: 0 15px 36px rgba(0, 0, 0, 0.3);
  padding: 17px;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 217, 181, 0.07), transparent 35%, rgba(59, 145, 255, 0.06));
  pointer-events: none;
}

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

.card__icon {
  margin: 0 0 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  border: 1px solid rgba(106, 255, 196, 0.34);
  background: linear-gradient(145deg, rgba(106, 255, 196, 0.2), rgba(0, 217, 181, 0.12));
  color: #dbf8ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 0 1px rgba(0, 217, 181, 0.04);
}

.card__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted-2);
  font-size: 13px;
}

.list li {
  padding-left: 17px;
  position: relative;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, #e8f6ff, var(--violet) 60%, var(--aqua));
  box-shadow: 0 0 0 1px rgba(59, 145, 255, 0.56), 0 0 10px rgba(59, 145, 255, 0.4);
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.94fr;
  gap: 16px;
  align-items: start;
}

.platforms {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 14px;
}

.platform {
  border: 1px solid rgba(62, 69, 120, 0.76);
  border-radius: 999px;
  background: rgba(13, 15, 35, 0.52);
  color: var(--muted);
  padding: 8px 12px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.16s ease;
}

.platform:hover {
  border-color: rgba(59, 145, 255, 0.88);
  color: #f0f4ff;
}

.platform.is-active {
  color: #ffffff;
  border-color: rgba(0, 217, 181, 0.64);
  background: linear-gradient(120deg, rgba(0, 217, 181, 0.26), rgba(59, 145, 255, 0.24));
}

.matrix {
  border: 1px solid rgba(62, 69, 120, 0.75);
  border-radius: var(--radius);
  background: rgba(13, 15, 35, 0.46);
  padding: 16px;
}

.matrix h3 {
  margin: 0 0 9px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.matrix p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.64;
}

.list--matrix {
  font-size: 13px;
}

.studio {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 15, 35, 0.66), rgba(13, 15, 35, 0.48));
  padding: 18px;
  box-shadow: var(--shadow);
}

.studio__kicker {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.timeline li {
  border-left: 2px solid rgba(56, 227, 255, 0.42);
  padding-left: 10px;
  color: var(--muted);
  line-height: 1.58;
  font-size: 14px;
}

.timeline strong {
  color: #ecf1ff;
}

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

.project {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(13, 15, 35, 0.72), rgba(13, 15, 35, 0.5));
  padding: 18px;
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.24);
}

.project__type {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.project h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.project p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.project__meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project__meta span {
  border: 1px solid rgba(62, 69, 120, 0.7);
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 11px;
  color: var(--muted);
  background: rgba(13, 15, 35, 0.5);
}

.project__actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.post {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(13, 15, 35, 0.74), rgba(13, 15, 35, 0.56));
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.24);
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: start;
}

.post__media {
  margin: 0;
  border: 1px solid rgba(62, 69, 120, 0.75);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(9, 16, 38, 0.88);
}

.post__media img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1) translateZ(0);
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.post__media:hover img {
  transform: scale(1.16) translateZ(0);
}

.post__intro p {
  margin-top: 0;
}

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

.feature-item {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 15, 35, 0.78), rgba(13, 15, 35, 0.58));
  box-shadow: 0 15px 36px rgba(0, 0, 0, 0.3);
  padding: 17px;
}

.feature-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.32;
  letter-spacing: -0.015em;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.64;
}

.list--post li {
  color: var(--muted);
  line-height: 1.64;
}

.list--post strong {
  color: #ecf7ff;
}

.project__summary {
  margin: 18px 0 0;
  max-width: 82ch;
  border: 1px solid rgba(62, 69, 120, 0.68);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(13, 15, 35, 0.72), rgba(13, 15, 35, 0.52));
  padding: 14px 16px;
  color: #b9d5ea;
  font-size: 15px;
  line-height: 1.62;
}

.project__summary + .project__actions {
  margin-top: 32px;
}

.project--detail .project__type + h3 {
  margin-top: 16px;
}

.project--detail .list--post + .project__summary {
  margin-top: 28px;
}

.portfolio-widget {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(13, 15, 35, 0.74), rgba(13, 15, 35, 0.55));
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.24);
  padding: 16px;
}

.snapshot-layout {
  display: grid;
  grid-template-columns: minmax(230px, 320px) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.portfolio-widget--static {
  padding: 8px;
}

.portfolio-widget__stats {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(132px, 1fr));
  gap: 10px;
}

.portfolio-widget__actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.portfolio-widget__actions .btn {
  min-width: 0;
  width: fit-content;
  justify-content: center;
  text-align: center;
}

.portfolio-stat {
  min-width: 0;
  border: 1px solid rgba(102, 167, 255, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(160deg, rgba(16, 22, 43, 0.96), rgba(11, 17, 34, 0.9)),
    radial-gradient(circle at top right, rgba(0, 227, 181, 0.12), transparent 42%);
  padding: 12px 12px 11px;
  display: grid;
  gap: 6px;
  align-content: start;
  min-height: 84px;
}

.portfolio-stat__label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(166, 194, 214, 0.78);
  line-height: 1.2;
}

.portfolio-stat__value {
  font-size: clamp(0.97rem, 0.82rem + 0.22vw, 1.05rem);
  line-height: 1.22;
  color: #f4fbff;
  overflow-wrap: anywhere;
}

.portfolio-stat--wide {
  grid-column: span 2;
}

.portfolio-widget a {
  display: block;
  width: 100%;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
}

.portfolio-widget img {
  width: 100%;
  height: auto;
  display: block;
  border: 0;
  border-radius: 14px;
  transform: scale(1) translateZ(0);
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.portfolio-widget:hover img,
.portfolio-widget a:hover img {
  transform: scale(1.14) translateZ(0);
}

.portfolio-widget--static:hover img,
.portfolio-widget--static a:hover img {
  transform: scale(1) translateZ(0);
}

.portfolio-widget__media {
  aspect-ratio: 2.34 / 1;
  background: #ffffff;
}

.portfolio-widget--static img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.phone-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0 2px;
}

.phone-mockup {
  margin: 0;
  position: relative;
  width: clamp(210px, 26vw, 270px);
  aspect-ratio: 9 / 19.5;
  border-radius: 40px;
  padding: 8px;
  background: linear-gradient(155deg, #171c34, #0b1023 58%, #121835);
  border: 1px solid rgba(163, 190, 255, 0.3);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(25, 43, 87, 0.6);
}

.phone-mockup__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 42%;
  height: 20px;
  border-radius: 0 0 14px 14px;
  background: #04070f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  z-index: 2;
}

.phone-mockup__screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(90, 126, 205, 0.35);
  background: #02050d;
}

.phone-mockup__screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  transform: scale(1) translateZ(0);
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.phone-mockup:hover .phone-mockup__screen img {
  transform: scale(1.18) translateZ(0);
}

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

#workflow .step {
  position: relative;
  overflow: visible;
}

#workflow .step::after {
  content: "";
  position: absolute;
  top: 33px;
  left: calc(15px + 37px + 10px);
  right: -12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(56, 227, 255, 0.56), rgba(0, 217, 181, 0.62));
  box-shadow:
    0 0 10px rgba(56, 227, 255, 0.26),
    0 0 18px rgba(0, 217, 181, 0.16);
  pointer-events: none;
}

#workflow .step:last-child::after {
  display: block;
  right: 50%;
}

#workflow .step > * {
  position: relative;
  z-index: 1;
}

.step {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(13, 15, 35, 0.42);
  padding: 15px;
}

.step__finish {
  display: none;
}

#workflow .step:last-child .step__finish {
  display: block;
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  pointer-events: none;
  z-index: 2;
}

#workflow .step:last-child .step__finish::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, #fff8da, #ffd775 45%, #ffb22c 82%);
  box-shadow:
    0 0 0 2px rgba(255, 198, 88, 0.24),
    0 0 12px rgba(255, 186, 61, 0.46);
}

#workflow .step:last-child .step__finish::after {
  content: "\01F3C6";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -14px;
  font-size: 14px;
  line-height: 1;
  filter: drop-shadow(0 0 7px rgba(255, 190, 70, 0.45));
}

.step__n {
  margin: 0 0 11px;
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(56, 227, 255, 0.4);
  background: linear-gradient(140deg, rgba(0, 217, 181, 0.2), rgba(59, 145, 255, 0.16));
  font-size: 16px;
  font-weight: 800;
}

.step h3 {
  margin: 0 0 7px;
  font-size: 16px;
  line-height: 1.38;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.formwrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: start;
}

.form {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(13, 15, 35, 0.55);
  padding: 17px;
}

.form label {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(62, 69, 120, 0.84);
  border-radius: 14px;
  background: rgba(5, 6, 15, 0.68);
  color: var(--txt);
  padding: 11px 12px;
  font-size: 14px;
}

input::placeholder,
textarea::placeholder {
  color: #8891c0;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(56, 227, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(56, 227, 255, 0.14);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.switch {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 2px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
}

.switch input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.switch__ui {
  width: 45px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid rgba(62, 69, 120, 0.84);
  background: rgba(5, 6, 15, 0.7);
  position: relative;
}

.switch__ui::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(233, 236, 255, 0.9);
  transition: transform 0.18s ease;
}

.switch input:checked + .switch__ui {
  border-color: rgba(56, 227, 255, 0.68);
  background: rgba(56, 227, 255, 0.18);
}

.switch input:checked + .switch__ui::after {
  transform: translateX(19px);
  background: linear-gradient(130deg, var(--aqua), var(--violet));
}

.switch__txt {
  color: var(--muted);
  line-height: 1.5;
}

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

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

.aside__box {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(13, 15, 35, 0.42);
  padding: 16px;
}

.aside__box h3 {
  margin: 0 0 10px;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.aside__box p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

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

.aside__box--soft {
  border-color: rgba(255, 109, 156, 0.46);
  background: linear-gradient(180deg, rgba(255, 109, 156, 0.08), rgba(13, 15, 35, 0.4));
}

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

.check li {
  padding-left: 17px;
  position: relative;
  color: var(--muted);
  line-height: 1.52;
  font-size: 14px;
}

.check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f4fbff, var(--aqua) 55%, var(--violet));
  box-shadow: 0 0 0 1px rgba(0, 217, 181, 0.48), 0 0 12px rgba(0, 217, 181, 0.32);
}

.faq {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: rgba(13, 15, 35, 0.38);
  padding: 12px 14px;
}

summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}

details p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.62;
  font-size: 14px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 96px;
  width: min(360px, calc(100% - 36px));
  z-index: 95;
  border: 1px solid rgba(56, 227, 255, 0.4);
  border-radius: 16px;
  background: rgba(13, 15, 35, 0.87);
  box-shadow: var(--shadow);
  padding: 13px;
}

.toast__title {
  margin: 0 0 4px;
  font-weight: 800;
}

.toast__body {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.footer {
  border-top: 1px solid rgba(62, 69, 120, 0.38);
  background: rgba(4, 5, 14, 0.56);
  padding: 34px 0 18px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted-2);
  font-size: 12px;
}

.footer__location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted-2);
}

.footer__dot {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(115, 152, 194, 0.58);
  flex: 0 0 3px;
}

.footer__vat {
  color: inherit;
  font-weight: inherit;
}

.footer__legal a {
  color: var(--muted);
}

.footer__legal-btn {
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font: inherit;
}

/* CMP (Cookie banner + modal) */
.cmp-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 14, 0.72);
  backdrop-filter: blur(4px);
  z-index: 95;
}

.cmp-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: min(920px, calc(100% - 28px));
  border-radius: 18px;
  border: 1px solid rgba(46, 88, 124, 0.9);
  background: linear-gradient(180deg, rgba(6, 19, 34, 0.96), rgba(6, 19, 34, 0.88));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  padding: 16px;
  z-index: 110;
}

.cmp-banner h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.cmp-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.cmp-banner__actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cmp-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(760px, calc(100% - 28px));
  max-height: calc(100vh - 56px);
  overflow: auto;
  border-radius: 20px;
  border: 1px solid rgba(46, 88, 124, 0.92);
  background: linear-gradient(180deg, rgba(6, 19, 34, 0.97), rgba(6, 19, 34, 0.9));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  padding: 18px;
  z-index: 120;
}

.cmp-modal h3 {
  margin: 0 0 6px;
  font-size: 19px;
}

.cmp-modal p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.cmp-opt {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(46, 88, 124, 0.72);
  background: rgba(5, 17, 31, 0.64);
  margin-bottom: 9px;
}

.cmp-opt input {
  margin-top: 2px;
}

.cmp-opt strong {
  color: var(--txt);
}

.cmp-opt--locked {
  opacity: 0.92;
}

.cmp-modal__actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cmp-thirdparty-denied #chatFab {
  opacity: 0.55;
  filter: saturate(0.55);
}

.contact-fabs {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
  z-index: 80;
  justify-items: end;
  align-items: end;
}

.lang-header-switch {
  position: fixed;
  top: 18px;
  right: 18px;
  left: auto;
  bottom: auto;
  z-index: 81;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(90, 125, 155, 0.64);
  border-radius: 14px;
  background: rgba(14, 15, 34, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.lang-header-switch a {
  font-weight: 700;
  text-decoration: none;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(42, 47, 85, 0.8);
  background: rgba(14, 15, 34, 0.62);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  font-weight: 900;
  letter-spacing: 0.4px;
  cursor: pointer;
}

.fab:hover {
  transform: translateY(-2px);
  transition: 0.15s ease;
}

.fab svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.fab--wa {
  width: 44px;
  height: 44px;
  border-color: transparent;
  background: transparent;
  color: #25d366;
  box-shadow: none;
}

.fab--tg {
  width: 44px;
  height: 44px;
  border-color: transparent;
  background: transparent;
  color: #229ed9;
  box-shadow: none;
}

.fab--wa svg,
.fab--tg svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 10px currentColor);
}

/* AI pill (86x52) */
.fab--chat-pill {
  width: 86px;
  height: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 14px;
  border-color: rgba(56, 227, 255, 0.75);
  background: linear-gradient(135deg, rgba(0, 217, 181, 0.18), rgba(59, 145, 255, 0.2) 55%, rgba(14, 15, 34, 0.62));
  color: var(--txt);
  box-shadow:
    0 0 0 1px rgba(56, 227, 255, 0.35),
    0 18px 60px rgba(0, 0, 0, 0.25),
    0 0 22px rgba(56, 227, 255, 0.28);
}

.fab--chat-pill .fab__icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.fab--chat-pill .fab__label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.35px;
}

/* Backdrop (chiusura click fuori) */
.chat-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  z-index: 229;
}

.chat-overlay[hidden] {
  display: none !important;
}

/* Chat drawer */
.chat-drawer {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: min(420px, calc(100% - 36px));
  height: min(640px, calc(100% - 36px));
  border-radius: 18px;
  border: 1px solid rgba(57, 230, 255, 0.22);
  background: rgba(14, 15, 34, 0.85);
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 230;
  display: grid;
  grid-template-rows: auto 1fr;
}

.chat-drawer[hidden] {
  display: none !important;
}

.chat-drawer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(42, 47, 85, 0.55);
  background: rgba(7, 7, 18, 0.55);
}

.chat-drawer__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 13px;
  color: var(--txt);
}

.chat-drawer__robot {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(42, 47, 85, 0.45);
}

.chat-drawer__close {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(42, 47, 85, 0.7);
  background: rgba(14, 15, 34, 0.6);
  color: var(--txt);
  cursor: pointer;
}

.chat-drawer__body {
  position: relative;
  overflow: hidden;
}

#ai-chat {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#aiChatFrame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: none;
  background: transparent;
}

.zkx-chat {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  background: linear-gradient(180deg, rgba(10, 12, 30, 0.1), rgba(10, 12, 30, 0.34));
}

.zkx-chat__messages {
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zkx-chat__msg {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(59, 145, 255, 0.24);
  color: #e8e9ff;
  line-height: 1.45;
  font-size: 14px;
  white-space: pre-wrap;
}

.zkx-chat__msg--bot {
  align-self: flex-start;
  background: rgba(59, 145, 255, 0.16);
}

.zkx-chat__msg--user {
  align-self: flex-end;
  background: rgba(0, 217, 181, 0.16);
  border-color: rgba(0, 217, 181, 0.24);
}

.zkx-chat__msg--pending {
  opacity: 0.85;
  font-style: italic;
}

.zkx-chat__composer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid rgba(57, 230, 255, 0.14);
  background: rgba(10, 11, 28, 0.55);
}

.zkx-chat__input {
  width: 100%;
  min-height: 44px;
  max-height: 140px;
  resize: none;
  border-radius: 12px;
  border: 1px solid rgba(59, 145, 255, 0.34);
  background: rgba(32, 35, 67, 0.75);
  color: #e8e9ff;
  padding: 10px 12px;
  font: inherit;
  line-height: 1.35;
  outline: none;
}

.zkx-chat__input::placeholder {
  color: rgba(232, 233, 255, 0.58);
}

.zkx-chat__input:focus {
  border-color: rgba(57, 230, 255, 0.62);
  box-shadow: 0 0 0 1px rgba(57, 230, 255, 0.26);
}

.zkx-chat__send {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(56, 227, 255, 0.42);
  background: linear-gradient(135deg, rgba(0, 217, 181, 0.28), rgba(59, 145, 255, 0.32));
  color: #e8e9ff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.zkx-chat__send:hover {
  filter: brightness(1.1);
}

.zkx-chat__send:disabled,
.zkx-chat__input:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* AI CHAT - glass / trasparente (solo nel drawer) */
#chatDrawer {
  --chat--window--width: 100%;
  --chat--window--height: 100%;
  --chat--color--primary: var(--aqua);
  --chat--color--secondary: var(--violet);
  --chat--color-dark: #041427;
  --chat--color-light: rgba(7, 22, 37, 0.25);
  --chat--color-white: var(--txt);
  --chat--body--background: rgba(8, 20, 36, 0.34);
  --chat--header--background: rgba(4, 14, 28, 0.72);
  --chat--header--color: var(--txt);
  --chat--message--bot--background: rgba(59, 145, 255, 0.24);
  --chat--message--bot--color: var(--txt);
  --chat--message--user--background: rgba(0, 217, 181, 0.2);
  --chat--message--user--color: var(--txt);
  --chat--input--background: rgba(22, 48, 74, 0.84);
  --chat--input--text-color: var(--txt);
}

#chatDrawer .n8n-chat__window,
#chatDrawer .n8n-chat__layout {
  background: transparent !important;
}

@keyframes chatPulseSoft {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

#chatFab.chat-pulse-active {
  animation: chatPulseSoft 2.1s ease-in-out infinite !important;
  transform-origin: center;
  will-change: transform;
  filter:
    drop-shadow(0 0 14px rgba(0, 217, 181, 0.24))
    drop-shadow(0 0 20px rgba(59, 145, 255, 0.16));
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px) scale(0.99);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .fab,
  .btn,
  .platform {
    transition: none !important;
  }

  .pulse {
    animation: none;
  }

  .post__media img,
  .portfolio-widget img,
  .phone-mockup__screen img {
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 760px) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1080px) {
  .container {
    width: min(1080px, calc(100% - 32px));
  }

  .hero__inner,
  .split,
  .formwrap,
  .post {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    position: relative;
    top: auto;
  }

  .proof {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }

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

  .metric {
    border-right: 1px solid rgba(44, 95, 133, 0.4);
    border-bottom: 1px solid rgba(44, 95, 133, 0.4);
  }

  .metric:nth-child(2n) {
    border-right: 0;
  }

  .metric:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

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

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

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

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

  .portfolio-widget__actions {
    justify-content: flex-start;
  }

  .portfolio-stat--wide {
    grid-column: auto;
  }

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

  #workflow .step::after {
    display: none;
  }

  .step__finish {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .nav,
  .topbar__cta {
    display: none;
  }

  .hamburger {
    display: inline-grid;
    place-items: center;
  }

  .hero {
    padding-top: calc(var(--header-h, 88px) + 56px);
  }

  .portfolio-widget--static {
    padding: 10px 0 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .portfolio-widget__media {
    width: 100vw;
    max-width: none;
    margin-inline: calc(50% - 50vw);
    border-radius: 18px;
  }

  .portfolio-widget__stats {
    padding: 0 16px 2px;
  }

  .portfolio-widget__actions {
    padding: 0 16px;
    justify-content: stretch;
  }

  .portfolio-widget__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .portfolio-stat {
    min-height: 78px;
  }

  h1 {
    font-size: clamp(30px, 9vw, 42px);
    max-width: none;
  }

  .lead {
    font-size: 14px;
  }

  .engineering-board {
    padding: 14px;
    border-radius: 22px;
  }

  .engineering-board__services {
    grid-template-columns: 1fr;
  }

  #marketCanvas {
    border-radius: 18px;
  }

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

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

  .metric {
    padding: 18px 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(44, 95, 133, 0.4);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .grid--3,
  .portfolio,
  .steps,
  .form__row {
    grid-template-columns: 1fr;
  }

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

  #workflow .step {
    padding: 14px 14px 14px 66px;
  }

  #workflow .step__n {
    position: absolute;
    left: 14px;
    top: 14px;
    margin: 0;
  }

  #workflow .step::after {
    display: block;
    top: 55px;
    left: 32px;
    right: auto;
    width: 2px;
    height: calc(100% + 14px);
    background: linear-gradient(180deg, rgba(56, 227, 255, 0.56), rgba(0, 217, 181, 0.62));
    box-shadow:
      0 0 10px rgba(56, 227, 255, 0.26),
      0 0 18px rgba(0, 217, 181, 0.16);
  }

  #workflow .step:last-child::after {
    display: none;
  }

  .section {
    padding: 52px 0;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__actions .btn {
    min-width: 148px;
  }

  .strip__inner,
  .strip__items {
    justify-content: flex-start;
  }

  .strip__supported {
    justify-content: center;
    align-items: flex-start;
  }

  .platform-logos {
    width: 100%;
    justify-content: center;
  }

  .platform-logo {
    min-width: 0;
    width: min(100%, 282px);
    justify-content: center;
    margin-inline: auto;
  }

  .chat-drawer {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    height: min(88vh, 640px);
  }

  .cmp-banner {
    bottom: 14px;
    padding: 14px;
  }

  .cmp-modal {
    width: calc(100% - 24px);
    max-height: calc(100vh - 28px);
    padding: 14px;
  }

  .contact-fabs {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }

  .lang-header-switch {
    left: 12px;
    right: auto;
    bottom: 12px;
    top: auto;
    padding: 8px 10px;
    border-radius: 12px;
    gap: 6px;
  }

  .fab {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .fab--chat-pill {
    width: 78px;
    height: 48px;
    border-radius: 16px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .toast {
    right: 12px;
    bottom: 84px;
    width: calc(100% - 24px);
  }
}

/* Language switch absolute position: always bottom-right */
.lang-header-switch {
  position: fixed !important;
  right: 12px !important;
  bottom: 12px !important;
  left: auto !important;
  top: auto !important;
  z-index: 130 !important;
}

/* Language switch final rule: mobile bottom-left, desktop top-right */
.lang-header-switch {
  position: fixed !important;
  z-index: 130 !important;
}

@media (max-width: 768px) {
  .lang-header-switch {
    left: 12px !important;
    right: auto !important;
    bottom: 12px !important;
    top: auto !important;
  }
}

@media (min-width: 769px) {
  .lang-header-switch {
    top: 18px !important;
    right: 18px !important;
    left: auto !important;
    bottom: auto !important;
  }
}

/* Language switch canonical rule: mobile bottom-left by default, desktop top-right */
.lang-header-switch {
  position: fixed !important;
  left: 12px !important;
  bottom: 12px !important;
  right: auto !important;
  top: auto !important;
  z-index: 130 !important;
}

@media (min-width: 769px) {
  .lang-header-switch {
    top: 18px !important;
    right: 18px !important;
    left: auto !important;
    bottom: auto !important;
  }
}

/* Language switch desktop alignment: center line with header/menu */
.lang-header-switch {
  transform: none !important;
}

@media (max-width: 768px) {
  .lang-header-switch {
    left: 12px !important;
    bottom: 12px !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
  }
}

@media (min-width: 769px) {
  .lang-header-switch {
    top: 31px !important;
    right: 18px !important;
    left: auto !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
  }
}
/* Language switch canonical placement (FINAL):
   - non-mobile: vertically centered to header midline
   - mobile: fixed bottom-left */
.lang-header-switch,
.lang-switch {
  position: fixed !important;
  z-index: 130 !important;
  right: 18px !important;
  left: auto !important;
  top: var(--lang-header-center-y, 39px) !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
}
@media (max-width: 768px) {
  .lang-header-switch,
  .lang-switch {
    left: 12px !important;
    right: auto !important;
    bottom: 12px !important;
    top: auto !important;
    transform: none !important;
  }
}

/* Language switch canonical placement (FINAL):
   - non-mobile: toggle center aligned with header midline
   - mobile only: fixed bottom-left */
.lang-header-switch,
.lang-switch {
  position: fixed !important;
  z-index: 130 !important;
  right: 18px !important;
  left: auto !important;
  top: var(--lang-header-center-y, 39px) !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
}

@media (max-width: 768px) {
  .lang-header-switch,
  .lang-switch {
    left: 12px !important;
    right: auto !important;
    bottom: 12px !important;
    top: auto !important;
    transform: none !important;
  }
}

/* Language switch canonical placement (FINAL v2):
   - desktop wide only (>=1200): centered on header midline
   - tablet/mobile (<1200): fixed bottom-left */
.lang-header-switch,
.lang-switch {
  position: fixed !important;
  z-index: 130 !important;
  left: 12px !important;
  right: auto !important;
  bottom: 12px !important;
  top: auto !important;
  transform: none !important;
}

@media (min-width: 1200px) {
  .lang-header-switch,
  .lang-switch {
    right: 18px !important;
    left: auto !important;
    top: var(--lang-header-center-y, 39px) !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
  }
}
/* ZKX-Toggle-DesktopGap-Global START */
/* ZKX Desktop scale (1200+): visual size calibration */
@media (min-width: 1200px) {
  :root {
    --zx-desktop-body-size: 15px;
    --zx-desktop-content-max: 1120px;
    --zx-desktop-gutter: 36px;
    --zx-desktop-h1-size: clamp(30px, 3.6vw, 54px);
    --zx-desktop-h2-size: clamp(24px, 2.1vw, 34px);
    --zx-desktop-h3-size: clamp(20px, 1.35vw, 28px);
    --zx-desktop-section-pad-y: 54px;
    --zx-desktop-grid-gap: 12px;
    --zx-desktop-compact-gap: 10px;
  }

  body {
    font-size: var(--zx-desktop-body-size);
  }

  .main .container,
  .footer .container {
    width: min(var(--zx-desktop-content-max), calc(100% - var(--zx-desktop-gutter)));
  }

  h1 {
    font-size: var(--zx-desktop-h1-size);
  }

  h2,
  .section__header h2 {
    font-size: var(--zx-desktop-h2-size);
  }

  h3,
  .service h3,
  .workflow-step h3,
  .project-card h3,
  .aside__box h3,
  .tech-card__head h2 {
    font-size: var(--zx-desktop-h3-size);
  }

  .section {
    padding: var(--zx-desktop-section-pad-y) 0;
  }

  .section__header {
    margin-bottom: 22px;
  }

  .service-grid,
  .project-grid,
  .workflow__track,
  .form__row,
  .formwrap {
    gap: var(--zx-desktop-grid-gap);
  }

  .tech-grid,
  .testimonials,
  .stack,
  .aside,
  .stack-strip__pills {
    gap: var(--zx-desktop-compact-gap);
  }

  .stack-strip {
    padding: 4px 0 20px;
  }

  .stack-strip__inner {
    gap: var(--zx-desktop-compact-gap);
    padding: 12px 0;
  }

  .service,
  .workflow-step,
  .form,
  .aside__box,
  .tech-card,
  .ratings,
  .testimonial {
    padding: 14px;
  }

  .project-card h3 {
    margin: 12px 12px 6px;
  }

  .project-card p {
    margin: 0 12px 14px;
  }

  .btn {
    min-height: 44px;
  }

  .nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}
@media (min-width: 1200px) {
  .topbar .container {
    width: calc(100% - 42px) !important;
    max-width: none !important;
  }

  .topbar__inner {
    padding-right: 0 !important;
  }

  .topbar__inner .nav {
    margin-left: auto !important;
    margin-right: 0 !important;
    padding-right: clamp(128px, 7vw, 170px) !important;
  }

  .topbar__inner .topbar__cta {
    margin-right: clamp(128px, 7vw, 170px) !important;
  }
}
/* ZKX-Toggle-DesktopGap-Global END */

/* ZKX-Continuous-Trading-Background START
   One continuous trading gradient layer, no hard color bands between sections. */
main {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1180px 860px at 8% 8%, rgba(59, 145, 255, 0.18), transparent 64%),
    radial-gradient(1120px 780px at 92% 18%, rgba(0, 217, 181, 0.13), transparent 62%),
    linear-gradient(180deg, #020912 0%, #04101e 32%, #031426 66%, #020912 100%);
}

main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(920px 640px at 14% 28%, rgba(121, 227, 255, 0.105), transparent 72%),
    radial-gradient(980px 720px at 86% 52%, rgba(0, 217, 181, 0.085), transparent 74%),
    radial-gradient(860px 660px at 24% 86%, rgba(59, 145, 255, 0.095), transparent 70%);
  filter: blur(4px);
  opacity: 0.9;
}

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

.hero,
.strip,
.section {
  background: transparent !important;
}

.hero__bg {
  opacity: 0.62;
}

.section::before {
  inset: -2px 0;
  border: 0 !important;
  background:
    radial-gradient(1100px 760px at var(--trading-glow-x, 18%) var(--trading-glow-y, 6%), var(--trading-glow-a, rgba(59, 145, 255, 0.12)), transparent 68%),
    radial-gradient(1000px 720px at var(--trading-glow-x2, 82%) var(--trading-glow-y2, 84%), var(--trading-glow-b, rgba(0, 217, 181, 0.085)), transparent 70%),
    linear-gradient(180deg, rgba(2, 9, 18, 0.74), rgba(4, 16, 30, 0.54) 48%, rgba(2, 9, 18, 0.70));
}

main > .section:nth-of-type(4n + 1) {
  --trading-glow-x: 10%;
  --trading-glow-y: 2%;
  --trading-glow-x2: 90%;
  --trading-glow-y2: 78%;
  --trading-glow-a: rgba(59, 145, 255, 0.13);
  --trading-glow-b: rgba(0, 217, 181, 0.075);
}

main > .section:nth-of-type(4n + 2) {
  --trading-glow-x: 86%;
  --trading-glow-y: 10%;
  --trading-glow-x2: 18%;
  --trading-glow-y2: 88%;
  --trading-glow-a: rgba(0, 217, 181, 0.11);
  --trading-glow-b: rgba(121, 227, 255, 0.075);
}

main > .section:nth-of-type(4n + 3) {
  --trading-glow-x: 24%;
  --trading-glow-y: 96%;
  --trading-glow-x2: 78%;
  --trading-glow-y2: 4%;
  --trading-glow-a: rgba(121, 227, 255, 0.085);
  --trading-glow-b: rgba(59, 145, 255, 0.12);
}

main > .section:nth-of-type(4n) {
  --trading-glow-x: 72%;
  --trading-glow-y: 46%;
  --trading-glow-x2: 10%;
  --trading-glow-y2: 18%;
  --trading-glow-a: rgba(0, 217, 181, 0.095);
  --trading-glow-b: rgba(59, 145, 255, 0.08);
}

.section.section--metrics::before,
.section--ratings::before {
  border: 0 !important;
  background: transparent !important;
}

.footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 0 !important;
  box-shadow: none !important;
  background:
    radial-gradient(1180px 820px at 14% 4%, rgba(59, 145, 255, 0.15), transparent 66%),
    radial-gradient(1080px 760px at 88% 24%, rgba(0, 217, 181, 0.11), transparent 68%),
    linear-gradient(180deg, #020912 0%, #031426 54%, #020912 100%) !important;
}

.footer::before,
.footer::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

.footer > .container,
.footer__inner,
.footer__services-panel,
.footer__info-row,
.footer__bottom {
  background: transparent !important;
}

.footer__services-panel,
.footer__info-row,
.footer__bottom {
  border-color: rgba(103, 146, 188, 0.10) !important;
}

.footer__service-col {
  box-shadow: none !important;
  background: transparent !important;
}

main > .section {
  content-visibility: auto;
  contain-intrinsic-size: 920px;
}
/* ZKX-Continuous-Trading-Background END */
