:root {
  --bg: #fff;
  --fg: #29323b;
  --muted: #64707d;
  --soft: #f4f7f8;
  --border: #e3e9ed;
  --primary: #1fb6c9;
  --primary-dark: #1898a8;
  --white: #fff;
  --dark: #1f2730;
  --gis: #25a95b;
  --yandex: #f04438;
  --radius: 20px;
  --shadow: 0 18px 45px rgba(31, 39, 48, 0.08);
  --container-max: 1180px;
  --container-gutter: 16px;
  --space-2xs: 8px;
  --space-xs: 12px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 80px;
  --section-space: 72px;
  --card-padding: 28px;
  --content-gap: 28px;
  --section-title-gap: 24px;
  --section-copy-gap: 44px;
  --accent-700: #1898a8;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: clip;
}
section[id] {
  scroll-margin-top: 110px;
}
body {
  margin: 0;
  min-width: 320px;
  width: 100%;
  overflow-x: clip;
  background:
    radial-gradient(circle at top left, rgba(214, 241, 247, 0.72), transparent 26%),
    radial-gradient(circle at 100% 12%, rgba(225, 246, 251, 0.9), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(241, 249, 250, 0.92), transparent 30%),
    linear-gradient(180deg, #fcfeff 0%, #f7fbfd 42%, #f9fcfd 100%);
  color: var(--fg);
  font: 16px/1.6 "Segoe UI", Tahoma, sans-serif;
}

body.modal-open {
  overflow: hidden;
}

main,
.view {
  width: 100%;
  overflow-x: clip;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.28) 0 2px, transparent 3px),
    radial-gradient(circle at 76% 14%, rgba(255,255,255,0.2) 0 2px, transparent 3px),
    radial-gradient(circle at 86% 62%, rgba(214, 244, 248, 0.26) 0 2px, transparent 4px),
    radial-gradient(circle at 22% 78%, rgba(220, 240, 244, 0.2) 0 2px, transparent 4px);
  opacity: 0.68;
  animation: softParticleDrift 18s linear infinite;
}

body::after {
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,0.28), transparent 16%),
    radial-gradient(circle at 82% 24%, rgba(205, 240, 246, 0.2), transparent 18%);
  opacity: 0.55;
  animation: ambientGlowShift 20s ease-in-out infinite;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, select, textarea { font: inherit; }

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 12px;
  background: #1f2730;
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.container,
.narrow,
.narrow-wide {
  width: min(var(--container-max), calc(100% - (var(--container-gutter) * 2)));
  max-width: min(var(--container-max), calc(100% - (var(--container-gutter) * 2)));
  margin: 0 auto;
}
.section {
  position: relative;
  padding: var(--section-space) 0;
  isolation: isolate;
}

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

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(255,255,255,0.44), transparent 18%),
    radial-gradient(circle at 84% 16%, rgba(203, 240, 246, 0.22), transparent 16%);
  opacity: 0.8;
  pointer-events: none;
  transition: transform 0.5s ease, opacity 0.4s ease, filter 0.4s ease;
}

.section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 24%, rgba(255,255,255,0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 86% 20%, rgba(255,255,255,0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 76% 74%, rgba(200, 239, 245, 0.16) 0 3px, transparent 4px),
    radial-gradient(circle at 24% 78%, rgba(215, 244, 248, 0.18) 0 3px, transparent 4px);
  opacity: 0.34;
  pointer-events: none;
  transition: transform 0.5s ease, opacity 0.4s ease;
}

.section:hover::before {
  opacity: 0.94;
  filter: saturate(1.03);
}

.section:hover::after {
  opacity: 0.46;
}

.soft {
  background:
    radial-gradient(circle at 12% 18%, rgba(214, 241, 247, 0.55), transparent 18%),
    radial-gradient(circle at 86% 22%, rgba(228, 245, 248, 0.7), transparent 18%),
    linear-gradient(180deg, rgba(249, 252, 253, 0.94), rgba(243, 248, 250, 0.88));
}

.soft::before {
  transform: translate3d(0, calc(var(--parallax-offset, 0px) * 0.55), 0);
  transition: transform 0.35s ease-out;
}

.soft::after {
  transform: translate3d(0, calc(var(--parallax-offset, 0px) * -0.35), 0);
  transition: transform 0.35s ease-out;
}
.center { text-align: center; }
.left { text-align: left; }
.strong { font-weight: 700; }
.muted { color: var(--muted); }
.tiny { font-size: 12px; }
.lead { font-size: 18px; line-height: 1.7; }
.is-hidden { display: none !important; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(215, 228, 235, 0.8);
  box-shadow: 0 12px 28px rgba(31, 39, 48, 0.04);
}

.header-row, .footer-grid, .button-row {
  display: flex;
  align-items: center;
}

.header-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(14px, 2vw, 24px);
  min-height: 80px;
  padding-block: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 22px;
  justify-self: start;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
}

.nav {
  display: flex;
  gap: var(--space-md);
}

.desktop-nav {
  justify-self: center;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  min-width: 0;
}

.nav a {
  position: relative;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 182, 201, 0.1), rgba(31, 182, 201, 0.9), rgba(31, 182, 201, 0.1));
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.26s ease, transform 0.26s ease;
}

.nav a:hover,
.nav a.active { color: var(--fg); }

.nav a:hover::after,
.nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-sm);
  min-width: 0;
}

.header-utilities {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
}

.phone-link { font-weight: 700; white-space: nowrap; }
.call-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.24s ease, opacity 0.24s ease, transform 0.24s ease;
}

.call-link:hover {
  color: var(--accent-700);
}

.call-link:active {
  opacity: 0.84;
}

.call-link:focus-visible {
  outline: none;
  color: var(--accent-700);
  text-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 12px;
  padding: 10px 14px;
  cursor: pointer;
}

.accessibility-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(207, 221, 229, 0.95);
  background: rgba(255, 255, 255, 0.86);
  color: var(--fg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.accessibility-toggle:hover {
  transform: none;
  border-color: rgba(31, 182, 201, 0.35);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  background: rgba(241, 249, 251, 0.98);
  color: var(--accent-700);
}

.accessibility-toggle:focus-visible {
  outline: 3px solid rgba(31, 182, 201, 0.3);
  outline-offset: 2px;
}

.accessibility-toggle__icon {
  font-size: 19px;
  line-height: 1;
}

.accessibility-toggle::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  bottom: auto;
  transform: translateX(-50%) translateY(-4px);
  padding: 7px 10px;
  border-radius: 10px;
  background: rgba(31, 39, 48, 0.92);
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 45;
}

.accessibility-toggle:hover::after,
.accessibility-toggle:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.accessibility-toggle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 4px);
  width: 10px;
  height: 10px;
  background: rgba(31, 39, 48, 0.92);
  transform: translateX(-50%) rotate(45deg) translateY(-4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 44;
}

.accessibility-toggle[aria-pressed="true"] {
  background: rgba(31, 182, 201, 0.12);
  border-color: rgba(31, 182, 201, 0.42);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.accessibility-toggle:hover::before,
.accessibility-toggle:focus-visible::before {
  opacity: 1;
  transform: translateX(-50%) rotate(45deg) translateY(0);
}

.accessibility-toggle--floating {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 40;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 var(--space-sm) var(--space-sm);
  border-top: 1px solid var(--border);
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.32s ease, background 0.32s ease, color 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease, filter 0.32s ease;
}

.button:hover { transform: translateY(-1px); }
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(102deg, transparent 0%, rgba(255,255,255,0.06) 28%, rgba(255,255,255,0.34) 46%, rgba(255,255,255,0.14) 58%, transparent 82%);
  transform: translateX(-18%);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.45s ease;
  pointer-events: none;
  z-index: 0;
}

.button:hover::before {
  opacity: 1;
  transform: translateX(18%);
}

.button::after {
  content: "↗";
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 1;
  opacity: 0.9;
  transform: translateX(0);
  transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

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

.button:hover::after {
  opacity: 1;
  transform: none;
  filter: none;
}

.button:focus-visible {
  outline: none;
  transform: scale(1.01);
  box-shadow:
    0 0 0 4px rgba(31, 182, 201, 0.18),
    0 18px 34px rgba(31, 39, 48, 0.14);
}

.button:active {
  transform: scale(0.985);
}

.button.primary {
  background: linear-gradient(135deg, #24c2d5 0%, #1fb6c9 50%, #1898a8 100%);
  color: var(--white);
  border-color: rgba(255,255,255,0.12);
  box-shadow:
    0 16px 32px rgba(24, 152, 168, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.button.primary:hover {
  background: linear-gradient(135deg, #3accdf 0%, #29bfd3 50%, #1ca8ba 100%);
  box-shadow:
    0 22px 40px rgba(24, 152, 168, 0.3),
    0 0 0 1px rgba(159, 234, 244, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.26);
  filter: brightness(1.02);
}

.button.outline {
  border-color: rgba(215, 228, 235, 0.95);
  background: linear-gradient(180deg, rgba(255,255,255,0.76), rgba(248,251,252,0.62));
  box-shadow:
    0 12px 24px rgba(31, 39, 48, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
}

.button.outline:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(248,251,252,0.72));
  border-color: rgba(187, 216, 223, 0.95);
  box-shadow:
    0 18px 32px rgba(31, 39, 48, 0.1),
    inset 0 1px 0 rgba(255,255,255,0.84);
}

.button.secondary { background: rgba(255,255,255,0.92); }
.button.small { min-height: 38px; padding: 8px 14px; }
.button.gis { border-color: var(--gis); color: var(--gis); }
.button.gis:hover, .button.gis.outline-fill { background: transparent; }
.button.yandex { border-color: var(--yandex); color: var(--yandex); }

.hero-grid, .grid.two, .grid.three, .grid.four, .contacts-grid, .footer-grid {
  display: grid;
  gap: var(--content-gap);
}

.contacts-grid {
  align-items: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(520px, 1fr);
}

.contacts-grid > * {
  height: 100%;
}

.hero-grid { grid-template-columns: 1fr; align-items: center; }

.hero .container {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

.hero {
  padding-top: 0;
  padding-bottom: 0;
  overflow: clip;
}

.hero.section::before,
.hero.section::after {
  display: none;
}

.hero-universal {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  border-radius: 0;
  box-shadow: none;
}

.hero-universal::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(17, 27, 35, 0.54) 0%, rgba(17, 27, 35, 0.36) 34%, rgba(17, 27, 35, 0.18) 62%, rgba(17, 27, 35, 0.04) 100%);
  opacity: 1;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}

.hero-universal::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(10,18,24,0.1));
  opacity: 1;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}

.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 27, 35, 0.84) 0%, rgba(17, 27, 35, 0.72) 34%, rgba(17, 27, 35, 0.5) 62%, rgba(17, 27, 35, 0.3) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(10,18,24,0.1));
  transform: none;
  transition: opacity 340ms ease-out, filter 340ms ease-out;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.04) contrast(1.05);
  transform: scale(1);
  transition: transform 360ms ease-out, filter 340ms ease-out;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100svh;
  width: min(var(--container-max), calc(100% - (var(--container-gutter) * 2)));
  max-width: min(var(--container-max), calc(100% - (var(--container-gutter) * 2)));
  margin: 0 auto;
  padding: 76px 0 112px;
  color: var(--white);
  text-align: center;
}

.hero-content > h1,
.hero-content > .lead,
.hero-content > .trust-points,
.hero-content > .button-row {
  align-self: center;
}

