:root {
  --ink: #07111f;
  --ink-soft: #11253d;
  --paper: #f4f7fa;
  --white: #ffffff;
  --line: #dce5ec;
  --muted: #617386;
  --cyan: #39d6ef;
  --cyan-dark: #0089a3;
  --lime: #b7ee35;
  --lime-dark: #7ca900;
  --orange: #ff9f1c;
  --shadow: 0 22px 70px rgba(7, 17, 31, 0.12);
  --shadow-soft: 0 12px 32px rgba(7, 17, 31, 0.08);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 126px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

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

.site-page {
  min-height: 100vh;
  overflow: clip;
}

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

.topline {
  position: relative;
  z-index: 50;
  color: #c8d7e6;
  background: #030914;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 12px;
}

.topline__inner {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topline span,
.topline a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topline a:hover {
  color: var(--cyan);
}

.topline__trust {
  color: #e8f9b8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 45;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(7, 17, 31, 0.1);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand__mark {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 15px 5px 15px 5px;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -1px;
  box-shadow: 4px 4px 0 var(--ink);
}

.brand__copy {
  display: grid;
  line-height: 1.05;
}

.brand__copy b {
  font-size: 18px;
  letter-spacing: -0.03em;
}

.brand__copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin: 0 auto;
}

.desktop-nav a {
  position: relative;
  color: #2e4052;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--cyan-dark);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.header-phone > svg {
  color: var(--cyan-dark);
}

.header-phone span {
  display: grid;
  line-height: 1.08;
}

.header-phone small {
  color: var(--muted);
  font-size: 10px;
}

.header-phone b {
  margin-top: 3px;
  font-size: 14px;
}

.button {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--lime);
  border-radius: 13px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 9px 22px rgba(183, 238, 53, 0.18);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  background: #c8ff45;
  box-shadow: 0 13px 28px rgba(183, 238, 53, 0.25);
  transform: translateY(-2px);
}

.button--compact {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 13px;
}

.button--large {
  min-height: 56px;
  padding-inline: 25px;
  border-radius: 15px;
  font-size: 15px;
}

.button--small {
  min-height: 40px;
  padding-inline: 15px;
  font-size: 12px;
}

.button--ghost {
  color: #eff8ff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.button--ghost:hover {
  color: var(--ink);
  background: white;
  border-color: white;
  box-shadow: none;
}

.button--ghost-dark {
  color: var(--ink);
  background: transparent;
  border-color: rgba(7, 17, 31, 0.25);
  box-shadow: none;
}

.button--ghost-dark:hover {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
}

.button--whatsapp {
  color: white;
  background: #0caf62;
  border-color: #0caf62;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  color: var(--ink);
  background: #edf2f6;
  border-radius: 12px;
  cursor: pointer;
}

.mobile-nav {
  padding: 8px 0 20px;
  background: white;
  border-top: 1px solid var(--line);
}

.mobile-nav .shell {
  display: grid;
}

