:root {
  --ink: #0f172a;
  --ink-deep: #080e1d;
  --primary: #6366f1;
  --primary-dark: #4548c9;
  --signal: #06b6d4;
  --signal-soft: #cffafe;
  --canvas: #f6f7fb;
  --paper: #ffffff;
  --text: #172033;
  --muted: #5d687c;
  --line: #dce1ea;
  --line-dark: rgba(255, 255, 255, 0.14);
  --success: #0f9f6e;
  --danger: #c73a55;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;
  --shadow-sm: 0 12px 30px rgba(15, 23, 42, 0.07);
  --shadow-md: 0 24px 70px rgba(15, 23, 42, 0.13);
  --header-height: 76px;
  --container: 1200px;
  --font-sans: "Inter", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --font-display: "Manrope", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
}

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

html {
  min-width: 0;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
summary,
select {
  cursor: pointer;
}

button {
  padding: 0;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3,
strong {
  color: inherit;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.005em;
  line-height: 1.1;
  text-transform: uppercase;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.75rem);
}

h3 {
  font-size: 1.35rem;
  font-weight: 400;
}

[hidden] {
  display: none !important;
}

::selection {
  background: var(--signal-soft);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 16px;
  min-height: 44px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  font-weight: 700;
  transition: transform 160ms ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #a7f3ff;
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(6, 182, 212, 0.14), 0 0 18px rgba(6, 182, 212, 0.7);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.96rem;
  font-weight: 720;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button--small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.88rem;
}

.button--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.28);
}

.button--light {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.18);
}

.button--wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  font-weight: 690;
}

.text-link span,
.service-link span {
  transition: transform 180ms ease;
}

.text-link--light {
  color: rgba(255, 255, 255, 0.84);
}

/* Header */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(220, 225, 234, 0.76);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.035);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}

.header-inner {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
}

.brand-logo {
  width: 180px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-services {
  position: relative;
}

.nav-services summary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 620;
  list-style: none;
}

.nav-services summary::-webkit-details-marker {
  display: none;
}

.nav-services summary::after {
  width: 7px;
  height: 7px;
  margin: -4px 0 0 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.nav-services[open] summary::after {
  margin-top: 3px;
  transform: rotate(225deg);
}

.nav-services__list {
  position: absolute;
  top: calc(100% + 8px);
  left: -16px;
  display: grid;
  min-width: 250px;
  padding: 8px;
  border: 1px solid var(--glass-line);
  border-radius: 14px;
  background: rgba(8, 14, 29, 0.97);
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.32);
}

.nav-services__list a {
  min-height: 38px;
  padding: 0 10px;
  border-radius: 8px;
  color: rgba(226, 233, 245, 0.8);
  font-size: 0.82rem;
}

.nav-services__list a::after {
  display: none;
}

.site-nav a,
.footer-links a,
.footer-contact a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 620;
}

.site-nav a::after,
.footer-links a::after,
.footer-contact a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--primary);
  content: "";
  transition: transform 180ms ease;
}

.header-actions {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.header-location {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 620;
  white-space: nowrap;
}

.avatar-button,
.menu-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.avatar-button {
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.08);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.avatar-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border-radius: var(--radius-sm);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */

.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background:
    radial-gradient(circle at 88% 4%, rgba(99, 102, 241, 0.22), transparent 32%),
    radial-gradient(circle at 8% 100%, rgba(6, 182, 212, 0.11), transparent 31%),
    linear-gradient(132deg, #0f172a 0%, #10182d 47%, #0b1326 100%);
  color: #fff;
}

.hero-grid,
.contact-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 88%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 88%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.16;
  pointer-events: none;
}

.hero-glow--one {
  top: 5%;
  right: 20%;
  background: var(--primary);
}

.hero-glow--two {
  bottom: -18%;
  left: -3%;
  background: var(--signal);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 730px;
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(430px, 0.88fr);
  gap: clamp(38px, 6vw, 94px);
  padding-block: 94px 82px;
}

.hero-copy {
  min-width: 0;
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(2.85rem, 5.35vw, 4.9rem);
  letter-spacing: -0.055em;
}

.hero-description {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(232, 238, 249, 0.78);
  font-size: clamp(1.05rem, 1.65vw, 1.27rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-bottom: 24px;
}

.hero-note {
  display: flex;
  max-width: 660px;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 34px;
  color: rgba(216, 226, 242, 0.68);
  font-size: 0.9rem;
  line-height: 1.55;
}

.hero-note svg {
  flex: 0 0 20px;
  margin-top: 2px;
  color: var(--signal);
}

.service-chips {
  display: flex;
  max-width: 750px;
  flex-wrap: wrap;
  gap: 8px;
}

.service-chips a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 620;
  line-height: 1.15;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.service-chips a.is-selected {
  border-color: rgba(6, 182, 212, 0.75);
  background: rgba(6, 182, 212, 0.14);
  color: #dbfbff;
}

.system-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  justify-self: end;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.12), transparent 57%);
  box-shadow: inset 0 0 90px rgba(99, 102, 241, 0.045);
}

.system-visual::before,
.system-visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.system-visual::before {
  inset: 3.5%;
  border: 1px dotted rgba(167, 243, 255, 0.17);
}

.system-visual::after {
  inset: 43.7%;
  background: rgba(6, 182, 212, 0.18);
  filter: blur(16px);
}

.system-orbit {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.system-orbit::before {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 14px var(--signal);
  content: "";
}

.system-orbit--outer {
  width: 81%;
  height: 81%;
}

.system-orbit--inner {
  width: 50%;
  height: 50%;
  transform: translate(-50%, -50%) rotate(140deg);
}

.system-core {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: flex;
  width: 154px;
  height: 154px;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  flex-direction: column;
  border: 1px solid rgba(167, 243, 255, 0.36);
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 0 0 12px rgba(99, 102, 241, 0.05), 0 28px 70px rgba(2, 6, 23, 0.38);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.system-core img {
  width: 43px;
  height: 43px;
  margin-bottom: 4px;
}

.system-core span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.system-core strong {
  color: #fff;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
}

.system-node {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 13px 8px 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(17, 27, 51, 0.88);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.22);
  color: rgba(255, 255, 255, 0.87);
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1.1;
  white-space: nowrap;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.system-node::before {
  position: absolute;
  left: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.8);
  content: "";
}

.system-node--automation {
  top: 10%;
  left: 1%;
}

.system-node--bots {
  top: 14%;
  right: 0;
}

.system-node--web {
  top: 51%;
  right: -1%;
}

.system-node--ads {
  right: 10%;
  bottom: 13%;
}

.system-node--creative {
  bottom: 15%;
  left: 1%;
}

.system-lines {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(167, 243, 255, 0.17);
  stroke-dasharray: 3 7;
  stroke-width: 1;
}

.system-caption {
  position: absolute;
  z-index: 5;
  right: 13%;
  bottom: 1.5%;
  left: 13%;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.6rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Selected service */

.selected-service {
  border-bottom: 1px solid rgba(6, 182, 212, 0.2);
  background: linear-gradient(90deg, #effcfe, #f6f7fb 62%, #f1f3ff);
}

.selected-service__inner {
  display: flex;
  min-height: 160px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding-block: 30px;
}

.selected-service .eyebrow {
  margin-bottom: 8px;
}

.selected-service h2 {
  margin-bottom: 7px;
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
}

.selected-service p:last-child {
  max-width: 750px;
  margin-bottom: 0;
  color: var(--muted);
}

/* Content sections */

.bridge-section {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.bridge-layout {
  display: grid;
  min-height: 300px;
  align-items: center;
  grid-template-columns: 130px minmax(0, 1fr) 220px;
  gap: clamp(28px, 5vw, 72px);
  padding-block: 54px;
}

.bridge-layout > div:nth-child(2) {
  max-width: 790px;
}

.bridge-layout h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.bridge-layout p:last-child {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-index {
  align-self: start;
  margin: 3px 0 0;
  color: #e6e9f0;
  font-size: clamp(4.5rem, 9vw, 8rem);
  font-weight: 720;
  letter-spacing: -0.09em;
  line-height: 0.9;
}

.bridge-signal {
  position: relative;
  display: flex;
  height: 120px;
  align-items: center;
  justify-content: space-between;
}

.bridge-signal::before {
  position: absolute;
  top: 50%;
  right: 5px;
  left: 5px;
  height: 1px;
  background: linear-gradient(90deg, var(--line), var(--signal), var(--primary));
  content: "";
}

.bridge-signal span {
  position: relative;
  z-index: 1;
  width: 9px;
  height: 9px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
}

.bridge-signal span:nth-child(3),
.bridge-signal span:nth-child(5) {
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.section {
  padding-block: clamp(84px, 9vw, 132px);
  background: var(--paper);
}

.section--services,
.section--faq {
  background: var(--canvas);
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
  gap: clamp(32px, 8vw, 120px);
  margin-bottom: 54px;
}

.section-heading h2 {
  max-width: 830px;
}

.section-heading > p {
  margin-bottom: 5px;
  color: var(--muted);
}

/* Services */

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

.service-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 410px;
  overflow: hidden;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.035);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  transform: scaleX(0.18);
  transform-origin: left;
  background: var(--card-accent, var(--primary));
  content: "";
  opacity: 0.82;
  transition: transform 220ms ease;
}

.service-card.is-selected {
  border-color: color-mix(in srgb, var(--card-accent, var(--primary)) 58%, white);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--card-accent, var(--primary)) 12%, transparent), var(--shadow-sm);
}

.service-card.is-selected::before {
  transform: scaleX(1);
}

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

.service-number {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 740;
  letter-spacing: 0.13em;
}

.service-icon {
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 11px;
  background: color-mix(in srgb, var(--card-accent, var(--primary)) 9%, white);
  fill: none;
  stroke: var(--card-accent, var(--primary));
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: clamp(1.28rem, 2vw, 1.58rem);
}

.service-card > p,
.service-card__wide-copy p {
  color: var(--muted);
  font-size: 0.95rem;
}

.service-fit {
  margin-top: auto;
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.87rem !important;
}

.service-fit strong {
  color: var(--text);
  font-weight: 700;
}

.service-link {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  border-top: 1px solid transparent;
  color: var(--primary-dark);
  font-size: 0.91rem;
  font-weight: 730;
}

.service-card--wide {
  min-height: 220px;
  align-items: center;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) 220px;
  gap: 28px;
}

.service-card--wide .service-card__top {
  width: 100%;
  height: 100%;
  margin: 0;
  padding-right: 25px;
  border-right: 1px solid var(--line);
  flex-direction: column;
}

.service-card__wide-copy {
  display: grid;
  min-width: 0;
  align-items: center;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 38px;
}

.service-card--wide .service-fit {
  margin: 0;
  padding: 0 0 0 28px;
  border-top: 0;
  border-left: 1px solid var(--line);
}

.service-card--wide .service-link {
  width: 100%;
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 20px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.64);
}