.hero-content h1,
.hero-content .lead {
  color: var(--white);
}

.hero-content h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.04;
}

.hero-content .lead {
  max-width: 700px;
  margin: 0;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.86);
}

.hero-content .button.outline {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(12, 20, 28, 0.08);
}

.hero-content .button.outline:hover {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 30px rgba(12, 20, 28, 0.16);
}

.hero-content .trust-points span {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 280ms ease-out, background 280ms ease-out, border-color 280ms ease-out, box-shadow 280ms ease-out;
}

.hero-content .trust-points {
  max-width: 780px;
  margin-top: 22px;
  margin-bottom: 26px;
  justify-content: center;
}

.hero-content .button-row {
  margin-top: 0;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero-content .button {
  transition:
    transform 300ms ease-out,
    background 300ms ease-out,
    color 300ms ease-out,
    border-color 300ms ease-out,
    box-shadow 300ms ease-out,
    filter 300ms ease-out,
    backdrop-filter 300ms ease-out;
}

.hero-content .button.primary {
  background: linear-gradient(135deg, #23c0d3 0%, #1fb6c9 52%, #1898a8 100%);
  box-shadow: 0 14px 30px rgba(24, 152, 168, 0.22);
}

.hero-content .button.primary:hover {
  transform: scale(1.01);
  background: linear-gradient(135deg, #39cade 0%, #25bfd3 50%, #1aa4b6 100%);
  box-shadow: 0 20px 36px rgba(24, 152, 168, 0.28);
  filter: brightness(1.02);
}

.hero-content .button.outline:hover {
  transform: scale(1.01);
  border-color: rgba(255, 255, 255, 0.54);
  box-shadow: 0 18px 32px rgba(16, 26, 33, 0.18);
  filter: brightness(1.03);
}

.hero-content .trust-points span:hover {
  transform: scale(1.01);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 24px rgba(16, 24, 31, 0.12);
}

.hero-universal:hover .hero-visual::after {
  filter: brightness(1.015);
}

.hero-universal:hover .hero-visual img {
  transform: scale(1.01);
  filter: saturate(1.06) contrast(1.06);
}

.hero-content .button:active,
.hero-content .trust-points span:active {
  transform: scale(0.99);
}
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.hero h1, .section-title {
  margin: 0 0 var(--section-title-gap);
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-title { text-align: center; font-size: clamp(28px, 4vw, 40px); }
.section-subtitle {
  max-width: 820px;
  margin: 0 auto var(--section-copy-gap);
}
.sub-title { margin: 56px 0 28px; font-size: 24px; }
.eyebrow {
  margin: 0 0 10px;
  color: #6f92a5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-points, .button-row { display: flex; flex-wrap: wrap; gap: var(--space-xs); }
.button-row.center { justify-content: center; }
.trust-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--soft);
  font-size: 14px;
  font-weight: 600;
}

.card, .placeholder, .faq-item, .list-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(251,253,254,0.88)),
    radial-gradient(circle at top right, rgba(205, 239, 245, 0.12), transparent 34%);
  border: 1px solid rgba(223, 234, 238, 0.96);
  border-radius: var(--radius);
  box-shadow:
    0 18px 40px rgba(31, 39, 48, 0.06),
    0 10px 24px rgba(34, 184, 200, 0.04),
    inset 0 1px 0 rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
}

.card { padding: var(--card-padding); }
.card h2, .card h3 { margin: 0 0 var(--space-2xs); }
.card p { margin: 0; color: var(--muted); }
.text-card { margin-top: var(--space-sm); }
.text-card p { margin-top: var(--space-2xs); }

.card::after,
.faq-item::after,
.list-card::after,
.service-card::after,
.review-card::after,
.review-slide::after,
.reviews-widget::after,
.page-service::after,
.advantage-tone::after,
.step-card::after,
.text-card::after,
.rating-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(108deg, transparent 10%, rgba(255,255,255,0.02) 34%, rgba(255,255,255,0.24) 46%, rgba(255,255,255,0.08) 58%, transparent 78%);
  opacity: 0;
  transform: translateX(-20%);
  transition: opacity 0.32s ease, transform 0.48s ease;
  pointer-events: none;
}

.service-card,
.advantage-tone,
.step-card,
.review-card,
.review-slide,
.faq-item,
.text-card,
.rating-card,
.page-service,
.reviews-widget {
  position: relative;
  overflow: hidden;
  transition: transform 0.36s ease, box-shadow 0.36s ease, border-color 0.32s ease, background 0.32s ease;
}

.service-card::before,
.advantage-tone::before,
.step-card::before,
.review-card::before,
.review-slide::before,
.faq-item::before,
.text-card::before,
.rating-card::before,
.page-service::before,
.reviews-widget::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), transparent 44%),
    radial-gradient(circle at top right, rgba(255,255,255,0.24), transparent 34%),
    linear-gradient(110deg, transparent 12%, rgba(255,255,255,0.08) 38%, rgba(255,255,255,0.22) 50%, rgba(255,255,255,0.08) 62%, transparent 82%);
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}

.service-card:hover,
.advantage-tone:hover,
.step-card:hover,
.review-card:hover,
.review-slide:hover,
.faq-item:hover,
.text-card:hover,
.rating-card:hover,
.page-service:hover,
.reviews-widget:hover {
  transform: translateY(-2px) scale(1.006);
  box-shadow:
    0 28px 56px rgba(31, 39, 48, 0.1),
    0 0 0 1px rgba(202, 240, 245, 0.22),
    0 0 22px rgba(188, 236, 242, 0.1),
    inset 0 1px 0 rgba(255,255,255,0.92);
  border-color: rgba(194, 228, 235, 0.96);
}

.service-card:hover::before,
.advantage-tone:hover::before,
.step-card:hover::before,
.review-card:hover::before,
.review-slide:hover::before,
.faq-item:hover::before,
.text-card:hover::before,
.rating-card:hover::before,
.page-service:hover::before,
.reviews-widget:hover::before {
  opacity: 1;
}

.service-card:hover::after,
.advantage-tone:hover::after,
.step-card:hover::after,
.review-card:hover::after,
.review-slide:hover::after,
.faq-item:hover::after,
.text-card:hover::after,
.rating-card:hover::after,
.page-service:hover::after,
.reviews-widget:hover::after {
  opacity: 1;
  transform: translateX(18%);
}

.service-intro {
  max-width: 760px;
  margin: 0 auto var(--section-copy-gap);
  text-align: center;
  position: relative;
  z-index: 1;
}

.service-intro .section-title {
  margin-bottom: var(--section-title-gap);
}

.service-intro .lead {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.78;
}

.service-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 16%, rgba(255,255,255,0.72), transparent 18%),
    linear-gradient(180deg, rgba(246, 250, 252, 0.94), rgba(238, 246, 248, 0.86));
}

.service-showcase::before,
.service-showcase::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(18px);
  opacity: 0.9;
}

.service-showcase::before {
  top: 32px;
  left: 8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(171, 228, 236, 0.34), rgba(171, 228, 236, 0.02) 70%);
  transform: translate3d(0, calc(var(--parallax-offset, 0px) * 0.8), 0);
  animation: floatGlow 12s ease-in-out infinite;
}

.service-showcase::after {
  right: 6%;
  bottom: 42px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(215, 240, 244, 0.72), rgba(215, 240, 244, 0.04) 68%);
  transform: translate3d(0, calc(var(--parallax-offset, 0px) * -0.7), 0);
  animation: floatGlow 14s ease-in-out infinite reverse;
}


.reveal-up {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.service-showcase.is-visible .reveal-up,
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card.reveal-up,
.advantage-tone.reveal-up,
.step-card.reveal-up,
.compare-card.reveal-up,
.review-card.reveal-up,
.review-slide.reveal-up,
.faq-item.reveal-up,
.reviews-widget.reveal-up,
.section-heading.reveal-up,
.service-intro.reveal-up {
  transition-delay: var(--card-delay, 0ms);
}

@keyframes floatGlow {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.04);
  }
}

@keyframes softParticleDrift {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@keyframes ambientGlowShift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.55; }
  50% { transform: translate3d(0, -8px, 0) scale(1.02); opacity: 0.7; }
}

.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 600;
  color: #22323d;
}

.form label span {
  font-size: 14px;
  letter-spacing: 0.01em;
}

input, select, textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(208, 220, 226, 0.95);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,251,252,0.9));
  color: var(--fg);
  padding: 14px 16px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

input:focus, select:focus, textarea:focus {
  border-color: rgba(31, 182, 201, 0.9);
  background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(249,252,253,0.94));
  box-shadow:
    0 0 0 4px rgba(31, 182, 201, 0.14),
    0 10px 20px rgba(31, 39, 48, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.78);
}

input::placeholder,
textarea::placeholder {
  color: #8a98a4;
}

textarea {
  min-height: 132px;
  resize: none;
  line-height: 1.6;
}

.calculator-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.calculator-cta-copy h3 {
  margin: 0 0 10px;
  font-size: 28px;
  color: #20303b;
}

.calculator-cta-copy p {
  max-width: 560px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(16, 24, 30, 0.56);
  backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f8fbfc);
  box-shadow: 0 30px 70px rgba(20, 28, 35, 0.24);
}

.modal-card h2 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.15;
  color: #20303b;
}

.modal-lead {
  margin: 0 0 26px;
  color: #60707c;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(203, 217, 225, 0.95);
  border-radius: 999px;
  background: #fff;
  color: #20303b;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.comment-field {
  position: relative;
}

.comment-field textarea {
  padding-bottom: 34px;
}

.char-counter {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  color: #80909c;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  pointer-events: none;
}

.form .button.primary,
.form .button.outline,
.contacts-grid .button,
.modal-card .button {
  min-height: 50px;
}

.form .tiny {
  margin-top: 2px;
  line-height: 1.6;
}

.form-status {
  display: none;
  margin: -2px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.55;
  border: 1px solid transparent;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-loading {
  color: #556773;
  background: rgba(248, 251, 252, 0.92);
  border-color: rgba(220, 230, 235, 0.96);
}

.form-status.is-success {
  color: #1c6b38;
  background: rgba(236, 250, 241, 0.96);
  border-color: rgba(168, 226, 186, 0.96);
}

.form-status.is-error {
  color: #8d2f2f;
  background: rgba(255, 241, 241, 0.96);
  border-color: rgba(241, 188, 188, 0.96);
}

.button.is-loading {
  pointer-events: none;
  opacity: 0.85;
}

.service-card {
  min-height: 100%;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(34, 45, 56, 0.98), rgba(24, 33, 40, 0.96));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 18px 38px rgba(31, 39, 48, 0.14);
  overflow: hidden;
  position: relative;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  padding: var(--card-padding);
  color: var(--white);
}

.service-card h3, .page-service h2, .step-card h3 { margin: 0 0 var(--space-2xs); }
.service-card ul, .list-card {
  margin: 0 0 var(--space-sm);
  padding-left: 18px;
}

.service-card h3 {
  min-height: 48px;
  display: flex;
  align-items: flex-start;
  color: #fff;
}

.service-card ul {
  width: 100%;
  min-height: 112px;
  color: rgba(255,255,255,0.84);
}

.service-card li {
  line-height: 1.5;
}

.service-photo {
  position: relative;
  overflow: hidden;
  height: 178px;
  margin: 2px 0 var(--space-sm);
  border-radius: 18px;
  background: #16212a;
}

.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: none;
}

