:root {
  --black: #050816;
  --black-2: #091126;
  --panel: rgba(200, 223, 255, 0.068);
  --panel-strong: rgba(205, 228, 255, 0.12);
  --text: #f2f5ff;
  --muted: rgba(225, 233, 255, 0.7);
  --faint: rgba(204, 220, 255, 0.12);
  --line: rgba(206, 223, 255, 0.15);
  --white: #ffffff;
  --dark-text: #111111;
  --max: 1328px;
}

.error-page {
  width: min(720px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 22px;
}

.error-page h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(54px, 9vw, 116px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.error-page p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 102%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(4, 9, 20, 0.56), rgba(4, 9, 20, 0.88)),
    url("assets/blue-pixel-bg-small.webp") center top / cover fixed,
    var(--black);
  font-family: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(18, 31, 73, 0.2), rgba(8, 13, 29, 0.08)),
    radial-gradient(circle at 74% 18%, rgba(170, 198, 255, 0.18), rgba(255, 255, 255, 0) 24%);
}

.page-top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 20px clamp(20px, 5vw, 68px);
  color: var(--text);
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease, box-shadow 240ms ease;
  will-change: background, backdrop-filter, box-shadow;
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 12, 28, 0.72);
  backdrop-filter: blur(14px) saturate(1.08);
  box-shadow: 0 8px 28px rgba(3, 8, 22, 0.18);
}

.brand,
.nav,
.header-actions,
.hero-actions,
.contact-links {
  display: flex;
  align-items: center;
}

.brand {
  justify-self: start;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.22));
}

.nav {
  justify-self: center;
  gap: clamp(18px, 3vw, 42px);
  color: rgba(242, 242, 240, 0.68);
  font-size: 15px;
  font-weight: 650;
}

.nav a,
.header-link {
  transition: color 220ms ease, opacity 220ms ease;
}

.nav a:hover,
.header-link:hover {
  color: var(--white);
}

.header-actions {
  justify-self: end;
  gap: 14px;
  font-size: 15px;
  font-weight: 700;
}

.language-picker {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
}

.language-picker::after {
  position: absolute;
  top: 50%;
  right: 11px;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

.language-picker select {
  min-width: 70px;
  min-height: 42px;
  padding: 0 28px 0 13px;
  border: 1px solid rgba(224, 232, 255, 0.2);
  border-radius: 999px;
  color: var(--text);
  background: rgba(7, 12, 28, 0.72);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  appearance: none;
}

.language-picker select:hover,
.language-picker select:focus-visible {
  border-color: rgba(224, 232, 255, 0.5);
  outline: none;
}

.language-picker option {
  color: #101522;
  background: #ffffff;
}

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

.header-link {
  color: rgba(242, 242, 240, 0.72);
}

.header-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.header-button {
  min-height: 48px;
  padding: 0 24px;
  color: var(--dark-text);
  background: var(--white);
}

.button {
  min-height: 58px;
  gap: 10px;
  padding: 0 28px;
}

.button:hover,
.header-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(5, 12, 30, 0.18);
}

.button.primary {
  color: var(--dark-text);
  background: var(--white);
}

.button.ghost {
  color: rgba(242, 242, 240, 0.74);
  background: transparent;
}

.button.ghost:hover {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--text);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 19, 0.86) 0%, rgba(6, 10, 24, 0.58) 44%, rgba(6, 10, 24, 0.24) 100%),
    url("assets/blue-pixel-bg-small.webp") center / cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(28px, 5vw, 88px);
  width: min(var(--max), calc(100% - 40px));
  min-height: 92vh;
  margin: 0 auto;
  padding: 108px 0 48px;
}

.hero-content::before {
  position: absolute;
  inset: 76px -20px 26px;
  z-index: 0;
  border: 1px solid rgba(199, 220, 255, 0.12);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(17, 27, 60, 0.28), rgba(8, 14, 30, 0.18)),
    rgba(6, 10, 23, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 70px rgba(2, 8, 25, 0.26);
  backdrop-filter: blur(5px) saturate(1.06);
  will-change: transform, opacity;
  content: "";
}

.hero-copy-wrap {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.release-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  margin-bottom: 34px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(242, 242, 240, 0.82);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.04);
  font-size: 14px;
  font-weight: 750;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(44px, 5.2vw, 76px);
  font-weight: 520;
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(29px, 3.1vw, 48px);
  font-weight: 520;
  line-height: 1.1;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h3 {
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 720;
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.68;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(16px, 1.22vw, 18.5px);
  line-height: 1.62;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 20px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: clamp(250px, 31vw, 370px);
  isolation: isolate;
}