.services-cta p {
  max-width: 710px;
  margin: 0;
  color: var(--muted);
}

/* Process */

.section--dark {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 5%, rgba(99, 102, 241, 0.2), transparent 32%),
    linear-gradient(145deg, var(--ink), #0b1326);
  color: #fff;
}

.section--dark::after {
  position: absolute;
  z-index: -1;
  right: -9vw;
  bottom: -20vw;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(255, 255, 255, 0.018), 0 0 0 14vw rgba(255, 255, 255, 0.012);
  content: "";
}

.section-heading--dark h2 {
  color: #fff;
}

.section-heading--dark > p {
  color: rgba(226, 233, 245, 0.68);
}

.process-grid {
  position: relative;
  display: grid;
  margin-bottom: 42px;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid::before {
  position: absolute;
  top: 18px;
  right: 2%;
  left: 2%;
  height: 1px;
  background: linear-gradient(90deg, var(--signal), rgba(99, 102, 241, 0.42));
  content: "";
}

.process-grid li {
  position: relative;
  min-width: 0;
  padding: 56px 30px 5px 0;
}

.process-grid li:not(:last-child) {
  border-right: 1px solid var(--line-dark);
}

.process-grid li + li {
  padding-left: 30px;
}

.process-grid li > span {
  position: absolute;
  z-index: 1;
  top: 7px;
  left: 0;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(167, 243, 255, 0.65);
  border-radius: 50%;
  background: var(--ink);
  color: #a7f3ff;
  font-size: 0.54rem;
  font-weight: 750;
}

.process-grid li + li > span {
  left: 30px;
}

.process-grid h3 {
  margin-bottom: 13px;
  color: #fff;
  font-size: 1.2rem;
}

.process-grid p {
  margin-bottom: 0;
  color: rgba(226, 233, 245, 0.63);
  font-size: 0.91rem;
}

/* About */

.about-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(56px, 9vw, 132px);
}

.about-profile {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.about-avatar {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-xl);
  background: #e8ebf4;
  box-shadow: var(--shadow-md);
  text-align: left;
}

.about-avatar::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 14, 29, 0.65), transparent 42%);
  content: "";
  pointer-events: none;
}

.about-avatar img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.2, 0.75, 0.3, 1);
}

.about-avatar > span {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.42);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 680;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.profile-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 4px 0;
}

.profile-caption strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.profile-caption span {
  color: var(--muted);
  font-size: 0.78rem;
  text-align: right;
}

.about-copy h2 {
  margin-bottom: 28px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
}

.about-copy .about-lead {
  color: var(--text) !important;
  font-size: clamp(1.06rem, 1.65vw, 1.25rem);
  line-height: 1.65;
}

.trust-grid {
  display: grid;
  margin-top: 48px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-grid article {
  min-width: 0;
  padding: 28px 30px 26px 0;
  border-top: 1px solid var(--line);
}

.trust-grid article:nth-child(even) {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.trust-mark {
  display: block;
  margin-bottom: 28px;
  color: var(--primary);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.trust-grid h3 {
  margin-bottom: 10px;
  font-size: 1.04rem;
  letter-spacing: -0.02em;
}

.trust-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

/* Tools */

.tools-section {
  padding-block: clamp(72px, 8vw, 112px);
  border-block: 1px solid var(--line);
  background: #eef1f8;
}

.tools-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 9vw, 135px);
}

.tools-layout h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.7vw, 3.35rem);
}

.tools-layout > div:first-child > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.tool-groups {
  display: grid;
  border-top: 1px solid #cfd5e0;
}

.tool-groups > div {
  display: grid;
  min-width: 0;
  align-items: center;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 24px;
  padding-block: 21px;
  border-bottom: 1px solid #cfd5e0;
}

.tool-groups span {
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 670;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tool-groups strong {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 650;
}

/* FAQ */

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(260px, 0.63fr) minmax(0, 1.37fr);
  gap: clamp(54px, 10vw, 150px);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.faq-heading h2 {
  margin-bottom: 22px;
}

.faq-heading > p:last-child {
  color: var(--muted);
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 680;
  line-height: 1.45;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: var(--primary-dark);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details > p {
  max-width: 720px;
  margin: -4px 54px 24px 0;
  color: var(--muted);
}

/* Contact */

.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(84px, 9vw, 128px);
  background:
    radial-gradient(circle at 8% 12%, rgba(6, 182, 212, 0.11), transparent 29%),
    radial-gradient(circle at 91% 15%, rgba(99, 102, 241, 0.2), transparent 32%),
    var(--ink);
  color: #fff;
}

.contact-grid {
  opacity: 0.08;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 78%);
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.04fr) minmax(410px, 0.86fr);
  gap: clamp(56px, 9vw, 132px);
}

.contact-copy {
  padding-top: 18px;
}

.contact-copy h2 {
  max-width: 700px;
  margin-bottom: 25px;
  color: #fff;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(226, 233, 245, 0.68);
  font-size: 1.04rem;
}

.next-step {
  display: flex;
  max-width: 660px;
  align-items: flex-start;
  gap: 17px;
  margin-block: 38px;
  padding: 20px 22px;
  border: 1px solid rgba(167, 243, 255, 0.17);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.next-step > span {
  color: var(--signal);
  font-size: 1.4rem;
}

.next-step p {
  margin: 0;
  color: rgba(226, 233, 245, 0.65);
  font-size: 0.91rem;
}

.next-step strong {
  color: #fff;
}

.messenger-links {
  display: grid;
  max-width: 660px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.messenger-links > a {
  display: grid;
  min-width: 0;
  min-height: 78px;
  align-items: center;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.messenger-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.15);
  color: #c9faff;
  font-size: 0.76rem;
  font-weight: 800;
}

.messenger-links > a > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.messenger-links small {
  color: rgba(226, 233, 245, 0.52);
  font-size: 0.68rem;
  line-height: 1.35;
}

.messenger-links strong {
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 650;
}

.contact-form {
  min-width: 0;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(2, 6, 23, 0.32);
  color: var(--text);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-heading strong {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 620;
  text-align: right;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 680;
}

.form-field label span {
  color: var(--danger);
}

.form-field input,
.form-field select,
.form-field textarea {
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid #cfd5e0;
  border-radius: 10px;
  outline: 0;
  background: #fbfcfe;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.4;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #8c96a8;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.11);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"],
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(199, 58, 85, 0.09);
}

.field-error {
  display: block;
  min-height: 17px;
  padding-top: 3px;
  color: var(--danger);
  font-size: 0.73rem;
  line-height: 1.3;
}

.consent {
  display: grid;
  min-height: 44px;
  align-items: start;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  margin: 2px 0 20px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.76rem;
  line-height: 1.5;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--primary);
}

.consent a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: center;
}

.form-status {
  min-height: 20px;
  margin-top: 6px;
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 620;
  text-align: center;
}

.form-status.is-error {
  color: var(--danger);
}

/* Footer */

.site-footer {
  padding-block: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ink-deep);
  color: #fff;
}

.footer-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(270px, 1fr) auto auto;
  gap: clamp(36px, 7vw, 96px);
}

.footer-grid > div:first-child img {
  width: 170px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-grid > div:first-child p {
  margin: 0;
  color: rgba(226, 233, 245, 0.48);
  font-size: 0.81rem;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-links a,
.footer-contact a {
  color: rgba(226, 233, 245, 0.68);
}

.footer-contact > span {
  margin-top: 12px;
  color: rgba(226, 233, 245, 0.38);
  font-size: 0.72rem;
}

.mobile-messenger-bar,
.back-to-top {
  display: none;
}

/* Avatar dialog */

.avatar-dialog {
  width: min(680px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  background: transparent;
  color: var(--text);
  box-shadow: var(--shadow-md);
}

.avatar-dialog::backdrop {
  background: rgba(3, 8, 20, 0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.avatar-dialog__content {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.avatar-dialog__content > img {
  width: 100%;
  max-height: calc(100dvh - 150px);
  aspect-ratio: 1;
  background: #e8ebf4;
  object-fit: contain;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.64);
  color: #fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.dialog-close svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.avatar-dialog__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
}

.avatar-dialog__caption strong {
  color: var(--ink);
}

.avatar-dialog__caption span {
  color: var(--muted);
  font-size: 0.78rem;
  text-align: right;
}

/* Legal page */

body.legal-page {
  min-height: 100dvh;
  background:
    radial-gradient(circle at 90% 0%, rgba(99, 102, 241, 0.08), transparent 30%),
    var(--canvas);
}

.legal-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(220, 225, 234, 0.82);
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.legal-header .container,
.legal-header {
  min-height: var(--header-height);
}

.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-header a:not(.brand) {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--primary-dark);
  font-weight: 680;
}

.legal-main {
  padding-block: clamp(52px, 8vw, 96px);
}

.legal-card {
  width: min(920px, calc(100% - 48px));
  margin-inline: auto;
  padding: clamp(28px, 6vw, 68px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.legal-card > h1 {
  max-width: 760px;
  margin-bottom: 18px;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  hyphens: auto;
}

.legal-card > p:first-of-type {
  color: var(--muted);
}

.legal-notice {
  margin-block: 30px;
  padding: 18px 20px;
  border: 1px solid rgba(6, 182, 212, 0.24);
  border-radius: var(--radius-md);
  background: linear-gradient(100deg, rgba(207, 250, 254, 0.62), rgba(238, 242, 255, 0.66));
  color: #264455;
  font-size: 0.91rem;
}

.legal-notice > :last-child {
  margin-bottom: 0;
}

.legal-content {
  color: var(--muted);
}

.legal-content h2 {
  margin: 46px 0 16px;
  color: var(--ink);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}

.legal-content h3 {
  margin: 30px 0 12px;
  color: var(--ink);
  font-size: 1.1rem;
}

.legal-content p,
.legal-content li {
  max-width: 760px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.35rem;
}

.legal-content a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content code {
  border-radius: 5px;
  background: #eef1f8;
  color: var(--ink);
  font-size: 0.9em;
}

/* Interaction states */

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
  }

  .button--primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 16px 34px rgba(69, 72, 201, 0.32);
  }

  .button--light:hover {
    background: #eef1ff;
  }

  .text-link:hover span,
  .service-link:hover span {
    transform: translate(3px, -2px);
  }

  .site-nav a:hover,
  .footer-links a:hover,
  .footer-contact a:hover {
    color: var(--primary-dark);
  }

  .site-nav a:hover::after,
  .footer-links a:hover::after,
  .footer-contact a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .avatar-button:hover {
    transform: translateY(-1px);
    border-color: rgba(99, 102, 241, 0.48);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.13);
  }

  .service-chips a:hover {
    border-color: rgba(167, 243, 255, 0.44);
    background: rgba(6, 182, 212, 0.1);
    color: #fff;
  }

  .service-card:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--card-accent, var(--primary)) 33%, var(--line));
    box-shadow: 0 24px 58px rgba(15, 23, 42, 0.09);
  }

  .service-card:hover::before {
    transform: scaleX(1);
  }

  .about-avatar:hover img {
    transform: scale(1.025);
  }

  .messenger-links > a:hover {
    transform: translateY(-2px);
    border-color: rgba(6, 182, 212, 0.42);
    background: rgba(6, 182, 212, 0.08);
  }

  .dialog-close:hover {
    background: rgba(15, 23, 42, 0.86);
  }
}