.service-card:hover .service-photo img {
  transform: scale(1.06);
  filter: none;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 88% 86%, rgba(31, 182, 201, 0.12), transparent 24%),
    linear-gradient(108deg, transparent 12%, rgba(255,255,255,0.02) 34%, rgba(255,255,255,0.18) 46%, rgba(255,255,255,0.06) 58%, transparent 78%);
  opacity: 0.42;
  transform: translateX(-12%);
  transition: opacity 0.34s ease, transform 0.46s ease;
  pointer-events: none;
}

.advantages-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(202, 236, 244, 0.9), transparent 20%),
    radial-gradient(circle at 88% 18%, rgba(225, 244, 248, 0.95), transparent 18%),
    radial-gradient(circle at 78% 78%, rgba(214, 242, 235, 0.65), transparent 22%),
    linear-gradient(180deg, #f9fdff 0%, #f2f8fb 52%, #edf7fb 100%);
}

.advantages-section::before,
.advantages-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.advantages-section::before {
  top: 54px;
  left: 6%;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.88), rgba(193, 229, 238, 0.18) 66%, transparent 70%);
  transform: translate3d(0, calc(var(--parallax-offset, 0px) * 0.65), 0);
}

.advantages-section::after {
  right: 7%;
  bottom: 38px;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,0.82), rgba(191, 229, 235, 0.14) 68%, transparent 72%);
  transform: translate3d(0, calc(var(--parallax-offset, 0px) * -0.48), 0);
}

.advantages-grid {
  position: relative;
  z-index: 1;
}

.advantage-tone {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(244, 251, 253, 0.92)),
    linear-gradient(180deg, rgba(31,182,201,0.02), rgba(31,182,201,0));
  border-color: rgba(191, 220, 228, 0.9);
  box-shadow: 0 18px 38px rgba(31, 39, 48, 0.07);
}

.advantage-tone:nth-child(3n+1) {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.97), rgba(239, 250, 247, 0.92)),
    radial-gradient(circle at top right, rgba(46, 183, 100, 0.08), transparent 34%);
}

.advantage-tone:nth-child(3n+2) {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.97), rgba(240, 249, 252, 0.94)),
    radial-gradient(circle at top right, rgba(31, 182, 201, 0.09), transparent 34%);
}

.advantage-tone:nth-child(3n+3) {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.97), rgba(245, 248, 255, 0.94)),
    radial-gradient(circle at top right, rgba(100, 149, 237, 0.08), transparent 34%);
}

.advantage-tone h3 {
  color: #1f313c;
}

.advantage-tone p {
  color: #5d6d79;
}

.centered-grid { text-align: center; }
.step-card { padding: 12px; }
.step-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(246,250,252,0.82)),
    radial-gradient(circle at top right, rgba(31,182,201,0.08), transparent 32%);
}
.step-num {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 12px;
}

.before-after-sliders {
  align-items: stretch;
}

.compare-card {
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,250,252,0.86));
  border: 1px solid rgba(218, 229, 235, 0.9);
  box-shadow: 0 16px 34px rgba(31, 39, 48, 0.06);
}

.compare-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  height: 320px;
  background: #dfe7ec;
}

.compare-base,
.compare-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.compare-overlay {
  position: absolute;
  inset: 0 auto 0 0;
  height: 100%;
  overflow: hidden;
}

.compare-label {
  position: absolute;
  top: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  background: rgba(31,39,48,0.8);
}

.compare-label.before {
  left: 14px;
}

.compare-label.after {
  right: 14px;
  background: rgba(31, 182, 201, 0.92);
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 2px;
  background: rgba(255,255,255,0.95);
  transform: translateX(-50%);
  pointer-events: none;
}

.compare-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.95);
  background: rgba(31,39,48,0.72);
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 22px rgba(0,0,0,0.2);
}

.compare-divider span::before,
.compare-divider span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
}

.compare-divider span::before {
  left: 10px;
  transform: translateY(-50%) rotate(-135deg);
}

.compare-divider span::after {
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
}

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}
.placeholder { display: flex; align-items: center; justify-content: center; color: var(--muted); }
.small-box { width: 96px; height: 96px; margin: 0 auto 16px; }
.widget-placeholder, .map-box { margin-top: 28px; min-height: 160px; border-radius: var(--radius); background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.map-box {
  margin-top: 0;
  min-height: 280px;
  padding: 16px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: stretch;
  justify-content: stretch;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(246,250,252,0.9)),
    radial-gradient(circle at top right, rgba(202, 238, 243, 0.16), transparent 34%);
  color: var(--muted);
  align-self: stretch;
}
.map-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  border: 1px solid rgba(215, 230, 235, 0.92);
  box-shadow:
    0 22px 46px rgba(31, 39, 48, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.92);
}
.map-frame-shell {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
  min-height: 0;
  border-radius: calc(var(--radius) - 4px);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(244,248,250,0.8)),
    radial-gradient(circle at top left, rgba(255,255,255,0.46), transparent 28%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.88),
    0 14px 30px rgba(31, 39, 48, 0.08);
}
.map-frame {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  display: block;
  border-radius: inherit;
  filter: saturate(1.02) contrast(1.02);
}
.map-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  min-height: 92px;
  padding: 4px 2px 0;
}
.map-meta h3 {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.2;
  color: #20303b;
}
.map-meta p {
  margin: 0;
  color: #586975;
}
.small-map { min-height: 190px; margin-top: 24px; }
.small-map .map-frame-shell,
.small-map .map-frame {
  min-height: 190px;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(189, 233, 244, 0.7), transparent 22%),
    radial-gradient(circle at 85% 22%, rgba(216, 239, 247, 0.9), transparent 18%),
    radial-gradient(circle at 78% 82%, rgba(229, 245, 250, 0.95), transparent 24%),
    linear-gradient(180deg, #fcfeff 0%, #f5f8fa 42%, #eef6fa 100%);
}

.reviews-section::before,
.reviews-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.reviews-section::before {
  top: 68px;
  left: 8%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.9), rgba(207,233,242,0.24) 70%, transparent 72%);
  filter: blur(1px);
  transform: translate3d(0, calc(var(--parallax-offset, 0px) * 0.55), 0);
}

.reviews-section::after {
  right: 7%;
  bottom: 52px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 40% 35%, rgba(255,255,255,0.88), rgba(205,231,241,0.14) 66%, transparent 70%);
  filter: blur(2px);
  transform: translate3d(0, calc(var(--parallax-offset, 0px) * -0.42), 0);
}

.section-heading {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  margin: 0 auto var(--section-copy-gap);
  padding-left: 0;
  text-align: center;
}

.reviews-lead {
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.review-cards {
  position: relative;
  z-index: 1;
  align-items: stretch;
  gap: var(--content-gap);
}

.review-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 176px;
  gap: var(--content-gap);
  align-items: center;
  min-height: 354px;
  padding: var(--space-lg);
  border-radius: 32px;
  box-shadow: 0 24px 54px rgba(31, 39, 48, 0.08);
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: auto auto 18px 18px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.9), transparent 72%);
  opacity: 0.6;
  pointer-events: none;
}

.review-card-gis {
  background:
    radial-gradient(circle at 84% 18%, rgba(255,255,255,0.82), transparent 24%),
    linear-gradient(145deg, #f7fffb 0%, #e7f7ef 54%, #def5eb 100%);
  border: 1px solid rgba(37, 169, 91, 0.14);
}

.review-card-yandex {
  background:
    radial-gradient(circle at 84% 18%, rgba(255,255,255,0.82), transparent 24%),
    linear-gradient(145deg, #ffffff 0%, #fff7f7 56%, #fff0f0 100%);
  border: 1px solid rgba(240, 68, 56, 0.14);
}

.review-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
}

.review-copy h3 {
  margin: 0 0 var(--space-2xs);
  font-size: 28px;
  line-height: 1.2;
  color: #20303b;
  max-width: 340px;
}

.review-copy p {
  margin: 0;
  color: #53636f;
  font-size: 16px;
  line-height: 1.65;
  max-width: 360px;
  min-height: 106px;
}

.review-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 var(--space-lg);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.review-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 18px;
}

.review-logo-gis {
  color: #1b7e46;
  background: rgba(37, 169, 91, 0.1);
}

.review-logo-gis .review-logo-mark {
  color: #fff;
  background: linear-gradient(145deg, #2db863, #199651);
}

.review-logo-yandex {
  color: #bb2b22;
  background: rgba(240, 68, 56, 0.08);
}

.review-logo-yandex .review-logo-mark {
  color: #fff;
  background: linear-gradient(145deg, #ff5a4c, #e23728);
}

.review-button {
  min-width: 136px;
  margin-top: auto;
}

.gis-solid {
  background: linear-gradient(145deg, #2eb764, #1fa958);
  color: #fff;
}

.gis-solid:hover {
  background: linear-gradient(145deg, #27aa5a, #19924d);
}

.yandex-solid {
  background: linear-gradient(145deg, #ff5d4e, #eb3a2d);
  color: #fff;
}

.yandex-solid:hover {
  background: linear-gradient(145deg, #f45043, #d93226);
}

.qr-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 176px;
  height: 176px;
  padding: 14px;
  border-radius: 28px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 16px 34px rgba(31, 39, 48, 0.1);
  justify-self: end;
}

.qr-shell img {
  width: 148px;
  height: 148px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
}

.reviews-widget {
  position: relative;
  z-index: 1;
  margin-top: var(--space-lg);
  padding: 36px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(177, 207, 220, 0.42);
  box-shadow: 0 24px 54px rgba(31, 39, 48, 0.08);
  backdrop-filter: blur(8px);
}

.reviews-widget,
.review-card,
.review-slide {
  overflow: hidden;
  position: relative;
}

.reviews-widget::after,
.review-card::after,
.review-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 10% 88%, rgba(255,255,255,0.34), transparent 18%),
    linear-gradient(108deg, transparent 10%, rgba(255,255,255,0.02) 34%, rgba(255,255,255,0.2) 46%, rgba(255,255,255,0.06) 58%, transparent 78%);
  opacity: 0.36;
  transform: translateX(-14%);
  transition: opacity 0.34s ease, transform 0.48s ease;
  pointer-events: none;
}

.reviews-widget-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--content-gap);
  margin-bottom: 28px;
}

.reviews-widget-head h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.2;
  color: #20303b;
}

.reviews-widget-head p {
  margin: 0;
  max-width: 620px;
  color: #53636f;
}

.widget-eyebrow {
  margin-bottom: 12px;
}

.reviews-widget-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  min-width: 160px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 14px 30px rgba(31, 39, 48, 0.08);
}

.rating-value {
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  color: #20303b;
}

.rating-stars {
  color: #f4b400;
  letter-spacing: 0.12em;
  font-size: 16px;
}

.rating-note {
  color: #70808d;
  font-size: 12px;
  text-align: right;
}

.reviews-slider-shell {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: var(--space-sm);
  align-items: center;
}

.reviews-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.333% - 11px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 8px;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  touch-action: pan-x;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

.reviews-slider.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.review-slide {
  min-width: 0;
  padding: calc(var(--card-padding) - 2px);
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(220, 229, 235, 0.95);
  box-shadow: 0 14px 28px rgba(31, 39, 48, 0.06);
  scroll-snap-align: start;
}

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

.review-slide-head strong {
  color: #20303b;
  font-size: 17px;
}

.review-slide-head span {
  color: #81919d;
  font-size: 13px;
  white-space: nowrap;
}

.review-slide-stars {
  margin-bottom: 12px;
  color: #f4b400;
  letter-spacing: 0.12em;
  font-size: 15px;
}