.cat-canvas {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  display: block;
  width: min(30vw, 390px);
  height: auto;
  max-width: 100%;
  transform: translate(-50%, -50%);
  image-rendering: auto;
  filter:
    drop-shadow(0 0 24px rgba(195, 215, 255, 0.18))
    drop-shadow(0 18px 34px rgba(2, 5, 18, 0.58));
  transition: opacity 420ms ease, transform 420ms ease, filter 420ms ease;
  will-change: transform, opacity;
}

.cat-source {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.visual-glow {
  position: absolute;
  inset: 24% 12% 20%;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 190, 255, 0.2), rgba(255, 255, 255, 0) 66%);
  filter: blur(24px);
}

.section {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(74px, 10vw, 136px) 0;
}

.intro-grid,
.offer-band,
.section-heading,
.service-card,
.showcase-card,
.solution-list article,
.steps article,
.project-cta,
.contact-copy,
.contact-form {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 560ms ease,
    transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}

.intro-grid.is-visible,
.offer-band.is-visible,
.section-heading.is-visible,
.service-card.is-visible,
.showcase-card.is-visible,
.solution-list article.is-visible,
.steps article.is-visible,
.project-cta.is-visible,
.contact-copy.is-visible,
.contact-form.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.section-kicker {
  margin-bottom: 20px;
  color: rgba(225, 233, 255, 0.52);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro {
  border-top: 1px solid var(--line);
}

.intro-grid,
.contact {
  display: grid;
  grid-template-columns: minmax(360px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(34px, 5vw, 86px);
}

.intro-grid h2 {
  max-width: 520px;
  font-size: clamp(32px, 2.78vw, 44px);
  line-height: 1.16;
}

.section-heading {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.section-heading .section-kicker {
  margin-right: auto;
  margin-left: auto;
}

.section-lead {
  max-width: 680px;
  margin: 18px auto 0;
  font-size: 16px;
  line-height: 1.65;
}

.intro-grid p {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(16px, 1.16vw, 18.5px);
  line-height: 1.7;
}

.service-grid,
.solution-list,
.steps {
  display: grid;
  gap: 1px;
  margin-top: 44px;
  border: 1px solid var(--line);
  background: var(--line);
}

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

.service-card,
.solution-list article,
.steps article {
  min-height: 270px;
  padding: clamp(24px, 3vw, 36px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.56);
}

.service-card:hover,
.solution-list article:hover,
.steps article:hover {
  border-color: rgba(214, 228, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03)),
    rgba(3, 10, 28, 0.58);
  box-shadow: 0 18px 34px rgba(4, 10, 28, 0.12);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 590px;
  overflow: hidden;
}

.service-number,
.steps span {
  display: inline-flex;
  margin-bottom: 22px;
  color: rgba(242, 242, 240, 0.42);
  font-weight: 800;
}

.case-label {
  width: fit-content;
  margin-bottom: 16px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(242, 242, 240, 0.58);
  background: rgba(255, 255, 255, 0.045);
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.case-preview {
  position: relative;
  flex: 0 0 150px;
  width: 100%;
  margin-bottom: 28px;
  overflow: hidden;
  border: 1px solid rgba(207, 224, 255, 0.14);
  background:
    radial-gradient(circle at 72% 20%, rgba(167, 198, 255, 0.14), transparent 34%),
    rgba(4, 10, 25, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.preview-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 27px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(207, 224, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.preview-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(229, 237, 255, 0.3);
}

.preview-bar b {
  margin-left: auto;
  color: rgba(229, 237, 255, 0.46);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bot-thread {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 13px;
}

.bot-thread span {
  width: fit-content;
  max-width: 76%;
  padding: 6px 9px;
  border: 1px solid rgba(207, 224, 255, 0.1);
  border-radius: 10px 10px 10px 2px;
  color: rgba(238, 243, 255, 0.66);
  background: rgba(255, 255, 255, 0.055);
  font-size: 8px;
}

.bot-thread span:nth-child(2) {
  align-self: flex-end;
  border-radius: 10px 10px 2px 10px;
  color: #0b1123;
  background: rgba(230, 238, 255, 0.86);
}

.case-preview--flow {
  display: grid;
  grid-template-columns: 1fr 18px 1fr 18px 1fr;
  align-items: center;
  gap: 4px;
  padding: 18px 14px 38px;
}

.flow-node {
  display: grid;
  place-items: center;
  height: 48px;
  border: 1px solid rgba(207, 224, 255, 0.18);
  color: rgba(239, 244, 255, 0.74);
  background: rgba(255, 255, 255, 0.055);
  font-size: 9px;
  font-weight: 800;
}

.case-preview--flow > i {
  height: 1px;
  background: rgba(218, 230, 255, 0.28);
}

.flow-status {
  position: absolute;
  right: 14px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(231, 239, 255, 0.5);
  font-size: 8px;
}

.flow-status span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #81b49a;
  box-shadow: 0 0 10px rgba(129, 180, 154, 0.7);
}

.case-preview--site {
  padding: 14px 18px;
}

.site-shell {
  position: relative;
  height: 121px;
  overflow: hidden;
  border: 1px solid rgba(207, 224, 255, 0.14);
  background: rgba(2, 6, 16, 0.84);
}

.site-layout {
  display: grid;
  gap: 7px;
  width: 56%;
  padding: 17px 14px;
}

.site-layout strong,
.site-layout span,
.site-layout em {
  display: block;
  border: 0;
  background: rgba(231, 238, 255, 0.72);
}

.site-layout strong {
  width: 84%;
  height: 8px;
}

.site-layout span {
  width: 68%;
  height: 3px;
  background: rgba(231, 238, 255, 0.24);
}

.site-layout em {
  width: 42px;
  height: 13px;
  margin-top: 4px;
  border-radius: 8px;
}

.site-visual {
  position: absolute;
  top: 42px;
  right: 18px;
  width: 64px;
  height: 64px;
  transform: rotate(14deg);
  border: 1px solid rgba(222, 233, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(221, 232, 255, 0.7) 0 18%, transparent 18% 34%, rgba(135, 164, 220, 0.45) 34% 58%, transparent 58%),
    rgba(22, 38, 77, 0.84);
  box-shadow: 12px 12px 0 rgba(95, 126, 186, 0.12);
}

.case-preview--creative {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 13px;
}

.case-preview--creative > div {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-width: 0;
  padding: 10px 7px;
  overflow: hidden;
  border: 1px solid rgba(213, 227, 255, 0.14);
  background:
    linear-gradient(155deg, transparent 0 42%, rgba(218, 230, 255, 0.26) 43% 55%, transparent 56%),
    rgba(16, 28, 57, 0.78);
}

.case-preview--creative > div:nth-child(2) {
  background:
    radial-gradient(circle at 60% 35%, rgba(229, 237, 255, 0.5) 0 12%, transparent 13%),
    rgba(21, 37, 71, 0.78);
}

.case-preview--creative > div:nth-child(3) {
  background:
    repeating-linear-gradient(135deg, rgba(226, 235, 255, 0.18) 0 6px, transparent 6px 14px),
    rgba(14, 25, 52, 0.82);
}

.case-preview--creative span {
  position: absolute;
  top: 7px;
  right: 7px;
  color: rgba(231, 239, 255, 0.42);
  font-size: 7px;
}

.case-preview--creative b {
  max-width: 100%;
  overflow: hidden;
  color: rgba(241, 245, 255, 0.84);
  font-size: clamp(8px, 0.85vw, 12px);
  letter-spacing: 0.04em;
}

.case-preview--content {
  padding: 16px;
}

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

.content-head b {
  color: rgba(240, 244, 255, 0.72);
  font-size: 10px;
}

.content-head span {
  color: rgba(225, 234, 255, 0.38);
  font-size: 8px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
}

.content-grid i {
  height: 38px;
  border: 1px solid rgba(213, 227, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.content-grid i:nth-child(2),
.content-grid i:nth-child(6),
.content-grid i:nth-child(9) {
  background: linear-gradient(145deg, rgba(205, 220, 255, 0.2), rgba(37, 61, 112, 0.18));
}

.case-preview--pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 13px;
}

.case-preview--pipeline > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding: 9px;
  border: 1px solid rgba(213, 227, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
}

.case-preview--pipeline b {
  margin-bottom: 2px;
  overflow: hidden;
  color: rgba(232, 239, 255, 0.5);
  font-size: 7px;
  white-space: nowrap;
}

.case-preview--pipeline span {
  height: 21px;
  border-left: 2px solid rgba(187, 209, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.service-card p,
.solution-list p,
.steps p {
  margin-bottom: 0;
}

.service-card > p:not(.case-label) {
  font-size: 15px;
  line-height: 1.64;
}

.case-points {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 22px 0 0;
  color: rgba(242, 242, 240, 0.7);
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.case-points li {
  position: relative;
  padding-left: 16px;
}

.case-points li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(242, 242, 240, 0.42);
  content: "";
}

.solutions {
  width: 100%;
  max-width: none;
  padding-right: max(22px, calc((100vw - var(--max)) / 2));
  padding-left: max(22px, calc((100vw - var(--max)) / 2));
  background: rgba(0, 0, 0, 0.44);
}

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

.solution-list article {
  min-height: 240px;
}

.solution-list h3,
.steps h3 {
  font-size: 19px;
}

.solution-list p,
.steps p {
  font-size: 15px;
  line-height: 1.66;
}

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

.process {
  padding-bottom: clamp(64px, 7vw, 96px);
}

.project-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 6vw, 90px);
  margin-top: 0;
  margin-bottom: 0;
  padding: clamp(32px, 4vw, 54px);
  border: 1px solid rgba(207, 224, 255, 0.16);
  background:
    linear-gradient(115deg, rgba(177, 201, 255, 0.11), rgba(255, 255, 255, 0.02) 58%),
    rgba(3, 8, 20, 0.68);
  box-shadow: 0 24px 70px rgba(2, 7, 20, 0.24);
}

.project-cta > div {
  max-width: 760px;
}

.project-cta h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 42px);
}

.project-cta p:last-child {
  max-width: 680px;
  margin-bottom: 0;
}

.project-cta .button {
  flex: 0 0 auto;
}

.contact {
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact-copy {
  position: sticky;
  top: 112px;
}

.contact-copy h2 {
  max-width: 560px;
  margin: 0 0 24px;
  font-size: clamp(31px, 3.4vw, 48px);
  overflow-wrap: anywhere;
}

.contact-links {
  flex-wrap: wrap;
  gap: 16px 26px;
  margin-top: 32px;
}

.contact-links a {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.68);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: rgba(242, 242, 240, 0.72);
  font-size: 14px;
  font-weight: 720;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  padding: 15px 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.contact-form select {
  color-scheme: dark;
}

.contact-form option {
  color: #111111;
  background: #ffffff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(190, 214, 255, 0.08);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-button {
  width: fit-content;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: rgba(242, 242, 240, 0.44);
  font-size: 13px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 30px clamp(22px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.72);
}

.footer p {
  margin: 0;
}

.footer a {
  font-weight: 800;
}

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

  .nav {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 116px;
  }

  .hero-copy-wrap {
    max-width: 760px;
  }

  .hero-visual {
    order: -1;
    min-height: 250px;
  }

  .hero-content::before {
    inset: 86px 0 22px;
    border-radius: 28px;
  }

  .cat-canvas {
    width: min(72vw, 340px);
  }

  .intro-grid,
  .section-heading,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .solution-list,
  .steps {
    grid-template-columns: 1fr;
  }

  .service-card,
  .solution-list article,
  .steps article {
    min-height: auto;
  }

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

  .contact-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  body {
    overflow-x: hidden;
    background-attachment: scroll;
  }

  .site-header {
    gap: 12px;
    padding: 12px max(16px, env(safe-area-inset-right)) 12px max(16px, env(safe-area-inset-left));
    background: rgba(7, 12, 28, 0.74);
    border-bottom: 1px solid rgba(206, 223, 255, 0.1);
    backdrop-filter: blur(14px) saturate(1.08);
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .header-link {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .header-button {
    display: none;
  }

  .language-picker select {
    min-width: 64px;
    min-height: 42px;
    padding-right: 30px;
  }

  .section {
    width: calc(100% - 28px);
    padding: 56px 0;
  }

  .hero {
    min-height: 0;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 0;
    width: calc(100% - 20px);
    min-height: 0;
    padding: 88px 18px 28px;
  }

  .hero-content::before {
    inset: 72px 0 8px;
    border-radius: 24px;
    backdrop-filter: blur(4px) saturate(1.04);
  }

  .hero-copy-wrap {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .intro-grid,
  .section-heading,
  .service-card,
  .solution-list article,
  .steps article,
  .contact-copy,
  .contact-form {
    opacity: 1;
    transform: none;
    transition-delay: 0ms;
  }

  .release-pill {
    min-height: 36px;
    margin-bottom: 16px;
    padding: 0 14px;
    font-size: 13px;
  }

  h1 {
    max-width: none;
    margin-bottom: 14px;
    font-size: clamp(29px, 9vw, 38px);
    line-height: 1.06;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .hero-copy {
    max-width: none;
    margin-bottom: 20px;
    font-size: 15.5px;
    line-height: 1.55;
  }

  .intro-grid h2,
  .contact-copy h2,
  .section-heading h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .service-card > p:not(.case-label),
  .solution-list p,
  .steps p {
    font-size: 14px;
  }

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

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

  .hero-actions,
  .hero-actions .button,
  .contact-links {
    width: 100%;
  }

  .hero-actions .button {
    min-height: 52px;
    padding: 0 20px;
  }

  .hero-actions .button.ghost {
    min-height: 48px;
    border-color: rgba(218, 230, 255, 0.18);
    background: rgba(255, 255, 255, 0.035);
  }

  .hero-visual {
    min-height: clamp(190px, 50vw, 220px);
  }

  .cat-canvas {
    width: clamp(220px, 62vw, 290px);
    max-width: 86vw;
  }

  .hero-note {
    margin-top: 12px;
    text-align: center;
  }

  .form-button {
    width: 100%;
  }

  .project-cta .button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  .site-header {
    padding-right: 12px;
    padding-left: 12px;
  }

  .brand {
    gap: 9px;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .language-picker select {
    min-height: 40px;
    padding-left: 11px;
    font-size: 12px;
  }

  .hero-content {
    width: calc(100% - 14px);
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero-copy {
    font-size: 15px;
  }
}

/* Refined content system */
.header-socials,
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-note {
  margin: 18px 0 0;
  color: rgba(225, 233, 255, 0.5);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.legacy-services {
  display: none !important;
}

.intro {
  padding-top: clamp(62px, 6vw, 88px);
  padding-bottom: clamp(52px, 5vw, 74px);
}

.intro-grid {
  align-items: start;
}

.offer-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 54px);
  margin-bottom: clamp(22px, 3vw, 40px);
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(207, 224, 255, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 50%, rgba(181, 205, 255, 0.16), transparent 28%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(3, 9, 24, 0.76);
  box-shadow: 0 22px 70px rgba(2, 8, 24, 0.24);
}

.offer-mark {
  display: grid;
  place-items: center;
  width: clamp(92px, 10vw, 132px);
  aspect-ratio: 1;
  border: 1px solid rgba(223, 234, 255, 0.2);
  border-radius: 50%;
  color: #f5f8ff;
  background: rgba(255, 255, 255, 0.06);
  font-size: clamp(26px, 2.6vw, 39px);
  font-weight: 780;
  box-shadow: inset 0 0 34px rgba(200, 219, 255, 0.08);
}

.offer-copy .section-kicker {
  margin-bottom: 10px;
}

.offer-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(26px, 2.8vw, 39px);
}

.offer-copy p:last-child {
  max-width: 760px;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.offer-button {
  color: #111;
  background: #fff;
}

.services-showcase {
  padding-top: clamp(34px, 4vw, 56px);
}

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

.showcase-card {
  min-width: 0;
  padding: clamp(24px, 2.8vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(207, 224, 255, 0.14);
  border-radius: 26px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025) 52%),
    rgba(4, 10, 25, 0.72);
  box-shadow: 0 20px 54px rgba(1, 7, 22, 0.18);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.showcase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(218, 231, 255, 0.26);
  box-shadow: 0 28px 70px rgba(1, 7, 22, 0.3);
}

.showcase-copy {
  min-height: 220px;
}

.showcase-number {
  display: block;
  margin-bottom: 26px;
  color: rgba(222, 233, 255, 0.5);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-card h3 {
  max-width: 520px;
  margin-bottom: 14px;
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.12;
}

.showcase-copy > p {
  max-width: 590px;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.62;
}

.showcase-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.showcase-copy li {
  padding: 7px 10px;
  border: 1px solid rgba(209, 225, 255, 0.12);
  border-radius: 999px;
  color: rgba(231, 238, 255, 0.66);
  background: rgba(255, 255, 255, 0.035);
  font-size: 11px;
  font-weight: 720;
}

.product-mockup {
  position: relative;
  height: 286px;
  overflow: hidden;
  border: 1px solid rgba(207, 224, 255, 0.14);
  border-radius: 17px;
  color: rgba(240, 245, 255, 0.86);
  background:
    radial-gradient(circle at 76% 12%, rgba(142, 177, 242, 0.16), transparent 34%),
    rgba(2, 7, 20, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.mockup-bar,
.browser-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(207, 224, 255, 0.11);
  background: rgba(255, 255, 255, 0.035);
  font-size: 9px;
}

.mockup-bar > span {
  color: rgba(225, 235, 255, 0.52);
}

.mockup-bar > span i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: #75b293;
  box-shadow: 0 0 10px rgba(117, 178, 147, 0.7);
}

.bot-product-body {
  display: grid;
  grid-template-columns: 31% 69%;
  height: calc(100% - 38px);
}

.bot-product aside {
  display: flex;
  flex-direction: column;
  padding: 15px 12px;
  border-right: 1px solid rgba(207, 224, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
}

.bot-product aside small {
  margin-bottom: 15px;
  color: rgba(225, 235, 255, 0.34);
  font-size: 7px;
}

.bot-product aside b {
  margin: 5px 0 2px;
  padding-left: 8px;
  font-size: 8px;
}

.bot-product aside b:first-of-type {
  padding: 8px;
  border-left: 2px solid rgba(211, 225, 255, 0.64);
  background: rgba(255, 255, 255, 0.055);
}

.bot-product aside span {
  padding-left: 8px;
  color: rgba(224, 234, 255, 0.4);
  font-size: 7px;
}

.bot-chat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 15px;
}

.bot-chat > strong {
  margin-bottom: 6px;
  font-size: 9px;
}

.bot-chat p {
  width: fit-content;
  max-width: 76%;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(207, 224, 255, 0.1);
  border-radius: 10px 10px 10px 2px;
  color: rgba(232, 240, 255, 0.64);
  background: rgba(255, 255, 255, 0.045);
  font-size: 8px;
  line-height: 1.35;
}

.bot-chat p:nth-of-type(2) {
  align-self: flex-end;
  border-radius: 10px 10px 2px 10px;
  color: #0b1224;
  background: rgba(232, 239, 255, 0.9);
}

.bot-chat > div {
  display: flex;
  gap: 6px;
  margin-top: auto;
}

.bot-chat > div span,
.bot-chat > div b {
  padding: 6px 7px;
  border-radius: 6px;
  color: rgba(229, 238, 255, 0.54);
  background: rgba(255, 255, 255, 0.05);
  font-size: 7px;
}

.bot-chat > div b {
  margin-left: auto;
  color: #0c1324;
  background: rgba(235, 241, 255, 0.88);
}

.flow-product {
  display: flex;
  flex-direction: column;
}

.flow-track {
  display: grid;
  grid-template-columns: 1fr 14px 1fr 14px 1fr 14px 1fr;
  align-items: center;
  gap: 3px;
  padding: 38px 18px 24px;
}

.flow-track > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 76px;
  padding: 12px 9px;
  border: 1px solid rgba(208, 225, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.flow-track small {
  margin-bottom: auto;
  color: rgba(225, 235, 255, 0.32);
  font-size: 7px;
}

.flow-track b {
  font-size: 8px;
}

.flow-track span {
  overflow: hidden;
  color: rgba(225, 235, 255, 0.42);
  font-size: 6px;
  white-space: nowrap;
}

.flow-track > i {
  height: 1px;
  background: rgba(217, 230, 255, 0.3);
}

.flow-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: auto 18px 18px;
  border-radius: 9px;
  overflow: hidden;
  background: rgba(207, 224, 255, 0.08);
}

.flow-stats span {
  padding: 10px;
  color: rgba(225, 235, 255, 0.42);
  background: rgba(255, 255, 255, 0.035);
  font-size: 7px;
}

.flow-stats b {
  display: block;
  margin-bottom: 3px;
  color: rgba(239, 244, 255, 0.84);
  font-size: 11px;
}

.browser-line {
  justify-content: flex-start;
  gap: 5px;
}

.browser-line i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(226, 235, 255, 0.24);
}

.browser-line span {
  margin-left: 9px;
  color: rgba(225, 235, 255, 0.36);
  font-size: 7px;
}

.site-product-body {
  position: relative;
  height: calc(100% - 38px);
  padding: 16px 20px;
  background: linear-gradient(110deg, rgba(8, 14, 28, 0.96) 0 54%, rgba(15, 28, 56, 0.78) 54%);
}

.site-product nav {
  display: flex;
  justify-content: space-between;
  font-size: 7px;
}

.site-product nav span {
  color: rgba(230, 238, 255, 0.36);
}

.site-product-body > div {
  display: flex;
  flex-direction: column;
  width: 53%;
  padding-top: 31px;
}

.site-product-body > div small {
  margin-bottom: 10px;
  color: rgba(218, 231, 255, 0.44);
  font-size: 6px;
  letter-spacing: 0.12em;
}

.site-product-body > div strong {
  font-size: clamp(17px, 1.8vw, 25px);
  font-weight: 520;
  line-height: 1.02;
}

.site-product-body > div p {
  margin: 10px 0;
  color: rgba(226, 235, 255, 0.48);
  font-size: 7px;
  line-height: 1.4;
}

.site-product-body > div em {
  width: fit-content;
  padding: 7px 9px;
  border-radius: 999px;
  color: #111827;
  background: rgba(238, 243, 255, 0.9);
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
}

.site-product figure {
  position: absolute;
  top: 32px;
  right: 24px;
  bottom: 22px;
  width: 37%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(218, 230, 255, 0.14);
  background: linear-gradient(150deg, rgba(205, 221, 255, 0.55), rgba(41, 67, 116, 0.2) 44%, rgba(12, 22, 43, 0.8));
}

.site-product figure i {
  position: absolute;
  inset: 20% 12% 24%;
  transform: rotate(-12deg);
  border-radius: 50% 45% 42% 54%;
  background: linear-gradient(145deg, rgba(240, 244, 255, 0.66), rgba(99, 126, 180, 0.22));
  box-shadow: 16px 18px 0 rgba(6, 12, 28, 0.28);
}

.site-product figure b,
.site-product figure span {
  position: absolute;
  bottom: 8px;
  font-size: 6px;
}

.site-product figure b { left: 8px; }
.site-product figure span { right: 8px; color: rgba(230, 238, 255, 0.46); }

.creative-product {
  display: grid;
  grid-template-columns: 1fr 0.82fr 1fr;
  gap: 10px;
  padding: 13px;
}

.ad-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding: 13px;
  overflow: hidden;
  border: 1px solid rgba(216, 230, 255, 0.14);
  border-radius: 10px;
}

.ad-card small {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 6px;
}

.ad-card b {
  font-size: clamp(17px, 2.1vw, 28px);
  line-height: 0.86;
}

.ad-card span,
.ad-card em {
  margin-top: 9px;
  color: rgba(238, 243, 255, 0.58);
  font-size: 6px;
  font-style: normal;
}

.ad-one { background: linear-gradient(155deg, transparent 0 44%, rgba(202, 220, 255, 0.32) 44% 58%, transparent 58%), #122249; }
.ad-two { background: radial-gradient(circle at 54% 35%, rgba(226, 236, 255, 0.7) 0 12%, transparent 13%), #172c58; }
.ad-three { background: repeating-linear-gradient(135deg, rgba(222, 233, 255, 0.15) 0 8px, transparent 8px 19px), #101d3e; }

.ad-two i {
  position: absolute;
  inset: 31% 18% 24%;
  border: 1px solid rgba(226, 236, 255, 0.24);
  border-radius: 50%;
}

.calendar-head,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  padding: 0 14px;
}

.calendar-head {
  padding-top: 12px;
  padding-bottom: 7px;
  color: rgba(225, 235, 255, 0.38);
  font-size: 7px;
}

.calendar-grid > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 82px;
  padding: 8px;
  border: 1px solid rgba(210, 226, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.calendar-grid small {
  color: rgba(226, 235, 255, 0.34);
  font-size: 7px;
}

.calendar-grid b {
  margin-top: auto;
  font-size: 8px;
}

.calendar-grid span {
  margin-top: 3px;
  color: rgba(225, 235, 255, 0.42);
  font-size: 6px;
}

.leads-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 13px;
}

.leads-board > div {
  min-width: 0;
  padding: 9px;
  border: 1px solid rgba(210, 226, 255, 0.1);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.025);
}

.leads-board > div > b {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
  color: rgba(235, 241, 255, 0.62);
  font-size: 7px;
}

.leads-board > div > b i {
  font-style: normal;
}

.leads-board article {
  display: flex;
  flex-direction: column;
  margin-bottom: 7px;
  padding: 9px 8px;
  border-left: 2px solid rgba(184, 207, 255, 0.38);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.055);
}

.leads-board small {
  color: rgba(211, 226, 255, 0.38);
  font-size: 5px;
}

.leads-board strong {
  margin: 5px 0;
  overflow: hidden;
  font-size: 7px;
  white-space: nowrap;
}

.leads-board article span {
  color: rgba(223, 233, 255, 0.4);
  font-size: 6px;
}

.solutions {
  padding-top: clamp(72px, 8vw, 108px);
  padding-bottom: clamp(72px, 8vw, 108px);
}

.solution-list {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  border: 0;
  background: none;
}

.solution-list .solution-card {
  position: relative;
  min-height: 300px;
  padding: clamp(28px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(207, 224, 255, 0.14);
  border-radius: 25px;
  background:
    radial-gradient(circle at 85% 20%, rgba(174, 201, 255, 0.12), transparent 32%),
    rgba(7, 14, 31, 0.72);
}

.solution-card--wide {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 30px;
  grid-column: 1 / -1;
}

.solution-card > span,
.solution-copy > span {
  display: block;
  margin-bottom: 42px;
  color: rgba(221, 232, 255, 0.42);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-card h3 {
  max-width: 530px;
  font-size: clamp(24px, 2.4vw, 36px);
}

.solution-card p {
  max-width: 560px;
}

.solution-copy small {
  display: block;
  margin-top: 20px;
  color: rgba(221, 232, 255, 0.45);
  font-size: 12px;
  line-height: 1.5;
}

.solution-route {
  display: grid;
  grid-template-columns: 1fr 18px 1fr 18px 1fr 18px 1fr;
  align-items: center;
}

.solution-route b {
  display: grid;
  place-items: center;
  height: 82px;
  border: 1px solid rgba(213, 228, 255, 0.16);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 11px;
}

.solution-route i {
  height: 1px;
  background: rgba(214, 228, 255, 0.26);
}

.launch-stack {
  position: absolute;
  right: 36px;
  bottom: 28px;
  width: 150px;
  height: 92px;
}

.launch-stack i {
  position: absolute;
  display: grid;
  place-items: center;
  width: 115px;
  height: 62px;
  border: 1px solid rgba(217, 230, 255, 0.16);
  border-radius: 12px;
  color: rgba(232, 240, 255, 0.56);
  background: rgba(17, 30, 61, 0.9);
  font-size: 7px;
  font-style: normal;
  letter-spacing: 0.08em;
}

.launch-stack i:nth-child(1) { right: 0; bottom: 0; z-index: 3; }
.launch-stack i:nth-child(2) { right: 17px; bottom: 15px; z-index: 2; }
.launch-stack i:nth-child(3) { right: 34px; bottom: 30px; }

.content-statuses {
  display: flex;
  gap: 8px;
  margin-top: 42px;
}

.content-statuses b {
  display: flex;
  justify-content: space-between;
  min-width: 92px;
  padding: 10px;
  border: 1px solid rgba(213, 228, 255, 0.12);
  border-radius: 10px;
  color: rgba(230, 238, 255, 0.55);
  font-size: 8px;
}

.content-statuses i {
  font-style: normal;
}

.process {
  padding-top: clamp(70px, 8vw, 106px);
}

.steps {
  position: relative;
  gap: clamp(18px, 3vw, 46px);
  border: 0;
  background: none;
}

.steps::before {
  position: absolute;
  top: 27px;
  right: 6%;
  left: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 227, 255, 0.32) 8% 92%, transparent);
  content: "";
}

.steps .process-step {
  position: relative;
  min-height: 0;
  padding: 74px 10px 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.steps .process-step:hover {
  background: none;
  box-shadow: none;
}

.process-step > span {
  position: absolute;
  top: 0;
  left: 10px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0;
  border: 1px solid rgba(215, 229, 255, 0.2);
  border-radius: 50%;
  color: #eef3ff;
  background: #0b1530;
  box-shadow: 0 0 0 9px rgba(10, 20, 45, 0.72);
  font-size: 14px;
}

.process-step h3 {
  font-size: 21px;
}

.process-step p {
  max-width: 270px;
}

.process-step small {
  display: block;
  margin-top: 18px;
  color: rgba(219, 231, 255, 0.46);
  font-size: 11px;
  font-weight: 750;
}

.project-cta {
  border-radius: 28px;
}

.footer-links {
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .header-socials {
    gap: 10px;
  }

  .header-socials .header-link:first-child {
    display: none;
  }

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

  .showcase-copy {
    min-height: 0;
    margin-bottom: 28px;
  }
}

@media (max-width: 980px) {
  .offer-band {
    grid-template-columns: auto 1fr;
  }

  .offer-button {
    grid-column: 1 / -1;
    width: 100%;
  }

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

  .solution-card--wide {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .solution-route {
    min-height: 100px;
  }

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

  .steps::before {
    display: none;
  }
}

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

  .hero-note {
    font-size: 11px;
    line-height: 1.55;
  }

  .intro {
    padding-top: 56px;
    padding-bottom: 42px;
  }

  .offer-band {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
    padding: 24px;
    border-radius: 22px;
  }

  .offer-mark {
    width: 86px;
  }

  .offer-button {
    grid-column: auto;
  }

  .services-showcase {
    padding-top: 34px;
  }

  .showcase-grid {
    gap: 13px;
    margin-top: 32px;
  }

  .showcase-card {
    padding: 20px;
    border-radius: 20px;
  }

  .showcase-card h3 {
    font-size: 24px;
  }

  .product-mockup {
    height: 240px;
  }

  .bot-product-body {
    grid-template-columns: 26% 74%;
  }

  .bot-product aside {
    padding: 10px 6px;
  }

  .bot-product aside span,
  .bot-product aside b:not(:first-of-type) {
    display: none;
  }

  .flow-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    padding: 28px 8px 18px;
  }

  .flow-track > i {
    display: none;
  }

  .flow-track > div {
    padding: 9px 5px;
  }

  .flow-stats {
    margin: auto 8px 8px;
  }

  .site-product-body {
    padding: 13px;
  }

  .site-product nav span {
    display: none;
  }

  .site-product figure {
    right: 12px;
    width: 40%;
  }

  .creative-product {
    gap: 6px;
    padding: 8px;
  }

  .ad-card {
    padding: 8px;
  }

  .ad-card b {
    font-size: 15px;
  }

  .calendar-head,
  .calendar-grid {
    gap: 4px;
    padding-right: 7px;
    padding-left: 7px;
  }

  .calendar-grid > div {
    height: 68px;
    padding: 5px;
  }

  .leads-board {
    gap: 5px;
    padding: 8px;
  }

  .leads-board > div {
    padding: 5px;
  }

  .leads-board article {
    padding: 6px 5px;
  }

  .leads-board article:nth-of-type(2) {
    display: none;
  }

  .solution-list .solution-card {
    min-height: 0;
    padding: 25px;
    border-radius: 20px;
  }

  .solution-card > span,
  .solution-copy > span {
    margin-bottom: 24px;
  }

  .solution-route {
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    min-height: 72px;
  }

  .solution-route i {
    display: none;
  }

  .solution-route b {
    height: 58px;
    font-size: 8px;
  }

  .launch-stack {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 30px 0 0 auto;
  }

  .content-statuses {
    flex-wrap: wrap;
    margin-top: 28px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 34px;
  }

  .steps .process-step {
    min-height: 0;
    padding: 0 0 36px 74px;
  }

  .steps .process-step::before {
    position: absolute;
    top: 54px;
    bottom: 0;
    left: 27px;
    width: 1px;
    background: rgba(213, 228, 255, 0.2);
    content: "";
  }

  .process-step > span {
    left: 0;
  }

  .process-step p {
    max-width: none;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