/* Responsive */

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

  .site-nav {
    gap: 18px;
  }

  .header-location {
    display: none;
  }

  .hero-layout {
    min-height: 690px;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 5.8vw, 4.2rem);
  }

  .bridge-layout {
    grid-template-columns: 90px minmax(0, 1fr) 150px;
  }

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

  .service-card--wide {
    grid-column: 1 / -1;
    grid-template-columns: 80px minmax(0, 1fr) 190px;
    gap: 24px;
  }

  .service-card__wide-copy {
    gap: 26px;
  }

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

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

  .process-grid li,
  .process-grid li + li {
    padding: 60px 30px 34px;
    border-top: 1px solid var(--line-dark);
  }

  .process-grid li:nth-child(odd) {
    padding-left: 0;
  }

  .process-grid li:nth-child(even) {
    border-right: 0;
  }

  .process-grid li > span,
  .process-grid li + li > span {
    top: 20px;
    left: 0;
  }

  .process-grid li:nth-child(even) > span {
    left: 30px;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.84fr);
    gap: 54px;
  }

  .messenger-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .site-nav {
    position: absolute;
    z-index: 10;
    top: calc(100% + 1px);
    right: -24px;
    left: -24px;
    display: grid;
    gap: 0;
    padding: 14px 24px 22px;
    transform: translateY(-10px);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
  }

  .site-nav a {
    min-height: 52px;
    border-bottom: 1px solid #edf0f5;
    font-size: 1rem;
  }

  .site-nav a::after {
    display: none;
  }

  body.nav-open #site-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  body.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-layout {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 64px;
    padding-block: 88px 76px;
  }

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

  .hero h1 {
    font-size: clamp(3rem, 8.5vw, 5rem);
  }

  .system-visual {
    width: min(520px, 85vw);
    justify-self: center;
  }

  .bridge-layout {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .bridge-signal {
    display: none;
  }

  .service-card--wide {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .service-card--wide .service-link {
    grid-column: 2;
  }

  .about-layout {
    grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
    gap: 52px;
  }

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

  .trust-grid article:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .tools-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-heading {
    position: static;
    max-width: 650px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

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

  .contact-form {
    width: min(650px, 100%);
  }

  .nav-services summary {
    min-height: 52px;
    border-bottom: 1px solid #edf0f5;
    color: rgba(226, 233, 245, 0.78);
    font-size: 1rem;
  }

  .nav-services__list {
    position: static;
    min-width: 0;
    margin: 0 0 8px;
    padding: 4px 0 4px 14px;
    border: 0;
    border-left: 1px solid var(--glass-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-services__list a {
    min-height: 42px;
    color: rgba(226, 233, 245, 0.72);
    font-size: 0.9rem;
  }

  .mobile-messenger-bar {
    position: fixed;
    z-index: 110;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--glass-line);
    border-radius: 16px;
    background: rgba(8, 14, 29, 0.9);
    box-shadow: 0 16px 38px rgba(2, 6, 23, 0.36);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .mobile-messenger-bar a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-messenger-bar__whatsapp {
    background: #1f9d55;
  }

  .mobile-messenger-bar__telegram {
    background: #229ed9;
  }

  .back-to-top {
    position: fixed;
    z-index: 109;
    right: 18px;
    bottom: 94px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--glass-line);
    border-radius: 50%;
    background: rgba(8, 14, 29, 0.9);
    color: #fff;
    box-shadow: 0 10px 28px rgba(2, 6, 23, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .back-to-top svg {
    width: 21px;
    height: 21px;
  }

  .back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (min-width: 901px) {
  .back-to-top {
    position: fixed;
    z-index: 99;
    right: 28px;
    bottom: 28px;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--glass-line);
    border-radius: 50%;
    background: rgba(8, 14, 29, 0.9);
    color: #fff;
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .back-to-top svg {
    width: 22px;
    height: 22px;
  }

  .back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

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

  h2 {
    font-size: clamp(2rem, 9vw, 3.1rem);
  }

  .header-inner {
    gap: 10px;
  }

  .brand-logo {
    width: 155px;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    right: -16px;
    left: -16px;
    padding-inline: 16px;
  }

  .hero-layout {
    gap: 52px;
    padding-block: 72px 62px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(2.38rem, 11.5vw, 4rem);
    letter-spacing: -0.05em;
  }

  .hero-description {
    font-size: 1rem;
  }

  .system-visual {
    width: min(430px, 94vw);
  }

  .selected-service__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    padding-block: 30px;
  }

  .bridge-layout {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 70px;
  }

  .section-index {
    font-size: 3.5rem;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 38px;
  }

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

  .service-card {
    min-height: 0;
    padding: 25px;
  }

  .service-card__top {
    margin-bottom: 35px;
  }

  .service-card > p {
    margin-bottom: 22px;
  }

  .service-fit {
    margin-top: 7px;
  }

  .service-card--wide {
    display: flex;
    align-items: stretch;
    grid-column: auto;
    gap: 0;
  }

  .service-card--wide .service-card__top {
    height: auto;
    margin-bottom: 35px;
    padding: 0;
    border-right: 0;
    flex-direction: row;
  }

  .service-card__wide-copy {
    display: block;
  }

  .service-card--wide .service-fit {
    margin: 7px 0 24px;
    padding: 20px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-card--wide .service-link {
    width: auto;
    grid-column: auto;
  }

  .services-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 22px;
  }

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

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

  .process-grid li,
  .process-grid li + li,
  .process-grid li:nth-child(odd) {
    padding: 58px 0 30px;
    border-right: 0;
  }

  .process-grid li > span,
  .process-grid li + li > span,
  .process-grid li:nth-child(even) > span {
    top: 18px;
    left: 0;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .about-profile {
    position: static;
    width: min(430px, 100%);
  }

  .trust-grid {
    margin-top: 38px;
  }

  .tool-groups > div {
    grid-template-columns: 115px minmax(0, 1fr);
    gap: 18px;
  }

  .messenger-links {
    grid-template-columns: 1fr;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .avatar-dialog__caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .avatar-dialog__caption span {
    text-align: left;
  }

  .legal-card {
    width: calc(100% - 32px);
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 24px);
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 0.69rem;
  }

  .brand-logo {
    width: 132px;
  }

  .header-actions {
    gap: 7px;
  }

  .avatar-button {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .site-nav {
    right: -12px;
    left: -12px;
    padding-inline: 12px;
  }

  .hero-layout {
    gap: 42px;
    padding-block: 60px 52px;
  }

  .hero h1 {
    font-size: clamp(2.18rem, 11.5vw, 3rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .hero-note {
    margin-bottom: 28px;
    font-size: 0.82rem;
  }

  .service-chips {
    gap: 6px;
  }

  .service-chips a {
    padding-inline: 10px;
    font-size: 0.72rem;
  }

  .system-visual {
    width: min(340px, 96vw);
  }

  .system-core {
    width: 112px;
    height: 112px;
  }

  .system-core img {
    width: 34px;
    height: 34px;
  }

  .system-node {
    min-height: 32px;
    padding: 6px 9px 6px 22px;
    font-size: 0.62rem;
  }

  .system-node::before {
    left: 9px;
    width: 6px;
    height: 6px;
  }

  .system-node--automation {
    left: 0;
  }

  .system-node--bots,
  .system-node--web {
    right: 0;
  }

  .system-caption {
    display: none;
  }

  .bridge-layout,
  .section,
  .tools-section,
  .contact-section {
    padding-block: 66px;
  }

  .section-index {
    font-size: 3rem;
  }

  .service-card {
    padding: 22px;
    border-radius: 21px;
  }

  .service-card__top,
  .service-card--wide .service-card__top {
    margin-bottom: 28px;
  }

  .services-cta {
    padding: 20px;
  }

  .about-avatar {
    border-radius: 26px;
  }

  .profile-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .profile-caption span {
    text-align: left;
  }

  .trust-grid article,
  .trust-grid article:nth-child(even) {
    padding: 25px 0;
  }

  .tool-groups > div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-block: 18px;
  }

  .faq-list summary {
    min-height: 72px;
    gap: 15px;
    font-size: 0.94rem;
  }

  .faq-list details > p {
    margin-right: 0;
    font-size: 0.91rem;
  }

  .contact-copy {
    padding-top: 0;
  }

  .next-step {
    padding: 18px;
  }

  .contact-form {
    padding: 21px 18px;
    border-radius: 22px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .form-heading strong {
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .avatar-dialog {
    width: calc(100% - 20px);
  }

  .dialog-close {
    top: 10px;
    right: 10px;
  }

  .legal-header .container {
    gap: 12px;
  }

  .legal-header .brand-logo {
    width: 128px;
  }

  .legal-header a:not(.brand) {
    font-size: 0.8rem;
  }

  .legal-main {
    padding-block: 28px 56px;
  }

  .legal-card {
    width: calc(100% - 24px);
    padding: 24px 19px;
    border-radius: 20px;
  }

  .legal-card > h1 {
    font-size: 1.9rem;
    line-height: 1.08;
  }

  .legal-notice {
    padding: 16px;
  }
}

@media (max-width: 350px) {
  .brand-logo {
    width: 122px;
  }

  .system-visual {
    width: 296px;
  }

  .system-node {
    font-size: 0.58rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@supports not (overflow: clip) {
  .hero,
  .section--dark,
  .contact-section {
    overflow: hidden;
  }
}

@supports not (color: color-mix(in srgb, red, blue)) {
  .service-card.is-selected {
    border-color: var(--card-accent, var(--primary));
  }

  .service-icon {
    background: #f0f2ff;
  }
}

/* 2026-08 structural redesign: signal routing */

.hero-shell {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}

.hero-shell .hero-layout {
  min-height: 650px;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  column-gap: clamp(44px, 6vw, 92px);
  row-gap: 48px;
  padding-block: 92px 58px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 5.25vw, 5.25rem);
  font-weight: 300;
  letter-spacing: -0.012em;
  line-height: 1.1;
}

.hero-description {
  max-width: 720px;
  margin-bottom: 34px;
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
}

.hero-note {
  margin-bottom: 0;
}

.flow-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  min-height: 520px;
  overflow: hidden;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: 0 34px 90px rgba(2, 6, 23, 0.3), inset 0 1px rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.flow-visual::before {
  position: absolute;
  top: -90px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.19);
  filter: blur(75px);
  content: "";
  pointer-events: none;
}

.flow-visual__header,
.flow-visual__footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 21px;
  color: rgba(226, 233, 245, 0.48);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.flow-visual__header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.flow-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(207, 250, 254, 0.78);
}

.flow-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.55);
  animation: flow-live-pulse 2.4s ease-out infinite;
}

.flow-visual__body {
  position: relative;
  z-index: 1;
  padding: 15px 20px;
}

.flow-axis {
  position: absolute;
  z-index: -1;
  top: 68px;
  bottom: 68px;
  left: 53px;
  width: 1px;
  background: linear-gradient(var(--signal), rgba(99, 102, 241, 0.6), rgba(255, 255, 255, 0.18));
}

.flow-axis span {
  position: absolute;
  top: 0;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a5f3fc;
  box-shadow: 0 0 16px rgba(6, 182, 212, 0.9);
  animation: flow-route 4.8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.flow-stage {
  position: relative;
  display: grid;
  min-height: 112px;
  align-items: center;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 14px;
  padding: 15px 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.flow-stage:last-child {
  border-bottom: 0;
}

.flow-stage--accent {
  background: linear-gradient(90deg, rgba(6, 182, 212, 0.08), rgba(99, 102, 241, 0.11));
  box-shadow: inset 3px 0 var(--signal);
}

.flow-stage__meta {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.flow-stage__meta span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(165, 243, 252, 0.35);
  border-radius: 50%;
  background: #111b32;
  color: #bff7ff;
  font-size: 0.67rem;
  font-weight: 600;
}

.flow-stage__meta strong {
  color: rgba(226, 233, 245, 0.58);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.flow-nodes {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.flow-nodes span {
  display: grid;
  min-width: 0;
  min-height: 50px;
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(8, 14, 29, 0.66);
  color: rgba(255, 255, 255, 0.79);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.flow-stage--accent .flow-nodes span {
  border-color: rgba(6, 182, 212, 0.27);
  background: rgba(7, 32, 49, 0.76);
  color: #d9fbff;
}

.flow-visual__footer {
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.flow-visual__footer strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.035em;
  text-align: right;
}

@keyframes flow-route {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    transform: translateY(248px);
    opacity: 0;
  }
}

@keyframes flow-live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.5);
  }
  70%, 100% {
    box-shadow: 0 0 0 9px rgba(6, 182, 212, 0);
  }
}

.hero-shell .service-chips {
  display: grid;
  max-width: none;
  grid-column: 1 / -1;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 10px;
}

.hero-shell .service-chips a {
  display: grid;
  min-width: 0;
  min-height: 96px;
  align-items: center;
  grid-column: span 3;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.9);
  white-space: normal;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero-shell .service-chips a:nth-child(n + 5) {
  grid-column: span 4;
}

.service-chip-icon {
  width: 34px;
  height: 34px;
  padding: 7px;
  border: 1px solid rgba(165, 243, 252, 0.18);
  border-radius: 9px;
  background: rgba(6, 182, 212, 0.08);
  fill: none;
  stroke: #a5f3fc;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-shell .service-chips strong {
  font-family: var(--font-display);
  font-size: clamp(0.76rem, 0.9vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-shell .service-chips a.is-selected {
  border-color: rgba(6, 182, 212, 0.68);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.17), rgba(99, 102, 241, 0.13));
  box-shadow: inset 0 0 0 1px rgba(6, 182, 212, 0.12);
}

.section--services {
  background: linear-gradient(180deg, #f6f7fb 0%, #fff 100%);
}

.services-list {
  border-bottom: 1px solid var(--line);
}

.service-detail {
  position: relative;
  display: grid;
  min-width: 0;
  align-items: start;
  grid-template-columns: 86px minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(28px, 5vw, 72px);
  padding: 46px 0;
  border-top: 1px solid var(--line);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.service-detail.is-selected {
  padding-inline: 24px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--card-accent, var(--primary)) 7%, white), transparent 86%);
  box-shadow: inset 4px 0 var(--card-accent, var(--primary));
}

.service-detail__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-direction: column;
}

.service-detail .service-number {
  color: #7b8597;
  font-size: 0.72rem;
}

.service-detail .service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.service-detail__copy {
  min-width: 0;
}

.service-detail__copy h3 {
  max-width: 780px;
  margin-bottom: 21px;
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  line-height: 1.14;
}

.service-detail__copy p {
  max-width: 760px;
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

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

.service-detail__aside {
  min-width: 0;
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.service-detail .service-fit {
  margin: 0 0 28px;
  padding: 0;
  border: 0;
  color: var(--muted);
  font-size: 0.86rem !important;
  line-height: 1.62;
}

.service-detail .service-fit strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-detail .service-link {
  width: fit-content;
  min-height: 44px;
  gap: 18px;
  margin: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--card-accent, var(--primary)) 35%, transparent);
  color: var(--card-accent, var(--primary));
  font-size: 0.84rem;
  font-weight: 600;
}

.services-cta {
  margin-top: 24px;
  border-radius: 12px;
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  gap: clamp(52px, 9vw, 128px);
}

.contact-panel {
  min-width: 0;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 30px 90px rgba(2, 6, 23, 0.24);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.contact-panel__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-panel__heading span {
  color: #bff7ff;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-panel__heading strong {
  color: rgba(226, 233, 245, 0.54);
  font-size: 0.72rem;
  font-weight: 500;
  text-align: right;
}

.contact-panel .messenger-links {
  max-width: none;
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-panel .messenger-links > a {
  min-height: 92px;
  padding: 17px 18px;
  border-radius: 12px;
  background: rgba(8, 14, 29, 0.44);
}

.contact-panel .messenger-icon {
  border-radius: 10px;
}

.contact-panel .messenger-links small {
  margin-bottom: 2px;
  font-size: 0.69rem;
}

.contact-panel .messenger-links strong {
  font-size: 0.94rem;
}

.contact-panel__note {
  margin: 22px 0 0;
  color: rgba(226, 233, 245, 0.5);
  font-size: 0.79rem;
  line-height: 1.6;
}

@media (hover: hover) and (pointer: fine) {
  .hero-shell .service-chips a:hover {
    transform: translateY(-2px);
    border-color: rgba(6, 182, 212, 0.46);
    background: rgba(255, 255, 255, 0.09);
  }

  .service-detail:hover {
    background: rgba(99, 102, 241, 0.025);
  }

  .contact-panel .messenger-links > a:hover {
    border-color: rgba(6, 182, 212, 0.42);
    background: rgba(6, 182, 212, 0.09);
  }
}

@media (max-width: 1100px) {
  .hero-shell .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.35rem);
  }

  .service-detail {
    grid-template-columns: 72px minmax(0, 1fr) minmax(230px, 0.4fr);
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .hero-shell .hero-layout {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 86px 48px;
  }

  .hero-copy {
    max-width: 800px;
    order: 1;
  }

  .flow-visual {
    width: min(680px, 100%);
    max-width: none;
    justify-self: start;
    order: 3;
  }

  .hero-shell .service-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    order: 2;
  }

  .hero-shell .service-chips a,
  .hero-shell .service-chips a:nth-child(n + 5) {
    grid-column: auto;
  }

  .hero-shell .service-chips a:last-child {
    grid-column: 1 / -1;
  }

  .service-detail {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 26px;
  }

  .service-detail__aside {
    grid-column: 2;
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .contact-panel {
    width: min(680px, 100%);
  }
}

@media (max-width: 720px) {
  .hero-shell .hero-layout {
    gap: 34px;
    padding-block: 70px 42px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 10vw, 3.8rem);
    letter-spacing: -0.005em;
  }

  .flow-visual {
    min-height: 0;
    border-radius: 18px;
  }

  .flow-visual__header,
  .flow-axis,
  .flow-stage:not(.flow-stage--accent) {
    display: none;
  }

  .flow-visual__body {
    padding: 10px;
  }

  .flow-stage--accent {
    min-height: 74px;
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 9px 11px;
    border: 0;
  }

  .flow-visual__footer {
    padding: 13px 16px;
  }

  .service-detail.is-selected {
    padding-inline: 18px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(2.08rem, 10.5vw, 2.9rem);
    letter-spacing: 0;
    line-height: 1.1;
  }

  .hero-description {
    line-height: 1.58;
  }

  .flow-visual {
    min-height: 0;
    border-radius: 20px;
  }

  .flow-visual__header,
  .flow-visual__footer {
    padding: 15px;
    font-size: 0.57rem;
  }

  .flow-live {
    gap: 5px;
  }

  .flow-stage--accent {
    min-height: 72px;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 6px;
    padding-inline: 8px;
  }

  .flow-stage__meta span {
    width: 32px;
    height: 32px;
  }

  .flow-stage__meta strong {
    font-size: 0.54rem;
  }

  .flow-nodes {
    gap: 5px;
  }

  .flow-nodes span {
    min-height: 47px;
    padding: 5px 3px;
    font-size: 0.55rem;
  }

  .flow-visual__footer strong {
    font-size: 0.57rem;
  }

  .hero-shell .service-chips {
    gap: 7px;
  }

  .hero-shell .service-chips a {
    min-height: 92px;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 8px;
    padding: 13px 11px;
  }

  .service-chip-icon {
    width: 30px;
    height: 30px;
    padding: 6px;
  }

  .hero-shell .service-chips strong {
    font-size: 0.69rem;
  }

  .service-detail,
  .service-detail.is-selected {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 32px 0;
  }

  .service-detail.is-selected {
    padding-inline: 14px;
  }

  .service-detail__meta {
    align-items: center;
    flex-direction: row;
  }

  .service-detail__copy h3 {
    font-size: 1.45rem;
  }

  .service-detail__aside {
    grid-column: auto;
    padding-top: 20px;
  }

  .contact-panel {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .contact-panel__heading {
    flex-direction: column;
    gap: 5px;
  }

  .contact-panel__heading strong {
    text-align: left;
  }
}

/* 2026-08 unified glass theme */

:root {
  --heading-display: clamp(2.2rem, 3.75vw, 3.65rem);
  --glass-surface: rgba(15, 23, 42, 0.56);
  --glass-surface-strong: rgba(8, 14, 29, 0.74);
  --glass-line: rgba(255, 255, 255, 0.12);
  --glass-line-soft: rgba(255, 255, 255, 0.075);
  --glass-text: #eef4ff;
  --glass-muted: rgba(213, 224, 241, 0.66);
  --glass-shadow: 0 34px 90px rgba(2, 6, 23, 0.28);
}

body:not(.legal-page) {
  background:
    radial-gradient(circle at 12% 18%, rgba(6, 182, 212, 0.08), transparent 28%),
    radial-gradient(circle at 86% 52%, rgba(99, 102, 241, 0.11), transparent 30%),
    #080e1d;
  color: var(--glass-text);
}

main h1,
main h2 {
  color: var(--glass-text);
  font-size: var(--heading-display);
  letter-spacing: 0.035em;
  line-height: 1.12;
}

main h3 {
  color: var(--glass-text);
  letter-spacing: 0.04em;
}

.hero h1 {
  max-width: 730px;
  font-size: var(--heading-display);
  letter-spacing: 0.035em;
  line-height: 1.12;
}

.trust-grid h3 {
  letter-spacing: 0.04em;
}

.site-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(8, 14, 29, 0.7);
  box-shadow: 0 12px 42px rgba(2, 6, 23, 0.2);
  color: var(--glass-text);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  backdrop-filter: blur(22px) saturate(135%);
}

.site-header .brand-logo {
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.site-nav a,
.header-location {
  color: rgba(226, 233, 245, 0.68);
}

.site-nav a::after {
  background: var(--signal);
}

.avatar-button,
.menu-toggle {
  border-color: var(--glass-line);
  background: rgba(255, 255, 255, 0.065);
  color: #fff;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hero {
  border-bottom: 1px solid var(--glass-line-soft);
  background:
    radial-gradient(circle at 88% 4%, rgba(99, 102, 241, 0.24), transparent 32%),
    radial-gradient(circle at 8% 100%, rgba(6, 182, 212, 0.13), transparent 31%),
    linear-gradient(132deg, #0f172a 0%, #10182d 47%, #0a1224 100%);
}

.section,
.section--services {
  position: relative;
  isolation: isolate;
  color: var(--glass-text);
}

.section--services {
  overflow: hidden;
  border-bottom: 1px solid var(--glass-line-soft);
  background:
    radial-gradient(circle at 84% 16%, rgba(99, 102, 241, 0.14), transparent 30%),
    radial-gradient(circle at 6% 82%, rgba(6, 182, 212, 0.08), transparent 27%),
    linear-gradient(180deg, #0a1224 0%, #0b1428 100%);
}

.section--services::before,
#about::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  opacity: 0.34;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.section--services > .container,
#about > .container {
  position: relative;
  z-index: 1;
  padding: clamp(30px, 4.4vw, 58px);
  border: 1px solid var(--glass-line);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--glass-surface);
  box-shadow: var(--glass-shadow), inset 0 1px rgba(255, 255, 255, 0.055);
  -webkit-backdrop-filter: blur(20px) saturate(125%);
  backdrop-filter: blur(20px) saturate(125%);
}

.section .eyebrow {
  color: #a7f3ff;
}

.section-heading > p,
.service-detail__copy p,
.service-detail .service-fit,
.about-copy > p:not(.eyebrow),
.trust-grid p,
.profile-caption span {
  color: var(--glass-muted);
}

.services-list {
  border-bottom-color: var(--glass-line);
}

.service-detail {
  border-top-color: var(--glass-line);
}

.service-detail::after {
  position: absolute;
  inset: 10px 0;
  z-index: -1;
  border-radius: 18px;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.025), transparent 72%);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-detail.is-selected {
  background: linear-gradient(90deg, color-mix(in srgb, var(--card-accent, var(--primary)) 15%, rgba(8, 14, 29, 0.82)), transparent 86%);
  box-shadow: inset 4px 0 var(--card-accent, var(--primary));
}

.service-detail .service-number {
  color: rgba(213, 224, 241, 0.48);
}

.service-detail .service-icon {
  border: 1px solid color-mix(in srgb, var(--card-accent, var(--primary)) 42%, transparent);
  background: color-mix(in srgb, var(--card-accent, var(--primary)) 13%, rgba(8, 14, 29, 0.82));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.055);
}

.service-detail__aside {
  border-left-color: var(--glass-line);
}

.service-detail .service-fit strong {
  color: var(--glass-text);
}

.service-detail .service-link {
  color: color-mix(in srgb, var(--card-accent, var(--signal)) 68%, white);
}

.services-cta {
  border-color: var(--glass-line);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.075), rgba(99, 102, 241, 0.07));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.045);
}

.services-cta p {
  color: var(--glass-muted);
}

#about {
  overflow: hidden;
  border-bottom: 1px solid var(--glass-line-soft);
  background:
    radial-gradient(circle at 12% 24%, rgba(6, 182, 212, 0.1), transparent 28%),
    radial-gradient(circle at 92% 76%, rgba(99, 102, 241, 0.13), transparent 31%),
    linear-gradient(180deg, #0b1428 0%, #080e1d 100%);
}

#about > .container {
  align-items: center;
}

.about-avatar {
  border: 1px solid var(--glass-line);
  background: rgba(8, 14, 29, 0.66);
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.34), inset 0 1px rgba(255, 255, 255, 0.055);
}