.review-slide p {
  margin: 0;
  color: #54636f;
  line-height: 1.7;
}

.review-slide-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  color: #81919d;
  font-size: 13px;
  line-height: 1.5;
}

.review-slide-meta a {
  color: #188f9f;
  text-decoration: none;
  font-weight: 700;
}

.review-slide-meta a:hover {
  text-decoration: underline;
}

.reviews-nav {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(203, 217, 225, 0.95);
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  color: #20303b;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(31, 39, 48, 0.08);
  transition: transform 0.2s ease, background 0.2s ease;
}

.reviews-nav:hover {
  transform: scale(1.03);
  background: #fff;
  box-shadow: 0 14px 28px rgba(31, 39, 48, 0.1);
}

.faq-list { display: flex; flex-direction: column; gap: 18px; }
.faq.section .section-title {
  margin-bottom: clamp(28px, 3vw, 38px);
}

.faq.section .section-subtitle {
  margin-bottom: clamp(22px, 2.6vw, 32px);
}

.faq.section .faq-list {
  margin-top: 10px;
}

.faq-item { overflow: hidden; }
.faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
  color: var(--fg);
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-content p {
  overflow: hidden;
  margin: 0;
  padding: 0 20px;
  color: var(--muted);
}

.faq-item.open .faq-content { grid-template-rows: 1fr; }
.faq-item.open .faq-content p { padding-bottom: 20px; }
.faq-item.open { border-color: rgba(31, 182, 201, 0.35); }
.faq-item {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,251,252,0.82)),
    radial-gradient(circle at top right, rgba(31,182,201,0.05), transparent 28%);
}

.contact-block {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  padding: var(--card-padding);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(247,251,252,0.9)),
    radial-gradient(circle at top right, rgba(201, 238, 243, 0.14), transparent 34%);
  border: 1px solid rgba(220, 232, 236, 0.94);
  box-shadow:
    0 18px 40px rgba(31, 39, 48, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
}
.contact-block h3 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.2;
  color: #20303b;
}
.contact-block p {
  width: 100%;
  margin: 0 0 12px;
}
.contact-block .button-row {
  margin-top: auto;
  padding-top: 18px;
  width: 100%;
  justify-content: flex-start;
}
.page-stack { display: flex; flex-direction: column; gap: calc(var(--space-xl) - var(--space-2xs)); }
.page-service {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--content-gap);
  align-items: center;
}

.page-service img {
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}

.page-service p { color: var(--muted); margin: 0 0 16px; }
.page-service.reverse img { order: 2; }

.list-card { padding: calc(var(--card-padding) - 2px) calc(var(--card-padding) - 2px) calc(var(--card-padding) - 2px) 42px; color: var(--muted); }
.privacy h2 { margin: 24px 0 8px; font-size: 20px; }
.privacy p { margin: 0; color: var(--muted); }
.policy-subtitle {
  margin: -8px 0 20px;
  color: #425360;
  font-size: 20px;
  font-weight: 700;
}

.thanks { text-align: center; }
.thanks-badge {
  width: 82px;
  height: 82px;
  margin: 0 auto 24px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8f8fa;
  color: var(--primary);
  font-size: 36px;
  font-weight: 700;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 56px 0 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(31,182,201,0.12), transparent 18%),
    radial-gradient(circle at 84% 16%, rgba(168, 235, 244, 0.08), transparent 16%),
    linear-gradient(180deg, #1c2730 0%, #162028 100%);
  color: rgba(255,255,255,0.88);
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.site-footer::before {
  top: 18px;
  left: 6%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(153, 228, 238, 0.14), transparent 72%);
  transform: translate3d(0, calc(var(--parallax-offset, 0px) * 0.6), 0);
}

.site-footer::after {
  right: 8%;
  bottom: 24px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 72%);
  transform: translate3d(0, calc(var(--parallax-offset, 0px) * -0.45), 0);
}

.footer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(24px, 3vw, 44px);
  padding-bottom: 28px;
}

.footer-column {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
}

.footer-brand-column {
  padding-right: clamp(0px, 2vw, 18px);
}

.footer-brand {
  margin-bottom: 0;
}

.footer-copy {
  margin: 0;
  max-width: 34ch;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.footer-title {
  margin: 4px 0 0;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-nav a,
.footer-contact-list a,
.footer-contact-list p,
.footer-bottom a,
.footer-bottom p {
  margin: 0;
}

.footer-nav a {
  color: rgba(255,255,255,0.84);
  transition: color 0.26s ease, opacity 0.26s ease;
}

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

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(255,255,255,0.72);
}

.footer-contact-list a {
  color: #ffffff;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 18px 0 24px;
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.74);
}

.footer-bottom-links {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  row-gap: 6px;
}

.footer-separator {
  color: rgba(255,255,255,0.38);
  line-height: 1;
  transform: translateY(-1px);
}

#contacts.section {
  padding-top: 40px;
  padding-bottom: 40px;
}

#contacts .section-title {
  margin-bottom: clamp(28px, 3vw, 40px);
}

#contacts .contacts-grid {
  align-items: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 520px;
  gap: 20px;
  margin-top: 8px;
}

#contacts .contacts-grid > * {
  height: 100%;
}

#contacts .contact-block,
#contacts .map-card {
  height: 100%;
}

#contacts .contact-block {
  justify-content: flex-start;
}

#contacts .contact-block .button-row {
  margin-top: 18px;
  padding-top: 0;
}

#contacts .map-box {
  margin-top: 0;
  min-height: 0;
  height: 100%;
}

#contacts .map-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

#contacts .map-frame-shell {
  min-height: 0;
  height: 100%;
}

#contacts .map-frame {
  min-height: 0;
  height: 100%;
}

#contacts .map-meta {
  min-height: 92px;
  margin-top: 0;
}

.review-card-gis:hover,
.review-card-gis:focus-within {
  border-color: rgba(37, 169, 91, 0.34);
  box-shadow:
    0 28px 56px rgba(31, 39, 48, 0.1),
    0 0 0 1px rgba(37, 169, 91, 0.16),
    0 0 24px rgba(37, 169, 91, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.92);
}

.review-card-gis:hover::before,
.review-card-gis:focus-within::before {
  opacity: 0.78;
}

.review-card-yandex:hover,
.review-card-yandex:focus-within {
  border-color: rgba(240, 68, 56, 0.34);
  box-shadow:
    0 28px 56px rgba(31, 39, 48, 0.1),
    0 0 0 1px rgba(240, 68, 56, 0.16),
    0 0 24px rgba(240, 68, 56, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.92);
}

.review-card-yandex:hover::before,
.review-card-yandex:focus-within::before {
  opacity: 0.78;
}

/* Work modes: hard reset with new classes */
.work-modes-panel {
  position: relative;
  z-index: 2;
  padding: 42px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255,255,255,0.98), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(210, 243, 248, 0.62), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  border: 1px solid rgba(223, 234, 239, 0.96);
  box-shadow:
    0 26px 60px rgba(31, 39, 48, 0.08),
    0 10px 24px rgba(31, 182, 201, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  transform: translate3d(0, var(--parallax-offset, 0px), 0);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.32s ease;
}

.work-modes-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.56);
  background:
    radial-gradient(circle at 14% 12%, rgba(255,255,255,0.48), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.16), transparent 22%);
  pointer-events: none;
}

.work-modes-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 14% 18%, rgba(255,255,255,0.24) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 16%, rgba(255,255,255,0.16) 0 2px, transparent 3px);
  opacity: 0.32;
  pointer-events: none;
}

.work-modes-panel .sub-title {
  margin-top: 0;
  margin-bottom: 34px;
}

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

.work-mode-card {
  --fx-x: 50%;
  --fx-y: 50%;
  --fx-tilt-x: 0deg;
  --fx-tilt-y: 0deg;
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  min-height: 100%;
  padding: 28px;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.99), rgba(249,252,253,0.96));
  border: 1px solid rgba(223, 234, 239, 0.98);
  box-shadow:
    0 16px 36px rgba(31, 39, 48, 0.06),
    0 6px 16px rgba(31, 182, 201, 0.04),
    inset 0 1px 0 rgba(255,255,255,1);
  transform: translateY(0) perspective(1200px) rotateX(0deg) rotateY(0deg);
  transition:
    transform 0.34s ease,
    box-shadow 0.34s ease,
    border-color 0.34s ease,
    background 0.34s ease;
  isolation: isolate;
}

.work-mode-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--fx-x) var(--fx-y), rgba(208, 246, 251, 0.38), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(255,255,255,0.92), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.56), rgba(255,255,255,0.12) 42%, transparent 70%);
  opacity: 0;
  transition: opacity 0.34s ease;
  pointer-events: none;
}

.work-mode-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(104deg, transparent 8%, rgba(255,255,255,0.02) 26%, rgba(255,255,255,0.96) 44%, rgba(255,255,255,0.2) 56%, transparent 74%);
  opacity: 0;
  transform: translateX(-34%);
  transition: opacity 0.34s ease, transform 0.58s ease;
  pointer-events: none;
  mix-blend-mode: screen;
}

.work-mode-copy {
  position: relative;
  z-index: 1;
}

.work-mode-copy::before {
  content: "";
  position: absolute;
  inset: -10px -12px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.22), transparent 42%),
    radial-gradient(circle at 100% 22%, rgba(160, 236, 245, 0.14), transparent 24%);
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.34s ease;
  pointer-events: none;
  z-index: -1;
}

.work-mode-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: #20313c;
}

.work-mode-card p {
  margin: 0;
  color: #5c6c78;
  line-height: 1.64;
  font-size: 16px;
}

.work-mode-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  font-size: 31px;
  color: #0f8695;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,1), rgba(255,255,255,0.46) 38%, rgba(255,255,255,0.12) 54%),
    linear-gradient(180deg, rgba(34,184,200,0.24), rgba(34,184,200,0.08));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    0 16px 30px rgba(31, 182, 201, 0.12),
    0 0 0 1px rgba(210, 242, 246, 0.56);
  transition:
    transform 0.34s ease,
    box-shadow 0.34s ease,
    background 0.34s ease,
    color 0.34s ease;
}

.work-mode-card:hover,
.work-mode-card:focus-within {
  transform:
    translateY(-6px)
    perspective(1200px)
    rotateX(var(--fx-tilt-x))
    rotateY(var(--fx-tilt-y));
  border-color: rgba(194, 238, 244, 0.98);
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(250,253,254,0.98));
  box-shadow:
    0 24px 52px rgba(31, 39, 48, 0.1),
    0 0 0 1px rgba(197, 240, 245, 0.42),
    0 0 24px rgba(145, 232, 242, 0.12),
    inset 0 1px 0 rgba(255,255,255,1);
}

.work-mode-card:hover::before,
.work-mode-card:focus-within::before {
  opacity: 1;
}

.work-mode-card:hover::after,
.work-mode-card:focus-within::after {
  opacity: 1;
  transform: translateX(22%);
}

.work-mode-card:hover .work-mode-copy::before,
.work-mode-card:focus-within .work-mode-copy::before {
  opacity: 1;
}