.mobile-nav a:not(.button) {
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

.mobile-nav .button {
  margin-top: 14px;
}

.hero {
  position: relative;
  min-height: 735px;
  color: #f4f9ff;
  background:
    radial-gradient(circle at 70% 40%, rgba(57, 214, 239, 0.18), transparent 33%),
    radial-gradient(circle at 18% 15%, rgba(183, 238, 53, 0.08), transparent 27%),
    var(--ink);
  isolation: isolate;
}

.hero__grid-pattern,
.subhero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero__glow {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(57, 214, 239, 0.25);
  border-radius: 50%;
}

.hero__glow--one {
  top: 90px;
  right: 10%;
  width: 420px;
  height: 420px;
}

.hero__glow--two {
  top: 160px;
  right: calc(10% + 70px);
  width: 280px;
  height: 280px;
}

.hero__inner {
  min-height: 735px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  align-items: center;
  gap: 28px;
}

.hero__copy {
  position: relative;
  z-index: 3;
  padding: 92px 0 108px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow__dot {
  width: 9px;
  height: 9px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(183, 238, 53, 0.1);
}

.hero h1,
.subhero h1,
.inner-hero h1 {
  max-width: 770px;
  margin: 22px 0 24px;
  font-size: clamp(45px, 5.15vw, 72px);
  font-weight: 850;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

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

.hero__lead {
  max-width: 660px;
  margin-bottom: 30px;
  color: #bac8d5;
  font-size: 18px;
  line-height: 1.62;
}

.hero__actions,
.subhero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__proof {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.hero__proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d7e3ec;
  font-size: 12px;
}

.hero__proof svg {
  color: var(--cyan);
}

.hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 735px;
}

.hero-service-nodes {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.hero-service-node {
  position: absolute;
  padding: 6px 12px 6px 6px;
  display: grid;
  grid-template-columns: 38px auto;
  align-items: center;
  gap: 9px;
  color: #eaf6ff;
  background: rgba(7, 17, 31, 0.78);
  border: 1px solid rgba(57, 214, 239, 0.25);
  border-radius: 14px;
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 800;
  pointer-events: auto;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.hero-service-node:hover {
  background: rgba(13, 37, 57, 0.94);
  border-color: var(--lime);
  transform: translateY(-3px);
}

.hero-service-node::after {
  position: absolute;
  top: 50%;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, rgba(57, 214, 239, 0.55), transparent);
  content: "";
  pointer-events: none;
}

.hero-service-node--pc::after,
.hero-service-node--upgrade::after {
  right: -72px;
}

.hero-service-node--laptop::after,
.hero-service-node--data::after {
  left: -72px;
  transform: rotate(180deg);
}

.hero-service-node .context-glyph {
  width: 38px;
  height: 38px;
  color: var(--cyan);
  background: rgba(57, 214, 239, 0.09);
  border-color: rgba(57, 214, 239, 0.2);
}

.hero-service-node--pc {
  top: 250px;
  left: -12px;
}

.hero-service-node--laptop {
  top: 220px;
  right: -28px;
}

.hero-service-node--upgrade {
  top: 405px;
  left: -24px;
}

.hero-service-node--data {
  top: 375px;
  right: -35px;
}

.inspector {
  position: relative;
}

.inspector img {
  width: 100%;
  height: auto;
}

.inspector--hero {
  position: absolute;
  right: -42px;
  bottom: -12px;
  width: min(530px, 44vw);
  filter: drop-shadow(0 26px 35px rgba(0, 0, 0, 0.35));
}

.hero__status-card,
.subhero__accent-card {
  position: absolute;
  top: 95px;
  right: -15px;
  z-index: 3;
  width: 205px;
  padding: 17px 18px;
  display: grid;
  background: rgba(7, 17, 31, 0.78);
  border: 1px solid rgba(57, 214, 239, 0.28);
  border-radius: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero__status-card span,
.subhero__accent-card small {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.hero__status-card b,
.subhero__accent-card b {
  margin-top: 5px;
  font-size: 14px;
}

.hero__status-card small {
  margin-top: 5px;
  color: #91a3b5;
}

.hero__status-card {
  top: 78px;
  left: 22px;
  right: auto;
  width: min(220px, calc(100% - 44px));
}

.hero__scanner {
  position: absolute;
  top: 150px;
  right: -30px;
  bottom: 88px;
  left: 35px;
  z-index: -1;
}

.hero__scanner::before {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(57, 214, 239, 0.24);
  border-radius: 50%;
  content: "";
}

.hero__scanner-line {
  position: absolute;
  top: 12%;
  right: 5%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(transparent, var(--cyan), transparent);
  opacity: 0.5;
  animation: scan 5s ease-in-out infinite;
}

.hero__scanner-corner {
  position: absolute;
  width: 35px;
  height: 35px;
  border-color: var(--lime);
  border-style: solid;
}

.hero__scanner-corner--a {
  top: 14%;
  left: 12%;
  border-width: 2px 0 0 2px;
}

.hero__scanner-corner--b {
  right: 6%;
  bottom: 12%;
  border-width: 0 2px 2px 0;
}

@keyframes scan {
  0%,
  100% {
    right: 8%;
  }
  50% {
    right: 82%;
  }
}

.character-cta {
  position: absolute;
  right: 5px;
  bottom: 50px;
  z-index: 5;
  width: 360px;
  min-height: 76px;
  padding: 11px 14px;
  display: grid;
  grid-template-columns: 46px 1fr 24px;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(57, 214, 239, 0.45);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease;
}

.character-cta:hover {
  transform: translateY(-4px);
}

.character-cta__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 13px;
}

.character-cta > span:nth-child(2) {
  display: grid;
}

.character-cta small {
  color: var(--muted);
  font-size: 10px;
}

.character-cta b {
  margin-top: 3px;
  font-size: 13px;
}

.trust-strip {
  position: relative;
  z-index: 7;
  margin-top: -22px;
}

.trust-strip__grid {
  min-height: 112px;
  padding: 20px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr 1.3fr;
  align-items: center;
  gap: 12px;
  background: white;
  border: 1px solid rgba(7, 17, 31, 0.09);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.trust-strip__grid > a,
.trust-strip__grid > div {
  min-height: 60px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-left: 1px solid var(--line);
}

.trust-strip__grid > :first-child {
  padding-left: 0;
  border-left: 0;
}

.rating-source {
  padding: 5px 7px;
  color: white;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 850;
}

.rating-source--2gis {
  background: #25a74a;
}

.rating-source--avito {
  color: #7040e8;
  background: #f0eaff;
}

.trust-strip strong {
  font-size: 24px;
  letter-spacing: -0.04em;
}

.stars {
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.trust-strip small {
  color: var(--muted);
  font-size: 10px;
}

.trust-strip__fact svg {
  flex: 0 0 auto;
  color: var(--cyan-dark);
}

.trust-strip__fact span {
  display: grid;
}

.trust-strip__fact b {
  font-size: 13px;
}

.section {
  padding: 108px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 60px;
}

.section-kicker {
  color: var(--cyan-dark);
}

.section-kicker small {
  color: var(--muted);
}

.section-kicker--dark {
  color: var(--cyan);
}

.section-heading h2,
.workflow-intro h2,
.price-copy h2,
.faq-intro h2,
.request-copy h2,
.contact-band h2,
.price-explainer h2,
.location-panel h2,
.service-detail-grid h2 {
  margin: 13px 0 16px;
  font-size: clamp(34px, 4vw, 53px);
  font-weight: 820;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.section-heading p,
.workflow-intro > p,
.price-copy > p,
.faq-intro > p,
.request-copy > p,
.service-detail-grid > div > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

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

.service-card {
  --service-accent: var(--cyan-dark);
  --service-soft: #e9fafe;
  position: relative;
  min-height: 310px;
  padding: 26px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: 22px;
  box-shadow: 0 8px 25px rgba(7, 17, 31, 0.04);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-card::after {
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 120px;
  height: 120px;
  background: var(--service-accent);
  border-radius: 50%;
  content: "";
  opacity: 0.07;
  transition: transform 180ms ease;
}

.service-card__visual {
  position: absolute;
  right: -12px;
  bottom: -18px;
  z-index: 1;
  width: 162px;
  height: 224px;
  pointer-events: none;
  transition: transform 220ms ease;
}

.service-card--wide .service-card__visual {
  right: -6px;
  bottom: -10px;
  width: 196px;
  height: 266px;
}


.service-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 12px 16px rgba(7, 17, 31, 0.16));
}

.service-card:hover {
  border-color: var(--service-accent);
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.service-card:hover .service-card__visual {
  transform: translateY(-5px) scale(1.03);
}

.service-card:hover::after {
  transform: scale(1.35);
}

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

.service-card--tone-1 {
  --service-accent: #6557c7;
  --service-soft: #f0eeff;
}

.service-card--tone-2 {
  --service-accent: #ba681d;
  --service-soft: #fff2e5;
}

.service-card--tone-3 {
  --service-accent: #16815c;
  --service-soft: #e9f8f1;
}

.context-glyph {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--cyan-dark);
  background: #e6f9fc;
  border: 1px solid rgba(0, 137, 163, 0.1);
  border-radius: 12px;
}

.context-glyph > svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.9;
}

.context-glyph__signal {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 5px;
  height: 5px;
  background: var(--lime);
  border: 1px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(185, 244, 42, 0.12);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  color: var(--service-accent);
  background: var(--service-soft);
  border-radius: 15px;
}

.service-card__icon > svg {
  width: 25px;
  height: 25px;
}

.service-card__eyebrow {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 8px 0 11px;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.service-card p {
  position: relative;
  z-index: 2;
  max-width: calc(100% - 95px);
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.service-card__link {
  position: absolute;
  bottom: 25px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--service-accent);
  font-size: 13px;
  font-weight: 750;
}

.workflow-section {
  color: white;
  background: var(--ink);
}

.workflow-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
}

.workflow-intro {
  position: relative;
}

.workflow-intro h2 {
  color: white;
}

.workflow-intro > p {
  color: #9db0c1;
}

.workflow-inspector {
  position: relative;
  height: 330px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(57, 214, 239, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(57, 214, 239, 0.08), transparent 65%),
    #0b1929;
}

.inspector--compact {
  position: absolute;
  inset: 0;
}

.inspector--compact img {
  position: absolute;
  right: -15px;
  bottom: -235px;
  width: 340px;
  max-width: none;
}

.inspector__bubble {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  max-width: 240px;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink);
  background: white;
  border-radius: 13px 13px 13px 3px;
  box-shadow: var(--shadow-soft);
  font-size: 11px;
  line-height: 1.4;
}

.inspector__bubble svg {
  flex: 0 0 auto;
  color: var(--cyan-dark);
}

.workflow-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  padding: 27px 0;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.workflow-list li:first-child {
  border-top: 0;
}

.workflow-step__mark {
  display: flex;
  align-items: center;
  gap: 8px;
}

.workflow-step__mark .context-glyph {
  color: var(--cyan);
  background: rgba(57, 214, 239, 0.09);
  border-color: rgba(57, 214, 239, 0.22);
}

.workflow-step__mark small {
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
}

.workflow-list h3 {
  margin-bottom: 8px;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.workflow-list p {
  margin: 0;
  color: #9db0c1;
  font-size: 14px;
  line-height: 1.55;
}

.diagnostic-section {
  background: #eaf0f5;
}

.diagnostic-card {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.74fr);
  overflow: hidden;
  background: white;
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.diagnostic-card__content {
  padding: 48px;
}

.diagnostic-card__content .section-kicker {
  display: flex;
  justify-content: space-between;
}

.diagnostic-progress {
  position: relative;
  margin: 22px 0 8px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  list-style: none;
}

.diagnostic-progress::before {
  position: absolute;
  top: 19px;
  right: 16%;
  left: 16%;
  height: 1px;
  background: var(--line);
  content: "";
}

.diagnostic-progress__step {
  position: relative;
  z-index: 1;
  padding: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a4b2;
  background: white;
  border-radius: 12px;
}

.diagnostic-progress__step > span:last-child {
  display: grid;
  gap: 1px;
}

.diagnostic-progress__step small {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 8px;
  font-weight: 800;
}

.diagnostic-progress__step b {
  font-size: 10px;
}

.diagnostic-progress__step .context-glyph {
  width: 34px;
  height: 34px;
  color: #8799a7;
  background: #f2f5f7;
}

.diagnostic-progress__step .context-glyph svg {
  width: 17px;
  height: 17px;
}

.diagnostic-progress__step--active {
  color: var(--ink);
  background: #eaf9fc;
}

.diagnostic-progress__step--active .context-glyph {
  color: var(--cyan-dark);
  background: white;
  border-color: rgba(0, 137, 163, 0.22);
}

.diagnostic-progress__step--done {
  color: #27664f;
}

.diagnostic-progress__step--done .context-glyph {
  color: #16815c;
  background: #e9f8f1;
  border-color: rgba(22, 129, 92, 0.16);
}

.diagnostic-card__content h3 {
  margin: 22px 0 12px;
  font-size: 33px;
  letter-spacing: -0.045em;
}

.diagnostic-card__content > p,
.diagnostic-result > p {
  max-width: 610px;
  color: var(--muted);
  line-height: 1.65;
}

.device-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.device-grid button {
  min-height: 95px;
  padding: 16px;
  display: grid;
  grid-template-columns: 38px 1fr 20px;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-align: left;
  background: #f5f8fa;
  border: 1px solid var(--line);
  border-radius: 16px;
  cursor: pointer;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.device-grid button:hover,
.symptom-grid button:hover {
  background: #e6f9fc;
  transform: translateY(-2px);
}

.device-grid button > .context-glyph {
  width: 38px;
  height: 38px;
}

.device-grid button span {
  display: grid;
}

.device-grid button b {
  font-size: 14px;
}

.device-grid button small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.text-button {
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cyan-dark);
  background: none;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.symptom-grid {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.symptom-grid button {
  min-height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: #f5f8fa;
  border: 1px solid var(--line);
  border-radius: 13px;
  cursor: pointer;
}

.symptom-option__label {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 720;
}

.symptom-option__label svg {
  color: var(--cyan-dark);
}

.diagnostic-card__visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at 55% 42%, rgba(57, 214, 239, 0.17), transparent 38%),
    var(--ink);
  transition: background 300ms ease;
}

.diagnostic-card__visual--pc {
  background:
    radial-gradient(circle at 55% 42%, rgba(57, 214, 239, 0.24), transparent 42%),
    #071827;
}

.diagnostic-card__visual--laptop {
  background:
    radial-gradient(circle at 55% 42%, rgba(113, 91, 214, 0.24), transparent 42%),
    #101429;
}

.diagnostic-card__visual--data {
  background:
    radial-gradient(circle at 55% 42%, rgba(245, 153, 59, 0.2), transparent 42%),
    #171520;
}

.diagnostic-card__visual--build {
  background:
    radial-gradient(circle at 55% 42%, rgba(183, 238, 53, 0.18), transparent 42%),
    #0a1b20;
}

.diagnostic-card__visual .inspector--side {
  position: absolute;
  inset: 0;
  animation: inspector-context-in 320ms ease both;
}

.diagnostic-card__visual .inspector--side img {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 470px;
  max-width: none;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}

.diagnostic-card__visual .inspector__bubble {
  top: auto;
  right: auto;
  bottom: 28px;
  left: 22px;
  max-width: 260px;
}


@keyframes inspector-context-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.scan-ring {
  position: absolute;
  border: 1px solid rgba(57, 214, 239, 0.21);
  border-radius: 50%;
}

.scan-ring--one {
  top: 90px;
  right: 20px;
  width: 370px;
  height: 370px;
}

.scan-ring--two {
  top: 150px;
  right: 80px;
  width: 250px;
  height: 250px;
}

.diagnostic-result {
  padding-top: 12px;
}

.result-icon {
  position: relative;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  color: #087a58;
  background: #e2f8ef;
  border-radius: 16px;
}

.result-icon__status {
  position: absolute;
  right: -7px;
  bottom: -7px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: white;
  background: #087a58;
  border: 3px solid white;
  border-radius: 50%;
}

.result-icon__status svg {
  width: 13px;
  height: 13px;
}

.result-icon--warning {
  color: #b46100;
  background: #fff1d9;
}

.result-icon--warning .result-icon__status {
  background: #d47a0b;
}

.diagnostic-result__label {
  color: var(--cyan-dark);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.diagnostic-result__actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.diagnostic-result__actions .button--ghost {
  color: var(--ink);
  border-color: var(--line);
}

.price-section {
  color: white;
  background: #0a1726;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  align-items: center;
  gap: 72px;
}

.price-copy h2,
.request-copy h2 {
  color: white;
}

.price-copy > p,
.request-copy > p {
  color: #9eb0c1;
}

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

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d6e2ec;
  font-size: 14px;
}

.check-list svg {
  color: var(--lime);
}

.price-section .button--ghost-dark {
  color: white;
  border-color: rgba(255, 255, 255, 0.24);
}

.price-section .button--ghost-dark:hover {
  color: var(--ink);
  background: white;
}

.price-panel {
  padding: 10px 30px 26px;
  background: white;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.price-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.price-row span {
  font-size: 14px;
}

.price-row__service {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.price-row__service .context-glyph {
  width: 38px;
  height: 38px;
}

.price-row b {
  font-size: 18px;
  white-space: nowrap;
}

.price-panel__cta {
  min-height: 86px;
  margin-top: 20px;
  padding: 10px 12px 10px 0;
  display: grid;
  grid-template-columns: 70px 1fr 45px;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  color: var(--ink);
  background: #e7f9fc;
  border-radius: 17px;
}

.price-panel__portrait {
  position: relative;
  align-self: stretch;
  overflow: hidden;
}

.price-panel__portrait img {
  position: absolute;
  top: -18px;
  left: -11px;
  width: 110px;
  max-width: none;
}

.price-panel__cta > span:nth-child(2) {
  display: grid;
}

.price-panel__cta small {
  color: var(--cyan-dark);
  font-size: 10px;
}

.price-panel__cta b {
  margin-top: 4px;
  font-size: 13px;
}

.price-panel__cta > a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--lime);
  border-radius: 12px;
}

.reviews-section {
  background: white;
}

.reviews-summary {
  display: flex;
  justify-content: flex-end;
  gap: 34px;
}

.reviews-summary > span {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 8px;
}

.reviews-summary b {
  grid-row: span 2;
  font-size: 37px;
  letter-spacing: -0.05em;
}

.reviews-summary small {
  color: var(--muted);
  font-size: 10px;
}

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

.review-card {
  position: relative;
  min-height: 325px;
  padding: 25px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.review-card__quote {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 52px;
  height: 52px;
  color: var(--cyan);
  opacity: 0.16;
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.source-chip {
  padding: 5px 8px;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 850;
}

.source-chip--avito {
  color: #6e3fea;
  background: #ede7ff;
}

.source-chip--2gis {
  color: #147b34;
  background: #e2f7e8;
}

.review-card > p {
  margin: 25px 0 28px;
  color: #2f4152;
  font-size: 14px;
  line-height: 1.68;
}

.review-card footer {
  position: absolute;
  right: 24px;
  bottom: 23px;
  left: 24px;
  display: grid;
  grid-template-columns: 38px 1fr 20px;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--ink);
  border-radius: 50%;
  font-weight: 800;
}

.review-card footer > span:nth-child(2) {
  display: grid;
}

.review-card footer b {
  font-size: 12px;
}

.review-card footer small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.review-card footer svg {
  color: var(--cyan-dark);
}

.reviews-source-note {
  margin-top: 20px;
  padding: 17px 20px;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  background: #f0f5f8;
  border-radius: 15px;
  font-size: 12px;
}

.reviews-source-character {
  position: relative;
  align-self: stretch;
  min-height: 52px;
  overflow: hidden;
}

.reviews-source-character img {
  position: absolute;
  top: -24px;
  left: -5px;
  width: 76px;
  max-width: none;
}

.reviews-source-note a,
.related-section .section-heading a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cyan-dark);
  font-weight: 750;
}

.faq-section {
  background: #edf2f5;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 80px;
}

.faq-intro {
  position: sticky;
  top: 145px;
}

.faq-callout {
  min-height: 105px;
  margin-top: 30px;
  padding: 12px 18px 12px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  background: white;
  border-radius: 18px;
}

.faq-callout__portrait {
  position: relative;
  align-self: stretch;
  width: 100px;
  overflow: hidden;
}

.faq-callout__portrait img {
  position: absolute;
  top: -35px;
  left: -10px;
  width: 135px;
  max-width: none;
}

.faq-callout > div {
  display: grid;
}

.faq-callout a {
  margin-top: 7px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 750;
}

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

.faq-list details:first-child {
  border-radius: 17px 17px 0 0;
}

.faq-list details:last-child {
  border-bottom: 0;
  border-radius: 0 0 17px 17px;
}

.faq-list summary {
  min-height: 78px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-weight: 760;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary > span:last-child {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: #e9f1f5;
  border-radius: 9px;
  transition: transform 180ms ease;
}

.faq-list details[open] summary > span:last-child {
  color: var(--cyan-dark);
  transform: rotate(180deg);
}

.faq-summary__label {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.faq-summary__label > svg {
  flex: 0 0 auto;
  color: var(--cyan-dark);
}

.faq-list details p {
  margin: -4px 24px 0;
  padding: 0 55px 24px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.request-section {
  color: white;
  background: var(--ink);
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 0.75fr);
  align-items: center;
  gap: 90px;
}

.request-meta {
  margin-top: 32px;
  display: grid;
  gap: 11px;
}

.request-meta a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.request-meta a > svg {
  color: var(--cyan);
}

.request-meta a span {
  display: grid;
}

.request-meta small {
  color: #8295a7;
  font-size: 10px;
}

.request-meta b {
  margin-top: 3px;
  font-size: 14px;
}

.lead-form {
  padding: 30px;
  display: grid;
  gap: 17px;
  color: var(--ink);
  background: white;
  border-radius: 23px;
  box-shadow: var(--shadow);
}

.lead-form__context {
  position: relative;
  min-height: 72px;
  margin: -12px -12px 2px;
  padding: 12px 86px 12px 12px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 11px;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(57, 214, 239, 0.11), transparent 75%),
    #f4f8fa;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.lead-form__context > span:nth-child(2) {
  display: grid;
  gap: 4px;
}

.lead-form__context small {
  color: var(--cyan-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lead-form__context b {
  font-size: 12px;
}

.lead-form__portrait {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 86px;
  height: 76px;
  overflow: hidden;
}

.lead-form__portrait img {
  position: absolute;
  top: -23px;
  right: -6px;
  width: 100px;
  max-width: none;
  filter: drop-shadow(0 8px 12px rgba(7, 17, 31, 0.16));
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form label > span {
  color: #2e4052;
  font-size: 11px;
  font-weight: 750;
}

.lead-form select,
.lead-form textarea {
  width: 100%;
  color: var(--ink);
  background: #f4f7f9;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
}

.lead-form select {
  height: 49px;
  padding: 0 13px;
}

.lead-form textarea {
  padding: 13px;
  resize: vertical;
}

.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--cyan-dark);
  box-shadow: 0 0 0 3px rgba(57, 214, 239, 0.12);
}

.lead-form .button {
  width: 100%;
}

.form-note {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
  text-align: center;
}

.contact-band {
  padding: 56px 0;
  background: var(--lime);
}

.contact-band__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr auto;
  align-items: center;
  gap: 42px;
}

.contact-band .section-kicker {
  color: #537200;
}

.contact-band h2 {
  margin: 8px 0 5px;
  font-size: 29px;
}

.contact-band p {
  margin: 0;
  color: #4c5f18;
}

.contact-band__schedule {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-band__schedule span {
  display: grid;
  gap: 5px;
  font-size: 13px;
}

.contact-band__actions {
  display: flex;
  gap: 10px;
}

.contact-band .button:not(.button--ghost-dark) {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
}

.site-footer {
  padding: 74px 0 28px;
  color: #c2d0dc;
  background: #030914;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 80px;
}

.brand--footer .brand__copy b {
  color: white;
}

.brand--footer .brand__copy small {
  color: #7f92a5;
}

.footer-note {
  max-width: 380px;
  margin: 24px 0;
  color: #7f92a5;
  font-size: 13px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.footer-socials a {
  padding: 8px 10px;
  color: #bcd0df;
  background: #0c1826;
  border-radius: 8px;
  font-size: 11px;
}

.site-footer h2 {
  margin: 0 0 21px;
  color: white;
  font-size: 14px;
}

.footer-links,
.footer-contacts {
  display: grid;
  gap: 13px;
}

.footer-links a {
  color: #8497a9;
  font-size: 12px;
}

.footer-links a:hover,
.footer-contacts a:hover {
  color: var(--cyan);
}

.footer-contacts a,
.footer-contacts > span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #8497a9;
  font-size: 12px;
  line-height: 1.55;
}

.footer-contacts svg {
  flex: 0 0 auto;
  color: var(--cyan);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 23px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #536779;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
}

.helper {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
}

.helper__button {
  position: relative;
  min-width: 248px;
  height: 68px;
  padding: 0 17px 0 84px;
  display: flex;
  align-items: center;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(7, 17, 31, 0.13);
  border-radius: 18px;
  box-shadow: 0 17px 50px rgba(7, 17, 31, 0.2);
  overflow: visible;
  cursor: pointer;
}

.helper__portrait {
  position: absolute;
  left: 6px;
  bottom: 2px;
  width: 74px;
  height: 82px;
  overflow: visible;
  border-radius: 0;
  pointer-events: none;
}

.helper__portrait img {
  position: absolute;
  top: -8px;
  left: 50%;
  width: 74px;
  height: 92px;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
}

.helper__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 760;
}

.helper__label svg {
  color: var(--cyan-dark);
}

.helper__card {
  position: absolute;
  right: 0;
  bottom: 80px;
  width: 300px;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.helper__context {
  margin: 0 34px 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.helper__card b {
  font-size: 15px;
}

.helper__card p {
  margin: 8px 0 15px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.helper__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: #eff3f6;
  border-radius: 8px;
  cursor: pointer;
}

/* Service and inner pages */

.subhero {
  position: relative;
  min-height: 650px;
  color: white;
  background:
    radial-gradient(circle at 75% 45%, rgba(57, 214, 239, 0.18), transparent 32%),
    var(--ink);
  isolation: isolate;
}

.subhero > .shell {
  position: relative;
}

.breadcrumbs {
  padding-top: 30px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #8fa2b4;
  font-size: 11px;
}

.breadcrumbs a:hover {
  color: var(--cyan);
}

.subhero__layout {
  min-height: 605px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.72fr);
  align-items: center;
  gap: 50px;
}

.subhero__copy {
  position: relative;
  z-index: 3;
  padding: 55px 0 70px;
}

.subhero h1 {
  font-size: clamp(43px, 5vw, 68px);
}

.subhero__copy > p {
  max-width: 670px;
  margin-bottom: 29px;
  color: #a9bac8;
  font-size: 18px;
  line-height: 1.62;
}

.subhero__trust {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.subhero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #cbd8e3;
  font-size: 12px;
}

.subhero__trust svg {
  width: 17px;
  color: var(--cyan);
}

.subhero__visual {
  position: relative;
  align-self: stretch;
}

.subhero__visual .inspector--hero {
  right: -55px;
  width: 470px;
}

.subhero__visual .character-cta {
  right: -10px;
  bottom: 35px;
  width: 345px;
}

.subhero__accent-card {
  top: 58px;
  left: 18px;
  right: auto;
  width: min(225px, calc(100% - 36px));
}


.service-context-strip {
  position: relative;
  z-index: 8;
  color: white;
  background: #081522;
  border-top: 1px solid rgba(57, 214, 239, 0.13);
  border-bottom: 1px solid rgba(57, 214, 239, 0.13);
}

.service-context-strip__inner {
  min-height: 118px;
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
}

.service-context-strip__identity {
  position: relative;
  padding: 18px 24px 18px 86px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.service-context-strip__portrait {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 88px;
  height: 112px;
  overflow: hidden;
}

.service-context-strip__portrait img {
  position: absolute;
  right: -10px;
  bottom: -42px;
  width: 102px;
  max-width: none;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.3));
}

.service-context-strip__identity .context-glyph,
.service-context-strip nav .context-glyph {
  color: var(--cyan);
  background: rgba(57, 214, 239, 0.08);
  border-color: rgba(57, 214, 239, 0.2);
}

.service-context-strip__identity > span:last-child,
.service-context-strip nav a > span:last-child {
  display: grid;
  gap: 4px;
}

.service-context-strip small {
  color: #758da0;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-context-strip b {
  font-size: 11px;
  line-height: 1.35;
}

.service-context-strip nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-context-strip nav a {
  padding: 17px;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    background 170ms ease,
    transform 170ms ease;
}

.service-context-strip nav a:last-child {
  border-right: 0;
}

.service-context-strip nav a:hover {
  background: rgba(57, 214, 239, 0.07);
  transform: translateY(-2px);
}

#symptoms,
#included,
#service-diagnostic {
  scroll-margin-top: 118px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.68fr);
  gap: 55px;
}

.service-detail-grid h2 {
  max-width: 650px;
}

.symptom-cards {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.symptom-cards article {
  min-height: 126px;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 17px;
}

.symptom-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.symptom-card__head > span {
  color: var(--cyan-dark);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
}

.symptom-cards p {
  margin: 18px 0 0;
  color: #2d4051;
  font-size: 14px;
  line-height: 1.5;
}

.inspector-note {
  overflow: hidden;
  background: var(--ink);
  border-radius: 23px;
}

.inspector-note__visual {
  position: relative;
  height: 320px;
  overflow: hidden;
  background:
    radial-gradient(circle at 65% 40%, rgba(57, 214, 239, 0.16), transparent 37%),
    #0b1929;
}

.inspector-note__visual .inspector--compact img {
  right: -5px;
  bottom: -235px;
}

.inspector-note h3,
.inspector-note > p {
  margin-right: 25px;
  margin-left: 25px;
}

.inspector-note h3 {
  margin-top: 24px;
  margin-bottom: 9px;
  color: white;
}

.inspector-note > p {
  margin-bottom: 28px;
  color: #9db0c1;
  font-size: 13px;
  line-height: 1.6;
}

.included-section {
  background: white;
}

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

.included-grid > div {
  min-height: 72px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 13px;
}

.included-grid svg {
  flex: 0 0 auto;
  color: var(--cyan-dark);
}

.included-grid .context-glyph {
  width: 38px;
  height: 38px;
  background: white;
}

.outcome-card {
  margin-top: 18px;
  padding: 24px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 16px;
  background: #e9fafe;
  border: 1px solid #cceff5;
  border-radius: 18px;
}

.outcome-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 15px;
}

.outcome-card > span:nth-child(2) {
  display: grid;
}

.outcome-card small {
  color: var(--cyan-dark);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.outcome-card b {
  max-width: 900px;
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.5;
}

.service-process {
  color: white;
  background: var(--ink);
}

.service-process .section-heading h2 {
  color: white;
}

.horizontal-process {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.horizontal-process li {
  position: relative;
  min-height: 210px;
  padding: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.horizontal-process li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.process-step__mark {
  position: relative;
  display: inline-grid;
}

.process-step__mark .context-glyph {
  width: 46px;
  height: 46px;
  color: var(--cyan);
  background: rgba(57, 214, 239, 0.1);
  border-color: rgba(57, 214, 239, 0.22);
}

.process-step__mark > small {
  position: absolute;
  right: -7px;
  bottom: -7px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 3px solid var(--ink);
  border-radius: 50%;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 8px;
  font-weight: 850;
}

.horizontal-process h3 {
  margin: 28px 0 9px;
  font-size: 19px;
}

.horizontal-process p {
  color: #92a6b7;
  font-size: 12px;
  line-height: 1.55;
}

.related-section {
  background: white;
}

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

.related-grid > a {
  min-height: 104px;
  padding: 19px;
  display: grid;
  grid-template-columns: 40px 1fr 20px;
  align-items: center;
  gap: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.related-grid > a:hover {
  border-color: var(--cyan-dark);
  transform: translateY(-3px);
}

.related-grid > a > .context-glyph {
  width: 40px;
  height: 40px;
  color: var(--cyan-dark);
  background: #e1f7fb;
  border-radius: 12px;
}

.related-grid a span {
  display: grid;
}

.related-grid small {
  color: var(--muted);
  font-size: 9px;
}

.related-grid b {
  margin-top: 5px;
  font-size: 13px;
}

.inner-hero {
  position: relative;
  min-height: 455px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 77% 40%, rgba(57, 214, 239, 0.18), transparent 25%),
    var(--ink);
}

.inner-hero__layout {
  min-height: 455px;
  display: grid;
  grid-template-columns: 1fr 390px;
  align-items: center;
  gap: 45px;
}

.inner-hero h1 {
  max-width: 780px;
  font-size: clamp(42px, 5vw, 63px);
}

.inner-hero p {
  max-width: 700px;
  margin-bottom: 0;
  color: #9fb1c1;
  font-size: 17px;
  line-height: 1.6;
}

.inner-hero__layout > .inspector {
  position: relative;
  align-self: stretch;
}

.inner-hero__layout > .inspector img {
  position: absolute;
  right: -25px;
  bottom: -265px;
  width: 380px;
  max-width: none;
}

.inner-hero__layout > .inspector .inspector__bubble {
  top: auto;
  bottom: 62px;
  left: -18px;
}


.price-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.65fr);
  align-items: start;
  gap: 38px;
}

.price-table {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.price-table__head,
.price-table__row {
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 220px;
  align-items: center;
  gap: 20px;
}

.price-table__head {
  min-height: 48px;
  color: #9fb0bf;
  background: var(--ink);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-table__row {
  min-height: 78px;
  border-bottom: 1px solid var(--line);
}

.price-table__row:last-child {
  border-bottom: 0;
}

.price-table__row span {
  font-size: 14px;
}

.price-table__service {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.price-table__service .context-glyph {
  width: 38px;
  height: 38px;
}

.price-table__row b {
  font-size: 18px;
}

.price-explainer {
  position: sticky;
  top: 140px;
  padding: 27px;
  color: white;
  background: var(--ink);
  border-radius: 20px;
}

.price-explainer > svg {
  color: var(--cyan);
}

.price-explainer h2 {
  margin: 20px 0 13px;
  font-size: 25px;
}

.price-explainer p {
  margin-bottom: 23px;
  color: #a1b2c0;
  font-size: 13px;
  line-height: 1.65;
}

.price-services {
  background: white;
}

.related-grid--many {
  grid-template-columns: repeat(4, 1fr);
}

.contacts-layout {
  display: grid;
  gap: 28px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.contact-cards > a,
.contact-cards > div {
  min-height: 195px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.contact-cards > a:hover {
  border-color: var(--cyan-dark);
}

.contact-cards > a > span,
.contact-cards > div > span {
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  color: var(--cyan-dark);
  background: #e6f9fc;
  border-radius: 13px;
}

.contact-cards small {
  color: var(--muted);
  font-size: 10px;
}

.contact-cards b {
  margin-top: 6px;
  font-size: 15px;
}

.contact-cards em {
  margin-top: auto;
  color: var(--cyan-dark);
  font-size: 11px;
  font-style: normal;
  font-weight: 750;
}

.location-panel {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: #dfe8ed;
  border-radius: 25px;
}

.location-panel__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(33deg, transparent 46%, rgba(255, 255, 255, 0.72) 47%, rgba(255, 255, 255, 0.72) 53%, transparent 54%),
    linear-gradient(120deg, transparent 44%, rgba(255, 255, 255, 0.68) 45%, rgba(255, 255, 255, 0.68) 51%, transparent 52%),
    linear-gradient(rgba(7, 17, 31, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 31, 0.05) 1px, transparent 1px);
  background-size: 260px 260px, 320px 320px, 44px 44px, 44px 44px;
}

.location-pin {
  position: absolute;
  top: 160px;
  left: 24%;
  z-index: 2;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  background: var(--ink);
  border-radius: 13px;
  box-shadow: var(--shadow);
}

.location-pin::after {
  position: absolute;
  bottom: -8px;
  left: 20px;
  width: 16px;
  height: 16px;
  background: var(--ink);
  content: "";
  transform: rotate(45deg);
}

.location-pin > svg {
  position: relative;
  z-index: 2;
  color: var(--lime);
}

.location-pin span {
  position: relative;
  z-index: 2;
  display: grid;
}

.location-pin small {
  color: #a2b4c3;
  font-size: 9px;
}

.location-panel__info {
  position: absolute;
  top: 34px;
  right: 34px;
  bottom: 34px;
  width: 405px;
  z-index: 3;
  padding: 34px;
  background: white;
  border-radius: 21px;
  box-shadow: var(--shadow);
}

.location-panel__info h2 {
  margin: 11px 0;
  font-size: 30px;
}

.location-panel__info p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.location-panel__info > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .site-header__inner {
    justify-content: space-between;
  }

  .menu-toggle {
    display: grid;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) 390px;
  }

  .hero h1 {
    font-size: 53px;
  }

  .inspector--hero {
    right: -80px;
    width: 480px;
  }

  .hero__status-card {
    top: 82px;
    left: 18px;
    right: auto;
    width: min(214px, calc(100% - 36px));
  }

  .hero-service-node {
    padding-right: 6px;
    grid-template-columns: 38px;
  }

  .hero-service-node > span:last-child {
    display: none;
  }

  .hero-service-node::after {
    display: none;
  }

  .hero-service-node--laptop,
  .hero-service-node--data {
    right: -8px;
  }

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

  .trust-strip__grid > :nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

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

  .service-card--wide {
    grid-column: span 1;
  }

  .workflow-layout,
  .price-layout {
    gap: 42px;
  }

  .diagnostic-card {
    grid-template-columns: 1fr 350px;
  }

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

  .contact-band__inner {
    grid-template-columns: 1fr 1fr;
  }

  .contact-band__actions {
    grid-column: span 2;
  }

  .subhero__layout {
    grid-template-columns: 1fr 380px;
  }

  .subhero__visual .inspector--hero {
    right: -90px;
  }

  .related-grid--many {
    grid-template-columns: 1fr 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .shell {
    width: min(100% - 30px, 680px);
  }

  .topline__inner {
    min-height: 32px;
    justify-content: center;
  }

  .topline__inner > :not(:first-child) {
    display: none;
  }

  .site-header__inner {
    min-height: 70px;
  }

  .header-phone,
  .header-actions > .button {
    display: none;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: auto;
    display: block;
  }

  .hero__copy {
    padding: 65px 0 0;
  }

  .hero h1 {
    font-size: clamp(42px, 11vw, 63px);
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__visual {
    min-height: 550px;
  }

  .inspector--hero {
    right: 50%;
    width: 430px;
    transform: translateX(55%);
  }

  .hero__status-card {
    top: 76px;
    left: 14px;
    right: auto;
    width: min(210px, calc(100% - 28px));
  }

  .hero__scanner {
    inset: 80px 20px 65px;
  }

  .character-cta {
    right: 0;
    bottom: 25px;
    left: 0;
    width: auto;
  }

  .hero-service-node--pc {
    top: 205px;
    left: 20px;
  }

  .hero-service-node--laptop {
    top: 160px;
    right: 18px;
  }

  .hero-service-node--upgrade {
    top: 350px;
    left: 12px;
  }

  .hero-service-node--data {
    top: 315px;
    right: 12px;
  }

  .trust-strip {
    margin-top: 0;
    padding-top: 15px;
    background: var(--ink);
  }

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

  .trust-strip__grid > a,
  .trust-strip__grid > div {
    padding: 13px;
    border-left: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading--split,
  .workflow-layout,
  .price-layout,
  .faq-layout,
  .request-layout,
  .footer-grid,
  .service-detail-grid,
  .price-page-layout {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    align-items: start;
    gap: 12px;
  }

  .service-grid,
  .included-grid {
    grid-template-columns: 1fr 1fr;
  }

  .workflow-layout {
    gap: 35px;
  }

  .workflow-inspector {
    height: 300px;
  }

  .diagnostic-card {
    display: block;
  }

  .diagnostic-card__visual {
    min-height: 500px;
  }

  .price-layout {
    gap: 35px;
  }

  .faq-layout {
    gap: 36px;
  }

  .faq-intro {
    position: static;
  }

  .request-layout {
    gap: 38px;
  }

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

  .contact-band__actions {
    grid-column: auto;
  }

  .subhero__layout {
    min-height: auto;
    display: block;
  }

  .subhero__copy {
    padding-bottom: 10px;
  }

  .subhero__visual {
    min-height: 520px;
  }

  .subhero__visual .inspector--hero {
    right: 50%;
    width: 420px;
    transform: translateX(58%);
  }

    .subhero__accent-card {
    top: 14px;
    left: 14px;
    right: auto;
    width: min(220px, calc(100% - 28px));
  }


  .subhero__visual .character-cta {
    right: 0;
    left: 0;
    width: auto;
  }

  .service-context-strip__inner {
    grid-template-columns: 1fr;
  }

  .service-context-strip__identity {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .service-context-strip nav a {
    min-height: 82px;
  }

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

  .horizontal-process li:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

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

  .inner-hero__layout {
    min-height: 610px;
    display: block;
    padding-top: 0;
  }

  .inner-hero__layout > .inspector {
    height: 270px;
    margin-top: 20px;
  }

  .inner-hero__layout > .inspector img {
    right: 50%;
    bottom: -300px;
    width: 360px;
    transform: translateX(58%);
  }

    .inner-hero__layout > .inspector .inspector__bubble {
    top: auto;
    bottom: 18px;
    left: 0;
  }


  .price-explainer {
    position: static;
  }

  .contacts-layout {
    display: block;
  }

  .contact-cards {
    margin-bottom: 24px;
  }

  .location-panel {
    min-height: 650px;
  }

  .location-pin {
    top: 85px;
    left: 18%;
  }

  .location-panel__info {
    top: auto;
    right: 20px;
    bottom: 20px;
    left: 20px;
    width: auto;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 24px, 520px);
  }

  .brand__copy b {
    font-size: 16px;
  }

  .hero__copy {
    padding-top: 50px;
  }

  .hero h1,
  .subhero h1,
  .inner-hero h1 {
    font-size: 39px;
    line-height: 1.02;
  }

  .hero__actions,
  .subhero__actions {
    display: grid;
  }

  .hero__actions .button,
  .subhero__actions .button {
    width: 100%;
  }

  .hero__proof {
    display: grid;
  }

  .hero__visual {
    min-height: 510px;
  }

  .inspector--hero {
    right: 49%;
    bottom: 4px;
    width: 370px;
  }

  .hero__status-card {
    top: 40px;
    left: 10px;
    right: auto;
    width: min(182px, calc(100% - 20px));
  }

  .character-cta {
    grid-template-columns: 42px 1fr 19px;
    min-height: 70px;
    padding: 9px;
  }

  .character-cta__icon {
    width: 42px;
    height: 42px;
  }

  .character-cta b {
    font-size: 11px;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .trust-strip__grid > a,
  .trust-strip__grid > div {
    min-height: 52px;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip__grid > :last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .workflow-intro h2,
  .price-copy h2,
  .faq-intro h2,
  .request-copy h2,
  .service-detail-grid h2 {
    font-size: 34px;
  }

  .service-grid,
  .included-grid,
  .review-grid,
  .device-grid,
  .symptom-cards,
  .contact-cards,
  .related-grid--many {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 290px;
  }

  .workflow-inspector {
    height: 280px;
  }

  .workflow-list li {
    grid-template-columns: 58px 1fr;
    gap: 12px;
  }

  .diagnostic-card__content {
    padding: 27px 20px;
  }

  .diagnostic-progress {
    gap: 4px;
  }

  .diagnostic-progress__step {
    padding: 4px;
    gap: 5px;
  }

  .diagnostic-progress__step .context-glyph {
    width: 30px;
    height: 30px;
  }

  .diagnostic-card__content h3 {
    font-size: 28px;
  }

  .diagnostic-card__visual {
    min-height: 450px;
  }

  .diagnostic-card__visual .inspector--side img {
    right: -55px;
    width: 390px;
  }

    .diagnostic-card__visual .inspector__bubble {
    top: auto;
    right: 16px;
    bottom: 18px;
    left: 16px;
    max-width: none;
  }


  .price-panel {
    padding: 8px 17px 18px;
  }

  .price-row {
    min-height: 68px;
  }

  .price-row span {
    font-size: 12px;
  }

  .price-row__service,
  .price-table__service {
    gap: 8px;
  }

  .price-row__service .context-glyph,
  .price-table__service .context-glyph {
    width: 32px;
    height: 32px;
  }

  .price-row__service .context-glyph svg,
  .price-table__service .context-glyph svg {
    width: 17px;
    height: 17px;
  }

  .price-row b {
    font-size: 15px;
  }

  .reviews-summary {
    justify-content: flex-start;
  }

  .reviews-summary > span:nth-child(2) {
    display: none;
  }

  .review-card {
    min-height: 340px;
  }

  .reviews-source-note {
    grid-template-columns: 52px 1fr;
  }

  .reviews-source-note a {
    grid-column: 2;
  }

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

  .faq-list details p {
    margin-right: 17px;
    margin-left: 17px;
    padding-right: 10px;
  }

  .lead-form {
    padding: 22px 18px;
  }

  .contact-band__actions {
    display: grid;
  }

  .footer-grid {
    gap: 38px;
  }

  .footer-bottom {
    display: grid;
  }

  .helper {
    right: 10px;
    bottom: 10px;
  }

  .helper__button {
    width: 66px;
    min-width: 66px;
    padding: 0;
  }

  .helper__portrait {
    left: 3px;
    bottom: 0;
    width: 60px;
    height: 68px;
  }

  .helper__portrait img {
    top: -4px;
    width: 60px;
    height: 74px;
  }

  .helper__label {
    display: none;
  }

  .helper__card {
    right: 0;
    width: min(300px, calc(100vw - 20px));
  }

  .subhero__visual {
    min-height: 480px;
  }

  .subhero__visual .inspector--hero {
    width: 365px;
  }

    .subhero__accent-card {
    width: min(180px, calc(100% - 24px));
  }


  .service-context-strip nav {
    grid-template-columns: 1fr;
  }

  .service-context-strip nav a {
    min-height: 68px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .service-context-strip nav a:last-child {
    border-bottom: 0;
  }

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

  .horizontal-process li {
    min-height: 160px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-right: 1px solid rgba(255, 255, 255, 0.13);
  }

  .horizontal-process h3 {
    margin-top: 20px;
  }

  .outcome-card {
    grid-template-columns: 45px 1fr;
    padding: 18px;
  }

  .outcome-card__icon {
    width: 45px;
    height: 45px;
  }

  .inner-hero {
    min-height: 630px;
  }

  .inner-hero__layout {
    min-height: 630px;
  }

  .price-table__head,
  .price-table__row {
    padding: 0 15px;
    grid-template-columns: 1fr 120px;
  }

  .price-table__row span {
    font-size: 12px;
  }

  .price-table__row b {
    font-size: 15px;
  }

  .location-panel__info {
    padding: 24px 20px;
  }

  .location-panel__info > div {
    display: grid;
  }
}

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

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



/* Static HTML build */
[hidden] { display: none !important; }
body { min-width: 320px; }
.mobile-nav { display: block; }
.mobile-nav[hidden] { display: none !important; }
[data-stage] > p,
.diagnostic-result > p {
  max-width: 610px;
  color: var(--muted);
  line-height: 1.65;
}
.lead-form__context [data-lead-icon] {
  display: grid;
  place-items: center;
}
.lead-form__context [data-lead-icon] .context-glyph {
  width: 40px;
  height: 40px;
}
.static-build-badge {
  position: fixed;
  left: 12px;
  bottom: 12px;
  z-index: 20;
  padding: 5px 8px;
  color: #6e8190;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(7,17,31,.08);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  font: 700 8px/1 ui-monospace, monospace;
  letter-spacing: .05em;
  text-transform: uppercase;
}
@media (max-width: 560px) {
  .static-build-badge { display: none; }
}


/* Contextual icon and Inspector HT visual layer */
.ht-icon-sprite{position:absolute;width:0;height:0;overflow:hidden}
.ht-icon{width:1.05em;height:1.05em;display:inline-block;flex:0 0 auto;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round;vertical-align:-.16em}
.desktop-nav a,.mobile-nav a{display:inline-flex;align-items:center;gap:.45rem}
.desktop-nav .nav-context-icon{width:15px;height:15px;color:var(--accent,#08b9e8);opacity:.88}
.mobile-nav .nav-context-icon{width:18px;height:18px;color:#1ad0f8}
.breadcrumbs a{display:inline-flex;align-items:center;gap:.35rem}
.breadcrumbs .ht-icon{width:14px;height:14px}
.section-kicker{display:inline-flex;align-items:center;gap:.5rem}
.section-kicker .kicker-context-icon{width:16px;height:16px;padding:3px;box-sizing:content-box;border-radius:7px;background:color-mix(in srgb,currentColor 12%,transparent);box-shadow:0 0 0 1px color-mix(in srgb,currentColor 16%,transparent)}
.faq-summary__label{gap:.65rem}
.faq-summary__label>.ht-icon{width:19px;height:19px;color:#06a8d7}
.footer-socials a,.footer-links a{display:flex;align-items:center;gap:.45rem}
.footer-socials .ht-icon,.footer-links .ht-icon{width:15px;height:15px;color:#17c7ee}
.helper__context .ht-icon,.button .ht-icon{width:1.05em;height:1.05em}
.form-field-label{display:inline-flex;align-items:center;gap:.4rem}
.form-field-label .ht-icon{color:#09abd4}

.reviews-stage{position:relative;display:grid;grid-template-columns:190px minmax(0,1fr);align-items:center;min-height:220px;margin:22px 0 28px;padding:24px 28px;border:1px solid rgba(8,185,232,.22);border-radius:26px;background:linear-gradient(118deg,rgba(6,24,40,.97),rgba(10,55,77,.86));overflow:hidden;box-shadow:0 24px 60px rgba(2,16,28,.18)}
.reviews-stage:before{content:"";position:absolute;inset:-60% auto auto 45%;width:420px;height:420px;border-radius:50%;background:radial-gradient(circle,rgba(11,199,237,.2),transparent 68%)}
.reviews-stage__visual{align-self:end;height:220px;position:relative;z-index:1}
.reviews-stage__visual img{width:100%;height:118%;object-fit:contain;object-position:center bottom;filter:drop-shadow(0 18px 22px rgba(0,0,0,.34))}
.reviews-stage__copy{position:relative;z-index:1;color:#fff}
.reviews-stage__copy small{display:flex;align-items:center;gap:.45rem;color:#70ddf5;text-transform:uppercase;letter-spacing:.12em;font-weight:800}
.reviews-stage__copy b{display:block;margin-top:8px;font-size:clamp(1.15rem,2.2vw,1.65rem)}
.reviews-stage__chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:16px}
.reviews-stage__chips span{display:inline-flex;align-items:center;gap:.4rem;padding:8px 11px;border-radius:999px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);font-size:.82rem;color:#dff9ff}
.reviews-stage__chips .ht-icon{color:#f6b72b}
.reviews-source-character img{content:normal}

.faq-callout__portrait img{object-fit:contain;object-position:center top}
.faq-ambient{position:absolute;right:max(18px,calc((100vw - 1200px)/2 - 80px));bottom:-28px;width:220px;height:320px;opacity:.17;pointer-events:none;z-index:0}
.faq-ambient img{width:100%;height:100%;object-fit:contain;object-position:center bottom;filter:drop-shadow(0 12px 20px rgba(1,20,34,.2))}
.faq-section{position:relative;overflow:hidden}
.faq-section>.shell{position:relative;z-index:1}

.request-copy{position:relative;overflow:hidden}
.request-copy>:not(.request-character){position:relative;z-index:2}
.request-character{position:absolute;right:-24px;bottom:-42px;width:205px;height:315px;z-index:1;pointer-events:none;opacity:.84}
.request-character:before{content:"";position:absolute;inset:22% 2% 8%;border-radius:50%;background:radial-gradient(circle,rgba(20,210,247,.22),transparent 68%)}
.request-character img{position:relative;width:100%;height:100%;object-fit:contain;object-position:center bottom;filter:drop-shadow(0 18px 22px rgba(0,0,0,.28))}
.request-copy h2,.request-copy>p,.request-copy>.section-kicker,.request-copy>.request-meta{max-width:calc(100% - 155px)}
.request-quick-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;margin:2px 0 14px}
.request-quick-choice{min-height:64px;padding:9px 7px;border-radius:13px;border:1px solid rgba(8,185,232,.16);background:#f4f9fc;color:#123246;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:5px;font:inherit;font-size:.73rem;font-weight:750;cursor:pointer;transition:.2s ease}
.request-quick-choice .ht-icon{width:20px;height:20px;color:#078fb9}
.request-quick-choice:hover,.request-quick-choice:focus-visible{transform:translateY(-2px);border-color:#0bbbe8;box-shadow:0 8px 22px rgba(5,159,199,.13);outline:none}
.request-quick-choice.is-active{color:#fff;border-color:#0bbbe8;background:linear-gradient(135deg,#047da8,#08b9e8);box-shadow:0 9px 22px rgba(5,159,199,.25)}
.request-quick-choice.is-active .ht-icon{color:#fff}
.helper__portrait img,.hero__visual .inspector img{transition:opacity .2s ease,transform .25s ease}
.helper[data-context-state] .helper__portrait img{animation:htContextSwap .34s ease}
@keyframes htContextSwap{0%{opacity:.25;transform:scale(.92)}100%{opacity:1;transform:scale(1)}}

@media(max-width:900px){
  .desktop-nav .nav-context-icon{display:none}
  .reviews-stage{grid-template-columns:135px 1fr;padding:20px}
  .reviews-stage__visual{height:180px}
  .faq-ambient{display:none}
  .request-character{width:165px;opacity:.42}
}
@media(max-width:640px){
  .reviews-stage{grid-template-columns:1fr;padding:18px}
  .reviews-stage__visual{height:155px;width:125px;position:absolute;right:0;bottom:0;opacity:.3}
  .reviews-stage__copy{padding-right:18px}
  .request-character{display:none}
  .request-copy h2,.request-copy>p,.request-copy>.section-kicker,.request-copy>.request-meta{max-width:none}
  .request-quick-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(prefers-reduced-motion:reduce){.helper[data-context-state] .helper__portrait img{animation:none}.request-quick-choice{transition:none}}


/* Service depth, navigation dock and page-specific color language */
html{scroll-behavior:smooth}
body[data-service-theme="home"]{--service-accent:#16c8ef;--service-secondary:#6dd938;--service-rgb:22,200,239}
body[data-service-theme="pricing"]{--service-accent:#ffb020;--service-secondary:#ff6d3a;--service-rgb:255,176,32}
body[data-service-theme="contacts"]{--service-accent:#23c98b;--service-secondary:#19a8dc;--service-rgb:35,201,139}
body[data-service-theme="pc-repair"]{--service-accent:#13c7f2;--service-secondary:#397bff;--service-rgb:19,199,242}
body[data-service-theme="laptop-repair"]{--service-accent:#8d7cff;--service-secondary:#22c7f0;--service-rgb:141,124,255}
body[data-service-theme="pc-service"]{--service-accent:#21d3a2;--service-secondary:#13bde8;--service-rgb:33,211,162}
body[data-service-theme="laptop-service"]{--service-accent:#50d890;--service-secondary:#9bcf37;--service-rgb:80,216,144}
body[data-service-theme="pc-upgrade"]{--service-accent:#ff9f43;--service-secondary:#ff5f57;--service-rgb:255,159,67}
body[data-service-theme="laptop-upgrade"]{--service-accent:#bf6cff;--service-secondary:#ff7fd1;--service-rgb:191,108,255}
body[data-service-theme="pc-build"]{--service-accent:#3c8dff;--service-secondary:#25d4e8;--service-rgb:60,141,255}
body[data-service-theme="data"]{--service-accent:#f05fd0;--service-secondary:#8a74ff;--service-rgb:240,95,208}

.site-header__inner,.brand__mark,.brand__copy small,.header-phone small{transition:.22s ease}
body.has-scrolled .site-header__inner{min-height:64px}
body.has-scrolled .brand__mark{width:39px;height:39px;border-radius:12px 4px 12px 4px;font-size:15px}
body.has-scrolled .brand__copy small,body.has-scrolled .header-phone small{opacity:0;height:0;overflow:hidden}

.service-dock{position:sticky;top:82px;z-index:38;background:rgba(247,251,253,.96);border-bottom:1px solid rgba(7,17,31,.1);backdrop-filter:blur(15px);transition:top .22s ease,box-shadow .22s ease}
body.has-scrolled .service-dock{top:64px;box-shadow:0 10px 24px rgba(3,18,30,.08)}
.service-dock__inner{min-height:64px;display:grid;grid-template-columns:170px minmax(0,1fr);align-items:center;gap:14px}
.service-dock__status{min-width:0;display:flex;align-items:center;gap:10px;color:#0b2a3e}
.service-dock__status-icon{width:34px;height:34px;display:grid;place-items:center;border-radius:11px;color:var(--service-accent);background:rgba(var(--service-rgb),.1);border:1px solid rgba(var(--service-rgb),.2);box-shadow:inset 0 0 18px rgba(var(--service-rgb),.06)}
.service-dock__status-icon .ht-icon{width:18px;height:18px}
.service-dock__status span{display:grid;gap:1px}
.service-dock__status small{color:#78909f;font-size:8px;text-transform:uppercase;letter-spacing:.09em;font-weight:850}
.service-dock__status b{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:11px}
.service-dock__links{display:grid;grid-template-columns:repeat(8,minmax(74px,1fr));gap:5px}
.service-dock__link{position:relative;min-height:48px;padding:7px 5px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;color:#546b79;border:1px solid transparent;border-radius:11px;font-size:8px;font-weight:780;line-height:1.15;text-align:center;transition:.18s ease}
.service-dock__link .ht-icon{width:16px;height:16px;color:#7293a5}
.service-dock__link:after{content:"";position:absolute;left:22%;right:22%;bottom:3px;height:2px;border-radius:2px;background:var(--dock-accent,var(--service-accent));opacity:0;transform:scaleX(.35);transition:.18s ease}
.service-dock__link:hover,.service-dock__link:focus-visible{color:#122f42;background:#fff;border-color:rgba(7,17,31,.08);box-shadow:0 7px 16px rgba(3,18,30,.07);transform:translateY(-1px);outline:none}
.service-dock__link:hover .ht-icon,.service-dock__link:focus-visible .ht-icon,.service-dock__link.is-active .ht-icon{color:var(--service-accent)}
.service-dock__link:hover:after,.service-dock__link:focus-visible:after,.service-dock__link.is-active:after{opacity:1;transform:scaleX(1)}
.service-dock__link.is-active{color:#102f42;background:rgba(var(--service-rgb),.08);border-color:rgba(var(--service-rgb),.18)}

body[data-service-theme] .subhero{background:radial-gradient(circle at 74% 43%,rgba(var(--service-rgb),.27),transparent 34%),linear-gradient(125deg,#06111d 0%,#0a1e31 65%,#07131f 100%)}
body[data-service-theme] .subhero:after{content:"";position:absolute;inset:0;z-index:-1;pointer-events:none;background:linear-gradient(105deg,transparent 55%,rgba(var(--service-rgb),.06)),repeating-linear-gradient(90deg,transparent 0 79px,rgba(var(--service-rgb),.035) 80px),repeating-linear-gradient(0deg,transparent 0 79px,rgba(var(--service-rgb),.025) 80px)}
body[data-service-theme] .subhero__visual:before{content:"";position:absolute;inset:11% 7% 8%;border:1px solid rgba(var(--service-rgb),.19);border-radius:48% 52% 45% 55%;box-shadow:0 0 80px rgba(var(--service-rgb),.12),inset 0 0 70px rgba(var(--service-rgb),.045);animation:serviceAura 9s ease-in-out infinite}
body[data-service-theme] .subhero__accent-card{border-color:rgba(var(--service-rgb),.28);box-shadow:0 16px 44px rgba(var(--service-rgb),.11)}
body[data-service-theme] .subhero__accent-card small,body[data-service-theme] .service-context-strip .context-glyph,body[data-service-theme] .inspector-progress__title{color:var(--service-accent)}
body[data-service-theme] .context-glyph__signal{background:var(--service-accent);box-shadow:0 0 12px rgba(var(--service-rgb),.78)}
@keyframes serviceAura{0%,100%{transform:scale(.98) rotate(-1deg);opacity:.68}50%{transform:scale(1.025) rotate(1deg);opacity:1}}

.inspector-online{position:absolute;top:18px;left:16px;z-index:6;display:inline-flex;align-items:center;gap:7px;padding:8px 11px;border-radius:999px;color:#dffaff;background:rgba(5,22,35,.72);border:1px solid rgba(var(--service-rgb),.3);backdrop-filter:blur(10px);font-size:8px;font-weight:850;letter-spacing:.06em;text-transform:uppercase;box-shadow:0 10px 26px rgba(0,0,0,.17)}
.inspector-online i{width:7px;height:7px;border-radius:50%;background:var(--service-accent);box-shadow:0 0 0 4px rgba(var(--service-rgb),.12),0 0 14px rgba(var(--service-rgb),.9);animation:onlinePulse 1.9s ease-in-out infinite}
@keyframes onlinePulse{50%{transform:scale(.72);opacity:.7}}

.inspector-progress{position:relative;z-index:7;color:#d9ecf4;background:linear-gradient(90deg,#07131f,#0a2031);border-bottom:1px solid rgba(var(--service-rgb),.17)}
.inspector-progress__inner{min-height:72px;display:grid;grid-template-columns:160px repeat(5,1fr);align-items:stretch}
.inspector-progress__title,.inspector-progress a{display:flex;align-items:center;justify-content:center;gap:7px;padding:10px;border-right:1px solid rgba(255,255,255,.07);font-size:9px;font-weight:760;text-align:center}
.inspector-progress__title{justify-content:flex-start;font-size:8px;text-transform:uppercase;letter-spacing:.08em}
.inspector-progress__title .ht-icon,.inspector-progress a .ht-icon{width:16px;height:16px}
.inspector-progress a{position:relative;color:#7894a4;transition:.18s ease}
.inspector-progress a:after{content:"";position:absolute;left:0;right:100%;bottom:0;height:3px;background:linear-gradient(90deg,var(--service-accent),var(--service-secondary));transition:right .35s ease}
.inspector-progress a.is-active,.inspector-progress a.is-complete{color:#fff;background:rgba(var(--service-rgb),.055)}
.inspector-progress a.is-active .ht-icon{color:var(--service-accent);filter:drop-shadow(0 0 7px rgba(var(--service-rgb),.7))}
.inspector-progress a.is-complete:after,.inspector-progress a.is-active:after{right:0}

.helper-actions{display:grid;grid-template-columns:repeat(3,1fr);gap:6px;margin:0 0 9px}
.helper-actions a{min-height:50px;padding:7px 4px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:4px;color:#385367;background:#f3f8fb;border:1px solid rgba(7,17,31,.08);border-radius:10px;font-size:8px;font-weight:800;text-align:center;transition:.18s ease}
.helper-actions a .ht-icon{width:17px;height:17px;color:var(--service-accent)}
.helper-actions a:hover,.helper-actions a:focus-visible{color:#102f42;border-color:rgba(var(--service-rgb),.35);background:rgba(var(--service-rgb),.08);transform:translateY(-1px);outline:none}
.helper__card>.button--small{width:100%;justify-content:center}

@media(max-width:1050px){
  .service-dock__inner{grid-template-columns:48px minmax(0,1fr)}
  .service-dock__status span{display:none}
  .service-dock__links{overflow-x:auto;grid-template-columns:repeat(8,84px);scrollbar-width:none}
  .service-dock__links::-webkit-scrollbar{display:none}
  .inspector-progress__inner{grid-template-columns:115px repeat(5,1fr)}
}
@media(max-width:760px){
  body.has-scrolled .site-header__inner{min-height:58px}
  .service-dock{top:64px}
  body.has-scrolled .service-dock{top:58px}
  .service-dock__inner{min-height:58px;grid-template-columns:38px minmax(0,1fr);gap:8px}
  .service-dock__status-icon{width:30px;height:30px}
  .service-dock__links{grid-template-columns:repeat(8,76px)}
  .service-dock__link{min-height:43px;font-size:7px}
  .inspector-progress__inner{overflow-x:auto;grid-template-columns:105px repeat(5,104px);scrollbar-width:none}
  .inspector-progress__inner::-webkit-scrollbar{display:none}
  .inspector-online{top:10px;left:8px}
}
@media(max-width:520px){
  .service-dock__inner{grid-template-columns:1fr}
  .service-dock__status{display:none}
  .service-dock__links{padding:6px 0}
  .inspector-progress__title{display:none}
  .inspector-progress__inner{grid-template-columns:repeat(5,105px)}
}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}.subhero__visual:before,.inspector-online i{animation:none}}


/* Motion polish, animated identity and mobile action layer */
.page-progress{position:fixed;top:0;left:0;right:0;height:3px;z-index:90;pointer-events:none;background:rgba(7,17,31,.08)}
.page-progress span{display:block;width:0;height:100%;background:linear-gradient(90deg,var(--service-accent),var(--service-secondary));box-shadow:0 0 12px rgba(var(--service-rgb),.75);transition:width 80ms linear}

.brand__mark{position:relative;overflow:hidden;isolation:isolate;background:linear-gradient(145deg,#d9ff55,#9bea34)}
.brand__mark:before{content:"";position:absolute;inset:-45%;z-index:-1;background:conic-gradient(from 90deg,transparent,rgba(7,17,31,.2),transparent 32%);animation:brandOrbit 5.5s linear infinite}
.brand__mark:after{content:"";position:absolute;inset:3px;z-index:-1;border-radius:12px 3px 12px 3px;background:linear-gradient(145deg,rgba(255,255,255,.35),transparent 45%)}
.brand__letters{position:relative;z-index:2;text-shadow:0 1px 0 rgba(255,255,255,.5)}
.brand__scan{position:absolute;z-index:3;left:-20%;right:-20%;top:-45%;height:35%;background:linear-gradient(180deg,transparent,rgba(255,255,255,.92),transparent);transform:rotate(-12deg);animation:brandScan 3.8s ease-in-out infinite}
.brand__node{position:absolute;z-index:4;width:4px;height:4px;border-radius:50%;background:#06253a;box-shadow:0 0 0 2px rgba(255,255,255,.36)}
.brand__node--a{top:7px;right:7px}.brand__node--b{bottom:7px;left:7px;animation-delay:-1.5s}
.brand:hover .brand__mark,.brand:focus-visible .brand__mark{transform:rotate(-2deg) scale(1.04);box-shadow:0 8px 22px rgba(122,204,46,.3)}
@keyframes brandOrbit{to{transform:rotate(360deg)}}
@keyframes brandScan{0%,22%{top:-45%;opacity:0}38%,56%{opacity:.85}75%,100%{top:115%;opacity:0}}

.desktop-nav a,.mobile-nav a{position:relative}
.desktop-nav a:after{content:"";position:absolute;left:8px;right:8px;bottom:-12px;height:2px;border-radius:3px;background:linear-gradient(90deg,var(--service-accent),var(--service-secondary));opacity:0;transform:scaleX(.35);transition:.2s ease}
.desktop-nav a:hover:after,.desktop-nav a.is-current:after{opacity:1;transform:scaleX(1)}
.desktop-nav a.is-current,.mobile-nav a.is-current{color:#078aac}
.mobile-nav a.is-current{background:rgba(var(--service-rgb),.06)}

.reveal-ready{opacity:0;transform:translateY(24px) scale(.985);transition:opacity .62s cubic-bezier(.2,.7,.2,1),transform .62s cubic-bezier(.2,.7,.2,1);transition-delay:var(--reveal-delay,0ms);will-change:opacity,transform}
.reveal-ready.reveal-from-left{transform:translateX(-26px)}
.reveal-ready.reveal-from-right{transform:translateX(26px)}
.reveal-ready.is-revealed{opacity:1;transform:none;will-change:auto}

.interaction-surface{position:relative;isolation:isolate;--mx:50%;--my:50%}
.interaction-surface:before{content:"";position:absolute;inset:0;z-index:-1;border-radius:inherit;pointer-events:none;background:radial-gradient(260px circle at var(--mx) var(--my),rgba(var(--service-rgb),.14),transparent 68%);opacity:0;transition:opacity .22s ease}
.interaction-surface:hover:before,.interaction-surface:focus-within:before{opacity:1}
.service-card.interaction-surface:before{z-index:0}
.service-card.interaction-surface>*{position:relative;z-index:1}
.review-card.interaction-surface{overflow:hidden}
.review-card.interaction-surface:before{z-index:0}
.review-card.interaction-surface>*{position:relative;z-index:1}

.mobile-action-bar{display:none}
@media(max-width:760px){
  body{padding-bottom:78px}
  .mobile-action-bar{position:fixed;left:8px;right:8px;bottom:8px;z-index:72;height:66px;padding:6px 8px;display:grid;grid-template-columns:1fr 1fr 72px 1fr 1fr;align-items:end;color:#17384b;background:rgba(255,255,255,.94);border:1px solid rgba(7,17,31,.12);border-radius:20px;box-shadow:0 17px 48px rgba(2,18,30,.23);backdrop-filter:blur(18px)}
  .mobile-action-bar>a,.mobile-action-bar>button{height:52px;padding:4px 2px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:4px;color:#496775;background:transparent;border:0;border-radius:12px;font:inherit;font-size:7px;font-weight:820;cursor:pointer}
  .mobile-action-bar>a .ht-icon,.mobile-action-bar>button .ht-icon{width:18px;height:18px;color:var(--service-accent)}
  .mobile-action-bar>a:active,.mobile-action-bar>button:active{background:rgba(var(--service-rgb),.09);transform:scale(.96)}
  .mobile-action-bar__inspector{position:relative!important;height:76px!important;margin-bottom:0!important;align-self:end;color:#0a2a3d!important}
  .mobile-action-bar__inspector:before{content:"";position:absolute;left:9px;right:9px;top:-10px;height:58px;border-radius:20px 20px 14px 14px;background:linear-gradient(155deg,#071b2a,#0b4055);border:2px solid rgba(var(--service-rgb),.72);box-shadow:0 8px 22px rgba(3,25,38,.28),0 0 18px rgba(var(--service-rgb),.18)}
  .mobile-action-bar__portrait{position:absolute;z-index:2;top:-16px;width:62px;height:58px;overflow:hidden;pointer-events:none}
  .mobile-action-bar__portrait img{position:absolute;top:-8px;left:7px;width:50px;height:75px;object-fit:contain;object-position:center top;filter:drop-shadow(0 6px 9px rgba(0,0,0,.35))}
  .mobile-action-bar__inspector>span:last-child{position:absolute;bottom:4px}
  .helper{right:10px;bottom:83px;z-index:75}
  .helper__button{display:none}
  .helper__card{right:-2px;bottom:0;width:min(310px,calc(100vw - 20px))}
}

@media(prefers-reduced-motion:reduce){
  .brand__mark:before,.brand__scan{animation:none}
  .reveal-ready{opacity:1;transform:none;transition:none}
  .page-progress span{transition:none}
}


/* Lightweight Canvas scene, scroll telemetry and spatial depth */
.hero,.subhero,.inner-hero{overflow:hidden}
.tech-scene{position:absolute;inset:0;z-index:0;width:100%;height:100%;pointer-events:none;opacity:.68;mix-blend-mode:screen}
.hero>.shell,.subhero>.shell,.inner-hero>.shell{position:relative;z-index:2}
.hero__grid-pattern,.subhero__grid{z-index:1}

.hero__visual,.subhero__visual,.reviews-stage,.price-panel{--tilt-x:0deg;--tilt-y:0deg;--depth-x:0px;--depth-y:0px;--scene-scroll:0px;transform:perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));transform-style:preserve-3d;transition:transform .24s ease-out;will-change:transform}
.hero__visual .inspector--hero,.subhero__visual .inspector--hero{transform:translate3d(var(--depth-x),calc(var(--scene-scroll) + var(--depth-y)),30px);transition:transform .24s ease-out}
.hero__visual .character-cta,.subhero__visual .character-cta{transform:translateZ(48px)}
.hero__visual .hero-service-node,.subhero__accent-card,.hero__status-card,.inspector-online{transform:translateZ(32px)}
.depth-reactive.is-depth-active{transition:transform 70ms linear}

.telemetry-meter{position:relative;height:3px;margin-top:10px;overflow:hidden;border-radius:4px;background:rgba(255,255,255,.1)}
.telemetry-meter i{display:block;width:var(--telemetry-value,36%);height:100%;border-radius:inherit;background:linear-gradient(90deg,var(--service-accent),var(--service-secondary));box-shadow:0 0 10px rgba(var(--service-rgb),.7);transition:width .46s cubic-bezier(.2,.7,.2,1)}
.visual-telemetry-caption{margin-top:7px!important;display:flex;align-items:center;gap:5px;color:#8da5b4!important;font-family:ui-monospace,SFMono-Regular,Consolas,monospace;font-size:8px!important;font-style:normal;line-height:1.35}
.visual-telemetry-caption .ht-icon{width:11px;height:11px;color:var(--service-accent)}

.helper-telemetry{margin:0 0 10px;padding:10px;border-radius:12px;color:#18394c;background:linear-gradient(135deg,rgba(var(--service-rgb),.1),rgba(241,248,251,.94));border:1px solid rgba(var(--service-rgb),.18)}
.helper-telemetry__head{display:flex;align-items:center;gap:8px}
.helper-telemetry__head>.ht-icon{width:18px;height:18px;color:var(--service-accent)}
.helper-telemetry__head>span{display:grid;gap:1px}
.helper-telemetry small{color:#78909e;font-size:7px;font-weight:850;letter-spacing:.07em;text-transform:uppercase}
.helper-telemetry b{font-size:10px!important;line-height:1.25}
.helper-telemetry .telemetry-meter{height:2px;margin-top:8px;background:rgba(6,33,49,.09)}

@media(max-width:760px){
  .tech-scene{opacity:.48}
  .hero__visual,.subhero__visual,.reviews-stage,.price-panel{transform:none!important}
  .hero__visual .inspector--hero,.subhero__visual .inspector--hero{transform:translate3d(0,var(--scene-scroll),0)}
}
@media(prefers-reduced-motion:reduce){
  .hero__visual,.subhero__visual,.reviews-stage,.price-panel,.hero__visual .inspector--hero,.subhero__visual .inspector--hero{transform:none!important;transition:none}
  .telemetry-meter i{transition:none}
}


/* Inspector HT command center */
.inspector-guide-launch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 48px;
  margin-top: 15px;
  padding: 5px 14px 5px 5px;
  overflow: hidden;
  color: #dffaff;
  background:
    linear-gradient(105deg, rgba(10, 31, 47, .95), rgba(8, 18, 31, .92)),
    radial-gradient(circle at 10% 20%, rgba(var(--service-rgb, 57, 214, 239), .25), transparent 45%);
  border: 1px solid rgba(var(--service-rgb, 57, 214, 239), .34);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(2, 13, 26, .18), inset 0 0 0 1px rgba(255, 255, 255, .025);
  cursor: pointer;
  isolation: isolate;
}

.inspector-guide-launch:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0;
  background: linear-gradient(105deg, rgba(var(--service-rgb, 57, 214, 239), .18), transparent 65%);
  transition: opacity .25s ease;
}

.inspector-guide-launch:hover:before,
.inspector-guide-launch:focus-visible:before {
  opacity: 1;
}

.inspector-guide-launch:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--service-rgb, 57, 214, 239), .62);
}

.inspector-guide-launch:focus-visible {
  outline: 3px solid rgba(var(--service-rgb, 57, 214, 239), .28);
  outline-offset: 3px;
}

.inspector-guide-launch__portrait {
  position: relative;
  width: 38px;
  height: 38px;
  overflow: hidden;
  flex: 0 0 auto;
  background: radial-gradient(circle, rgba(var(--service-rgb, 57, 214, 239), .32), rgba(4, 18, 31, .9));
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
}

.inspector-guide-launch__portrait:after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 3px;
  width: 7px;
  height: 7px;
  background: #b7ee35;
  border: 2px solid #0b1b2b;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(183, 238, 53, .85);
}

.inspector-guide-launch__portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 12%;
  transform: scale(1.48) translateY(8%);
}

.inspector-guide-launch > span:nth-child(2) {
  display: grid;
  gap: 1px;
  text-align: left;
}

.inspector-guide-launch small {
  color: #7897aa;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.inspector-guide-launch b {
  font-size: 11px;
  letter-spacing: -.01em;
}

.inspector-guide-launch > .ht-icon {
  width: 16px;
  height: 16px;
  margin-left: 2px;
  color: var(--service-accent, var(--cyan));
}

.inner-hero .inspector-guide-launch {
  margin-top: 16px;
}

.inspector-command {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  pointer-events: none;
}

.inspector-command[data-state="open"],
.inspector-command[data-state="closing"] {
  visibility: visible;
}

.inspector-command[data-state="open"] {
  pointer-events: auto;
}

.inspector-command__backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 16% 22%, rgba(var(--service-rgb, 57, 214, 239), .16), transparent 32%),
    rgba(2, 8, 16, .78);
  backdrop-filter: blur(13px) saturate(.8);
  transition: opacity .34s ease;
}

.inspector-command[data-state="open"] .inspector-command__backdrop {
  opacity: 1;
}

.inspector-command__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 39%) minmax(0, 61%);
  width: min(1180px, calc(100vw - 40px));
  height: min(830px, calc(100svh - 40px));
  max-height: 830px;
  overflow: hidden;
  opacity: 0;
  color: #07111f;
  background: #f7fafc;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 30px;
  box-shadow: 0 45px 120px rgba(0, 0, 0, .45), 0 0 0 1px rgba(2, 13, 25, .25);
  transform: translateY(25px) scale(.975);
  transition: opacity .34s ease, transform .45s cubic-bezier(.2, .75, .2, 1);
  outline: none;
}

.inspector-command[data-state="open"] .inspector-command__panel {
  opacity: 1;
  transform: none;
}

.inspector-command__visual {
  --command-x: 0px;
  --command-y: 0px;
  --command-rx: 0deg;
  --command-ry: 0deg;
  position: relative;
  min-width: 0;
  overflow: hidden;
  color: #eafaff;
  background:
    radial-gradient(circle at 50% 36%, rgba(var(--service-rgb, 57, 214, 239), .24), transparent 29%),
    radial-gradient(circle at 18% 85%, rgba(85, 58, 194, .22), transparent 33%),
    linear-gradient(155deg, #071a2a, #030a13 70%);
  perspective: 900px;
  isolation: isolate;
}

.inspector-command__visual:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .55;
  background-image:
    linear-gradient(rgba(var(--service-rgb, 57, 214, 239), .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--service-rgb, 57, 214, 239), .08) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.inspector-command__visual-grid {
  position: absolute;
  left: -22%;
  right: -22%;
  bottom: -20%;
  height: 58%;
  opacity: .25;
  background-image:
    linear-gradient(rgba(var(--service-rgb, 57, 214, 239), .45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--service-rgb, 57, 214, 239), .45) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(300px) rotateX(62deg);
  transform-origin: center bottom;
}

.inspector-command__brand {
  position: absolute;
  z-index: 5;
  top: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.inspector-command__brand > span:first-child {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--service-accent, var(--cyan));
  background: rgba(var(--service-rgb, 57, 214, 239), .12);
  border: 1px solid rgba(var(--service-rgb, 57, 214, 239), .3);
  border-radius: 11px;
}

.inspector-command__brand .ht-icon {
  width: 18px;
  height: 18px;
}

.inspector-command__brand > span:nth-child(2) {
  display: grid;
  gap: 2px;
}

.inspector-command__brand small {
  color: #66879b;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
}

.inspector-command__brand b {
  font-size: 12px;
  letter-spacing: .08em;
}

.inspector-command__brand > i {
  width: 9px;
  height: 9px;
  margin-left: auto;
  background: #ff9f1c;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 159, 28, .8);
}

.inspector-command__brand > i.is-open {
  background: #b7ee35;
  box-shadow: 0 0 12px rgba(183, 238, 53, .8);
}

.inspector-command__portrait {
  position: absolute;
  z-index: 2;
  inset: 88px 0 78px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform: translate3d(var(--command-x), var(--command-y), 0) rotateX(var(--command-rx)) rotateY(var(--command-ry));
  transform-style: preserve-3d;
  transition: transform .18s ease-out;
}

.inspector-command__portrait:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5%;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(var(--service-rgb, 57, 214, 239), .22);
  border-radius: 50%;
  box-shadow:
    0 0 0 26px rgba(var(--service-rgb, 57, 214, 239), .035),
    0 0 70px rgba(var(--service-rgb, 57, 214, 239), .16);
  transform: translateX(-50%) rotateX(68deg);
}

.inspector-command__portrait img {
  position: relative;
  z-index: 2;
  width: 104%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 22px rgba(0, 0, 0, .34));
  transform: translateZ(35px);
}

.inspector-command__portrait img.is-swapping {
  animation: inspector-command-swap .45s cubic-bezier(.2, .75, .2, 1);
}

@keyframes inspector-command-swap {
  0% { opacity: .28; transform: translate3d(18px, 8px, 35px) scale(.96); filter: blur(4px) drop-shadow(0 24px 22px rgba(0, 0, 0, .34)); }
  100% { opacity: 1; transform: translate3d(0, 0, 35px); filter: blur(0) drop-shadow(0 24px 22px rgba(0, 0, 0, .34)); }
}

.inspector-command__scan {
  position: absolute;
  z-index: 4;
  left: 5%;
  right: 5%;
  top: 31%;
  height: 1px;
  opacity: .55;
  background: linear-gradient(90deg, transparent, var(--service-accent, var(--cyan)), transparent);
  box-shadow: 0 0 16px var(--service-accent, var(--cyan));
  animation: inspector-command-scan 3.2s ease-in-out infinite;
}

@keyframes inspector-command-scan {
  0%, 100% { transform: translateY(-85px); opacity: 0; }
  16%, 82% { opacity: .7; }
  50% { transform: translateY(260px); }
}

.inspector-command__orbit {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 48%;
  border: 1px dashed rgba(var(--service-rgb, 57, 214, 239), .26);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: inspector-command-orbit 19s linear infinite;
}

.inspector-command__orbit--one {
  width: 340px;
  height: 340px;
}

.inspector-command__orbit--two {
  width: 430px;
  height: 430px;
  opacity: .5;
  animation-direction: reverse;
  animation-duration: 27s;
}

@keyframes inspector-command-orbit {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.inspector-command__float {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: calc(100% - 48px);
  padding: 10px 12px;
  color: #dff9ff;
  background: rgba(5, 18, 30, .76);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
  backdrop-filter: blur(12px);
}

.inspector-command__float--top {
  top: 94px;
  right: 18px;
}

.inspector-command__float--bottom {
  left: 24px;
  right: 24px;
  bottom: 22px;
}

.inspector-command__float > .ht-icon {
  width: 19px;
  height: 19px;
  color: var(--service-accent, var(--cyan));
}

.inspector-command__float > i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: #ff9f1c;
  border-radius: 50%;
  box-shadow: 0 0 10px currentColor;
}

.inspector-command__float > i.is-open {
  color: #b7ee35;
  background: #b7ee35;
}

.inspector-command__float span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.inspector-command__float small {
  color: #708da0;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.inspector-command__float b {
  overflow: hidden;
  font-size: 9px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inspector-command__content {
  min-width: 0;
  padding: 28px 30px 22px;
  overflow: auto;
  overscroll-behavior: contain;
  background:
    radial-gradient(circle at 95% 5%, rgba(var(--service-rgb, 57, 214, 239), .1), transparent 24%),
    linear-gradient(#fbfdfe, #f3f7fa);
}

.inspector-command__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
  margin-bottom: 20px;
}

.inspector-command__index {
  display: block;
  margin-bottom: 7px;
  color: var(--service-accent, var(--cyan-dark));
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .16em;
}

.inspector-command__header h2 {
  margin-bottom: 6px;
  font-size: clamp(26px, 3vw, 41px);
  line-height: 1;
  letter-spacing: -.055em;
}

.inspector-command__header p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.inspector-command__close {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  background: #e9f0f4;
  border: 1px solid #d7e2e9;
  border-radius: 13px;
  cursor: pointer;
}

.inspector-command__close:hover {
  color: #fff;
  background: #0b1c2c;
  border-color: #0b1c2c;
}

.inspector-command__close:focus-visible {
  outline: 3px solid rgba(var(--service-rgb, 57, 214, 239), .28);
  outline-offset: 2px;
}

.inspector-command__close span {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 20px;
  height: 1px;
  background: currentColor;
  transform: rotate(45deg);
}

.inspector-command__close span:last-child {
  transform: rotate(-45deg);
}

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

.inspector-command__route {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 16px;
  gap: 10px;
  align-items: center;
  min-height: 70px;
  padding: 9px 11px;
  color: #193044;
  text-align: left;
  background: rgba(255, 255, 255, .86);
  border: 1px solid #dce6ec;
  border-radius: 16px;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.inspector-command__route:hover,
.inspector-command__route:focus-visible {
  z-index: 2;
  transform: translateY(-2px);
  border-color: rgba(var(--service-rgb, 57, 214, 239), .48);
  box-shadow: 0 11px 28px rgba(10, 35, 53, .09);
  outline: none;
}

.inspector-command__route.is-active {
  color: #eafaff;
  background:
    linear-gradient(115deg, rgba(var(--service-rgb, 57, 214, 239), .14), transparent 55%),
    #0b1d2c;
  border-color: rgba(var(--service-rgb, 57, 214, 239), .44);
  box-shadow: inset 3px 0 0 var(--service-accent, var(--cyan)), 0 12px 25px rgba(3, 16, 29, .14);
}

.inspector-command__route-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--service-accent, var(--cyan-dark));
  background: rgba(var(--service-rgb, 57, 214, 239), .1);
  border: 1px solid rgba(var(--service-rgb, 57, 214, 239), .19);
  border-radius: 11px;
}

.inspector-command__route.is-active .inspector-command__route-icon {
  color: #06131f;
  background: var(--service-accent, var(--cyan));
  border-color: transparent;
  box-shadow: 0 0 22px rgba(var(--service-rgb, 57, 214, 239), .26);
}

.inspector-command__route-icon .ht-icon {
  width: 19px;
  height: 19px;
}

.inspector-command__route > span:nth-child(2) {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.inspector-command__route small {
  color: #7d93a2;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.inspector-command__route b {
  display: -webkit-box;
  overflow: hidden;
  font-size: 9px;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.inspector-command__route-arrow {
  color: #8ca2af;
  font-size: 15px;
}

.inspector-command__route.is-active .inspector-command__route-arrow {
  color: var(--service-accent, var(--cyan));
}

.inspector-command__result {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  margin-top: 11px;
  padding: 14px;
  background:
    linear-gradient(110deg, rgba(var(--service-rgb, 57, 214, 239), .1), transparent 48%),
    #eaf1f5;
  border: 1px solid rgba(var(--service-rgb, 57, 214, 239), .17);
  border-radius: 18px;
}

.inspector-command__result-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #071622;
  background: var(--service-accent, var(--cyan));
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(var(--service-rgb, 57, 214, 239), .2);
}

.inspector-command__result-icon .ht-icon {
  width: 21px;
  height: 21px;
}

.inspector-command__result > div {
  min-width: 0;
}

.inspector-command__result small {
  display: block;
  margin-bottom: 3px;
  color: var(--service-accent, var(--cyan-dark));
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.inspector-command__result h3 {
  margin-bottom: 3px;
  font-size: 12px;
  line-height: 1.3;
}

.inspector-command__result p {
  margin: 0;
  color: #63798a;
  font-size: 9px;
  line-height: 1.45;
}

.inspector-command__route-cta {
  min-width: 166px;
  min-height: 42px;
  justify-content: center;
  padding: 0 14px;
  font-size: 9px;
  white-space: nowrap;
}

.inspector-command__route-cta .ht-icon {
  width: 15px;
  height: 15px;
}

.inspector-command__composer {
  margin-top: 11px;
  padding: 13px;
  background: #fff;
  border: 1px solid #dce6ec;
  border-radius: 18px;
  box-shadow: 0 9px 26px rgba(9, 31, 47, .05);
}

.inspector-command__composer label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
}

.inspector-command__composer label > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
}

.inspector-command__composer label .ht-icon {
  width: 16px;
  height: 16px;
  color: var(--service-accent, var(--cyan-dark));
}

.inspector-command__composer label small {
  color: #7e92a0;
  font-size: 8px;
}

.inspector-command__composer > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 4px;
  background: #eef4f7;
  border: 1px solid #dbe5eb;
  border-radius: 13px;
}

.inspector-command__composer input {
  min-width: 0;
  height: 40px;
  padding: 0 10px;
  color: #0c2233;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 10px;
}

.inspector-command__composer input::placeholder {
  color: #8da0ac;
}

.inspector-command__composer > div:focus-within {
  border-color: rgba(var(--service-rgb, 57, 214, 239), .65);
  box-shadow: 0 0 0 3px rgba(var(--service-rgb, 57, 214, 239), .09);
}

.inspector-command__composer button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 144px;
  padding: 0 13px;
  color: #07131f;
  background: var(--service-accent, var(--cyan));
  border-radius: 10px;
  font-size: 9px;
  font-weight: 850;
  cursor: pointer;
}

.inspector-command__composer button:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.inspector-command__composer button .ht-icon {
  width: 15px;
  height: 15px;
}

.inspector-command__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 15px;
  margin-top: 11px;
  color: #718896;
  font-size: 8px;
}

.inspector-command__footer span,
.inspector-command__footer a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.inspector-command__footer a {
  margin-left: auto;
  color: #14354a;
  font-weight: 850;
}

.inspector-command__footer .ht-icon {
  width: 13px;
  height: 13px;
  color: var(--service-accent, var(--cyan-dark));
}

body.inspector-command-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .inspector-command__panel {
    grid-template-columns: minmax(250px, 34%) minmax(0, 66%);
  }

  .inspector-command__content {
    padding: 24px 22px 18px;
  }

  .inspector-command__routes {
    grid-template-columns: 1fr;
  }

  .inspector-command__route {
    min-height: 58px;
  }

  .inspector-command__result {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .inspector-command__route-cta {
    grid-column: 1 / -1;
  }

  .inspector-command__footer a {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .inspector-guide-launch {
    max-width: 100%;
  }

  .inspector-command {
    align-items: end;
    padding: 0;
  }

  .inspector-command__panel {
    display: block;
    width: 100%;
    height: min(94svh, 900px);
    max-height: none;
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
  }

  .inspector-command[data-state="open"] .inspector-command__panel {
    transform: none;
  }

  .inspector-command__visual {
    height: 210px;
  }

  .inspector-command__brand {
    top: 14px;
    left: 16px;
    right: 60px;
    padding-bottom: 10px;
  }

  .inspector-command__brand > span:first-child {
    width: 31px;
    height: 31px;
  }

  .inspector-command__portrait {
    inset: 48px 8px 0 auto;
    width: 53%;
    justify-content: flex-end;
  }

  .inspector-command__portrait img {
    width: 100%;
    height: 170px;
  }

  .inspector-command__orbit--one {
    width: 230px;
    height: 230px;
  }

  .inspector-command__orbit--two {
    display: none;
  }

  .inspector-command__float--top {
    top: 78px;
    left: 16px;
    right: auto;
    max-width: 49%;
  }

  .inspector-command__float--bottom {
    left: 16px;
    right: auto;
    bottom: 16px;
    max-width: 52%;
  }

  .inspector-command__float b {
    white-space: normal;
  }

  .inspector-command__scan {
    display: none;
  }

  .inspector-command__content {
    height: calc(100% - 210px);
    padding: 19px 16px 105px;
  }

  .inspector-command__header {
    margin-bottom: 14px;
  }

  .inspector-command__header h2 {
    font-size: 27px;
  }

  .inspector-command__header p {
    font-size: 10px;
  }

  .inspector-command__close {
    position: fixed;
    z-index: 20;
    top: max(12px, env(safe-area-inset-top));
    right: 12px;
    color: #dff9ff;
    background: rgba(4, 17, 29, .72);
    border-color: rgba(255, 255, 255, .14);
    backdrop-filter: blur(10px);
  }

  .inspector-command__routes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .inspector-command__route {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 66px;
    padding: 8px;
  }

  .inspector-command__route-icon {
    width: 34px;
    height: 34px;
  }

  .inspector-command__route b {
    font-size: 8px;
  }

  .inspector-command__route-arrow {
    display: none;
  }

  .inspector-command__result {
    margin-top: 8px;
    padding: 11px;
  }

  .inspector-command__result h3 {
    font-size: 11px;
  }

  .inspector-command__result p {
    font-size: 8px;
  }

  .inspector-command__composer label {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .inspector-command__composer > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .inspector-command__composer button {
    min-height: 40px;
  }

  .inspector-command__footer {
    display: grid;
    gap: 6px;
  }
}

@media (max-width: 420px) {
  .inspector-guide-launch b {
    font-size: 10px;
  }

  .inspector-guide-launch > .ht-icon {
    display: none;
  }

  .inspector-command__visual {
    height: 190px;
  }

  .inspector-command__content {
    height: calc(100% - 190px);
  }

  .inspector-command__portrait img {
    height: 150px;
  }

  .inspector-command__float {
    padding: 8px 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .inspector-command *,
  .inspector-guide-launch {
    animation: none !important;
    transition: none !important;
  }

  .inspector-command__portrait {
    transform: none !important;
  }
}


/* Contextual Inspector system laboratory */
.system-lab {
  --lab-progress: 25%;
  position: relative;
  overflow: hidden;
  color: #e9f7fc;
  background:
    radial-gradient(circle at 10% 45%, rgba(var(--service-rgb), .15), transparent 30%),
    radial-gradient(circle at 92% 15%, rgba(74, 75, 199, .16), transparent 30%),
    linear-gradient(135deg, #06121e, #071a2a 52%, #050d17);
  border-block: 1px solid rgba(var(--service-rgb), .16);
  isolation: isolate;
}

.system-lab:before,
.system-lab:after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.system-lab:before {
  width: 440px;
  height: 440px;
  top: -220px;
  right: 7%;
  border: 1px solid rgba(var(--service-rgb), .14);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(var(--service-rgb), .02),
    0 0 0 110px rgba(var(--service-rgb), .016);
}

.system-lab:after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  opacity: .65;
  background: linear-gradient(90deg, transparent, var(--service-accent), transparent);
  box-shadow: 0 0 18px rgba(var(--service-rgb), .42);
}

.system-lab__grid-bg {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .34;
  background-image:
    linear-gradient(rgba(var(--service-rgb), .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--service-rgb), .035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.system-lab__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 34px;
}

.system-lab .section-kicker {
  color: var(--service-accent);
}

.system-lab__heading h2 {
  max-width: 760px;
  margin: 10px 0 0;
  color: #f2fbff;
  font-size: clamp(31px, 4.3vw, 56px);
  line-height: .98;
  letter-spacing: -.055em;
}

.system-lab__heading > p {
  margin: 0;
  color: #8da6b7;
  font-size: 13px;
  line-height: 1.72;
}

.system-lab__workspace {
  display: grid;
  grid-template-columns: minmax(255px, .67fr) minmax(0, 1.33fr);
  min-height: 500px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(var(--service-rgb), .075), transparent 35%),
    rgba(3, 12, 21, .62);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 28px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, .25), inset 0 0 0 1px rgba(var(--service-rgb), .025);
}

.system-lab__character {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(var(--service-rgb), .17), transparent 39%),
    linear-gradient(145deg, rgba(255, 255, 255, .025), transparent);
  border-right: 1px solid rgba(255, 255, 255, .08);
  isolation: isolate;
}

.system-lab__character:before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .45;
  background:
    linear-gradient(rgba(var(--service-rgb), .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--service-rgb), .06) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at center, black, transparent 74%);
}

.system-lab__character-label {
  position: absolute;
  z-index: 6;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: #cde7f2;
  background: rgba(4, 17, 29, .74);
  border: 1px solid rgba(var(--service-rgb), .25);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.system-lab__character-label i {
  width: 6px;
  height: 6px;
  background: var(--service-accent);
  border-radius: 50%;
  box-shadow: 0 0 11px rgba(var(--service-rgb), .9);
  animation: system-lab-blink 1.8s ease-in-out infinite;
}

@keyframes system-lab-blink {
  50% { opacity: .35; transform: scale(.75); }
}

.system-lab__character img {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  width: 112%;
  max-width: none;
  height: 91%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, .34));
  transform: translateX(-50%) translateY(2%);
  transition: transform .7s cubic-bezier(.2, .7, .2, 1), filter .7s ease;
}

.system-lab.is-visible .system-lab__character img {
  transform: translateX(-50%) translateY(0);
}

.system-lab__character-floor {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 15px;
  width: 75%;
  height: 36px;
  border: 1px solid rgba(var(--service-rgb), .32);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(var(--service-rgb), .18), transparent 68%);
  box-shadow: 0 0 34px rgba(var(--service-rgb), .13);
  transform: translateX(-50%) rotateX(64deg);
}

.system-lab__character-rings {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 52%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
}

.system-lab__character-rings i {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(var(--service-rgb), .2);
  border-radius: 50%;
  animation: system-lab-orbit 18s linear infinite;
}

.system-lab__character-rings i:nth-child(2) {
  inset: 15%;
  border-style: solid;
  border-color: rgba(var(--service-rgb), .11);
  animation-direction: reverse;
  animation-duration: 12s;
}

.system-lab__character-rings i:nth-child(3) {
  inset: 31%;
  border-color: rgba(var(--service-rgb), .25);
  animation-duration: 8s;
}

@keyframes system-lab-orbit {
  to { transform: rotate(360deg); }
}

.system-lab__character-scan {
  position: absolute;
  z-index: 5;
  left: 7%;
  right: 7%;
  top: 27%;
  height: 1px;
  opacity: .7;
  background: linear-gradient(90deg, transparent, var(--service-accent), transparent);
  box-shadow: 0 0 14px rgba(var(--service-rgb), .85);
  animation: system-lab-scan 3.6s ease-in-out infinite;
}

@keyframes system-lab-scan {
  0%, 100% { opacity: 0; transform: translateY(-45px); }
  15%, 84% { opacity: .7; }
  50% { transform: translateY(260px); }
}

.system-lab__console {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  min-width: 0;
  padding: 20px 22px 18px;
}

.system-lab__console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 17px;
  color: #657f91;
  border-bottom: 1px solid rgba(255, 255, 255, .075);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .11em;
}

.system-lab__console-top span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.system-lab__console-top span i {
  width: 28px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, .09);
  border-radius: 2px;
}

.system-lab__console-top span i:after {
  content: "";
  display: block;
  width: 42%;
  height: 100%;
  background: var(--service-accent);
  box-shadow: 0 0 8px rgba(var(--service-rgb), .8);
  animation: system-lab-signal 1.9s ease-in-out infinite alternate;
}

@keyframes system-lab-signal {
  to { width: 100%; }
}

.system-lab__console-top b {
  color: var(--service-accent);
  font-size: 8px;
}

.system-lab__topology {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 230px;
  margin: 4px 0;
}

.system-lab__wires {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.system-lab__wires path {
  fill: none;
  stroke: rgba(255, 255, 255, .105);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.system-lab__wires .system-lab__wire-signal {
  stroke: var(--service-accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 5 36;
  filter: drop-shadow(0 0 4px rgba(var(--service-rgb), .8));
  animation: system-lab-wire 2.8s linear infinite;
}

@keyframes system-lab-wire {
  to { stroke-dashoffset: -82; }
}

.system-lab__nodes {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.system-lab__node {
  position: relative;
  display: grid;
  justify-items: center;
  width: 100%;
  gap: 8px;
  padding: 0;
  color: #7894a5;
  text-align: center;
  background: transparent;
  cursor: pointer;
}

.system-lab__node:focus-visible {
  outline: none;
}

.system-lab__node-code {
  min-height: 11px;
  color: #506c7e;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .12em;
  transition: color .25s ease;
}

.system-lab__node-icon {
  position: relative;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: #6f8b9d;
  background:
    radial-gradient(circle, rgba(255, 255, 255, .04), transparent 67%),
    #071827;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .18), inset 0 0 18px rgba(255, 255, 255, .025);
  transform: rotate(45deg);
  transition: .3s cubic-bezier(.2, .7, .2, 1);
}

.system-lab__node-icon:before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
}

.system-lab__node-icon .ht-icon {
  width: 27px;
  height: 27px;
  transform: rotate(-45deg);
}

.system-lab__node-icon i {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 10px;
  height: 10px;
  background: #50697a;
  border: 3px solid #061521;
  border-radius: 50%;
  transition: .25s ease;
}

.system-lab__node b {
  min-height: 24px;
  color: #8ca5b4;
  font-size: 9px;
  line-height: 1.25;
  transition: color .25s ease;
}

.system-lab__node > small {
  position: absolute;
  top: 34px;
  left: calc(50% + 33px);
  color: #3f5a6b;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 7px;
}

.system-lab__node:hover .system-lab__node-icon,
.system-lab__node:focus-visible .system-lab__node-icon {
  color: #d6f5ff;
  border-color: rgba(var(--service-rgb), .42);
  transform: rotate(45deg) translate(-2px, -2px);
}

.system-lab__node:focus-visible .system-lab__node-icon {
  box-shadow: 0 0 0 4px rgba(var(--service-rgb), .13);
}

.system-lab__node.is-active .system-lab__node-code,
.system-lab__node.is-active b {
  color: #e9faff;
}

.system-lab__node.is-active .system-lab__node-icon {
  color: #06131f;
  background: var(--service-accent);
  border-color: transparent;
  box-shadow:
    0 0 0 7px rgba(var(--service-rgb), .08),
    0 0 34px rgba(var(--service-rgb), .27),
    0 13px 30px rgba(0, 0, 0, .28);
  transform: rotate(45deg) scale(1.06);
}

.system-lab__node.is-active .system-lab__node-icon i {
  background: #c7ff55;
  box-shadow: 0 0 11px rgba(199, 255, 85, .8);
}

.system-lab__readout {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 94px;
  gap: 13px;
  align-items: center;
  min-height: 98px;
  padding: 14px 16px;
  background:
    linear-gradient(105deg, rgba(var(--service-rgb), .09), transparent 50%),
    rgba(255, 255, 255, .035);
  border: 1px solid rgba(var(--service-rgb), .16);
  border-radius: 17px;
}

.system-lab.is-reading .system-lab__readout > div:nth-child(2) {
  animation: system-lab-readout .42s ease both;
}

@keyframes system-lab-readout {
  from { opacity: .2; transform: translateY(5px); filter: blur(3px); }
  to { opacity: 1; transform: none; filter: none; }
}

.system-lab__readout-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--service-accent);
  background: rgba(var(--service-rgb), .09);
  border: 1px solid rgba(var(--service-rgb), .22);
  border-radius: 13px;
}

.system-lab__readout-icon .ht-icon {
  width: 22px;
  height: 22px;
}

.system-lab__readout > div:nth-child(2) {
  min-width: 0;
}

.system-lab__readout small {
  display: block;
  margin-bottom: 3px;
  color: var(--service-accent);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .1em;
}

.system-lab__readout h3 {
  margin-bottom: 3px;
  color: #eefaff;
  font-size: 13px;
}

.system-lab__readout p {
  margin: 0;
  color: #829cab;
  font-size: 9px;
  line-height: 1.48;
}

.system-lab__progress {
  position: relative;
  display: grid;
  align-items: end;
  width: 88px;
  height: 46px;
  overflow: hidden;
  background:
    linear-gradient(to top, rgba(var(--service-rgb), .11) 1px, transparent 1px);
  background-size: 100% 9px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.system-lab__progress i {
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--lab-progress);
  height: 68%;
  background: linear-gradient(135deg, transparent 0 20%, rgba(var(--service-rgb), .22) 21%);
  border-right: 1px solid var(--service-accent);
  transition: width .42s ease;
}

.system-lab__progress span {
  position: relative;
  z-index: 2;
  justify-self: end;
  padding: 0 3px 3px;
  color: var(--service-accent);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 8px;
  font-weight: 900;
}

.system-lab__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 13px;
}

.system-lab__actions > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #607c8d;
  font-size: 8px;
}

.system-lab__actions > span .ht-icon {
  width: 14px;
  height: 14px;
  color: var(--service-accent);
}

.system-lab__actions .button {
  min-height: 42px;
  padding: 0 15px;
  font-size: 9px;
}

.system-lab__actions .button .ht-icon {
  width: 15px;
  height: 15px;
}

@media (max-width: 960px) {
  .system-lab__heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .system-lab__heading > p {
    max-width: 700px;
  }

  .system-lab__workspace {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .system-lab__nodes {
    gap: 9px;
  }

  .system-lab__node-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }

  .system-lab__node-icon:before {
    border-radius: 13px;
  }
}

@media (max-width: 760px) {
  .system-lab {
    padding-block: 68px;
  }

  .system-lab__heading {
    margin-bottom: 24px;
  }

  .system-lab__heading h2 {
    font-size: 36px;
  }

  .system-lab__workspace {
    display: block;
    border-radius: 22px;
  }

  .system-lab__character {
    height: 300px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .system-lab__character img {
    width: 72%;
    height: 96%;
  }

  .system-lab__character-rings {
    width: 260px;
    height: 260px;
  }

  .system-lab__console {
    padding: 17px 13px 14px;
  }

  .system-lab__topology {
    min-height: 210px;
    margin-inline: -2px;
  }

  .system-lab__nodes {
    gap: 4px;
  }

  .system-lab__node {
    gap: 7px;
  }

  .system-lab__node-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .system-lab__node-icon:before {
    inset: 5px;
    border-radius: 11px;
  }

  .system-lab__node-icon .ht-icon {
    width: 22px;
    height: 22px;
  }

  .system-lab__node b {
    font-size: 7px;
  }

  .system-lab__node > small {
    display: none;
  }

  .system-lab__readout {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 12px;
  }

  .system-lab__readout-icon {
    width: 42px;
    height: 42px;
  }

  .system-lab__progress {
    grid-column: 1 / -1;
    width: 100%;
    height: 24px;
  }

  .system-lab__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .system-lab__actions .button {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .system-lab__heading h2 {
    font-size: 31px;
  }

  .system-lab__character {
    height: 265px;
  }

  .system-lab__character img {
    width: 88%;
  }

  .system-lab__console-top {
    letter-spacing: .06em;
  }

  .system-lab__topology {
    min-height: 190px;
  }

  .system-lab__node-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .system-lab__node-icon:before {
    display: none;
  }

  .system-lab__node-icon .ht-icon {
    width: 19px;
    height: 19px;
  }

  .system-lab__node-code {
    font-size: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .system-lab *,
  .system-lab *:before,
  .system-lab *:after {
    animation: none !important;
    transition: none !important;
  }
}


/* v8: compact responsive service cards */
.service-card {
  min-height: 292px;
  padding: 24px;
}

/* scene-ui marks cards as interaction surfaces; keep the character out of document flow */
.service-card.interaction-surface > .service-card__visual {
  position: absolute;
  right: -10px;
  bottom: -14px;
  z-index: 1;
  width: 158px;
  height: 218px;
}

.service-card--wide.interaction-surface > .service-card__visual {
  right: -4px;
  bottom: -10px;
  width: 188px;
  height: 252px;
}

.service-card__icon {
  margin-bottom: 18px;
}

.service-card h3 {
  max-width: calc(100% - 88px);
}

.service-card p {
  max-width: calc(100% - 98px);
}

.service-card--wide p {
  max-width: calc(100% - 142px);
}

@media (max-width: 1180px) {
  .service-card,
  .service-card--wide {
    min-height: 278px;
  }

  .service-card.interaction-surface > .service-card__visual,
  .service-card--wide.interaction-surface > .service-card__visual {
    right: -10px;
    bottom: -12px;
    width: 142px;
    height: 198px;
  }

  .service-card h3 {
    max-width: calc(100% - 74px);
    font-size: 23px;
  }

  .service-card p,
  .service-card--wide p {
    max-width: calc(100% - 84px);
  }
}

@media (max-width: 760px) {
  .services-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .services-section .section-heading {
    margin-bottom: 24px;
  }

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

  .service-card,
  .service-card--wide {
    min-height: 238px;
    padding: 20px;
    border-radius: 19px;
  }

  .service-card.interaction-surface > .service-card__visual,
  .service-card--wide.interaction-surface > .service-card__visual {
    right: -6px;
    bottom: -8px;
    width: 112px;
    height: 160px;
  }

  .service-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 13px;
    border-radius: 13px;
  }

  .service-card__icon > svg {
    width: 22px;
    height: 22px;
  }

  .service-card__eyebrow {
    font-size: 9px;
  }

  .service-card h3 {
    max-width: calc(100% - 68px);
    margin: 6px 0 8px;
    font-size: 22px;
  }

  .service-card p,
  .service-card--wide p {
    max-width: calc(100% - 72px);
    margin-bottom: 18px;
    font-size: 12.5px;
    line-height: 1.48;
  }

  .service-card__link {
    bottom: 18px;
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .service-card,
  .service-card--wide {
    min-height: 226px;
    padding: 18px;
  }

  .service-card.interaction-surface > .service-card__visual,
  .service-card--wide.interaction-surface > .service-card__visual {
    right: -8px;
    bottom: -7px;
    width: 96px;
    height: 142px;
  }

  .service-card h3 {
    max-width: calc(100% - 54px);
    font-size: 20px;
  }

  .service-card p,
  .service-card--wide p {
    max-width: calc(100% - 58px);
    font-size: 12px;
  }
}

/* v9: authentic workshop section and gallery */
.workshop-preview {
  position: relative;
  overflow: hidden;
  color: #eef8ff;
  background:
    radial-gradient(circle at 12% 12%, rgba(183, 238, 53, .11), transparent 28%),
    radial-gradient(circle at 78% 45%, rgba(57, 214, 239, .18), transparent 33%),
    #07131f;
  isolation: isolate;
}

.workshop-preview:before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 96%);
}

.workshop-preview .section-heading p,
.workshop-page-hero p {
  color: #9eb2c3;
}

.workshop-preview__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, .95fr);
  align-items: center;
  gap: 28px;
}

.workshop-preview__cta {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(57, 214, 239, .18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 62%, rgba(183,238,53,.08), transparent 45%),
    linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  box-shadow: inset 0 1px rgba(255,255,255,.06), 0 24px 70px rgba(0,0,0,.24);
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.workshop-preview__cta:hover,
.workshop-preview__cta:focus-visible {
  border-color: rgba(183, 238, 53, .55);
  box-shadow: inset 0 1px rgba(255,255,255,.08), 0 28px 76px rgba(0,0,0,.32), 0 0 34px rgba(57,214,239,.12);
  transform: translateY(-4px);
}

.workshop-preview__cta img {
  width: min(100%, 780px);
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(0,0,0,.32));
  transition: transform .28s ease;
}

.workshop-preview__cta:hover img {
  transform: scale(1.018);
}

.workshop-preview__side {
  display: grid;
  gap: 14px;
}

.workshop-preview__mosaic {
  min-height: 335px;
  display: grid;
  grid-template-columns: 1.16fr .84fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
}

.workshop-preview__photo {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 19px;
  background: #10202f;
  box-shadow: 0 14px 38px rgba(0,0,0,.2);
}

.workshop-preview__photo:first-child {
  grid-row: 1 / 3;
}

.workshop-preview__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .38s ease;
}

.workshop-preview__photo:hover img {
  transform: scale(1.045);
}

.workshop-preview__photo span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 8px 10px;
  color: #effaff;
  background: rgba(5, 17, 28, .76);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 760;
}

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

.workshop-preview__fact {
  min-height: 62px;
  padding: 11px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cfe0ea;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
}

.workshop-preview__fact .context-glyph {
  width: 36px;
  height: 36px;
  color: var(--lime);
  background: rgba(183,238,53,.08);
  border-color: rgba(183,238,53,.18);
}

.workshop-preview__fact span:last-child {
  display: grid;
  gap: 2px;
}

.workshop-preview__fact b {
  color: #fff;
  font-size: 11px;
}

.workshop-preview__fact small {
  color: #8299aa;
  font-size: 9px;
}

.workshop-preview__actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.workshop-page-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 45%, rgba(57,214,239,.16), transparent 34%),
    radial-gradient(circle at 16% 20%, rgba(183,238,53,.08), transparent 30%),
    #07111f;
}

.workshop-page-hero .inner-hero__layout {
  grid-template-columns: minmax(0, .88fr) minmax(430px, 1.12fr);
  min-height: 520px;
}

.workshop-page-hero__asset {
  min-height: 430px;
  display: grid;
  place-items: center;
}

.workshop-page-hero__asset img {
  width: min(760px, 112%);
  max-width: none;
  filter: drop-shadow(0 30px 42px rgba(0,0,0,.35));
}

.workshop-page-hero__actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.workshop-gallery-section {
  background: #f3f6f9;
}

.workshop-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 155px;
  gap: 12px;
}

.workshop-gallery__item {
  position: relative;
  grid-column: span 4;
  grid-row: span 2;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(7,17,31,.1);
  border-radius: 20px;
  background: #dfe7ed;
  box-shadow: 0 13px 34px rgba(7,17,31,.08);
  cursor: zoom-in;
  text-align: left;
}

.workshop-gallery__item:nth-child(1) {
  grid-column: span 7;
  grid-row: span 3;
}

.workshop-gallery__item:nth-child(2) {
  grid-column: span 5;
  grid-row: span 3;
}

.workshop-gallery__item:nth-child(6),
.workshop-gallery__item:nth-child(7) {
  grid-column: span 6;
}

.workshop-gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .4s ease, filter .3s ease;
}

.workshop-gallery__item:hover img,
.workshop-gallery__item:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.02);
}

.workshop-gallery__item span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: white;
  background: linear-gradient(90deg, rgba(4,16,27,.9), rgba(4,16,27,.65));
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 760;
}

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

.workshop-capability {
  min-height: 235px;
  padding: 25px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 21px;
  box-shadow: var(--shadow-soft);
}

.workshop-capability .context-glyph {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
}

.workshop-capability h3 {
  margin: 0 0 10px;
  font-size: 21px;
  letter-spacing: -.035em;
}

.workshop-capability p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.service-workshop-cta {
  padding: 26px 0 30px;
  background: #edf2f6;
}

.service-workshop-cta__link {
  position: relative;
  min-height: 230px;
  padding: 30px 42% 30px 34px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #eff9ff;
  background:
    radial-gradient(circle at 82% 50%, rgba(57,214,239,.2), transparent 32%),
    linear-gradient(125deg, #07131f, #0b2131 72%, #07131f);
  border: 1px solid rgba(57,214,239,.18);
  border-radius: 25px;
  box-shadow: 0 18px 55px rgba(7,17,31,.18);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.service-workshop-cta__link:hover,
.service-workshop-cta__link:focus-visible {
  border-color: rgba(183,238,53,.5);
  box-shadow: 0 22px 65px rgba(7,17,31,.25), 0 0 26px rgba(57,214,239,.1);
  transform: translateY(-3px);
}

.service-workshop-cta__copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.service-workshop-cta__copy small {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-workshop-cta__copy h2 {
  margin: 10px 0 10px;
  font-size: clamp(27px, 3.2vw, 42px);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.service-workshop-cta__copy p {
  max-width: 530px;
  margin: 0;
  color: #99afbf;
  font-size: 13px;
  line-height: 1.6;
}

.service-workshop-cta__more {
  margin-top: 17px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
}

.service-workshop-cta__visual {
  position: absolute;
  top: 50%;
  right: -12px;
  width: 44%;
  transform: translateY(-50%);
  filter: drop-shadow(0 18px 26px rgba(0,0,0,.3));
}

.contact-workshop-teaser {
  padding-top: 0;
}

.contact-workshop-teaser__layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  gap: 26px;
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.contact-workshop-teaser__copy h2 {
  margin: 10px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.contact-workshop-teaser__copy p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.contact-workshop-teaser__photos {
  min-height: 285px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 9px;
}

.contact-workshop-teaser__photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.contact-workshop-teaser__photos img:first-child {
  grid-row: 1 / 3;
}

.workshop-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  padding: 0;
  border: 0;
  background: rgba(2,8,14,.92);
}

.workshop-lightbox::backdrop {
  background: rgba(2,8,14,.92);
}

.workshop-lightbox__inner {
  width: 100%;
  height: 100%;
  padding: 72px 84px 42px;
  display: grid;
  grid-template-rows: minmax(0,1fr) auto;
  place-items: center;
  gap: 16px;
}

.workshop-lightbox img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}

.workshop-lightbox__caption {
  color: #dceaf2;
  font-size: 13px;
  text-align: center;
}

.workshop-lightbox__close,
.workshop-lightbox__nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.workshop-lightbox__close {
  top: 18px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: 24px;
}

.workshop-lightbox__nav {
  top: 50%;
  width: 48px;
  height: 48px;
  font-size: 25px;
  transform: translateY(-50%);
}

.workshop-lightbox__nav--prev { left: 20px; }
.workshop-lightbox__nav--next { right: 20px; }

@media (max-width: 1080px) {
  .workshop-preview__layout {
    grid-template-columns: 1fr;
  }

  .workshop-preview__cta {
    min-height: 350px;
  }

  .workshop-preview__side {
    grid-template-columns: 1fr .72fr;
    align-items: stretch;
  }

  .workshop-preview__mosaic {
    min-height: 300px;
  }

  .workshop-preview__facts {
    grid-template-columns: 1fr;
  }

  .workshop-page-hero .inner-hero__layout {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .workshop-page-hero__asset {
    min-height: 360px;
  }

  .workshop-page-hero__asset img {
    width: min(760px, 100%);
  }

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

  .service-workshop-cta__link {
    padding-right: 38%;
  }

  .service-workshop-cta__visual {
    width: 42%;
  }
}

@media (max-width: 760px) {
  .workshop-preview {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .workshop-preview__cta {
    min-height: 240px;
    border-radius: 20px;
  }

  .workshop-preview__cta img {
    max-height: 270px;
  }

  .workshop-preview__side {
    display: grid;
    grid-template-columns: 1fr;
  }

  .workshop-preview__mosaic {
    min-height: 390px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 160px;
  }

  .workshop-preview__photo:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }

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

  .workshop-page-hero .inner-hero__layout {
    min-height: auto;
  }

  .workshop-page-hero__asset {
    min-height: 280px;
  }

  .workshop-gallery {
    grid-template-columns: repeat(2, minmax(0,1fr));
    grid-auto-rows: 180px;
  }

  .workshop-gallery__item,
  .workshop-gallery__item:nth-child(1),
  .workshop-gallery__item:nth-child(2),
  .workshop-gallery__item:nth-child(6),
  .workshop-gallery__item:nth-child(7) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .workshop-gallery__item:first-child {
    grid-column: 1 / 3;
    grid-row: span 2;
  }

  .workshop-capability-grid {
    grid-template-columns: 1fr;
  }

  .workshop-capability {
    min-height: 0;
  }

  .service-workshop-cta {
    padding: 16px 0 22px;
  }

  .service-workshop-cta__link {
    min-height: 330px;
    padding: 24px 22px 170px;
    align-items: flex-start;
    border-radius: 20px;
  }

  .service-workshop-cta__visual {
    top: auto;
    right: 50%;
    bottom: -18px;
    width: min(430px, 94%);
    transform: translateX(50%);
  }

  .contact-workshop-teaser__layout {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .contact-workshop-teaser__photos {
    min-height: 360px;
  }

  .workshop-lightbox__inner {
    padding: 64px 16px 32px;
  }

  .workshop-lightbox__nav {
    top: auto;
    bottom: 18px;
  }

  .workshop-lightbox__nav--prev { left: 22px; }
  .workshop-lightbox__nav--next { right: 22px; }
}

@media (max-width: 430px) {
  .workshop-preview__mosaic {
    min-height: 330px;
    grid-template-rows: 190px 130px;
  }

  .workshop-preview__facts {
    grid-template-columns: 1fr;
  }

  .workshop-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 210px;
  }

  .workshop-gallery__item,
  .workshop-gallery__item:first-child {
    grid-column: 1;
    grid-row: span 1;
  }

  .contact-workshop-teaser__photos {
    min-height: 315px;
    grid-template-rows: 180px 125px;
  }

  .contact-workshop-teaser__photos img:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .workshop-preview *,
  .workshop-gallery__item img,
  .service-workshop-cta__link {
    transition: none !important;
  }
}

/* v11: responsive layout, viewport safety and cross-device optimization */
:root {
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --app-height: 100dvh;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  overflow-x: clip;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid color-mix(in srgb, var(--service-accent, var(--cyan)) 72%, white);
  outline-offset: 3px;
}

.shell {
  width: min(1240px, calc(100% - clamp(28px, 4.5vw, 72px)));
}

.section {
  padding-block: clamp(68px, 7.5vw, 108px);
}

.section-heading h2,
.workflow-intro h2,
.price-copy h2,
.faq-intro h2,
.request-copy h2,
.contact-band h2,
.price-explainer h2,
.location-panel h2,
.service-detail-grid h2,
.hero h1,
.subhero h1,
.inner-hero h1 {
  text-wrap: balance;
  overflow-wrap: anywhere;
}

p,
li,
small,
.service-card__eyebrow {
  overflow-wrap: anywhere;
}

.hero,
.hero__inner {
  min-height: clamp(650px, calc(var(--app-height) - 181px), 790px);
}

.hero__visual {
  min-height: clamp(650px, calc(var(--app-height) - 181px), 790px);
}

.hero__copy {
  padding-block: clamp(72px, 8vh, 104px);
}

.hero__status-card {
  top: clamp(64px, 9vh, 88px);
  left: clamp(12px, 2vw, 28px);
  right: auto;
  width: min(220px, calc(100% - 32px));
}

.hero__visual .inspector--hero {
  right: clamp(-58px, -3vw, -26px);
  bottom: -2px;
  width: min(530px, 43vw);
}

.site-header__inner {
  gap: clamp(16px, 2.4vw, 36px);
}

.desktop-nav {
  gap: clamp(15px, 1.8vw, 26px);
}

.service-grid,
.review-grid,
.included-grid,
.workshop-capability-grid {
  align-items: stretch;
}

.service-card,
.review-card,
.workshop-capability {
  height: 100%;
}

.button,
.menu-toggle,
.mobile-nav a,
.service-dock__link,
.workshop-gallery__item {
  touch-action: manipulation;
}

input,
select,
textarea {
  min-width: 0;
}

textarea {
  resize: vertical;
}

.workshop-preview__cta,
.workshop-preview__photo,
.workshop-gallery__item,
.contact-workshop-teaser__photos img {
  transform: translateZ(0);
}

.workshop-preview__cta img,
.workshop-page-hero__asset img,
.service-workshop-cta__visual img {
  height: auto;
}

.workshop-lightbox {
  overscroll-behavior: contain;
}

.workshop-lightbox__inner {
  min-height: var(--app-height);
  padding-top: max(64px, env(safe-area-inset-top));
  padding-right: max(72px, var(--safe-right));
  padding-bottom: max(32px, var(--safe-bottom));
  padding-left: max(72px, var(--safe-left));
}

@media (min-width: 1500px) {
  .shell {
    width: min(1320px, calc(100% - 96px));
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(500px, .95fr);
  }

  .hero__visual .inspector--hero {
    width: 560px;
  }

  .workshop-preview__layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr);
  }
}

@media (min-width: 821px) and (max-width: 1180px) {
  .shell {
    width: min(100% - 40px, 1040px);
  }

  .hero,
  .hero__inner,
  .hero__visual {
    min-height: 660px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
    gap: 12px;
  }

  .hero h1 {
    font-size: clamp(48px, 5.8vw, 60px);
  }

  .hero__visual .inspector--hero {
    right: -52px;
    width: min(470px, 46vw);
  }

  .hero__status-card {
    top: 68px;
    left: 8px;
  }

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

  .service-dock__links {
    scroll-snap-type: x proximity;
  }

  .service-dock__link {
    scroll-snap-align: center;
  }

  .workshop-page-hero .inner-hero__layout {
    min-height: 480px;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: calc(82px + var(--safe-bottom));
  }

  .site-page {
    min-height: var(--app-height);
  }

  .shell {
    width: min(100% - 28px, 720px);
  }

  .topline {
    font-size: 11px;
  }

  .topline__inner {
    min-height: 30px;
  }

  .site-header__inner {
    min-height: 66px;
  }

  .mobile-nav {
    max-height: calc(var(--app-height) - 96px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .mobile-nav a:not(.button) {
    min-height: 48px;
  }

  .service-dock {
    top: 66px;
  }

  body.has-scrolled .service-dock {
    top: 58px;
  }

  .service-dock__links {
    padding-bottom: 3px;
    scroll-padding-inline: 12px;
    scroll-snap-type: x mandatory;
  }

  .service-dock__link {
    min-height: 52px;
    scroll-snap-align: center;
  }

  .hero,
  .hero__inner {
    min-height: auto;
  }

  .hero__copy {
    padding: clamp(44px, 8vw, 68px) 0 20px;
  }

  .hero h1 {
    max-width: 690px;
    font-size: clamp(42px, 10vw, 61px);
  }

  .hero__lead {
    max-width: 640px;
    font-size: clamp(15px, 2.5vw, 17px);
  }

  .hero__visual {
    min-height: clamp(470px, 76vw, 560px);
    max-height: 610px;
  }

  .hero__visual .inspector--hero {
    right: 50%;
    bottom: 0;
    width: clamp(350px, 70vw, 455px);
    transform: translateX(55%);
  }

  .hero__status-card {
    top: 22px;
    left: 8px;
    width: min(198px, 48%);
    padding: 12px 13px;
  }

  .hero__status-card small {
    font-size: 9px;
  }

  .hero-service-node {
    padding: 5px;
    grid-template-columns: 34px;
  }

  .hero-service-node .context-glyph {
    width: 34px;
    height: 34px;
  }

  .hero-service-node--pc {
    top: 215px;
    left: 4px;
  }

  .hero-service-node--upgrade {
    top: 334px;
    left: 2px;
  }

  .hero-service-node--laptop,
  .hero-service-node--data {
    display: none;
  }

  .character-cta {
    right: 0;
    bottom: 12px;
    left: 0;
  }

  .section {
    padding-block: clamp(58px, 10vw, 78px);
  }

  .section-heading {
    margin-bottom: clamp(26px, 5vw, 38px);
  }

  .section-heading--split {
    gap: 10px;
  }

  .section-heading h2,
  .workflow-intro h2,
  .price-copy h2,
  .faq-intro h2,
  .request-copy h2,
  .contact-band h2,
  .price-explainer h2,
  .location-panel h2,
  .service-detail-grid h2 {
    font-size: clamp(31px, 7vw, 43px);
  }

  .service-card,
  .service-card--wide {
    min-height: 226px;
  }

  .diagnostic-card__visual {
    min-height: clamp(330px, 76vw, 430px);
  }

  .diagnostic-card__visual .inspector--side img {
    right: 50%;
    bottom: -38px;
    width: clamp(310px, 72vw, 390px);
    transform: translateX(58%);
  }

  .diagnostic-card__visual .inspector__bubble {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .subhero__visual {
    min-height: clamp(410px, 75vw, 500px);
  }

  .subhero__visual .inspector--hero {
    width: clamp(340px, 70vw, 420px);
  }

  .inner-hero,
  .inner-hero__layout {
    min-height: auto;
  }

  .inner-hero__layout {
    padding-block: 42px 0;
  }

  .inner-hero__layout > .inspector {
    height: 300px;
    margin-top: 6px;
  }

  .inner-hero__layout > .inspector img {
    bottom: -250px;
    width: 330px;
  }

  .location-panel {
    min-height: 520px;
  }

  .workshop-preview__cta {
    min-height: clamp(220px, 55vw, 330px);
  }

  .workshop-page-hero__asset {
    min-height: clamp(240px, 55vw, 340px);
  }

  .service-workshop-cta__link {
    min-height: 300px;
    padding-bottom: 150px;
  }

  .mobile-action-bar {
    left: max(8px, var(--safe-left));
    right: max(8px, var(--safe-right));
    bottom: max(8px, var(--safe-bottom));
  }

  .helper {
    right: max(10px, var(--safe-right));
    bottom: calc(82px + var(--safe-bottom));
  }

  .site-footer {
    padding-bottom: calc(30px + var(--safe-bottom));
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 22px, 520px);
  }

  .brand {
    gap: 8px;
  }

  .brand__copy small {
    display: none;
  }

  .brand__copy b {
    font-size: 15px;
  }

  .hero__copy {
    padding-top: 38px;
  }

  .hero h1,
  .subhero h1,
  .inner-hero h1 {
    font-size: clamp(36px, 10.2vw, 44px);
    line-height: 1.01;
  }

  .hero__actions,
  .subhero__actions,
  .workshop-page-hero__actions,
  .workshop-preview__actions,
  .contact-band__actions {
    gap: 9px;
  }

  .hero__visual {
    min-height: clamp(430px, 116vw, 510px);
  }

  .hero__visual .inspector--hero {
    width: clamp(315px, 93vw, 375px);
    transform: translateX(54%);
  }

  .hero__status-card {
    top: 12px;
    left: 0;
    width: 164px;
    padding: 10px 11px;
    border-radius: 13px;
  }

  .hero__status-card b {
    font-size: 12px;
  }

  .hero__status-card small,
  .hero__status-card .telemetry-meter,
  .hero__status-card .visual-telemetry-caption {
    display: none;
  }

  .hero-service-node--pc {
    top: 188px;
  }

  .hero-service-node--upgrade {
    top: 292px;
  }

  .character-cta {
    min-height: 64px;
  }

  .trust-strip__grid {
    gap: 0;
  }

  .service-card,
  .service-card--wide {
    min-height: 214px;
    padding: 17px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card p,
  .service-card--wide p {
    max-width: calc(100% - 52px);
    font-size: 11.7px;
  }

  .workflow-list li {
    padding-block: 21px;
  }

  .diagnostic-card__content {
    padding: 24px 16px;
  }

  .diagnostic-progress__step > span:last-child {
    display: none;
  }

  .diagnostic-card__visual {
    min-height: 330px;
  }

  .diagnostic-card__visual .inspector--side img {
    width: 315px;
  }

  .reviews-stage {
    min-height: 190px;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea,
  .diagnostic-card input,
  .diagnostic-card select,
  .diagnostic-card textarea {
    font-size: 16px;
  }

  .subhero__visual {
    min-height: 410px;
  }

  .service-context-strip nav {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .service-context-strip nav::-webkit-scrollbar {
    display: none;
  }

  .service-context-strip nav a {
    min-width: 170px;
    min-height: 68px;
    border-right: 1px solid rgba(255,255,255,.08);
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .inner-hero__layout {
    padding-top: 34px;
  }

  .inner-hero__layout > .inspector {
    height: 255px;
  }

  .inner-hero__layout > .inspector img {
    bottom: -235px;
    width: 300px;
  }

  .price-table {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .price-table__head,
  .price-table__row {
    min-width: 430px;
  }

  .location-panel {
    min-height: 460px;
  }

  .workshop-preview__mosaic {
    min-height: 0;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .workshop-preview__mosaic::-webkit-scrollbar {
    display: none;
  }

  .workshop-preview__photo,
  .workshop-preview__photo:first-child {
    flex: 0 0 min(82vw, 340px);
    min-height: 220px;
    grid-row: auto;
    grid-column: auto;
    scroll-snap-align: center;
  }

  .workshop-gallery {
    display: flex;
    gap: 11px;
    overflow-x: auto;
    padding: 2px 2px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .workshop-gallery::-webkit-scrollbar {
    display: none;
  }

  .workshop-gallery__item,
  .workshop-gallery__item:first-child,
  .workshop-gallery__item:nth-child(1),
  .workshop-gallery__item:nth-child(2),
  .workshop-gallery__item:nth-child(6),
  .workshop-gallery__item:nth-child(7) {
    flex: 0 0 min(86vw, 360px);
    height: 240px;
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: center;
  }

  .workshop-capability {
    padding: 21px;
  }

  .contact-workshop-teaser__photos {
    min-height: 0;
    display: flex;
    overflow-x: auto;
    gap: 9px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .contact-workshop-teaser__photos::-webkit-scrollbar {
    display: none;
  }

  .contact-workshop-teaser__photos img,
  .contact-workshop-teaser__photos img:first-child {
    flex: 0 0 min(84vw, 330px);
    height: 220px;
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: center;
  }

  .workshop-lightbox__inner {
    padding: max(58px, env(safe-area-inset-top)) 10px calc(76px + var(--safe-bottom));
  }

  .workshop-lightbox img {
    max-height: calc(var(--app-height) - 150px);
    border-radius: 12px;
  }

  .workshop-lightbox__caption {
    max-width: calc(100% - 92px);
    font-size: 11px;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-bottom {
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .shell {
    width: calc(100% - 18px);
  }

  .brand__copy {
    display: none;
  }

  .hero h1,
  .subhero h1,
  .inner-hero h1 {
    font-size: clamp(34px, 10.5vw, 40px);
  }

  .hero__lead {
    font-size: 14px;
  }

  .hero__visual {
    min-height: 420px;
  }

  .hero__visual .inspector--hero {
    width: 315px;
  }

  .hero__status-card {
    width: 150px;
  }

  .hero-service-node--pc {
    top: 174px;
  }

  .hero-service-node--upgrade {
    top: 270px;
  }

  .button {
    padding-inline: 16px;
  }

  .mobile-action-bar {
    grid-template-columns: 1fr 1fr 64px 1fr 1fr;
    padding-inline: 5px;
  }

  .mobile-action-bar>a,
  .mobile-action-bar>button {
    font-size: 6.5px;
  }

  .service-card p,
  .service-card--wide p {
    max-width: calc(100% - 42px);
  }

  .helper__card {
    width: calc(100vw - 18px);
  }
}

@media (min-width: 821px) and (max-height: 790px) {
  .hero,
  .hero__inner,
  .hero__visual {
    min-height: 620px;
  }

  .hero__copy {
    padding-block: 60px;
  }

  .hero__visual .inspector--hero {
    width: min(470px, 41vw);
  }

  .hero__status-card {
    top: 52px;
  }
}

@media (hover: none), (pointer: coarse) {
  .button:hover,
  .service-card:hover,
  .workshop-preview__cta:hover,
  .workshop-gallery__item:hover img,
  .service-workshop-cta__link:hover {
    transform: none;
  }

  .depth-reactive,
  .interaction-surface {
    transform: none !important;
  }
}


/* v11.1: breakpoint corrections */
@media (min-width: 761px) and (max-width: 820px) {
  body { padding-bottom: 0; }
  .site-footer { padding-bottom: 0; }
}


/* v11.2: nine-route dock and mobile Inspector portrait refinement */
.service-dock__links {
  grid-template-columns: repeat(9, minmax(68px, 1fr));
}

@media (max-width: 1050px) {
  .service-dock__links {
    grid-template-columns: repeat(9, 84px);
  }
}

@media (max-width: 760px) {
  .service-dock__links {
    grid-template-columns: repeat(9, 76px);
  }

  .mobile-action-bar__portrait {
    top: -23px;
    width: 70px;
    height: 70px;
  }

  .mobile-action-bar__portrait img {
    top: -7px;
    left: -8px;
    width: 86px;
    height: auto;
    max-width: none;
    object-fit: initial;
  }
}

/* v11.3: keep first-screen trust markers above the mobile action bar */
@media (max-width: 760px) {
  .hero__proof {
    margin-bottom: 76px;
  }
}

/* v12: mobile-first composition, local SEO blocks and interaction safety */
:root {
  --mobile-bar-height: 72px;
  --layout-gutter: clamp(10px, 3vw, 26px);
}

html {
  overflow-x: clip;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body,
.site-page,
main {
  min-width: 0;
  overflow-x: clip;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  color: #07111f;
  background: #b9f42a;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .24);
  font-size: 13px;
  font-weight: 850;
  transform: translateY(-160%);
  transition: transform .18s ease;
}

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

section[id],
.contact-band[id] {
  scroll-margin-top: 150px;
}

main > section:not(:first-child) {
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}

/* Local-search content is intentionally visible, readable and not keyword-stuffed. */
.local-intent-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(var(--service-rgb, 22, 200, 239), .11), transparent 34%),
    linear-gradient(180deg, #f7fbfd 0%, #eef5f8 100%);
  border-top: 1px solid rgba(7, 17, 31, .07);
  border-bottom: 1px solid rgba(7, 17, 31, .07);
}

.local-intent-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 185, 232, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 185, 232, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  pointer-events: none;
}

.local-intent-section > .shell {
  position: relative;
  z-index: 1;
}

.local-intent-section__heading {
  max-width: 890px;
}

.local-intent-section__heading p {
  max-width: 840px;
}

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

.local-intent-card {
  position: relative;
  min-width: 0;
  padding: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(7, 17, 31, .1);
  border-radius: 20px;
  box-shadow: 0 14px 38px rgba(7, 24, 37, .07);
}

.local-intent-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  background: var(--service-accent, #16c8ef);
  border-radius: 50%;
  content: "";
  opacity: .07;
}

.local-intent-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--service-accent, #0aa8d2);
  background: rgba(var(--service-rgb, 22, 200, 239), .1);
  border: 1px solid rgba(var(--service-rgb, 22, 200, 239), .18);
  border-radius: 13px;
}

.local-intent-card__icon .ht-icon {
  width: 21px;
  height: 21px;
}

.local-intent-card h3 {
  margin: 17px 0 12px;
  color: #07111f;
  font-size: 21px;
  line-height: 1.16;
  letter-spacing: -.025em;
}

.local-intent-card ul {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.local-intent-card li {
  position: relative;
  padding-left: 18px;
  color: #405667;
  font-size: 13px;
  line-height: 1.52;
}

.local-intent-card li::before {
  position: absolute;
  top: .62em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--service-accent, #16c8ef);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(var(--service-rgb, 22, 200, 239), .1);
  content: "";
}

.local-intent-footer {
  margin-top: 18px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #284454;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(7, 17, 31, .08);
  border-radius: 15px;
  font-size: 12px;
}

.local-intent-footer > span,
.local-intent-footer nav,
.local-intent-footer a {
  display: inline-flex;
  align-items: center;
}

.local-intent-footer > span {
  gap: 8px;
  font-weight: 760;
}

.local-intent-footer > span .ht-icon {
  color: var(--service-accent, #0aa8d2);
}

.local-intent-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.local-intent-footer a {
  min-height: 34px;
  padding: 7px 10px;
  color: #0a6985;
  background: #fff;
  border: 1px solid rgba(7, 17, 31, .09);
  border-radius: 9px;
  font-weight: 760;
}

.local-intent-footer a:hover,
.local-intent-footer a:focus-visible {
  color: #07111f;
  border-color: var(--service-accent, #16c8ef);
  outline: none;
}

/* Desktop hero balance: text and Inspector have independent safe areas. */
@media (min-width: 1081px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.06fr) minmax(430px, .82fr);
    gap: clamp(32px, 4vw, 72px);
  }

  .hero__copy {
    position: relative;
    z-index: 6;
    min-width: 0;
  }

  .hero__visual,
  .subhero__visual {
    min-width: 0;
  }

  .hero__visual .inspector--hero {
    right: clamp(-58px, -3vw, -22px);
    width: min(520px, 39vw);
  }

  .hero__status-card {
    top: 72px;
    right: auto;
    left: 10px;
    width: 216px;
  }

  .subhero__accent-card {
    top: 62px;
    right: auto;
    left: 8px;
    width: 220px;
  }

  .is-primary-hero-visible .helper {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px);
  }

  .helper {
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }

  .helper__button {
    min-width: 230px;
    padding-left: 76px;
  }

  .helper__portrait {
    left: 6px;
    bottom: 4px;
    width: 62px;
    height: 62px;
    overflow: hidden;
    background: linear-gradient(155deg, #071b2a, #0b4055);
    border: 1px solid rgba(22, 200, 239, .35);
    border-radius: 15px;
  }

  .helper__portrait img {
    top: -7px;
    left: 50%;
    width: 106px;
    max-width: none;
    transform: translateX(-50%);
  }
}

@media (min-width: 821px) and (max-width: 1080px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(350px, .72fr);
    gap: 24px;
  }

  .hero__visual .inspector--hero {
    right: -72px;
    width: min(470px, 44vw);
  }

  .hero__status-card {
    top: 56px;
    right: auto;
    left: 4px;
    width: 195px;
  }

  .subhero__accent-card {
    top: 46px;
    right: auto;
    left: 5px;
    width: 195px;
  }

  .hero-service-node--laptop,
  .hero-service-node--data {
    right: -12px;
  }
}

/* Tablet stack: preserve the full character without letting it enter the copy column. */
@media (min-width: 761px) and (max-width: 900px) {
  .hero__inner,
  .subhero__layout,
  .inner-hero__layout {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__copy,
  .subhero__copy,
  .inner-hero__layout > div:first-child {
    position: relative;
    z-index: 5;
  }

  .hero__visual,
  .subhero__visual {
    min-height: 570px;
    margin-top: 0;
    overflow: hidden;
  }

  .hero__visual .inspector--hero,
  .subhero__visual .inspector--hero {
    right: auto !important;
    bottom: 28px !important;
    left: 50% !important;
    width: min(500px, 68vw) !important;
    transform: translateX(-50%) !important;
  }

  .hero__status-card,
  .subhero__accent-card {
    top: 70px;
    right: auto;
    left: 24px;
  }
}

/* Mobile first-screen composition. Decorative cards are removed from faces; the character gets its own block. */
@media (max-width: 760px) {
  :root {
    --mobile-bar-height: 68px;
  }

  body {
    padding-bottom: calc(var(--mobile-bar-height) + env(safe-area-inset-bottom, 0px));
  }

  .site-footer {
    padding-bottom: calc(26px + env(safe-area-inset-bottom, 0px));
  }

  .shell {
    width: min(100% - 20px, 1180px);
  }

  .topline__inner {
    min-height: 30px;
    font-size: 10px;
  }

  .site-header__inner {
    min-height: 66px;
  }

  .service-dock {
    top: 66px;
  }

  body.has-scrolled .service-dock {
    top: 58px;
  }

  .service-dock__inner {
    min-height: 58px;
  }

  .service-dock__links {
    padding-inline: 2px 14px;
  }

  .hero,
  .subhero,
  .inner-hero {
    min-height: 0;
    overflow: hidden;
  }

  .hero__inner,
  .subhero__layout,
  .inner-hero__layout {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hero__copy,
  .subhero__copy,
  .inner-hero__layout > div:first-child {
    position: relative;
    z-index: 6;
    min-width: 0;
  }

  .hero__copy {
    padding: 42px 0 8px;
  }

  .subhero__copy,
  .inner-hero__layout > div:first-child {
    padding-top: 34px;
  }

  .hero h1,
  .subhero h1,
  .inner-hero h1 {
    max-width: 100%;
    margin-top: 22px;
    font-size: clamp(34px, 9.6vw, 46px);
    line-height: 1.04;
    letter-spacing: -.048em;
    overflow-wrap: anywhere;
  }

  .hero__lead,
  .subhero p,
  .inner-hero p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.56;
  }

  .hero__actions,
  .subhero__actions,
  .workshop-page-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .hero__actions .button,
  .subhero__actions .button,
  .workshop-page-hero__actions .button {
    width: 100%;
    min-height: 54px;
    justify-content: center;
  }

  .hero__proof {
    display: none;
  }

  .hero__visual,
  .subhero__visual {
    position: relative;
    order: 2;
    align-self: stretch;
    min-height: 500px;
    margin: 0 -10px;
    overflow: hidden;
    background:
      radial-gradient(circle at 50% 42%, rgba(var(--service-rgb, 22, 200, 239), .15), transparent 42%),
      linear-gradient(180deg, rgba(4, 24, 39, 0), rgba(4, 24, 39, .2));
    isolation: isolate;
  }

  .subhero__visual {
    min-height: 470px;
    border-top: 1px solid rgba(var(--service-rgb, 22, 200, 239), .12);
  }

  .hero__visual .inspector--hero,
  .subhero__visual .inspector--hero {
    position: absolute !important;
    top: auto !important;
    right: auto !important;
    bottom: 58px !important;
    left: 50% !important;
    width: min(92vw, 390px) !important;
    height: calc(100% - 72px) !important;
    filter: drop-shadow(0 22px 28px rgba(0, 0, 0, .34));
    transform: translateX(-50%) !important;
  }

  .hero__visual .inspector--hero img,
  .subhero__visual .inspector--hero img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center bottom !important;
  }

  .hero__status-card,
  .subhero__accent-card,
  .hero-service-nodes,
  .hero__scanner,
  .hero__visual .character-cta,
  .subhero__visual .character-cta {
    display: none !important;
  }

  .hero__visual .inspector-online,
  .subhero__visual .inspector-online {
    top: 16px;
    right: auto;
    left: 50%;
    max-width: calc(100% - 24px);
    justify-content: center;
    white-space: nowrap;
    transform: translateX(-50%);
  }

  .tech-scene {
    display: none !important;
  }

  .inner-hero .inspector-online {
    top: 12px;
    left: 10px;
    max-width: calc(100% - 20px);
  }

  .inner-hero__layout {
    padding-top: 34px;
  }

  .inner-hero__layout > .inspector {
    position: relative;
    order: 2;
    width: 100%;
    height: 340px;
    margin-top: 10px;
    overflow: hidden;
    border-top: 1px solid rgba(var(--service-rgb, 22, 200, 239), .12);
  }

  .inner-hero__layout > .inspector img {
    position: absolute !important;
    top: auto !important;
    right: auto !important;
    bottom: 20px !important;
    left: 50% !important;
    width: min(90vw, 350px) !important;
    height: calc(100% - 24px) !important;
    max-width: none !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    transform: translateX(-50%) !important;
  }

  body[data-service-theme="pricing"] .inner-hero__layout > .inspector {
    height: 270px;
  }

  body[data-service-theme="pricing"] .inner-hero__layout > .inspector img {
    width: min(96vw, 410px) !important;
  }

  .inner-hero__layout > .inspector .inspector__bubble {
    top: auto;
    right: 10px;
    bottom: 12px;
    left: 10px;
    max-width: none;
    padding: 10px 12px;
    font-size: 10px;
  }

  .workshop-page-hero .inner-hero__layout {
    padding-bottom: 0;
  }

  .workshop-page-hero__asset {
    order: 2;
    width: 100%;
    min-height: 250px;
    margin: 14px 0 54px;
    display: grid;
    place-items: center;
    overflow: visible;
  }

  .workshop-page-hero__asset img {
    width: min(112vw, 520px);
    max-width: none;
    height: auto;
    transform: none !important;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .workflow-intro h2,
  .price-copy h2,
  .faq-intro h2,
  .request-copy h2,
  .contact-band h2,
  .price-explainer h2,
  .location-panel h2,
  .service-detail-grid h2,
  .local-intent-section h2 {
    font-size: clamp(29px, 8.2vw, 39px);
    line-height: 1.07;
  }

  .section-heading--split,
  .workflow-layout,
  .price-layout,
  .faq-layout,
  .request-layout,
  .service-detail-grid,
  .contacts-layout,
  .price-page-layout,
  .local-intent-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

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

  .service-card,
  .service-card--wide {
    grid-column: auto;
    min-height: 225px;
    padding: 18px;
  }

  .service-card__visual,
  .service-card--wide .service-card__visual {
    right: -10px;
    bottom: -12px;
    width: 120px;
    height: 168px;
  }

  .service-card p,
  .service-card--wide p {
    max-width: calc(100% - 76px);
  }

  .diagnostic-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .diagnostic-card__content {
    order: 1;
  }

  .diagnostic-card__visual {
    position: relative;
    order: 2;
    min-height: 330px;
  }

  .diagnostic-card__visual .inspector--side img {
    right: auto !important;
    bottom: -12px !important;
    left: 50% !important;
    width: min(88vw, 335px) !important;
    height: calc(100% - 12px);
    object-fit: contain;
    object-position: center bottom;
    transform: translateX(-50%);
  }

  .diagnostic-card__visual .inspector__bubble {
    display: none;
  }

  .device-grid,
  .symptom-grid,
  .related-grid,
  .horizontal-process,
  .included-grid,
  .workshop-capability-grid {
    grid-template-columns: 1fr !important;
  }

  .price-table__head,
  .price-table__row {
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .price-table__head {
    display: none;
  }

  .price-table__row {
    padding: 16px;
  }

  .price-table__row > :last-child {
    white-space: nowrap;
    text-align: right;
  }

  .local-intent-card {
    padding: 20px;
  }

  .local-intent-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .local-intent-footer nav {
    width: 100%;
    justify-content: flex-start;
  }

  .workshop-gallery__item,
  .workshop-gallery__item:first-child,
  .workshop-gallery__item:nth-child(1),
  .workshop-gallery__item:nth-child(2),
  .workshop-gallery__item:nth-child(6),
  .workshop-gallery__item:nth-child(7) {
    flex-basis: min(84vw, 350px);
    height: 235px;
  }

  .helper {
    right: 10px;
    bottom: calc(var(--mobile-bar-height) + env(safe-area-inset-bottom, 0px) + 10px);
  }

  .helper__button {
    display: none !important;
  }

  .helper__card {
    right: 0;
    bottom: 0;
    width: min(320px, calc(100vw - 20px));
    max-height: calc(var(--app-height, 100vh) - var(--mobile-bar-height) - 110px);
    overflow-y: auto;
  }

  .mobile-action-bar {
    min-height: var(--mobile-bar-height);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .mobile-action-bar__inspector {
    height: 72px !important;
  }

  .mobile-action-bar__portrait {
    top: -18px;
    width: 66px;
    height: 66px;
    overflow: hidden;
    background: linear-gradient(155deg, #061928, #0b4055);
    border: 2px solid rgba(var(--service-rgb, 22, 200, 239), .72);
    border-radius: 20px 20px 14px 14px;
    box-shadow: 0 8px 20px rgba(3, 25, 38, .28);
  }

  .mobile-action-bar__portrait img {
    top: -11px;
    left: 50%;
    width: 116px;
    height: auto;
    max-width: none;
    object-fit: initial;
    transform: translateX(-50%);
  }

  .mobile-action-bar__portrait > .ht-icon {
    display: none;
  }

  input,
  select,
  textarea,
  button {
    max-width: 100%;
  }
}

@media (max-width: 430px) {
  .shell {
    width: calc(100% - 16px);
  }

  .brand__copy {
    display: none;
  }

  .hero__copy {
    padding-top: 34px;
  }

  .hero h1,
  .subhero h1,
  .inner-hero h1 {
    font-size: clamp(32px, 9.7vw, 40px);
  }

  .hero__visual {
    min-height: 465px;
  }

  .subhero__visual {
    min-height: 445px;
  }

  .hero__visual .inspector--hero,
  .subhero__visual .inspector--hero {
    bottom: 54px !important;
    width: min(94vw, 365px) !important;
  }

  .inner-hero__layout > .inspector {
    height: 315px;
  }

  .service-card p,
  .service-card--wide p {
    max-width: calc(100% - 58px);
    font-size: 12px;
  }

  .local-intent-card h3 {
    font-size: 19px;
  }

  .local-intent-footer nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .local-intent-footer a:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 360px) {
  .hero h1,
  .subhero h1,
  .inner-hero h1 {
    font-size: 31px;
  }

  .hero__visual,
  .subhero__visual {
    min-height: 420px;
  }

  .hero__visual .inspector--hero,
  .subhero__visual .inspector--hero {
    width: 330px !important;
  }

  .button {
    padding-inline: 13px;
    font-size: 13px;
  }

  .mobile-action-bar > a,
  .mobile-action-bar > button {
    font-size: 6px;
  }
}

@media (max-height: 700px) and (max-width: 760px) {
  .hero__visual,
  .subhero__visual {
    min-height: 420px;
  }

  .hero__visual .inspector--hero,
  .subhero__visual .inspector--hero {
    bottom: 48px !important;
    width: min(86vw, 335px) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  main > section:not(:first-child) {
    content-visibility: visible;
  }
}