.about-avatar > span {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(8, 14, 29, 0.58);
}

.profile-caption strong,
.about-copy .about-lead {
  color: var(--glass-text) !important;
}

.trust-grid {
  gap: 12px;
}

.trust-grid article,
.trust-grid article:nth-child(even) {
  padding: 24px;
  border: 1px solid var(--glass-line-soft);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.trust-mark {
  margin-bottom: 22px;
  color: #67e8f9;
}

.contact-section {
  border-bottom: 1px solid var(--glass-line-soft);
  background:
    radial-gradient(circle at 8% 12%, rgba(6, 182, 212, 0.13), transparent 29%),
    radial-gradient(circle at 91% 15%, rgba(99, 102, 241, 0.22), transparent 32%),
    linear-gradient(180deg, #080e1d 0%, #0a1224 100%);
}

.contact-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(15, 23, 42, 0.54);
  box-shadow: var(--glass-shadow), inset 0 1px rgba(255, 255, 255, 0.055);
}

.contact-panel .messenger-links > a {
  background: rgba(8, 14, 29, 0.5);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.site-footer {
  background: #070c18;
}

.avatar-dialog__content {
  background: rgba(11, 20, 40, 0.94);
  color: var(--glass-text);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.avatar-dialog__content > img {
  background: #0f172a;
}

.avatar-dialog__caption span {
  color: var(--glass-muted);
}

body.legal-page {
  background:
    radial-gradient(circle at 10% 16%, rgba(6, 182, 212, 0.1), transparent 28%),
    radial-gradient(circle at 90% 44%, rgba(99, 102, 241, 0.13), transparent 30%),
    #080e1d;
  color: var(--glass-text);
}

.legal-header {
  border-bottom-color: var(--glass-line);
  background: rgba(8, 14, 29, 0.76);
  box-shadow: 0 12px 42px rgba(2, 6, 23, 0.2);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  backdrop-filter: blur(22px) saturate(135%);
}

.legal-header .brand-logo {
  filter: brightness(0) invert(1);
}

.legal-header a:not(.brand) {
  color: #a7f3ff;
}

.legal-card {
  border-color: var(--glass-line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--glass-surface-strong);
  box-shadow: var(--glass-shadow), inset 0 1px rgba(255, 255, 255, 0.055);
  color: var(--glass-text);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.legal-card > h1,
.legal-content h2,
.legal-content h3 {
  color: var(--glass-text);
  letter-spacing: 0.035em;
}

.legal-card > h1 {
  font-size: var(--heading-display);
}

.legal-card > p,
.legal-content p,
.legal-content li {
  color: var(--glass-muted);
}

.legal-notice,
.legal-content code {
  border: 1px solid var(--glass-line-soft);
  background: rgba(255, 255, 255, 0.045);
  color: var(--glass-text);
}

@media (hover: hover) and (pointer: fine) {
  .site-nav a:hover {
    color: #a7f3ff;
  }

  .avatar-button:hover {
    border-color: rgba(6, 182, 212, 0.48);
    box-shadow: 0 10px 26px rgba(2, 6, 23, 0.28);
  }

  .service-detail:hover::after {
    opacity: 1;
  }

  .service-detail:hover {
    background: transparent;
  }
}

@media (max-width: 900px) {
  .site-nav {
    border-bottom-color: var(--glass-line);
    background: rgba(8, 14, 29, 0.96);
    box-shadow: 0 24px 52px rgba(2, 6, 23, 0.38);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
  }

  .site-nav a {
    border-bottom-color: var(--glass-line-soft);
    color: rgba(226, 233, 245, 0.78);
  }

  .service-detail__aside {
    border-top-color: var(--glass-line);
  }
}

@media (max-width: 720px) {
  :root {
    --heading-display: clamp(2.05rem, 9vw, 3rem);
  }

  .section--services > .container,
  #about > .container {
    padding: 24px;
    border-radius: 24px;
  }

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

@media (max-width: 480px) {
  main h1,
  main h2,
  .hero h1 {
    letter-spacing: 0.028em;
  }

  .section--services > .container,
  #about > .container {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .trust-grid article,
  .trust-grid article:nth-child(even) {
    padding: 21px;
  }
}

/* Interactive solution network */

.network-graph {
  --graph-rotate-x: 0deg;
  --graph-rotate-y: 0deg;
  --graph-shift-x: 0px;
  --graph-shift-y: 0px;
  --pointer-x: 50%;
  --pointer-y: 50%;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  background-size: 28px 28px, 28px 28px, auto;
  contain: layout paint;
}

.network-graph__header,
.network-graph__footer {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 21px;
  color: rgba(226, 233, 245, 0.46);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.network-graph__header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.network-graph__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(207, 250, 254, 0.78);
  white-space: nowrap;
}

.network-graph__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.55);
  animation: network-live-pulse 2.6s ease-out infinite;
}

.network-graph__body {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 398px;
  flex: 1 1 auto;
  overflow: hidden;
  place-items: center;
  padding: 4px 14px;
  perspective: 900px;
}

.network-graph__body::before {
  position: absolute;
  top: var(--pointer-y);
  left: var(--pointer-x);
  width: 240px;
  height: 240px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.13), rgba(99, 102, 241, 0.055) 46%, transparent 72%);
  content: "";
  filter: blur(10px);
  opacity: 0.68;
  pointer-events: none;
  transition: top 180ms cubic-bezier(0.2, 0.75, 0.3, 1), left 180ms cubic-bezier(0.2, 0.75, 0.3, 1), opacity 220ms ease-out;
}