.work-mode-card:hover .work-mode-icon,
.work-mode-card:focus-within .work-mode-icon {
  transform: translateY(-2px) scale(1.06);
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,1), rgba(255,255,255,0.52) 38%, rgba(255,255,255,0.12) 56%),
    linear-gradient(180deg, rgba(34,184,200,0.32), rgba(34,184,200,0.12));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    0 20px 36px rgba(31, 182, 201, 0.16),
    0 0 18px rgba(145, 232, 242, 0.18),
    0 0 0 1px rgba(198, 239, 245, 0.62);
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(155, 225, 235, 0.9);
  border-radius: 999px;
  background: linear-gradient(180deg, #22b8c8 0%, #1fb5c4 100%);
  color: rgba(255,255,255,0.98);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow:
    0 14px 28px rgba(31, 181, 196, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.22);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    visibility 0.22s ease;
}

.scroll-top:hover {
  transform: scale(1.03);
  background: linear-gradient(180deg, #2bc2d3 0%, #22bacb 100%);
  border-color: rgba(192, 238, 244, 0.96);
  box-shadow:
    0 18px 34px rgba(31, 181, 196, 0.32),
    inset 0 1px 0 rgba(255,255,255,0.28);
}

.scroll-top:focus-visible {
  outline: none;
  transform: scale(1.03);
  box-shadow:
    0 0 0 4px rgba(162, 229, 238, 0.26),
    0 16px 34px rgba(31, 181, 196, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.28);
}

.scroll-top:active {
  transform: scale(0.97);
  opacity: 0.92;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top.is-near-footer {
  transform: scale(1.04);
  box-shadow:
    0 20px 38px rgba(31, 181, 196, 0.34),
    0 0 18px rgba(120, 225, 236, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.28);
}

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .service-showcase::before,
  .service-showcase::after {
    animation: none !important;
  }

  .reveal-up,
  body::before,
  body::after,
  .hero-visual::after,
  .hero-visual img,
  .hero-content .button,
  .hero-content .trust-points span {
    transform: none !important;
  }

  .reveal-up {
    opacity: 1 !important;
  }

  .work-modes-panel,
  .work-mode-card,
  .work-mode-icon {
    transform: none !important;
  }

  .work-mode-card:hover,
  .work-mode-card:focus-within {
    transform: translateY(-2px) !important;
  }

  .work-mode-card::before,
  .work-mode-card::after,
  .work-mode-copy::before {
    transition: opacity 0.01ms !important;
  }

}

@media (hover: none), (pointer: coarse) {
  .scroll-top:hover {
    transform: none;
    filter: none;
  }

  .scroll-top:active {
    transform: scale(0.97);
    filter: brightness(1.04);
  }

  .button:hover::before,
  .button:hover::after {
    transform: none;
    opacity: 0;
  }

  .button:active::after {
    opacity: 1;
    transform: translateX(2px);
  }

  .button:active {
    transform: translateY(0) scale(0.985);
  }

  .hero-universal::after {
    opacity: 1;
    transform: none;
  }

  .hero-visual::after,
  .hero-visual img {
    transform: none;
  }

  .hero-content .button:hover,
  .hero-content .trust-points span:hover {
    transform: none;
  }

  .hero-content .button:active {
    transform: translateY(-1px);
    filter: brightness(1.03);
  }

  .hero-content .trust-points span:active {
    transform: scale(0.99);
    background: rgba(255, 255, 255, 0.16);
  }

  .work-mode-card:hover,
  .work-mode-card:focus-within {
    transform: translateY(-2px);
  }

  .work-mode-card:hover::after,
  .work-mode-card:focus-within::after {
    transform: translateX(10%);
  }
}

@media (max-width: 1024px) {
  :root {
    --section-space: 64px;
    --card-padding: 24px;
    --content-gap: 24px;
  }
  .hero-universal,
  .hero-content {
    min-height: 92svh;
  }
  .hero-content {
    padding: 72px 0;
  }
  .hero-content h1 {
    max-width: 640px;
    font-size: clamp(36px, 5vw, 58px);
  }
  .hero-content .lead,
  .hero-content .trust-points {
    max-width: 600px;
  }
  .work-modes-grid {
    grid-template-columns: 1fr;
  }
  .work-modes-panel {
    padding: 30px;
  }
  .hero-grid, .grid.three, .grid.four, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews-slider { grid-auto-columns: calc(50% - 8px); }
}

@media (max-width: 820px) {
  :root {
    --section-space: 56px;
    --card-padding: 22px;
    --content-gap: 20px;
    --section-title-gap: 20px;
    --section-copy-gap: 32px;
    --space-lg: 24px;
    --space-xl: 36px;
    --space-2xl: 48px;
    --space-3xl: 60px;
  }
  section[id] {
    scroll-margin-top: 96px;
  }
  .hero .hero-content {
    padding: 42px 0 72px;
  }
  #contacts.section {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  #contacts .contacts-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .hero .container {
    width: 100%;
    max-width: none;
  }
  .hero {
    padding-top: 0;
    padding-bottom: 0;
  }
  .desktop-nav, .header-actions { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-nav { display: flex; }
  .header-row {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 72px;
    column-gap: 12px;
    padding-block: 8px;
  }
  .header-utilities {
    gap: 10px;
  }
  .hero-grid, .grid.two, .grid.three, .grid.four, .contacts-grid, .footer-grid, .page-service { grid-template-columns: 1fr; }
  .hero-visual,
  .hero-visual img {
    min-height: 100%;
  }
  .hero-universal,
  .hero-content {
    min-height: 82svh;
  }
  .hero-content {
    width: min(var(--container-max), calc(100% - (var(--container-gutter) * 2)));
    max-width: min(var(--container-max), calc(100% - (var(--container-gutter) * 2)));
    padding: 48px 0 86px;
  }
  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(32px, 7.8vw, 50px);
    line-height: 1.06;
  }
  .hero-content .lead {
    max-width: 100%;
    font-size: clamp(16px, 3.4vw, 19px);
  }
  .hero-content .trust-points {
    max-width: 100%;
    margin-top: 22px;
    margin-bottom: 26px;
  }
  .contacts-grid {
    grid-auto-rows: auto;
  }
  .page-service.reverse img { order: 0; }
  .calculator-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .section { padding: var(--section-space) 0; }
  .footer-grid {
    gap: 22px;
    padding-bottom: 22px;
  }
  .footer-column {
    gap: 12px;
  }
  .footer-copy {
    max-width: none;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom-links {
    gap: 8px;
  }
  .footer-separator {
    transform: none;
  }
  .compare-slider { height: 280px; }
  .section-heading {
    margin-bottom: var(--section-copy-gap);
  }
  .review-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: var(--card-padding);
  }
  .review-copy h3 { font-size: 24px; }
  .review-copy p {
    min-height: 0;
    max-width: none;
    margin-bottom: var(--space-sm);
  }
  .formats-block {
    padding: calc(var(--card-padding) + 2px);
  }
  .format-card {
    padding: var(--card-padding);
  }
  .format-icon {
    width: 58px;
    height: 58px;
    flex-basis: 54px;
    font-size: 24px;
  }
  .review-logo {
    margin-bottom: var(--space-sm);
  }
  .qr-shell {
    justify-self: start;
  }
  .reviews-widget {
    padding: calc(var(--card-padding) + 2px);
  }
  .reviews-widget-head {
    flex-direction: column;
    margin-bottom: var(--section-title-gap);
  }
  .reviews-widget-rating {
    align-items: flex-start;
    min-width: 0;
  }
  .rating-note {
    text-align: left;
  }
  .reviews-slider-shell {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 12px;
    align-items: center;
  }
  .reviews-slider {
    grid-auto-columns: 88%;
  }
  .map-meta {
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
  }
  .map-box {
    padding: 14px;
  }
  .map-frame,
  .map-frame-shell {
    min-height: 240px;
  }
  .small-map .map-frame,
  .small-map .map-frame-shell {
    min-height: 190px;
  }
  .reviews-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    font-size: 24px;
  }
  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
  .modal-card {
    padding: var(--card-padding);
  }
  .modal-card h2 {
    font-size: 28px;
  }
  input, select, textarea {
    min-height: 50px;
  }
  textarea {
    min-height: 120px;
  }
}

@media (max-width: 640px) {
  :root {
    --section-space: 48px;
    --card-padding: 20px;
    --content-gap: 18px;
    --section-title-gap: 18px;
    --section-copy-gap: 28px;
  }
  section[id] {
    scroll-margin-top: 88px;
  }
  .hero .hero-content {
    padding: 36px 0 60px;
  }
  #contacts.section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .reviews-widget {
    padding: 18px;
    border-radius: 24px;
  }
  .work-modes-panel {
    padding: 22px;
    border-radius: 24px;
  }
  .work-modes-grid {
    gap: 14px;
  }
  .work-mode-card {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 14px;
    padding: 20px;
    border-radius: 22px;
  }
  .work-mode-icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }
  .work-mode-card h3 {
    font-size: 21px;
  }
  .footer-grid {
    gap: 20px;
    padding-bottom: 18px;
  }
  .footer-title {
    font-size: 14px;
  }
  .map-box {
    padding: 12px;
  }
  .map-frame,
  .map-frame-shell {
    min-height: 220px;
  }
  .small-map .map-frame,
  .small-map .map-frame-shell {
    min-height: 180px;
  }
  .map-meta h3 {
    font-size: 20px;
  }
  .reviews-widget-head h3 {
    font-size: 24px;
  }
  .review-slide {
    padding: 18px;
    border-radius: 22px;
  }
  .reviews-slider {
    grid-auto-columns: 92%;
    gap: 12px;
  }
  .reviews-slider-shell {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
  }
  .reviews-nav {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
}

.button,
.service-card,
.compare-card,
.review-card,
.review-slide,
.page-service,
.advantage-tone,
.step-card,
.faq-item,
.map-card,
.contact-block,
.work-mode-card {
  --pointer-x: 50%;
  --pointer-y: 50%;
  --premium-edge: rgba(255,255,255,0.35);
  --premium-glow: rgba(0,0,0,0.03);
}

.button {
  transform: translateZ(0);
}

.button::before {
  background:
    linear-gradient(108deg, transparent 10%, rgba(255,255,255,0.04) 28%, rgba(255,255,255,0.34) 44%, rgba(255,255,255,0.14) 56%, transparent 78%),
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255,255,255,0.16), transparent 44%);
}

.button.primary {
  box-shadow:
    0 8px 24px rgba(0,0,0,0.10),
    0 0 0 1px rgba(255,255,255,0.08) inset;
}

.button.primary:hover,
.button.primary:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 8px 24px rgba(0,0,0,0.10),
    0 0 0 1px rgba(255,255,255,0.35),
    inset 0 1px 0 rgba(255,255,255,0.26);
}

.button.outline:hover,
.button.outline:focus-visible {
  transform: translateY(-2px) scale(1.01);
}

.service-card,
.compare-card,
.review-card,
.review-slide,
.page-service,
.advantage-tone,
.step-card,
.faq-item,
.map-card,
.contact-block {
  isolation: isolate;
}

.service-card::before,
.compare-card::before,
.review-card::before,
.review-slide::before,
.page-service::before,
.advantage-tone::before,
.step-card::before,
.faq-item::before,
.map-card::before,
.contact-block::before {
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(209, 246, 250, 0.3), transparent 28%),
    radial-gradient(circle at top right, rgba(255,255,255,0.22), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.12), transparent 42%);
}

.service-card::after,
.compare-card::after,
.review-card::after,
.review-slide::after,
.page-service::after,
.advantage-tone::after,
.step-card::after,
.faq-item::after,
.map-card::after,
.contact-block::after {
  background:
    linear-gradient(110deg, transparent 12%, rgba(255,255,255,0.03) 30%, rgba(255,255,255,0.88) 46%, rgba(255,255,255,0.12) 56%, transparent 74%);
}