.network-graph.is-pointer-active .network-graph__body::before {
  opacity: 1;
}

.network-graph__svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  overflow: visible;
  transform: perspective(900px) rotateX(var(--graph-rotate-x)) rotateY(var(--graph-rotate-y)) translate3d(var(--graph-shift-x), var(--graph-shift-y), 0);
  transform-origin: center;
  transition: transform 260ms cubic-bezier(0.2, 0.75, 0.3, 1);
}

.network-edge {
  fill: none;
  stroke: rgba(165, 243, 252, 0.36);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.network-edge--primary {
  stroke: url(#network-edge-gradient);
  stroke-width: 1.65;
}

.network-edge--faint {
  stroke: rgba(129, 140, 248, 0.24);
  stroke-dasharray: 3 8;
  stroke-width: 1.25;
}

.network-core__orbit {
  fill: rgba(99, 102, 241, 0.035);
  stroke: rgba(165, 243, 252, 0.18);
  stroke-dasharray: 3 7;
  stroke-width: 1;
}

.network-core__halo {
  fill: url(#network-core-gradient);
  filter: url(#network-soft-glow);
  opacity: 0.42;
}

.network-core__point {
  fill: #0b2238;
  stroke: rgba(165, 243, 252, 0.7);
  stroke-width: 1.2;
}

.network-core__center {
  fill: #d9fbff;
  filter: url(#network-signal-glow);
}

.network-node {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 280ms cubic-bezier(0.2, 0.75, 0.3, 1);
}

.network-graph.is-pointer-active .network-graph__svg,
.network-graph.is-pointer-active .network-node {
  will-change: transform;
}

.network-node__halo {
  fill: rgba(6, 182, 212, 0.09);
  stroke: rgba(165, 243, 252, 0.08);
  stroke-width: 1;
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 300ms cubic-bezier(0.2, 0.75, 0.3, 1), fill 180ms ease-out, opacity 180ms ease-out;
}

.network-node__ring {
  fill: #0b172d;
  stroke: rgba(165, 243, 252, 0.64);
  stroke-width: 1.15;
  transition: stroke 180ms ease-out, fill 180ms ease-out;
}

.network-node__point {
  fill: #bff7ff;
  filter: url(#network-soft-glow);
}

.network-label rect {
  fill: rgba(8, 14, 29, 0.76);
  stroke: rgba(255, 255, 255, 0.13);
  stroke-width: 1;
  transition: fill 180ms ease-out, stroke 180ms ease-out;
}

.network-label text {
  fill: rgba(238, 244, 255, 0.76);
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-anchor: middle;
  transition: fill 180ms ease-out;
}

.network-node.is-active .network-node__halo {
  fill: rgba(6, 182, 212, 0.18);
  transform: scale(1.38);
}

.network-node.is-active .network-node__ring {
  fill: #0a2940;
  stroke: #a5f3fc;
}

.network-node.is-active .network-label rect {
  fill: rgba(7, 32, 49, 0.9);
  stroke: rgba(103, 232, 249, 0.52);
}

.network-node.is-active .network-label text {
  fill: #e9fdff;
}

.network-signal {
  fill: #d9fbff;
  opacity: 0.95;
}

.network-signal--two {
  fill: #a5f3fc;
  opacity: 0.78;
}

.network-signal--three {
  fill: #c7d2fe;
  opacity: 0.72;
}

.network-graph__footer {
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.network-graph__footer strong {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.035em;
  text-align: right;
}

@keyframes network-live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.52);
  }

  72%,
  100% {
    box-shadow: 0 0 0 9px rgba(6, 182, 212, 0);
  }
}

@media (max-width: 900px) {
  .network-graph {
    width: min(680px, 100%);
  }
}

@media (max-width: 720px) {
  .network-graph {
    min-height: 470px;
    border-radius: 20px;
  }

  .network-graph__header,
  .network-graph__footer {
    display: flex;
    min-height: 50px;
    padding: 13px 16px;
    font-size: 0.59rem;
  }

  .network-graph__body {
    min-height: 358px;
    padding: 2px 8px;
  }

  .network-graph__footer strong {
    max-width: 62%;
    font-size: 0.58rem;
  }
}

@media (max-width: 480px) {
  .network-graph {
    min-height: 414px;
    border-radius: 18px;
  }

  .network-graph__header,
  .network-graph__footer {
    min-height: 46px;
    gap: 10px;
    padding: 11px 13px;
    font-size: 0.53rem;
  }

  .network-graph__body {
    min-height: 320px;
    padding-inline: 2px;
  }

  .network-graph__status {
    gap: 5px;
  }

  .network-graph__status i {
    width: 6px;
    height: 6px;
  }

  .network-label text {
    font-size: 17px;
  }

  .network-graph__footer > span {
    display: none;
  }

  .network-graph__footer strong {
    max-width: none;
    margin-left: auto;
    text-align: right;
  }
}

@media (max-width: 350px) {
  .network-label text {
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .network-graph,
  .network-graph__svg,
  .network-node {
    transform: none !important;
  }

  .network-graph__body::before {
    top: 50%;
    left: 50%;
    transition: none;
  }

  .network-graph__status i {
    animation: none;
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.72);
  }

  .network-signal {
    display: none;
  }
}

/* Animated robot workshop */

.robot-visual {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  background-size: 28px 28px, 28px 28px, auto;
  contain: layout paint;
}

.robot-visual__header,
.robot-visual__footer {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 21px;
  color: rgba(226, 233, 245, 0.46);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.robot-visual__header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.robot-visual__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(207, 250, 254, 0.78);
  white-space: nowrap;
}

.robot-visual__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #bff7ff;
  box-shadow: 0 0 0 0 rgba(191, 247, 255, 0.48);
  animation: robot-status-pulse 2.6s ease-out infinite;
}

.robot-visual__body {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 398px;
  flex: 1 1 auto;
  overflow: hidden;
  place-items: center;
  padding: 4px 10px;
}

.robot-visual__body::before {
  position: absolute;
  top: 42%;
  left: 49%;
  width: 290px;
  height: 290px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207, 250, 254, 0.07), rgba(99, 102, 241, 0.035) 48%, transparent 72%);
  content: "";
  filter: blur(10px);
  pointer-events: none;
}

.robot-scene {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  overflow: visible;
  color: #c9f8ff;
}

.robot-scene path,
.robot-scene rect,
.robot-scene circle {
  vector-effect: non-scaling-stroke;
}

.robot-scene__guides {
  fill: none;
  stroke: rgba(207, 250, 254, 0.08);
  stroke-dasharray: 3 9;
  stroke-width: 1;
}

.robot-speech {
  opacity: 0;
  transform-box: view-box;
  transform-origin: center;
}

.robot-speech__bubble {
  fill: rgba(8, 14, 29, 0.78);
  stroke: rgba(207, 250, 254, 0.38);
  stroke-width: 1.25;
}

.robot-speech__line {
  fill: none;
  stroke: rgba(238, 252, 255, 0.7);
  stroke-linecap: round;
  stroke-width: 2;
}

.robot-speech__source {
  fill: #d9fbff;
  filter: url(#robot-glow);
}

.robot-speech--prompt {
  animation: robot-prompt 10s cubic-bezier(0.2, 0.75, 0.3, 1) infinite;
}

.robot-speech--reply {
  animation: robot-reply 10s cubic-bezier(0.2, 0.75, 0.3, 1) infinite;
}

.robot-reply-dot {
  fill: #d9fbff;
  filter: url(#robot-glow);
  opacity: 0.34;
  transform-box: fill-box;
  transform-origin: center;
  animation: robot-reply-dot 1.15s ease-in-out infinite;
}

.robot-reply-dot--two {
  animation-delay: 140ms;
}

.robot-reply-dot--three {
  animation-delay: 280ms;
}

.robot-panel {
  fill: url(#robot-panel-sheen);
  stroke: rgba(207, 250, 254, 0.4);
  stroke-width: 1.25;
}

.robot-panel__header,
.robot-banner__frame {
  fill: none;
  stroke: rgba(207, 250, 254, 0.24);
  stroke-width: 1;
}

.robot-banner-station > circle:not(.robot-banner__sun) {
  fill: rgba(207, 250, 254, 0.48);
}

.robot-banner__art {
  fill: none;
  stroke: rgba(238, 252, 255, 0.82);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  animation: robot-banner-draw 10s cubic-bezier(0.2, 0.75, 0.3, 1) infinite;
}

.robot-banner__sun {
  fill: rgba(207, 250, 254, 0.1);
  stroke: rgba(238, 252, 255, 0.76);
  stroke-width: 1.2;
  transform-box: fill-box;
  transform-origin: center;
  animation: robot-banner-sun 10s ease-out infinite;
}

.robot-banner__cursor {
  fill: rgba(8, 14, 29, 0.8);
  stroke: #d9fbff;
  stroke-linejoin: round;
  stroke-width: 1.1;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: robot-banner-cursor 10s cubic-bezier(0.2, 0.75, 0.3, 1) infinite;
}

.robot-head,
.robot-arm {
  transform-box: view-box;
}

.robot-head {
  transform-origin: 250px 174px;
  animation: robot-head-look 10s cubic-bezier(0.2, 0.75, 0.3, 1) infinite;
}

.robot-antenna,
.robot-face,
.robot-mouth,
.robot-neck,
.robot-torso__panel,
.robot-base,
.robot-arm,
.robot-pen {
  fill: none;
  stroke: rgba(207, 250, 254, 0.64);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.robot-antenna__light {
  fill: #d9fbff;
  filter: url(#robot-glow);
  animation: robot-antenna-pulse 2.2s ease-in-out infinite;
}

.robot-head__shell,
.robot-torso {
  fill: rgba(8, 14, 29, 0.72);
  stroke: rgba(207, 250, 254, 0.58);
  stroke-width: 1.5;
}

.robot-eye {
  fill: #d9fbff;
  filter: url(#robot-glow);
  animation: robot-eye-scan 10s cubic-bezier(0.2, 0.75, 0.3, 1) infinite;
}

.robot-mouth {
  animation: robot-mouth-talk 10s ease-in-out infinite;
}

.robot-torso__panel {
  stroke: rgba(207, 250, 254, 0.25);
}

.robot-core {
  fill: rgba(207, 250, 254, 0.12);
  stroke: #d9fbff;
  stroke-width: 1.2;
  filter: url(#robot-glow);
  animation: robot-core-pulse 2.8s ease-in-out infinite;
}

.robot-arm {
  stroke-width: 3;
}

.robot-arm > circle {
  fill: #0b172d;
  stroke: rgba(207, 250, 254, 0.68);
  stroke-width: 1.3;
}

.robot-arm--handling {
  transform-origin: 211px 211px;
  animation: robot-arm-handle 10s cubic-bezier(0.2, 0.75, 0.3, 1) infinite;
}

.robot-arm--drawing {
  transform-origin: 289px 211px;
  animation: robot-arm-draw 10s cubic-bezier(0.2, 0.75, 0.3, 1) infinite;
}

.robot-transfer-box,
.conveyor-box {
  fill: rgba(207, 250, 254, 0.055);
  stroke: rgba(207, 250, 254, 0.62);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
  transform-box: view-box;
}

.robot-transfer-box {
  transform: translate(120px, 269px);
  opacity: 0;
  animation: robot-box-transfer 10s cubic-bezier(0.2, 0.75, 0.3, 1) infinite;
}

.robot-conveyor__frame {
  fill: rgba(8, 14, 29, 0.56);
  stroke: rgba(207, 250, 254, 0.32);
  stroke-width: 1.2;
}

.robot-conveyor__track,
.robot-conveyor__legs {
  fill: none;
  stroke: rgba(207, 250, 254, 0.32);
  stroke-linecap: round;
  stroke-width: 1.25;
}

.robot-conveyor__motion {
  fill: none;
  stroke: rgba(217, 251, 255, 0.52);
  stroke-dasharray: 2 10;
  stroke-linecap: round;
  stroke-width: 1.4;
  animation: robot-belt-motion 1.8s linear infinite;
}

.robot-conveyor__wheels circle {
  fill: rgba(207, 250, 254, 0.03);
  stroke: rgba(207, 250, 254, 0.22);
  stroke-dasharray: 2 4;
  stroke-width: 1;
}

.conveyor-box {
  animation: robot-box-travel 9s linear infinite;
}

.conveyor-box--one {
  transform: translate(38px, 273px);
  animation-delay: -1.3s;
}

.conveyor-box--two {
  transform: translate(232px, 277px);
  animation-delay: -4.4s;
}

.conveyor-box--three {
  transform: translate(405px, 270px);
  animation-delay: -7.2s;
}

.robot-visual__footer {
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.robot-visual__footer strong {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.035em;
  text-align: right;
}

.robot-visual.is-paused .robot-scene *,
.robot-visual.is-paused .robot-visual__status i {
  animation-play-state: paused !important;
}

@keyframes robot-status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(191, 247, 255, 0.46);
  }

  72%,
  100% {
    box-shadow: 0 0 0 9px rgba(191, 247, 255, 0);
  }
}

@keyframes robot-prompt {
  0%,
  3%,
  31%,
  100% {
    transform: translate(-8px, 5px);
    opacity: 0;
  }

  8%,
  25% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes robot-reply {
  0%,
  13%,
  43%,
  100% {
    transform: translate(5px, 5px);
    opacity: 0;
  }

  18%,
  37% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes robot-reply-dot {
  0%,
  100% {
    transform: scale(0.72);
    opacity: 0.34;
  }

  48% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes robot-head-look {
  0%,
  8%,
  40%,
  48%,
  90%,
  100% {
    transform: rotate(0deg);
  }

  16%,
  34% {
    transform: rotate(-4deg);
  }

  60%,
  82% {
    transform: rotate(4deg);
  }
}

@keyframes robot-eye-scan {
  0%,
  10%,
  42%,
  100% {
    transform: translateX(0);
  }

  17%,
  34% {
    transform: translateX(-3px);
  }

  60%,
  82% {
    transform: translateX(3px);
  }
}

@keyframes robot-mouth-talk {
  0%,
  15%,
  42%,
  100% {
    transform: scaleX(1);
    opacity: 0.46;
  }

  19%,
  23%,
  29%,
  35% {
    transform: scaleX(0.55);
    opacity: 1;
  }

  21%,
  26%,
  32%,
  38% {
    transform: scaleX(1.1);
    opacity: 0.72;
  }
}

@keyframes robot-arm-handle {
  0%,
  11%,
  62%,
  100% {
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(-8deg);
  }

  34% {
    transform: rotate(-45deg);
  }

  47% {
    transform: rotate(-72deg);
  }

  58% {
    transform: rotate(-72deg);
  }
}

@keyframes robot-box-transfer {
  0%,
  10%,
  62%,
  100% {
    transform: translate(108px, 269px);
    opacity: 0;
  }

  14% {
    transform: translate(128px, 269px);
    opacity: 1;
  }

  23% {
    transform: translate(145px, 272px);
    opacity: 1;
  }

  38% {
    transform: translate(201px, 286px);
    opacity: 1;
  }

  51% {
    transform: translate(245px, 276px);
    opacity: 1;
  }

  58% {
    transform: translate(315px, 269px);
    opacity: 0;
  }
}

@keyframes robot-arm-draw {
  0%,
  48%,
  92%,
  100% {
    transform: rotate(0deg);
  }

  58% {
    transform: rotate(-7deg);
  }

  68% {
    transform: rotate(5deg);
  }

  78% {
    transform: rotate(-3deg);
  }

  86% {
    transform: rotate(4deg);
  }
}

@keyframes robot-banner-draw {
  0%,
  49% {
    stroke-dashoffset: 1;
    opacity: 0.18;
  }

  56% {
    opacity: 1;
  }

  82%,
  92% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

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

@keyframes robot-banner-sun {
  0%,
  61% {
    transform: scale(0.45);
    opacity: 0;
  }

  70%,
  92% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.45);
    opacity: 0;
  }
}

@keyframes robot-banner-cursor {
  0%,
  50%,
  94%,
  100% {
    transform: translate(-20px, 17px);
    opacity: 0;
  }

  57% {
    transform: translate(-17px, 14px);
    opacity: 1;
  }

  68% {
    transform: translate(-7px, 2px);
    opacity: 1;
  }

  82% {
    transform: translate(0, 0);
    opacity: 1;
  }

  90% {
    transform: translate(2px, -2px);
    opacity: 0.5;
  }
}

@keyframes robot-belt-motion {
  to {
    stroke-dashoffset: -24;
  }
}

@keyframes robot-box-travel {
  from {
    transform: translate(-72px, 273px);
  }

  to {
    transform: translate(548px, 273px);
  }
}

@keyframes robot-antenna-pulse {
  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

@keyframes robot-core-pulse {
  0%,
  100% {
    opacity: 0.62;
  }

  50% {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .robot-visual {
    width: min(680px, 100%);
  }
}

@media (max-width: 720px) {
  .robot-visual {
    min-height: 470px;
    border-radius: 20px;
  }

  .robot-visual__header,
  .robot-visual__footer {
    min-height: 50px;
    padding: 13px 16px;
    font-size: 0.59rem;
  }

  .robot-visual__body {
    min-height: 358px;
    padding: 2px 5px;
  }

  .robot-visual__footer strong {
    max-width: 64%;
    font-size: 0.58rem;
  }
}

@media (max-width: 480px) {
  .robot-visual {
    min-height: 414px;
    border-radius: 18px;
  }

  .robot-visual__header,
  .robot-visual__footer {
    min-height: 46px;
    gap: 10px;
    padding: 11px 13px;
    font-size: 0.53rem;
  }

  .robot-visual__body {
    min-height: 320px;
    padding-inline: 0;
  }

  .robot-visual__status {
    gap: 5px;
  }

  .robot-visual__status i {
    width: 6px;
    height: 6px;
  }

  .robot-visual__footer > span {
    display: none;
  }

  .robot-visual__footer strong {
    max-width: none;
    margin-left: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .robot-scene *,
  .robot-visual__status i {
    animation: none !important;
  }

  .robot-speech {
    transform: none;
    opacity: 0.84;
  }

  .robot-reply-dot {
    opacity: 0.82;
  }

  .robot-transfer-box {
    transform: translate(148px, 244px);
    opacity: 0.8;
  }

  .robot-banner__art {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  .robot-banner__sun,
  .robot-banner__cursor {
    transform: none;
    opacity: 0.78;
  }
}

/* Three-scene robot sequence */

.robot-mouth {
  animation: none;
  opacity: 0.62;
}

.robot-plan--conveyor {
  animation: robot-plan-conveyor 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.robot-plan--banner {
  opacity: 0;
  animation: robot-plan-banner 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.robot-speech--prompt {
  animation: robot-scene-prompt 12s cubic-bezier(0.2, 0.75, 0.3, 1) infinite;
}

.robot-speech--reply {
  animation: robot-scene-reply 12s cubic-bezier(0.2, 0.75, 0.3, 1) infinite;
}

.robot-head {
  animation: robot-head-scenes 12s cubic-bezier(0.2, 0.75, 0.3, 1) infinite;
}

.robot-eye {
  animation: robot-eye-scenes 12s cubic-bezier(0.2, 0.75, 0.3, 1) infinite;
}

.robot-arm--handling {
  animation: robot-arm-conveyor-scene 12s cubic-bezier(0.2, 0.75, 0.3, 1) infinite;
}

.robot-transfer-box {
  animation: robot-box-conveyor-scene 12s cubic-bezier(0.2, 0.75, 0.3, 1) infinite;
}

.robot-arm--drawing {
  animation: robot-arm-banner-scene 12s cubic-bezier(0.2, 0.75, 0.3, 1) infinite;
}

.robot-banner__art {
  animation: robot-art-banner-scene 12s cubic-bezier(0.2, 0.75, 0.3, 1) infinite;
}

.robot-banner__sun {
  animation: robot-sun-banner-scene 12s ease-out infinite;
}

.robot-banner__cursor {
  animation: robot-cursor-banner-scene 12s cubic-bezier(0.2, 0.75, 0.3, 1) infinite;
}

.conveyor-box {
  animation-name: robot-box-travel, robot-plan-conveyor;
  animation-duration: 4s, 12s;
  animation-timing-function: linear, cubic-bezier(0.4, 0, 0.2, 1);
  animation-iteration-count: infinite, infinite;
}

.conveyor-box--one {
  animation-delay: -1.3s, 0s;
}

.conveyor-box--two {
  animation-delay: -2.65s, 0s;
}

.conveyor-box--three {
  animation-delay: -3.55s, 0s;
}

.robot-scene-label {
  fill: none;
  stroke: rgba(207, 250, 254, 0.36);
  stroke-linecap: round;
  stroke-width: 1.1;
  opacity: 0;
}

.robot-scene-label circle {
  fill: #d9fbff;
  stroke: none;
  filter: url(#robot-glow);
}

.robot-scene-label text {
  fill: rgba(226, 247, 255, 0.76);
  stroke: none;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.robot-scene-label--automation {
  animation: robot-label-automation 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.robot-scene-label--chat {
  animation: robot-label-chat 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.robot-scene-label--creative {
  animation: robot-label-creative 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes robot-label-automation {
  0%,
  28% {
    opacity: 1;
  }

  33%,
  95% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes robot-label-chat {
  0%,
  28% {
    opacity: 0;
  }

  33%,
  61% {
    opacity: 1;
  }

  66%,
  100% {
    opacity: 0;
  }
}

@keyframes robot-label-creative {
  0%,
  61% {
    opacity: 0;
  }

  66%,
  95% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes robot-plan-conveyor {
  0%,
  28% {
    opacity: 1;
  }

  33%,
  95% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes robot-plan-banner {
  0%,
  61% {
    opacity: 0;
  }

  66%,
  95% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes robot-scene-prompt {
  0%,
  34%,
  53%,
  100% {
    transform: translate(-8px, 5px);
    opacity: 0;
  }

  38%,
  48% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes robot-scene-reply {
  0%,
  43%,
  65%,
  100% {
    transform: translate(5px, 5px);
    opacity: 0;
  }

  47%,
  61% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes robot-head-scenes {
  0%,
  30%,
  33%,
  36%,
  63%,
  66%,
  69%,
  97%,
  100% {
    transform: rotate(0deg);
  }

  8%,
  25% {
    transform: rotate(-2deg);
  }

  40%,
  60% {
    transform: rotate(-4deg);
  }

  74%,
  93% {
    transform: rotate(4deg);
  }
}

@keyframes robot-eye-scenes {
  0%,
  33%,
  36%,
  63%,
  66%,
  69%,
  100% {
    transform: translateX(0);
  }

  7%,
  27% {
    transform: translate(-2px, 2px);
  }

  40%,
  60% {
    transform: translateX(-3px);
  }

  74%,
  94% {
    transform: translateX(3px);
  }
}

@keyframes robot-arm-conveyor-scene {
  0%,
  3%,
  31%,
  100% {
    transform: rotate(0deg);
  }

  9% {
    transform: rotate(-8deg);
  }

  18% {
    transform: rotate(-45deg);
  }

  26% {
    transform: rotate(-72deg);
  }

  29% {
    transform: rotate(-72deg);
  }
}

@keyframes robot-box-conveyor-scene {
  0%,
  2%,
  32%,
  100% {
    transform: translate(108px, 269px);
    opacity: 0;
  }

  5% {
    transform: translate(128px, 269px);
    opacity: 1;
  }

  11% {
    transform: translate(145px, 272px);
    opacity: 1;
  }

  19% {
    transform: translate(201px, 286px);
    opacity: 1;
  }

  27% {
    transform: translate(245px, 276px);
    opacity: 1;
  }

  31% {
    transform: translate(315px, 269px);
    opacity: 0;
  }
}

@keyframes robot-arm-banner-scene {
  0%,
  66%,
  99%,
  100% {
    transform: rotate(0deg);
  }

  69% {
    transform: rotate(-54deg);
  }

  75% {
    transform: rotate(-60deg);
  }

  82% {
    transform: rotate(-51deg);
  }

  89% {
    transform: rotate(-58deg);
  }

  96% {
    transform: rotate(-54deg);
  }
}

@keyframes robot-art-banner-scene {
  0%,
  69% {
    stroke-dashoffset: 1;
    opacity: 0.18;
  }

  73% {
    opacity: 1;
  }

  91%,
  98% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

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

@keyframes robot-sun-banner-scene {
  0%,
  78% {
    transform: scale(0.45);
    opacity: 0;
  }

  84%,
  98% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.45);
    opacity: 0;
  }
}

@keyframes robot-cursor-banner-scene {
  0%,
  68%,
  99%,
  100% {
    transform: translate(-20px, 17px);
    opacity: 0;
  }

  72% {
    transform: translate(-17px, 14px);
    opacity: 1;
  }

  81% {
    transform: translate(-7px, 2px);
    opacity: 1;
  }

  91% {
    transform: translate(0, 0);
    opacity: 1;
  }

  97% {
    transform: translate(2px, -2px);
    opacity: 0.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .robot-scene *,
  .robot-visual__status i {
    animation: none !important;
  }

  .robot-mouth {
    opacity: 0.62;
  }

  .robot-plan--conveyor,
  .robot-plan--conveyor-box {
    opacity: 1;
  }

  .robot-plan--banner,
  .robot-speech {
    display: none;
  }

  .robot-transfer-box {
    transform: translate(148px, 269px);
    opacity: 0.8;
  }

  .robot-scene-label {
    display: none;
  }

  .robot-scene-label--automation {
    display: inline;
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .robot-scene-label text {
    font-size: 17px;
  }
}

@media (max-width: 350px) {
  .robot-scene-label text {
    font-size: 21px;
  }
}

/* Independent service panels and specialist profile */

.section--services > .container {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.services-list {
  display: grid;
  gap: 14px;
  border-bottom: 0;
}

.service-detail,
.service-detail.is-selected {
  padding: clamp(28px, 3.4vw, 42px);
  border: 1px solid var(--glass-line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(8, 14, 29, 0.48);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 18px 48px rgba(2, 6, 23, 0.15);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-detail::after {
  display: none;
}

.service-detail.is-selected {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--card-accent, var(--primary)) 18%, transparent), transparent 72%),
    rgba(8, 14, 29, 0.62);
  box-shadow: inset 3px 0 var(--card-accent, var(--primary)), inset 0 1px rgba(255, 255, 255, 0.06), 0 22px 54px rgba(2, 6, 23, 0.2);
}

.service-detail:target {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

@media (hover: hover) and (pointer: fine) {
  .service-detail:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--card-accent, var(--signal)) 48%, var(--glass-line));
    background:
      linear-gradient(145deg, color-mix(in srgb, var(--card-accent, var(--primary)) 10%, transparent), transparent 70%),
      rgba(8, 14, 29, 0.6);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 24px 58px rgba(2, 6, 23, 0.24);
  }
}

.about-avatar {
  margin: 0;
  aspect-ratio: 1;
}

.about-avatar img {
  height: 100%;
  aspect-ratio: auto;
  object-position: 50% 43%;
  filter: saturate(0.88) contrast(1.04);
}

.about-signature {
  margin-top: clamp(30px, 4vw, 46px) !important;
  margin-bottom: 0 !important;
  padding-top: 18px;
  border-top: 1px solid var(--glass-line);
  color: #a7f3ff !important;
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .service-detail,
  .service-detail.is-selected {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .services-list {
    gap: 12px;
  }

  .service-detail,
  .service-detail.is-selected {
    padding: 22px 20px;
    border-radius: 18px;
  }
}

.robot-visual {
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.robot-visual__body {
  min-height: 0;
}