.service-card:hover,
.service-card:focus-within,
.compare-card:hover,
.compare-card:focus-within,
.review-card:hover,
.review-card:focus-within,
.review-slide:hover,
.review-slide:focus-within,
.page-service:hover,
.page-service:focus-within,
.advantage-tone:hover,
.advantage-tone:focus-within,
.step-card:hover,
.step-card:focus-within,
.faq-item:hover,
.faq-item:focus-within,
.map-card:hover,
.map-card:focus-within,
.contact-block:hover,
.contact-block:focus-within {
  transform: translateY(-4px) scale(1.008);
  border-color: var(--premium-edge);
  box-shadow:
    0 8px 24px rgba(0,0,0,0.10),
    0 0 0 1px rgba(255,255,255,0.35),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.service-card:hover::before,
.service-card:focus-within::before,
.compare-card:hover::before,
.compare-card:focus-within::before,
.review-card:hover::before,
.review-card:focus-within::before,
.review-slide:hover::before,
.review-slide:focus-within::before,
.page-service:hover::before,
.page-service:focus-within::before,
.advantage-tone:hover::before,
.advantage-tone:focus-within::before,
.step-card:hover::before,
.step-card:focus-within::before,
.faq-item:hover::before,
.faq-item:focus-within::before,
.map-card:hover::before,
.map-card:focus-within::before,
.contact-block:hover::before,
.contact-block:focus-within::before {
  opacity: 1;
}

.service-card:hover::after,
.service-card:focus-within::after,
.compare-card:hover::after,
.compare-card:focus-within::after,
.review-card:hover::after,
.review-card:focus-within::after,
.review-slide:hover::after,
.review-slide:focus-within::after,
.page-service:hover::after,
.page-service:focus-within::after,
.advantage-tone:hover::after,
.advantage-tone:focus-within::after,
.step-card:hover::after,
.step-card:focus-within::after,
.faq-item:hover::after,
.faq-item:focus-within::after,
.map-card:hover::after,
.map-card:focus-within::after,
.contact-block:hover::after,
.contact-block:focus-within::after {
  opacity: 1;
  transform: translateX(22%);
}

.service-card:hover .service-photo img,
.service-card:focus-within .service-photo img,
.page-service:hover img,
.page-service:focus-within img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.03);
}

.compare-card {
  transition: transform 0.36s ease, border-color 0.32s ease, box-shadow 0.36s ease, background 0.32s ease;
}

.compare-card:hover,
.compare-card:focus-within {
  --premium-glow: rgba(0,0,0,0.03);
}

.review-card-gis {
  --premium-edge: rgba(255,255,255,0.35);
  --premium-glow: rgba(0,0,0,0.03);
}

.review-card-yandex {
  --premium-edge: rgba(255,255,255,0.35);
  --premium-glow: rgba(0,0,0,0.03);
}

.hero-visual::after {
  background:
    linear-gradient(90deg, rgba(17, 27, 35, 0.84) 0%, rgba(17, 27, 35, 0.72) 34%, rgba(17, 27, 35, 0.48) 62%, rgba(17, 27, 35, 0.26) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(10,18,24,0.1)),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.08), transparent 20%);
}

.hero-universal:hover .hero-visual::after {
  filter: brightness(1.018);
}

.hero-universal:hover .hero-visual img {
  transform: scale(1.018);
}

.reviews-nav:hover,
.reviews-nav:focus-visible,
.scroll-top:hover,
.scroll-top:focus-visible {
  box-shadow:
    0 8px 24px rgba(0,0,0,0.10);
}

/* Motion system refactor: remove shared glow template and split behavior by block */
.service-card,
.page-service,
.advantage-tone,
.step-card,
.faq-item {
  --premium-edge: rgba(223, 234, 238, 0.96);
  --premium-glow: transparent;
}

.service-card::before,
.service-card::after,
.page-service::before,
.page-service::after,
.advantage-tone::before,
.advantage-tone::after,
.step-card::before,
.step-card::after,
.faq-item::before,
.faq-item::after {
  opacity: 0 !important;
  background: none !important;
  transform: none !important;
}

.service-card:hover,
.service-card:focus-within,
.page-service:hover,
.page-service:focus-within,
.advantage-tone:hover,
.advantage-tone:focus-within,
.step-card:hover,
.step-card:focus-within,
.faq-item:hover,
.faq-item:focus-within {
  transform: translateY(-2px);
  border-color: rgba(223, 234, 238, 0.98);
  box-shadow:
    0 10px 26px rgba(31, 39, 48, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.hero-universal:hover .hero-visual::after {
  filter: brightness(1.012);
}

.hero-universal:hover .hero-visual img {
  transform: scale(1.012);
}

.hero-content .trust-points span:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.button::before {
  background:
    linear-gradient(108deg, transparent 12%, rgba(255,255,255,0.03) 34%, rgba(255,255,255,0.22) 47%, rgba(255,255,255,0.08) 58%, transparent 76%),
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255,255,255,0.08), transparent 42%);
}

.button:hover::before,
.button:focus-visible::before {
  opacity: 0.82;
}

.compare-card {
  overflow: hidden;
}

.compare-card::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 44%),
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255,255,255,0.10), transparent 26%);
}

.compare-card::after {
  background:
    linear-gradient(110deg, transparent 18%, rgba(255,255,255,0.02) 36%, rgba(255,255,255,0.36) 48%, rgba(255,255,255,0.08) 58%, transparent 76%);
}

.compare-card:hover,
.compare-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(214, 226, 232, 0.98);
  box-shadow:
    0 12px 28px rgba(31, 39, 48, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.compare-card:hover::before,
.compare-card:focus-within::before {
  opacity: 0.9;
}

.compare-card:hover::after,
.compare-card:focus-within::after {
  opacity: 0.72;
  transform: translateX(14%);
}

.review-card,
.review-slide {
  overflow: hidden;
}

.review-card::before,
.review-slide::before {
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255,255,255,0.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 42%);
}

.review-card::after,
.review-slide::after {
  background:
    linear-gradient(110deg, transparent 16%, rgba(255,255,255,0.02) 36%, rgba(255,255,255,0.28) 48%, rgba(255,255,255,0.08) 58%, transparent 76%);
}

.review-card:hover,
.review-card:focus-within,
.review-slide:hover,
.review-slide:focus-within {
  transform: translateY(-3px);
  box-shadow:
    0 12px 28px rgba(31, 39, 48, 0.09),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.review-card-gis:hover,
.review-card-gis:focus-within {
  border-color: rgba(37, 169, 91, 0.42);
  box-shadow:
    0 12px 28px rgba(31, 39, 48, 0.09),
    0 0 0 1px rgba(37, 169, 91, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.review-card-yandex:hover,
.review-card-yandex:focus-within {
  border-color: rgba(240, 68, 56, 0.42);
  box-shadow:
    0 12px 28px rgba(31, 39, 48, 0.09),
    0 0 0 1px rgba(240, 68, 56, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.map-card,
.contact-block {
  overflow: hidden;
}

.map-card::before,
.contact-block::before {
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255,255,255,0.08), transparent 30%);
}

.map-card::after,
.contact-block::after {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent 34%);
}

.map-card:hover,
.map-card:focus-within,
.contact-block:hover,
.contact-block:focus-within {
  transform: translateY(-2px);
  border-color: rgba(223, 234, 238, 0.98);
  box-shadow:
    0 10px 26px rgba(31, 39, 48, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.map-card:hover::before,
.map-card:focus-within::before,
.contact-block:hover::before,
.contact-block:focus-within::before {
  opacity: 0.75;
}

.map-card:hover::after,
.map-card:focus-within::after,
.contact-block:hover::after,
.contact-block:focus-within::after {
  opacity: 0.5;
  transform: none;
}

.service-showcase::before,
.service-showcase::after {
  animation: none;
  opacity: 0.34;
  filter: blur(30px);
}

.service-showcase .service-card {
  --premium-edge: rgba(255,255,255,0.12);
  --premium-glow: rgba(0,0,0,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 8px 24px rgba(0,0,0,0.16),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition:
    transform 0.22s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.service-showcase .service-card-body {
  position: relative;
  z-index: 1;
}

.service-showcase .service-card::before {
  background: none;
  opacity: 0;
  transition: none;
}

.service-showcase .service-card::after {
  background: none;
  opacity: 0;
  transform: none;
  transition: none;
}

.service-showcase .service-card:hover,
.service-showcase .service-card:focus-within {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.14);
  box-shadow:
    0 10px 24px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.07);
}

.service-showcase .service-card:hover::before,
.service-showcase .service-card:focus-within::before {
  opacity: 0;
}

.service-showcase .service-card:hover::after,
.service-showcase .service-card:focus-within::after {
  opacity: 0;
  transform: none;
}

.service-showcase .service-photo img {
  transition: transform 0.24s ease, filter 0.24s ease;
}

.service-showcase .service-card:hover .service-photo img,
.service-showcase .service-card:focus-within .service-photo img {
  transform: scale(1.012);
  filter: saturate(1.02) contrast(1.02);
}

.cookie-consent-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 44;
  width: min(360px, calc(100vw - 32px));
}

.cookie-consent-banner__card {
  position: relative;
  padding: 22px 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.35);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.88), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.93), rgba(244,247,249,0.92));
  box-shadow:
    0 8px 24px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.98);
  backdrop-filter: blur(6px);
}

.cookie-consent-banner__eyebrow {
  margin: 0 0 8px;
  color: #6f92a5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cookie-consent-banner h2 {
  margin: 0 26px 12px 0;
  font-size: 26px;
  line-height: 1.14;
  color: #20303b;
}

.cookie-consent-banner__text {
  margin: 0;
  color: #4f616d;
  font-size: 14px;
  line-height: 1.65;
}

.cookie-consent-banner__text a {
  color: var(--accent-700);
  font-weight: 700;
}

.cookie-consent-banner__text a:hover {
  color: var(--primary-dark);
}

.cookie-consent-banner__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 18px;
}

.cookie-consent-banner__actions .button {
  min-width: 160px;
}

.cookie-consent-banner__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(213, 226, 232, 0.96);
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #20303b;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.cookie-consent-banner__close:hover {
  transform: scale(1.03);
  border-color: rgba(191, 220, 228, 0.96);
  background: rgba(255,255,255,1);
}

.cookie-consent-banner__close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(31, 182, 201, 0.14);
}

.yandex-widget-shell {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(220, 232, 236, 0.95);
}

.yandex-widget-frame-shell {
  margin-top: 10px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(226, 235, 239, 0.95);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.yandex-widget-frame {
  display: block;
  width: 100%;
  min-height: 340px;
  border: 0;
  background: #fff;
}

@media (max-width: 640px) {
  .cookie-consent-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }

  .cookie-consent-banner__card {
    padding: 20px 18px 18px;
    border-radius: 22px;
  }

  .cookie-consent-banner h2 {
    margin-right: 24px;
    font-size: 22px;
  }

  .cookie-consent-banner__text {
    font-size: 13px;
  }

  .cookie-consent-banner__actions .button {
    width: 100%;
    min-width: 0;
  }

  .yandex-widget-frame {
    min-height: 280px;
  }
}

/* Accessibility mode */
html.accessibility-mode {
  scroll-behavior: auto !important;
}

html.accessibility-mode body,
body.accessibility-mode {
  background: #ffffff !important;
  color: #101010 !important;
}

html.accessibility-mode body::before,
html.accessibility-mode body::after,
body.accessibility-mode::before,
body.accessibility-mode::after,
html.accessibility-mode .section::before,
html.accessibility-mode .section::after,
body.accessibility-mode .section::before,
body.accessibility-mode .section::after,
html.accessibility-mode .hero-visual::before,
html.accessibility-mode .hero-visual::after,
body.accessibility-mode .hero-visual::before,
body.accessibility-mode .hero-visual::after {
  display: none !important;
  animation: none !important;
}

html.accessibility-mode *,
body.accessibility-mode * {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

html.accessibility-mode .site-header,
body.accessibility-mode .site-header,
html.accessibility-mode .soft,
body.accessibility-mode .soft,
html.accessibility-mode .service-showcase,
body.accessibility-mode .service-showcase,
html.accessibility-mode .work-modes-panel,
body.accessibility-mode .work-modes-panel,
html.accessibility-mode .service-card,
body.accessibility-mode .service-card,
html.accessibility-mode .compare-card,
body.accessibility-mode .compare-card,
html.accessibility-mode .review-card,
body.accessibility-mode .review-card,
html.accessibility-mode .review-slide,
body.accessibility-mode .review-slide,
html.accessibility-mode .contact-block,
body.accessibility-mode .contact-block,
html.accessibility-mode .map-card,
body.accessibility-mode .map-card,
html.accessibility-mode .faq-item,
body.accessibility-mode .faq-item,
html.accessibility-mode .modal-card,
body.accessibility-mode .modal-card,
html.accessibility-mode .cookie-consent-banner__card,
body.accessibility-mode .cookie-consent-banner__card,
html.accessibility-mode .site-footer,
body.accessibility-mode .site-footer {
  background: #ffffff !important;
  color: #101010 !important;
  border-color: #111111 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  filter: none !important;
}

html.accessibility-mode .hero-universal,
body.accessibility-mode .hero-universal {
  border-color: #111111 !important;
  box-shadow: none !important;
  background: #ffffff !important;
}

html.accessibility-mode .hero-visual img,
body.accessibility-mode .hero-visual img {
  display: none !important;
  filter: none !important;
  transform: none !important;
}

html.accessibility-mode .hero,
body.accessibility-mode .hero,
html.accessibility-mode .hero-grid,
body.accessibility-mode .hero-grid,
html.accessibility-mode .hero-visual,
body.accessibility-mode .hero-visual {
  background: #ffffff !important;
}

html.accessibility-mode .hero-content,
body.accessibility-mode .hero-content {
  background: #ffffff !important;
  border-color: transparent !important;
  min-height: auto !important;
  width: min(1040px, calc(100% - 40px)) !important;
  max-width: min(1040px, calc(100% - 40px)) !important;
  padding: 28px 0 34px !important;
  justify-content: flex-start !important;
}

html.accessibility-mode .hero,
body.accessibility-mode .hero,
html.accessibility-mode .hero-grid,
body.accessibility-mode .hero-grid,
html.accessibility-mode .hero-universal,
body.accessibility-mode .hero-universal {
  min-height: auto !important;
}

html.accessibility-mode .hero-copy,
body.accessibility-mode .hero-copy {
  width: min(760px, 100%) !important;
  max-width: min(760px, 100%) !important;
}

html.accessibility-mode .hero-content .trust-points,
body.accessibility-mode .hero-content .trust-points {
  margin: 20px auto 22px !important;
}

html.accessibility-mode .hero-content .button-row,
body.accessibility-mode .hero-content .button-row {
  margin: 0 auto !important;
}

html.accessibility-mode .hero-note,
body.accessibility-mode .hero-note {
  margin-top: 12px !important;
}

html.accessibility-mode .hero-content::before,
body.accessibility-mode .hero-content::before,
html.accessibility-mode .hero-content::after,
body.accessibility-mode .hero-content::after {
  display: none !important;
}

html.accessibility-mode .hero-content,
body.accessibility-mode .hero-content,
html.accessibility-mode .hero-title,
body.accessibility-mode .hero-title,
html.accessibility-mode .hero-subtitle,
body.accessibility-mode .hero-subtitle,
html.accessibility-mode .section-title,
body.accessibility-mode .section-title,
html.accessibility-mode .sub-title,
body.accessibility-mode .sub-title,
html.accessibility-mode h1,
body.accessibility-mode h1,
html.accessibility-mode h2,
body.accessibility-mode h2,
html.accessibility-mode h3,
body.accessibility-mode h3,
html.accessibility-mode p,
body.accessibility-mode p,
html.accessibility-mode li,
body.accessibility-mode li,
html.accessibility-mode span,
body.accessibility-mode span {
  color: #101010 !important;
  text-shadow: none !important;
}

html.accessibility-mode a,
body.accessibility-mode a {
  color: #0033aa !important;
  text-decoration: underline !important;
}

html.accessibility-mode .button,
body.accessibility-mode .button,
html.accessibility-mode .menu-toggle,
body.accessibility-mode .menu-toggle,
html.accessibility-mode .accessibility-toggle,
body.accessibility-mode .accessibility-toggle,
html.accessibility-mode input,
body.accessibility-mode input,
html.accessibility-mode select,
body.accessibility-mode select,
html.accessibility-mode textarea,
body.accessibility-mode textarea {
  background: #ffffff !important;
  color: #101010 !important;
  border-color: #111111 !important;
  box-shadow: none !important;
  filter: none !important;
}

html.accessibility-mode .button.primary,
body.accessibility-mode .button.primary {
  background: #111111 !important;
  color: #ffffff !important;
}

html.accessibility-mode .brand-mark,
body.accessibility-mode .brand-mark,
html.accessibility-mode .scroll-top,
body.accessibility-mode .scroll-top {
  background: #111111 !important;
  color: #ffffff !important;
  border-color: #111111 !important;
}

html.accessibility-mode .button.outline,
body.accessibility-mode .button.outline {
  background: #ffffff !important;
  color: #111111 !important;
}

@media (max-width: 640px) {
  html.accessibility-mode .hero-content,
  body.accessibility-mode .hero-content {
    width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
    padding: 20px 0 24px !important;
  }

  html.accessibility-mode .hero-copy,
  body.accessibility-mode .hero-copy {
    width: min(100%, 420px) !important;
    max-width: min(100%, 420px) !important;
  }

  html.accessibility-mode .hero-content .trust-points,
  body.accessibility-mode .hero-content .trust-points {
    margin: 14px auto 16px !important;
  }

  html.accessibility-mode .hero-note,
  body.accessibility-mode .hero-note {
    margin-top: 8px !important;
  }
}

html.accessibility-mode .button::before,
body.accessibility-mode .button::before,
html.accessibility-mode .button::after,
body.accessibility-mode .button::after,
html.accessibility-mode .work-mode-card::before,
body.accessibility-mode .work-mode-card::before,
html.accessibility-mode .work-mode-card::after,
body.accessibility-mode .work-mode-card::after {
  display: none !important;
}

@media (max-width: 767px) {
  .accessibility-toggle {
    width: 42px;
    height: 42px;
  }

  .accessibility-toggle::after {
    left: 0;
    right: auto;
    top: calc(100% + 10px);
    bottom: auto;
    transform: translateY(-4px);
    max-width: min(240px, calc(100vw - 32px));
    white-space: normal;
  }

  .accessibility-toggle:hover::after,
  .accessibility-toggle:focus-visible::after {
    transform: translateY(0);
  }

  .accessibility-toggle::before {
    left: 20px;
    top: calc(100% + 4px);
    transform: translateX(-50%) rotate(45deg) translateY(-4px);
  }

  .accessibility-toggle:hover::before,
  .accessibility-toggle:focus-visible::before {
    transform: translateX(-50%) rotate(45deg) translateY(0);
  }
}

/* Hero layout final cleanup */
.hero .hero-content {
  width: min(1040px, calc(100% - 56px)) !important;
  max-width: min(1040px, calc(100% - 56px)) !important;
  min-height: 100svh !important;
  margin-inline: auto !important;
  padding: 72px 0 88px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  transform: none !important;
}

.hero .hero-copy {
  width: min(1220px, 100%) !important;
  max-width: min(1220px, 100%) !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
  gap: 0 !important;
  transform: none !important;
}

.hero .hero-copy > .hero-title,
.hero .hero-copy > .hero-subtitle,
.hero .hero-copy > .trust-points,
.hero .hero-copy > .button-row,
.hero .hero-copy > .hero-note {
  width: 100% !important;
  align-self: stretch !important;
  margin-left: auto !important;
  margin-right: auto !important;
  transform: none !important;
}

.hero .hero-title {
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto 24px !important;
  text-align: center !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  text-wrap: balance !important;
}

.hero .hero-title-layout {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  align-items: center !important;
  justify-content: center !important;
}

.hero .hero-title-layout .hero-line {
  display: block !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

.hero .hero-title-layout-desktop {
  display: block !important;
  max-width: 100% !important;
  font-size: clamp(27px, 2.35vw, 38px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.018em !important;
}

.hero .hero-title-layout-tablet,
.hero .hero-title-layout-mobile {
  display: none !important;
}

.hero .hero-subtitle {
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto 8px !important;
  text-align: center !important;
  font-size: clamp(16px, 1.3vw, 19px) !important;
  line-height: 1.58 !important;
  letter-spacing: -0.01em !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  text-wrap: pretty !important;
}

.hero .hero-content .trust-points {
  max-width: none !important;
  margin: 32px auto 34px !important;
  justify-content: center !important;
  gap: 14px !important;
}

.hero .hero-content .button-row {
  width: 100% !important;
  margin: 0 auto !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 16px !important;
}

.hero .hero-note {
  max-width: none !important;
  margin: 18px auto 0 !important;
  text-align: center !important;
}

@media (max-width: 1024px) {
  .hero .hero-content {
    width: min(940px, calc(100% - 44px)) !important;
    max-width: min(940px, calc(100% - 44px)) !important;
  }

  .hero .hero-copy {
    width: min(980px, 100%) !important;
    max-width: min(980px, 100%) !important;
  }

  .hero .hero-title-layout-desktop {
    max-width: 100% !important;
    font-size: clamp(24px, 2.45vw, 33px) !important;
    line-height: 1.1 !important;
  }

  .hero .hero-subtitle { font-size: clamp(15.5px, 1.2vw, 18px) !important; }
}

@media (max-width: 820px) {
  body {
    background: #fcfeff;
  }

  body::before,
  body::after {
    display: none;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: none;
  }

  .hero,
  .hero-grid,
  .hero-universal,
  .hero-visual {
    background: transparent !important;
  }

  .hero .hero-content {
    width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
    min-height: 84svh !important;
    padding: 30px 0 34px !important;
  }

  .hero .hero-copy {
    width: min(680px, 100%) !important;
    max-width: min(680px, 100%) !important;
  }

  .hero .hero-title-layout-desktop {
    display: none !important;
  }

  .hero .hero-title-layout-tablet {
    display: flex !important;
    flex-direction: column !important;
    max-width: min(600px, 100%) !important;
    font-size: clamp(25px, 4.9vw, 31px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em !important;
  }

  .hero .hero-subtitle {
    max-width: min(540px, 100%) !important;
    margin-bottom: 4px !important;
    font-size: 15px !important;
    line-height: 1.62 !important;
    letter-spacing: -0.01em !important;
  }

  .hero .hero-content .trust-points {
    gap: 10px !important;
    margin: 18px auto 20px !important;
  }

  .hero .hero-content .trust-points span {
    padding: 10px 14px !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
  }

  .hero .hero-content .button-row {
    gap: 12px !important;
  }

  .hero .hero-note {
    margin-top: 10px !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
  }
}

@media (max-width: 640px) {
  .hero {
    background: #111b23 !important;
    margin: 0 !important;
  }

  .hero .container.hero-grid {
    width: 100% !important;
    max-width: none !important;
    margin-inline: auto !important;
    gap: 0 !important;
  }

  .hero .hero-universal {
    min-height: calc(100dvh - 72px) !important;
    background:
      linear-gradient(180deg, rgba(12, 20, 28, 0.18) 0%, rgba(12, 20, 28, 0.16) 20%, rgba(12, 20, 28, 0.34) 56%, rgba(12, 20, 28, 0.56) 100%),
      url("assets/hero-bg.jpg") 52% 28% / cover no-repeat !important;
  }

  .hero .hero-universal::before {
    display: none !important;
  }

  .hero .hero-visual,
  .hero .hero-universal::after,
  .hero .hero-visual::after {
    display: none !important;
  }

  .hero .hero-content {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    min-height: calc(100dvh - 72px) !important;
    padding: 16px 0 18px !important;
    justify-content: flex-end !important;
  }

  .hero .hero-copy {
    width: min(100%, 420px) !important;
    max-width: min(100%, 420px) !important;
  }

  .hero .hero-title {
    margin-bottom: 8px !important;
  }

  .hero .hero-title-layout-tablet {
    display: none !important;
  }

  .hero .hero-title-layout-mobile {
    display: flex !important;
    flex-direction: column !important;
    max-width: min(390px, 100%) !important;
    font-size: clamp(21px, 6vw, 26px) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.014em !important;
    row-gap: 2px !important;
  }

  .hero .hero-subtitle {
    max-width: 340px !important;
    font-size: 14px !important;
    line-height: 1.58 !important;
    margin-bottom: 0 !important;
  }

  .hero .hero-content .trust-points {
    max-width: 360px !important;
    margin-top: 12px !important;
    margin-bottom: 14px !important;
    gap: 8px !important;
  }

  .hero .hero-content .button-row {
    width: min(100%, 340px) !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .hero .hero-content .button-row .button {
    width: 100% !important;
    min-height: 48px !important;
  }

  .hero .hero-note {
    max-width: 320px !important;
    margin-top: 6px !important;
  }
}

@media (max-width: 420px) {
  .site-header {
    border-bottom-color: rgba(227, 233, 237, 0.9);
    box-shadow: 0 6px 18px rgba(31, 39, 48, 0.05);
  }

  .hero .hero-content {
    width: calc(100% - 18px) !important;
    max-width: calc(100% - 18px) !important;
    min-height: calc(100dvh - 72px) !important;
    padding: 14px 0 16px !important;
  }

  .hero .hero-copy {
    width: min(100%, 360px) !important;
    max-width: min(100%, 360px) !important;
  }

  .hero .hero-title-layout-mobile {
    font-size: clamp(20px, 5.8vw, 24px) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.012em !important;
  }

  .hero .hero-subtitle {
    max-width: 300px !important;
    font-size: 13.5px !important;
    line-height: 1.56 !important;
  }

  .hero .hero-content .trust-points {
    margin-top: 10px !important;
    margin-bottom: 12px !important;
  }
}

/* Final mobile + accessibility hero hard reset */
@media (max-width: 640px) {
  body:not(.accessibility-mode) .hero,
  html:not(.accessibility-mode) .hero {
    background: transparent !important;
  }

  body:not(.accessibility-mode) .hero .container.hero-grid,
  html:not(.accessibility-mode) .hero .container.hero-grid {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body:not(.accessibility-mode) .hero .hero-universal,
  html:not(.accessibility-mode) .hero .hero-universal {
    min-height: calc(100dvh - 72px) !important;
    margin: 0 !important;
    background: #111b23 !important;
  }

  body:not(.accessibility-mode) .hero .hero-visual,
  html:not(.accessibility-mode) .hero .hero-visual {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  body:not(.accessibility-mode) .hero .hero-visual img,
  html:not(.accessibility-mode) .hero .hero-visual img {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 50% 18% !important;
    transform: none !important;
    filter: saturate(1.02) contrast(1.04) !important;
  }

  body:not(.accessibility-mode) .hero .hero-universal::before,
  html:not(.accessibility-mode) .hero .hero-universal::before {
    display: block !important;
    background: linear-gradient(180deg, rgba(12, 20, 28, 0.16) 0%, rgba(12, 20, 28, 0.14) 18%, rgba(12, 20, 28, 0.3) 52%, rgba(12, 20, 28, 0.56) 100%) !important;
  }

  body:not(.accessibility-mode) .hero .hero-universal::after,
  html:not(.accessibility-mode) .hero .hero-universal::after,
  body:not(.accessibility-mode) .hero .hero-visual::after,
  html:not(.accessibility-mode) .hero .hero-visual::after {
    display: none !important;
  }

  body:not(.accessibility-mode) .hero .hero-content,
  html:not(.accessibility-mode) .hero .hero-content {
    width: calc(100% - 18px) !important;
    max-width: calc(100% - 18px) !important;
    min-height: calc(100dvh - 72px) !important;
    margin: 0 auto !important;
    padding: 0 0 14px !important;
    justify-content: flex-end !important;
    background: transparent !important;
    border: 0 !important;
  }

  body:not(.accessibility-mode) .hero .hero-copy,
  html:not(.accessibility-mode) .hero .hero-copy {
    width: min(100%, 390px) !important;
    max-width: min(100%, 390px) !important;
  }

  body:not(.accessibility-mode) .hero .hero-title {
    margin-bottom: 8px !important;
  }

  body:not(.accessibility-mode) .hero .hero-subtitle {
    margin-bottom: 0 !important;
  }

  body:not(.accessibility-mode) .hero .hero-content .trust-points {
    margin-top: 10px !important;
    margin-bottom: 12px !important;
  }

  body:not(.accessibility-mode) .hero .hero-note {
    margin-top: 6px !important;
  }
}

html.accessibility-mode .hero,
body.accessibility-mode .hero,
html.accessibility-mode .hero-grid,
body.accessibility-mode .hero-grid,
html.accessibility-mode .hero-universal,
body.accessibility-mode .hero-universal {
  min-height: auto !important;
  background: #ffffff !important;
}

html.accessibility-mode .hero .container.hero-grid,
body.accessibility-mode .hero .container.hero-grid {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

html.accessibility-mode .hero-visual,
body.accessibility-mode .hero-visual,
html.accessibility-mode .hero-universal::before,
body.accessibility-mode .hero-universal::before,
html.accessibility-mode .hero-universal::after,
body.accessibility-mode .hero-universal::after,
html.accessibility-mode .hero-visual::after,
body.accessibility-mode .hero-visual::after,
html.accessibility-mode .hero-visual img,
body.accessibility-mode .hero-visual img {
  display: none !important;
}

html.accessibility-mode .hero-content,
body.accessibility-mode .hero-content {
  width: min(1040px, calc(100% - 28px)) !important;
  max-width: min(1040px, calc(100% - 28px)) !important;
  min-height: auto !important;
  margin: 0 auto !important;
  padding: 18px 0 22px !important;
  justify-content: flex-start !important;
  background: transparent !important;
  border: 0 !important;
}

html.accessibility-mode .hero-copy,
body.accessibility-mode .hero-copy {
  width: min(100%, 760px) !important;
  max-width: min(100%, 760px) !important;
}

html.accessibility-mode .hero-title,
body.accessibility-mode .hero-title {
  margin-bottom: 12px !important;
}

html.accessibility-mode .hero-content .trust-points,
body.accessibility-mode .hero-content .trust-points {
  margin: 16px auto 18px !important;
}

html.accessibility-mode .hero-note,
body.accessibility-mode .hero-note {
  margin-top: 8px !important;
}

@media (max-width: 640px) {
  html.accessibility-mode .hero-content,
  body.accessibility-mode .hero-content {
    width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
    padding: 14px 0 18px !important;
  }

  html.accessibility-mode .hero-copy,
  body.accessibility-mode .hero-copy {
    width: min(100%, 390px) !important;
    max-width: min(100%, 390px) !important;
  }

  html.accessibility-mode .hero-content .trust-points,
  body.accessibility-mode .hero-content .trust-points {
    margin: 12px auto 14px !important;
  }
}

/* Final cross-browser mobile hero reset */
@media (max-width: 640px) {
  .hero,
  .hero.section,
  .hero .container.hero-grid,
  .hero .hero-universal,
  .hero .hero-content,
  .hero .hero-copy {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .hero,
  .hero.section {
    overflow: hidden !important;
    padding: 0 !important;
    background: #111b23 !important;
  }

  .hero .container.hero-grid {
    display: block !important;
    padding: 0 !important;
  }

  .hero .hero-universal {
    position: relative !important;
    display: block !important;
    min-height: calc(100svh - 73px) !important;
    overflow: hidden !important;
    background: #111b23 !important;
  }

  .hero .hero-visual {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
  }

  .hero .hero-visual img {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 50% 18% !important;
    transform: none !important;
  }

  .hero .hero-universal::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    z-index: 1 !important;
    background: linear-gradient(
      180deg,
      rgba(10, 16, 22, 0.08) 0%,
      rgba(10, 16, 22, 0.12) 18%,
      rgba(10, 16, 22, 0.28) 52%,
      rgba(10, 16, 22, 0.58) 100%
    ) !important;
  }

  .hero .hero-universal::after,
  .hero .hero-visual::after {
    display: none !important;
  }

  .hero .hero-content {
    position: relative !important;
    z-index: 2 !important;
    min-height: calc(100svh - 73px) !important;
    height: auto !important;
    padding: 18px 12px 14px !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    background: transparent !important;
    border: 0 !important;
  }

  .hero .hero-copy {
    width: min(100%, 390px) !important;
    max-width: min(100%, 390px) !important;
  }

  .hero .hero-title {
    margin-bottom: 8px !important;
  }

  .hero .hero-subtitle {
    margin-bottom: 0 !important;
  }

  .hero .hero-content .trust-points {
    margin-top: 10px !important;
    margin-bottom: 12px !important;
  }

  .hero .hero-note {
    margin-top: 6px !important;
  }

  html.accessibility-mode .hero,
  body.accessibility-mode .hero,
  html.accessibility-mode .hero.section,
  body.accessibility-mode .hero.section,
  html.accessibility-mode .hero .hero-universal,
  body.accessibility-mode .hero .hero-universal {
    background: #ffffff !important;
    min-height: auto !important;
  }

  html.accessibility-mode .hero .hero-visual,
  body.accessibility-mode .hero .hero-visual,
  html.accessibility-mode .hero .hero-visual img,
  body.accessibility-mode .hero .hero-visual img,
  html.accessibility-mode .hero .hero-universal::before,
  body.accessibility-mode .hero .hero-universal::before,
  html.accessibility-mode .hero .hero-universal::after,
  body.accessibility-mode .hero .hero-universal::after {
    display: none !important;
  }

  html.accessibility-mode .hero .hero-content,
  body.accessibility-mode .hero .hero-content {
    min-height: auto !important;
    padding: 12px 10px 18px !important;
    justify-content: flex-start !important;
  }

  html.accessibility-mode .hero .hero-copy,
  body.accessibility-mode .hero .hero-copy {
    width: min(100%, 390px) !important;
    max-width: min(100%, 390px) !important;
  }
}
