:root {
  --blue: #0874ff;
  --blue-deep: #0052dc;
  --white: #ffffff;
  --muted: rgba(246, 250, 255, 0.78);
  --dim: rgba(246, 250, 255, 0.66);
  --nav-bg: rgba(38, 52, 63, 0.78);
  --stroke: rgba(229, 244, 255, 0.2);
  --page-x: clamp(26px, 5.2vw, 96px);
  --hero-title-size: clamp(38px, 3.7vw, 68px);
  --hero-title-weight: 780;
  --hero-title-line: 1.04;
  --hero-brand-title-size: clamp(72px, 7.1vw, 132px);
  --hero-brand-title-weight: 820;
  --hero-brand-title-line: 0.9;
  --section-title-size: clamp(26px, 2.35vw, 42px);
  --section-title-weight: 760;
  --section-title-line: 1.08;
  --eyebrow-size: clamp(12px, 0.85vw, 16px);
  --eyebrow-weight: 720;
  --eyebrow-letter: 0.16em;
  --heading-rule-width: clamp(54px, 4.6vw, 72px);
  --heading-rule-color: rgba(8, 116, 255, 0.82);
  --heading-rule-muted: rgba(142, 206, 255, 0.22);
  --home-heading-rule-width: clamp(112px, 11vw, 168px);
  --home-heading-rule-accent: rgba(8, 116, 255, 0.9);
  --home-heading-rule-soft: rgba(236, 246, 255, 0.22);
  --icon-badge-radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  font-family: "Geist", "Manrope", "Segoe UI", Arial, Helvetica, sans-serif;
  background: #02070c;
}

a {
  color: inherit;
  text-decoration: none;
}

.material-symbols-outlined[data-fallback] {
  font-family: inherit;
  font-size: 0 !important;
  letter-spacing: 0;
}

.material-symbols-outlined[data-fallback]::before {
  content: attr(data-fallback);
  font-family: "Segoe UI Symbol", "Arial Unicode MS", Arial, sans-serif;
  font-size: var(--material-fallback-size, 24px);
  font-weight: 700;
  line-height: 1;
}

.page {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background: #02070c;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background: #02070c;
}

.hero-media,
.hero-shade,
.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media {
  z-index: -5;
  background: url("../backgrounds/1.jpg") center / cover no-repeat;
  filter: saturate(0.74) contrast(1.08) brightness(0.82);
  transform: scale(1.018);
}

.hero-shade {
  z-index: -4;
  background: rgba(0, 8, 15, 0.6);
}

.hero::before,
.hero::after {
  z-index: -3;
  content: "";
}

.hero::before {
  background:
    radial-gradient(ellipse at 22% 8%, rgba(190, 222, 255, 0.14), transparent 18%),
    radial-gradient(ellipse at 44% 94%, rgba(159, 178, 194, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(0, 9, 17, 0.06), rgba(0, 0, 0, 0.56));
  mix-blend-mode: screen;
  opacity: 0.85;
}

.hero::after {
  background:
    linear-gradient(180deg, rgba(0, 8, 15, 0.16) 0%, rgba(0, 8, 15, 0.16) 62%, rgba(2, 8, 14, 0.72) 86%, rgba(3, 12, 18, 0.96) 100%);
}

.tech-layer {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.tech-layer::before {
  position: absolute;
  inset: -12%;
  background-image:
    linear-gradient(rgba(127, 196, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 196, 255, 0.1) 1px, transparent 1px);
  background-size: 116px 116px;
  content: "";
  mask-image: radial-gradient(ellipse at 68% 50%, #000 0%, transparent 61%);
  opacity: 0.1;
  animation: grid-drift 24s linear infinite;
}

.tech-layer::after {
  position: absolute;
  inset: 0;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(44, 132, 255, 0.16), transparent);
  content: "";
  filter: blur(1px);
  opacity: 0.58;
  transform: translateX(-130%);
  animation: scan-pass 8.5s ease-in-out infinite;
}

.tech-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(49, 147, 255, 0.78), rgba(202, 232, 255, 0.35), transparent);
  opacity: 0;
  transform-origin: left center;
  animation: trace-line 7.5s ease-in-out infinite;
}

.tech-line-a {
  top: 30%;
  right: 4%;
  width: min(620px, 43vw);
}

.tech-line-b {
  top: 60%;
  right: 19%;
  width: min(470px, 35vw);
  animation-delay: 1.65s;
}

.tech-line-c {
  top: 75%;
  left: 8%;
  width: min(420px, 29vw);
  animation-delay: 3.25s;
}

.site-header {
  position: absolute;
  top: clamp(24px, 3.6vh, 38px);
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: clamp(22px, 2.8vw, 48px);
  align-items: center;
  padding-left: var(--page-x);
  padding-right: clamp(30px, 3.4vw, 62px);
}

.brand-group {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: clamp(14px, 1.35vw, 24px);
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(168px, 11.4vw, 218px);
  flex: 0 0 auto;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 18px rgba(6, 31, 54, 0.62));
}

.header-contacts {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: clamp(13px, 1.1vw, 20px);
  border-left: 1px solid rgba(232, 246, 255, 0.18);
  font-style: normal;
  line-height: 1.05;
}

.header-contacts a {
  color: rgba(247, 251, 255, 0.82);
  font-size: clamp(11px, 0.74vw, 14px);
  font-weight: 540;
  letter-spacing: 0.01em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
  white-space: nowrap;
  transition: color 180ms ease;
}

.header-contacts a:hover,
.header-contacts a:focus-visible {
  color: #ffffff;
  outline: none;
}

.main-nav {
  position: static;
  top: auto;
  right: auto;
  z-index: 21;
  justify-self: end;
  display: flex;
  gap: clamp(6px, 0.52vw, 10px);
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
  min-height: clamp(48px, 5.7vh, 64px);
  padding: clamp(6px, 0.58vw, 9px);
  border: 1px solid rgba(230, 246, 255, 0.24);
  border-radius: 999px;
  background:
    var(
      --nav-glass-bg,
      linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
      rgba(219, 237, 248, 0.1)
    );
  box-shadow: var(
    --nav-glass-shadow,
    0 18px 48px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.04)
  );
  -webkit-backdrop-filter: var(--nav-glass-filter, blur(24px) saturate(1.16));
  backdrop-filter: var(--nav-glass-filter, blur(24px) saturate(1.16));
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(38px, 4.2vh, 46px);
  padding: 0 clamp(14px, 1.05vw, 19px);
  border-radius: 999px;
  color: rgba(247, 251, 255, 0.88);
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 520;
  line-height: 1;
  white-space: nowrap;
  text-shadow: none;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.nav-link.is-active {
  color: #ffffff;
  background: rgba(8, 116, 255, 0.82);
  box-shadow:
    0 10px 24px rgba(0, 91, 255, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.14);
}

.hero-content {
  position: absolute;
  left: 50%;
  top: 46.8%;
  z-index: 3;
  width: min(1520px, calc(100% - (var(--page-x) * 2)));
  text-align: center;
  transform: translate(-50%, -50%);
}

.company-line {
  margin: 0 0 clamp(18px, 3.1vh, 34px);
  color: var(--muted);
  font-size: clamp(15px, 1.22vw, 24px);
  font-weight: 420;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.42);
}

h1 {
  display: grid;
  gap: clamp(15px, 2.05vh, 23px);
  justify-items: center;
  width: 100%;
  margin: 0;
  line-height: var(--hero-title-line);
  text-transform: uppercase;
  text-wrap: balance;
}

h1 span {
  display: block;
  min-width: 0;
  color: #ffffff;
  letter-spacing: 0;
  text-shadow:
    0 5px 26px rgba(0, 0, 0, 0.48),
    0 1px 0 rgba(255, 255, 255, 0.08);
}

.title-main {
  width: 100%;
  max-width: 1520px;
  font-size: var(--hero-title-size);
  font-weight: var(--hero-title-weight);
  line-height: var(--hero-title-line);
}

.title-system {
  font-size: var(--hero-brand-title-size);
  font-weight: var(--hero-brand-title-weight);
  line-height: var(--hero-brand-title-line);
}

.hero-order-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  min-height: clamp(42px, 3.1vw, 52px);
  margin-top: clamp(34px, 4.3vh, 54px);
  padding: 0 clamp(26px, 2.25vw, 38px);
  border: 1.5px solid rgba(8, 132, 255, 0.88);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 720;
  line-height: 1;
  text-transform: uppercase;
  background: rgba(7, 17, 27, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 26px rgba(8, 116, 255, 0.18);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.hero-order-button:hover,
.hero-order-button:focus-visible {
  color: #ffffff;
  border-color: rgba(8, 132, 255, 0.98);
  background: rgba(8, 116, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 34px rgba(8, 116, 255, 0.32);
  outline: none;
  transform: translateY(-2px);
}

.more-link {
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 4.7vh, 50px);
  z-index: 4;
  display: inline-grid;
  gap: clamp(18px, 2.1vh, 28px);
  justify-items: center;
  align-items: center;
  color: var(--dim);
  font-size: clamp(10px, 0.78vw, 14px);
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.44);
  transform: translateX(-50%);
  transition: color 180ms ease;
}

.more-link:hover,
.more-link:focus-visible {
  color: #ffffff;
  outline: none;
}

.more-link:hover .more-arrow,
.more-link:focus-visible .more-arrow {
  border-color: rgba(34, 148, 255, 0.96);
  background: rgba(8, 116, 255, 0.18);
  box-shadow: 0 0 34px rgba(8, 116, 255, 0.38);
}

.more-arrow {
  position: relative;
  width: clamp(44px, 3.25vw, 62px);
  height: clamp(44px, 3.25vw, 62px);
  border: 1.5px solid rgba(8, 132, 255, 0.88);
  border-radius: 50%;
  background: rgba(7, 17, 27, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 24px rgba(8, 116, 255, 0.18);
  animation: arrow-float 2.5s ease-in-out infinite;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.more-arrow::before {
  position: absolute;
  top: 48%;
  left: 50%;
  width: clamp(13px, 0.92vw, 18px);
  height: clamp(13px, 0.92vw, 18px);
  border-right: 2.5px solid #ffffff;
  border-bottom: 2.5px solid #ffffff;
  content: "";
  transform: translate(-50%, -62%) rotate(45deg);
}

.details-band {
  position: relative;
  isolation: isolate;
  min-height: 52svh;
  margin-top: -1px;
  padding: clamp(72px, 8.2vw, 118px) var(--page-x) clamp(76px, 8.8vw, 130px);
  background:
    linear-gradient(180deg, #030c12 0%, #04101a 16%, #061520 50%, #02070c 100%),
    radial-gradient(ellipse at 18% 34%, rgba(8, 116, 255, 0.11), transparent 38%),
    radial-gradient(ellipse at 82% 78%, rgba(121, 190, 255, 0.09), transparent 38%);
}

.details-band::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(142, 206, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 206, 255, 0.055) 1px, transparent 1px);
  background-size: 78px 78px;
  content: "";
  mask-image: linear-gradient(180deg, transparent 0%, transparent 12%, #000 28%, transparent 72%);
  opacity: 0.32;
}

.details-shell {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.details-shell h2 {
  max-width: 760px;
  margin: 0 auto clamp(32px, 4.1vw, 52px);
  color: #ffffff;
  font-size: var(--section-title-size);
  font-weight: var(--section-title-weight);
  line-height: var(--section-title-line);
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.34);
}

.home-page {
  --home-heading-rule-width: clamp(112px, 11vw, 168px);
  --home-heading-rule-accent: rgba(8, 116, 255, 0.9);
  --home-heading-rule-soft: rgba(236, 246, 255, 0.22);
}

.home-page .details-shell h2,
.home-page .service-content h2,
.home-page .home-section-head h2 {
  display: grid;
  justify-items: center;
}

.home-page .details-shell h2::after,
.home-page .service-content h2::after,
.home-page .home-section-head h2::after {
  display: block;
  width: var(--home-heading-rule-width);
  height: 2px;
  margin-top: clamp(16px, 1.45vw, 22px);
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      var(--home-heading-rule-soft) 0 calc(50% - 30px),
      var(--home-heading-rule-accent) calc(50% - 30px) calc(50% + 30px),
      var(--home-heading-rule-soft) calc(50% + 30px) 100%
    );
  content: "";
}

.home-page .service-content h2::after {
  margin-top: clamp(20px, 1.9vw, 30px);
}

.home-page .home-section-head h2::after {
  margin-top: clamp(14px, 1.35vw, 20px);
}

.features-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(216, 237, 255, 0.16);
  border-radius: 8px;
  background: rgba(216, 237, 255, 0.12);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.26);
}

.feature-card {
  position: relative;
  min-height: clamp(238px, 18.8vw, 292px);
  padding: clamp(20px, 1.7vw, 26px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(5, 15, 24, 0.74);
  transition: background 180ms ease, transform 180ms ease;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: clamp(36px, 2.8vw, 46px);
  height: clamp(36px, 2.8vw, 46px);
  border: 1px solid rgba(142, 206, 255, 0.2);
  border-radius: 50%;
  color: rgba(141, 202, 255, 0.92);
  font-size: clamp(22px, 1.75vw, 29px);
  line-height: 1;
  background: rgba(8, 116, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feature-card:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03)),
    rgba(7, 20, 31, 0.82);
  transform: translateY(-2px);
}

.feature-card h3 {
  margin: clamp(16px, 1.55vw, 24px) 0 clamp(14px, 1.2vw, 20px);
  color: #ffffff;
  font-size: clamp(18px, 1.16vw, 22px);
  font-weight: 740;
  line-height: 1.04;
  text-wrap: balance;
}

.feature-card p {
  margin: 0;
  color: rgba(236, 246, 255, 0.78);
  font-size: clamp(14px, 0.88vw, 16px);
  font-weight: 420;
  line-height: 1.56;
}

.service-spotlight {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(300px, 560px);
  gap: clamp(54px, 8.2vw, 150px);
  align-items: center;
  justify-content: center;
  min-height: clamp(540px, 70svh, 760px);
  padding: clamp(72px, 7.4vw, 110px) var(--page-x);
  overflow: hidden;
  background:
    linear-gradient(180deg, #02070c 0%, #071521 48%, #02070c 100%);
}

.service-spotlight::before,
.service-spotlight::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
}

.service-spotlight::before {
  background:
    radial-gradient(circle at 34% 50%, rgba(8, 116, 255, 0.22), transparent 30%),
    radial-gradient(ellipse at 72% 30%, rgba(238, 248, 255, 0.08), transparent 24%);
}

.service-spotlight::after {
  background:
    linear-gradient(90deg, rgba(2, 7, 12, 0.2), rgba(2, 7, 12, 0.16) 42%, rgba(2, 7, 12, 0.5) 100%),
    linear-gradient(180deg, rgba(2, 7, 12, 0.18), rgba(2, 7, 12, 0.46));
}

.service-visual {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: clamp(300px, 31vw, 520px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(142, 206, 255, 0.18);
  border-radius: 50%;
  opacity: 0.96;
  background:
    radial-gradient(circle at 42% 40%, rgba(8, 116, 255, 0.16), transparent 54%),
    rgba(5, 15, 24, 0.48);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 30px 90px rgba(0, 0, 0, 0.36),
    0 0 80px rgba(8, 116, 255, 0.18);
  filter: saturate(0.92) contrast(1.04) brightness(0.9);
  transform: none;
}

.service-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  justify-self: start;
  width: min(560px, 100%);
  text-align: center;
}

.service-kicker {
  margin: 0 0 clamp(18px, 1.8vw, 28px);
  color: rgba(247, 251, 255, 0.78);
  font-size: clamp(12px, 0.86vw, 16px);
  font-weight: 760;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-content h2 {
  max-width: 560px;
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(30px, 2.65vw, 48px);
  font-weight: 820;
  line-height: 1.04;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 10px 38px rgba(0, 0, 0, 0.48);
}

.service-copy {
  max-width: 500px;
  margin: clamp(24px, 3.2vw, 42px) auto 0;
  color: rgba(236, 246, 255, 0.76);
  font-size: clamp(14px, 1.05vw, 19px);
  font-weight: 520;
  line-height: 1.45;
  text-wrap: balance;
}

.service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 46px;
  margin-top: clamp(24px, 2.8vw, 36px);
  padding: 0 30px;
  border: 1.5px solid rgba(8, 132, 255, 0.86);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(7, 17, 27, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 24px rgba(8, 116, 255, 0.16);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-button:hover,
.service-button:focus-visible {
  color: #ffffff;
  border-color: rgba(8, 116, 255, 0.9);
  background: rgba(8, 116, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 32px rgba(8, 116, 255, 0.3);
  outline: none;
  transform: translateY(-2px);
}

.home-proof-section {
  position: relative;
  isolation: isolate;
  padding: clamp(58px, 6.4vw, 96px) var(--page-x);
  margin-top: -1px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 16% 28%, rgba(8, 116, 255, 0.1), transparent 34%),
    radial-gradient(ellipse at 86% 74%, rgba(154, 213, 255, 0.055), transparent 34%),
    linear-gradient(180deg, #02070c 0%, #061622 52%, #02070c 100%);
}

.home-proof-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(142, 206, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 206, 255, 0.042) 1px, transparent 1px);
  background-size: 92px 92px;
  content: "";
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 76%, transparent);
  opacity: 0.22;
}

.certificates-section {
  padding-top: clamp(70px, 7vw, 112px);
  background:
    linear-gradient(180deg, #02070c 0%, #05131e 18%, #061622 62%, #02070c 100%);
}

.partners-section {
  padding-bottom: clamp(104px, 9vw, 150px);
  background:
    linear-gradient(180deg, #02070c 0%, #061622 46%, #04101a 78%, #061622 100%);
}

.partners-section::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 0;
  height: clamp(170px, 14vw, 240px);
  background:
    radial-gradient(ellipse at 50% 100%, rgba(8, 116, 255, 0.1), transparent 58%),
    linear-gradient(180deg, rgba(2, 7, 12, 0) 0%, rgba(3, 13, 21, 0.78) 38%, #061622 100%);
  content: "";
  pointer-events: none;
}

.faq-section {
  margin-top: clamp(-108px, -7vw, -72px);
  padding-top: clamp(140px, 11vw, 190px);
  padding-bottom: clamp(66px, 7vw, 112px);
  background:
    radial-gradient(ellipse at 50% 12%, rgba(8, 116, 255, 0.1), transparent 34%),
    linear-gradient(180deg, #061622 0%, #04111b 30%, #061622 58%, #02070c 100%);
}

.home-section-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.home-section-head {
  width: min(760px, 100%);
  margin: 0 auto clamp(28px, 3.4vw, 48px);
  text-align: center;
}

.home-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 clamp(10px, 1vw, 14px);
  color: rgba(77, 157, 255, 0.96);
  font-size: clamp(11px, 0.78vw, 14px);
  font-weight: 720;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-section-kicker::before,
.home-section-kicker::after {
  display: block;
  width: 26px;
  height: 1px;
  background: rgba(8, 116, 255, 0.72);
  content: "";
}

.home-section-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: var(--section-title-size);
  font-weight: var(--section-title-weight);
  line-height: var(--section-title-line);
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 10px 38px rgba(0, 0, 0, 0.38);
}

.home-section-head p {
  width: min(620px, 100%);
  margin: clamp(14px, 1.5vw, 20px) auto 0;
  color: rgba(236, 246, 255, 0.72);
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 420;
  line-height: 1.55;
  text-wrap: balance;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.45vw, 22px);
}

.certificate-card {
  position: relative;
  display: block;
  aspect-ratio: 0.72;
  overflow: hidden;
  border: 1px solid rgba(142, 206, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(5, 15, 24, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.28);
}

.certificate-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 7, 12, 0.08), rgba(2, 7, 12, 0.18) 68%, rgba(2, 7, 12, 0.48)),
    linear-gradient(90deg, rgba(8, 116, 255, 0.14), transparent 24%, transparent 76%, rgba(8, 116, 255, 0.08));
  content: "";
  pointer-events: none;
}

.certificate-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.88) contrast(1.05) brightness(0.88);
  transition: transform 220ms ease, filter 220ms ease;
}

.certificate-card:hover img,
.certificate-card:focus-visible img {
  filter: saturate(0.96) contrast(1.05) brightness(0.98);
  transform: scale(1.025);
}

.certificate-card:focus-visible {
  outline: 2px solid rgba(8, 116, 255, 0.8);
  outline-offset: 4px;
}

.certificate-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(142, 206, 255, 0.24);
  border-radius: 999px;
  color: rgba(247, 251, 255, 0.9);
  font-size: 12px;
  font-weight: 680;
  background: rgba(4, 14, 23, 0.72);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  backdrop-filter: blur(14px) saturate(1.12);
}

.certificate-badge .material-symbols-outlined {
  color: rgba(77, 157, 255, 0.98);
  font-size: 17px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.25vw, 18px);
}

.partner-card {
  display: grid;
  place-items: center;
  min-height: clamp(118px, 9.4vw, 160px);
  padding: clamp(18px, 2vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(142, 206, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(5, 15, 24, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 58px rgba(0, 0, 0, 0.22);
}

.partner-card img {
  display: block;
  max-width: min(190px, 82%);
  max-height: 78px;
  object-fit: contain;
  filter: saturate(0.85) brightness(1.08) contrast(1.04);
}

.faq-shell {
  width: min(1020px, 100%);
}

.faq-list {
  display: grid;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(142, 206, 255, 0.16);
  border-radius: 8px;
  background: rgba(216, 237, 255, 0.08);
}

.faq-item {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(5, 15, 24, 0.7);
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(216, 237, 255, 0.11);
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 18px;
  align-items: center;
  min-height: clamp(58px, 4.8vw, 74px);
  padding: 0 clamp(18px, 2.4vw, 30px);
  color: rgba(247, 251, 255, 0.92);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 520;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 clamp(18px, 2.4vw, 30px) clamp(18px, 2vw, 28px);
  color: rgba(77, 157, 255, 0.96);
  font-size: clamp(13px, 0.86vw, 16px);
  font-weight: 450;
  line-height: 1.55;
}

.faq-toggle {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(142, 206, 255, 0.42);
  border-radius: 50%;
  justify-self: end;
  background: rgba(8, 116, 255, 0.08);
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  width: 10px;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(247, 251, 255, 0.9);
  content: "";
}

.faq-toggle::after {
  transform: rotate(90deg);
}

.faq-item[open] .faq-toggle {
  border-color: rgba(8, 116, 255, 0.88);
  background: rgba(8, 116, 255, 0.18);
}

.faq-item[open] .faq-toggle::after {
  opacity: 0;
}

.reviews-section {
  padding-top: clamp(62px, 5.8vw, 92px);
  padding-bottom: clamp(64px, 6vw, 98px);
  background:
    radial-gradient(ellipse at 50% 12%, rgba(8, 116, 255, 0.12), transparent 36%),
    linear-gradient(180deg, #02070c 0%, #061622 42%, #02070c 100%);
}

.reviews-shell {
  width: min(1240px, 100%);
}

.reviews-section .home-section-head {
  margin-bottom: clamp(24px, 2.4vw, 34px);
}

.reviews-marquee {
  position: relative;
  overflow: hidden;
  padding: 2px 0 6px;
  mask-image: linear-gradient(90deg, transparent 0, #000 52px, #000 calc(100% - 52px), transparent 100%);
}

.reviews-marquee:hover .reviews-grid,
.reviews-marquee:focus-within .reviews-grid {
  animation-play-state: paused;
}

.reviews-grid {
  --reviews-gap: clamp(16px, 1.7vw, 24px);
  display: flex;
  width: max-content;
  gap: var(--reviews-gap);
  align-items: stretch;
  will-change: transform;
}

.reviews-grid.is-ready {
  animation: reviews-marquee 56s linear infinite;
}

.review-card {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 16px;
  width: clamp(300px, 28vw, 370px);
  flex: 0 0 clamp(300px, 28vw, 370px);
  min-width: 0;
}

.review-card blockquote {
  position: relative;
  height: clamp(188px, 15.2vw, 228px);
  margin: 0;
  padding: clamp(20px, 1.8vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(142, 206, 255, 0.17);
  border-radius: 8px;
  color: rgba(246, 250, 255, 0.86);
  font-size: clamp(13px, 0.84vw, 15px);
  font-weight: 430;
  line-height: 1.52;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(5, 15, 24, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 62px rgba(0, 0, 0, 0.22);
}

.review-card blockquote::before {
  display: block;
  margin-bottom: 12px;
  color: rgba(77, 157, 255, 0.98);
  font-size: 32px;
  font-weight: 760;
  line-height: 0.7;
  content: "«";
}

.review-card blockquote::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58px;
  border: 0;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, rgba(5, 15, 24, 0), rgba(5, 15, 24, 0.96) 72%);
  content: "";
  pointer-events: none;
}

.review-card blockquote > * {
  min-width: 0;
}

.review-author {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding-left: 6px;
  color: rgba(236, 246, 255, 0.78);
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 620;
  line-height: 1.2;
}

.review-logo {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border: 1px solid rgba(142, 206, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}

.review-logo img {
  display: block;
  max-width: 82%;
  max-height: 82%;
  object-fit: contain;
}

.visits-page {
  min-height: 100svh;
  background:
    radial-gradient(ellipse at 50% 24%, rgba(8, 116, 255, 0.1), transparent 36%),
    linear-gradient(180deg, #02070c 0%, #051421 54%, #02070c 100%);
}

.visits-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  padding: clamp(118px, 13vh, 154px) var(--page-x) clamp(48px, 5vw, 82px);
  overflow: hidden;
  background: #02070c;
}

.visits-hero-media,
.visits-hero::before,
.visits-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.visits-hero-media {
  z-index: -6;
  background: url("../backgrounds/3.jpg?v=20260622-optimized-1") center / cover no-repeat;
  filter: saturate(0.86) contrast(1.05) brightness(0.82);
  transform: scale(1.018);
}

.visits-hero::before,
.visits-hero::after {
  content: "";
}

.visits-hero::before {
  z-index: -5;
  background:
    radial-gradient(ellipse at 19% 30%, rgba(209, 232, 255, 0.13), transparent 27%),
    radial-gradient(ellipse at 79% 20%, rgba(8, 116, 255, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(2, 7, 12, 0.08) 0%, rgba(2, 7, 12, 0.4) 36%, rgba(2, 7, 12, 0.92) 58%, rgba(2, 7, 12, 0.96) 100%);
}

.visits-hero::after {
  z-index: -4;
  background:
    linear-gradient(180deg, rgba(2, 7, 12, 0.18) 0%, rgba(2, 7, 12, 0.12) 42%, rgba(2, 7, 12, 0.74) 86%, #02070c 100%),
    radial-gradient(ellipse at 82% 92%, rgba(8, 116, 255, 0.14), transparent 42%);
}

.visits-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(570px, 1.2fr);
  gap: clamp(24px, 3.2vw, 54px);
  align-content: start;
  width: min(1500px, 100%);
  min-height: calc(100svh - clamp(190px, 22vh, 240px));
  margin: 0 auto;
  padding-top: clamp(78px, 10vh, 132px);
}

.visits-copy,
.visits-card-grid {
  grid-column: 2;
}

.visits-copy {
  position: relative;
  width: min(760px, 100%);
  margin-top: clamp(20px, 3.5vh, 54px);
  margin-bottom: clamp(18px, 2vw, 26px);
  padding-left: clamp(24px, 2.2vw, 38px);
}

.visits-copy::before {
  position: absolute;
  left: 0;
  top: clamp(38px, 4vw, 58px);
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--blue), rgba(8, 116, 255, 0.12));
  content: "";
  box-shadow: 0 0 24px rgba(8, 116, 255, 0.32);
}

.visits-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: var(--hero-title-size);
  font-weight: var(--hero-title-weight);
  line-height: var(--hero-title-line);
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 16px 54px rgba(0, 0, 0, 0.45);
}

.visits-title-rule {
  display: none;
}

.visits-lead {
  max-width: 820px;
  margin: clamp(20px, 2.2vw, 32px) 0 0;
  color: rgba(236, 246, 255, 0.74);
  font-size: clamp(16px, 1.25vw, 22px);
  font-weight: 540;
  line-height: 1.45;
  text-transform: none;
  text-wrap: balance;
}

.visits-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.35vw, 22px);
}

.visits-info-card {
  display: grid;
  grid-template-columns: clamp(48px, 3.8vw, 62px) minmax(0, 1fr);
  gap: clamp(16px, 1.4vw, 24px);
  min-height: clamp(176px, 14vw, 220px);
  padding: clamp(18px, 1.8vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(90, 170, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022)),
    rgba(5, 18, 31, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 22px 68px rgba(0, 0, 0, 0.26);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  backdrop-filter: blur(12px) saturate(1.1);
}

.visits-card-icon {
  display: inline-grid;
  place-items: center;
  width: clamp(48px, 3.8vw, 62px);
  height: clamp(48px, 3.8vw, 62px);
  border-radius: 10px;
  color: rgba(141, 202, 255, 0.96);
  font-size: clamp(28px, 2.2vw, 36px);
  line-height: 1;
  background:
    linear-gradient(180deg, rgba(8, 116, 255, 0.42), rgba(8, 116, 255, 0.16));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 14px 34px rgba(8, 116, 255, 0.16);
}

.visits-info-card h2 {
  margin: 0 0 clamp(14px, 1.3vw, 20px);
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 760;
  line-height: 1.25;
  text-transform: uppercase;
}

.visits-info-card p,
.visits-info-card li {
  color: rgba(236, 246, 255, 0.76);
  font-size: clamp(14px, 0.95vw, 17px);
  font-weight: 430;
  line-height: 1.45;
}

.visits-info-card p {
  margin: 0;
}

.visits-info-card ol,
.visits-info-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.visits-info-card ol {
  counter-reset: visit-step;
}

.visits-info-card ol li {
  counter-increment: visit-step;
}

.visits-info-card ol li::before {
  color: rgba(141, 202, 255, 0.9);
  content: counter(visit-step) ". ";
}

.visits-check-list {
  display: grid;
  gap: 8px;
}

.visits-check-list li {
  position: relative;
  padding-left: 30px;
}

.visits-check-list li::before {
  position: absolute;
  left: 0;
  top: 0.18em;
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  background: rgba(8, 116, 255, 0.72);
  content: "✓";
  box-shadow: 0 0 16px rgba(8, 116, 255, 0.24);
}

.visits-benefits {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: clamp(16px, 2.2vw, 34px);
  border: 1px solid rgba(90, 170, 255, 0.24);
  border-radius: 10px;
  background: rgba(90, 170, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 72px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
  backdrop-filter: blur(12px) saturate(1.08);
}

.visits-benefits article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 86px;
  padding: 16px clamp(16px, 2vw, 30px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(5, 18, 31, 0.68);
}

.visits-benefits .material-symbols-outlined {
  color: rgba(77, 157, 255, 0.98);
  font-size: 34px;
  filter: drop-shadow(0 0 18px rgba(8, 116, 255, 0.3));
}

.visits-benefits p {
  margin: 0;
  color: rgba(236, 246, 255, 0.76);
  font-size: clamp(13px, 0.92vw, 16px);
  line-height: 1.35;
}

.visits-benefits b {
  color: #ffffff;
  font-weight: 650;
}

.visit-tests {
  position: relative;
  isolation: isolate;
  padding: clamp(70px, 7vw, 112px) var(--page-x);
  margin-top: -1px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 18% 20%, rgba(8, 116, 255, 0.1), transparent 34%),
    radial-gradient(ellipse at 82% 84%, rgba(142, 206, 255, 0.07), transparent 34%),
    linear-gradient(180deg, #02070c 0%, #061622 46%, #02070c 100%);
}

.visit-structures-tests {
  padding-top: clamp(86px, 8vw, 130px);
  background:
    linear-gradient(180deg, #02070c 0%, #05131e 18%, #061622 58%, #02070c 100%);
}

.visit-structures-tests::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(142, 206, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 206, 255, 0.04) 1px, transparent 1px);
  background-size: 92px 92px;
  content: "";
  mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 74%, transparent 100%);
  opacity: 0.24;
}

.visit-sampling-tests {
  background:
    linear-gradient(180deg, #02070c 0%, #061622 52%, #04101a 82%, #02070c 100%);
}

.visit-express-tests {
  background:
    radial-gradient(ellipse at 50% 20%, rgba(8, 116, 255, 0.11), transparent 34%),
    linear-gradient(180deg, #02070c 0%, #061622 48%, #02070c 100%);
}

.visit-tests-shell {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.visit-tests-shell-narrow {
  width: min(980px, 100%);
}

.visit-tests-head {
  display: grid;
  gap: clamp(14px, 1.5vw, 22px);
  justify-items: center;
  margin-bottom: clamp(26px, 3vw, 44px);
  text-align: center;
}

.visit-tests-head h2 {
  max-width: 1060px;
  margin: 0;
  color: #ffffff;
  font-size: var(--section-title-size);
  font-weight: var(--section-title-weight);
  line-height: var(--section-title-line);
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 12px 44px rgba(0, 0, 0, 0.42);
}

.visit-tests-grid {
  display: grid;
  gap: clamp(14px, 1.4vw, 22px);
}

.visit-tests-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.visit-tests-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.visit-test-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(142, 206, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
    rgba(5, 15, 24, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.26);
}

.visit-test-card img {
  display: block;
  width: 100%;
  height: clamp(160px, 13vw, 220px);
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05) brightness(0.82);
}

.visit-test-card-body {
  min-height: clamp(154px, 11.5vw, 190px);
  padding: clamp(18px, 1.6vw, 24px);
}

.visit-test-card h3 {
  margin: 0 0 clamp(12px, 1vw, 16px);
  color: #ffffff;
  font-size: clamp(17px, 1.15vw, 21px);
  font-weight: 640;
  line-height: 1.22;
  text-transform: uppercase;
  text-wrap: balance;
}

.visit-test-card p {
  margin: 0;
  color: rgba(236, 246, 255, 0.78);
  font-size: clamp(13px, 0.86vw, 15px);
  font-weight: 420;
  line-height: 1.52;
}

.soil-test-card::after,
.visit-test-card::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(8, 116, 255, 0.13), transparent 48%),
    linear-gradient(180deg, rgba(1, 7, 13, 0.46), rgba(1, 7, 13, 0.76));
  content: "";
  pointer-events: none;
  transition: opacity 220ms ease;
}

.soil-test-card::after {
  bottom: auto;
  height: clamp(240px, 18vw, 330px);
}

.visit-test-card::after {
  bottom: auto;
  height: clamp(160px, 13vw, 220px);
}

.soil-test-card:hover::after,
.soil-test-card:focus-within::after,
.soil-test-card:has(.service-order-button:hover)::after,
.visit-test-card:hover::after,
.visit-test-card:focus-within::after,
.visit-test-card:has(.service-order-button:hover)::after {
  opacity: 1;
}

.service-order-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 clamp(16px, 1.2vw, 22px);
  border: 1px solid rgba(8, 132, 255, 0.82);
  border-radius: 999px;
  color: #ffffff;
  font-size: clamp(11px, 0.76vw, 13px);
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  background:
    linear-gradient(180deg, rgba(8, 132, 255, 0.82), rgba(0, 82, 220, 0.8));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 38px rgba(8, 116, 255, 0.26),
    0 12px 30px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: auto;
  transform: translate(-50%, calc(-50% + 14px));
  transition:
    opacity 190ms ease,
    transform 240ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.soil-test-card .service-order-button {
  top: calc(clamp(240px, 18vw, 330px) / 2);
}

.visit-test-card .service-order-button {
  top: calc(clamp(160px, 13vw, 220px) / 2);
}

.soil-test-card:hover .service-order-button,
.soil-test-card:focus-within .service-order-button,
.visit-test-card:hover .service-order-button,
.visit-test-card:focus-within .service-order-button,
.service-order-button:hover,
.service-order-button:focus-visible {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.service-order-button:hover,
.service-order-button:focus-visible {
  border-color: rgba(142, 206, 255, 0.92);
  background:
    linear-gradient(180deg, rgba(30, 150, 255, 0.92), rgba(0, 98, 235, 0.92));
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 48px rgba(8, 116, 255, 0.36),
    0 14px 34px rgba(0, 0, 0, 0.3);
}

.services-page {
  min-height: 100svh;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(8, 116, 255, 0.09), transparent 34%),
    linear-gradient(180deg, #02070c 0%, #051421 36%, #061725 62%, #02070c 100%);
}

.services-page *,
.services-page *::before,
.services-page *::after {
  animation: none !important;
  transition: none !important;
}

.services-page .service-order-button {
  transition:
    opacity 190ms ease,
    transform 240ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease !important;
}

.services-page .soil-test-card::after {
  transition: opacity 220ms ease !important;
}

@media (hover: none), (pointer: coarse) {
  .soil-test-card::after,
  .visit-test-card::after {
    opacity: 0;
  }

  .service-order-button {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .soil-test-card > .service-order-button,
  .visit-test-card > .service-order-button {
    width: fit-content;
    margin: 0 auto clamp(18px, 1.6vw, 24px);
  }
}

@media (max-width: 760px) {
  .soil-test-card::after,
  .visit-test-card::after {
    opacity: 1;
  }

  .soil-test-card .service-order-button,
  .visit-test-card .service-order-button {
    position: absolute;
    left: 50%;
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.services-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  padding: clamp(112px, 13vh, 150px) var(--page-x) clamp(112px, 11vh, 152px);
  margin-bottom: -1px;
  overflow: hidden;
  background: #051421;
}

.services-hero-media,
.services-hero::before,
.services-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.services-hero-media {
  z-index: -5;
  background: url("../backgrounds/2.jpg") center / cover no-repeat;
  filter: saturate(0.82) contrast(1.08) brightness(0.78);
  transform: scale(1.02);
}

.services-hero::before,
.services-hero::after {
  content: "";
}

.services-hero::before {
  z-index: -4;
  background:
    radial-gradient(ellipse at 76% 24%, rgba(160, 210, 255, 0.11), transparent 28%),
    radial-gradient(ellipse at 23% 74%, rgba(8, 116, 255, 0.12), transparent 32%),
    linear-gradient(90deg, rgba(1, 7, 13, 0.96) 0%, rgba(1, 8, 15, 0.88) 38%, rgba(1, 8, 15, 0.52) 70%, rgba(1, 8, 15, 0.18) 100%);
}

.services-hero::after {
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(2, 7, 12, 0.2) 0%, rgba(2, 7, 12, 0.48) 56%, rgba(3, 13, 22, 0.82) 78%, rgba(5, 20, 33, 0.96) 92%, rgba(5, 20, 33, 1) 100%),
    linear-gradient(0deg, rgba(5, 20, 33, 1) 0%, rgba(5, 20, 33, 0.78) 11%, rgba(5, 20, 33, 0) 34%),
    linear-gradient(90deg, rgba(2, 7, 12, 0.28), rgba(2, 7, 12, 0) 64%);
}

.services-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(470px, 720px) minmax(360px, 1fr);
  gap: clamp(34px, 5vw, 92px);
  align-items: center;
  width: min(1510px, 100%);
  min-height: calc(100svh - clamp(188px, 22vh, 248px));
  margin: 0 auto;
  padding-top: clamp(22px, 4.8vh, 70px);
}

.services-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-top: clamp(18px, 3.2vh, 52px);
  padding-left: clamp(24px, 2.2vw, 38px);
}

.services-copy::before {
  position: absolute;
  left: 0;
  top: clamp(38px, 4vw, 58px);
  bottom: clamp(124px, 10vw, 170px);
  width: 1px;
  background: linear-gradient(180deg, var(--blue), rgba(8, 116, 255, 0.22));
  content: "";
  box-shadow: 0 0 24px rgba(8, 116, 255, 0.32);
}

.services-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 clamp(16px, 1.8vw, 24px);
  color: rgba(77, 157, 255, 0.96);
  font-size: clamp(12px, 0.85vw, 16px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-kicker::before {
  display: none;
  content: none;
}

.services-title {
  display: block;
  width: auto;
  max-width: 620px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 4.2vw, 62px);
  font-weight: var(--hero-title-weight);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.42);
}

.services-lead {
  max-width: 650px;
  margin: clamp(20px, 2.2vw, 32px) 0 0;
  color: rgba(235, 246, 255, 0.66);
  font-size: clamp(15px, 1.15vw, 22px);
  font-weight: 380;
  line-height: 1.45;
}

.services-list-label {
  margin: clamp(28px, 3vw, 44px) 0 clamp(14px, 1.6vw, 20px);
  color: rgba(77, 157, 255, 0.96);
  font-size: clamp(12px, 0.86vw, 16px);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.1vw, 18px);
  max-width: 640px;
}

.services-card {
  position: relative;
  display: grid;
  grid-template-columns: clamp(42px, 3.1vw, 54px) minmax(0, 1fr);
  gap: clamp(12px, 1vw, 18px);
  align-items: center;
  min-height: clamp(82px, 6.2vw, 104px);
  padding: clamp(15px, 1.2vw, 20px);
  border: 1px solid rgba(90, 170, 255, 0.26);
  border-radius: 6px;
  color: #ffffff;
  overflow: hidden;
  font-size: clamp(13px, 0.92vw, 17px);
  font-weight: 760;
  line-height: 1.35;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(4, 18, 31, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 20px 52px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  cursor: default;
}

.services-card-icon {
  display: inline-grid;
  place-items: center;
  width: clamp(32px, 2.5vw, 44px);
  height: clamp(32px, 2.5vw, 44px);
  border: 1px solid rgba(77, 157, 255, 0.62);
  border-radius: 50%;
  color: rgba(77, 157, 255, 0.98);
  font-size: clamp(22px, 1.7vw, 30px);
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 24px rgba(8, 116, 255, 0.22);
  background: rgba(8, 116, 255, 0.08);
}

.services-card-arrow {
  display: none;
}

.services-visual {
  position: relative;
  justify-self: end;
  width: min(600px, 100%);
  min-height: clamp(430px, 48vw, 700px);
  pointer-events: none;
}

.services-visual::before {
  position: absolute;
  inset: 7% -2% 2% 4%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 48%, rgba(8, 116, 255, 0.18), transparent 44%),
    radial-gradient(circle at 58% 36%, rgba(255, 255, 255, 0.14), transparent 30%);
  content: "";
  filter: blur(14px);
}

.services-visual img {
  position: absolute;
  right: clamp(-96px, -5vw, -60px);
  bottom: clamp(-54px, -3.4vw, -18px);
  width: min(620px, 40vw);
  max-width: none;
  filter:
    saturate(0.82)
    contrast(1.08)
    brightness(0.84)
    drop-shadow(0 42px 90px rgba(0, 0, 0, 0.54));
}

.soil-tests {
  position: relative;
  isolation: isolate;
  margin-top: -1px;
  padding: clamp(82px, 7.8vw, 122px) var(--page-x) clamp(88px, 8.2vw, 128px);
  overflow: hidden;
  background: transparent;
}

.services-hero + .soil-tests {
  margin-top: -1px;
  padding-top: clamp(86px, 8vw, 126px);
}

.services-hero + .soil-tests::before {
  background:
    linear-gradient(180deg, rgba(5, 20, 33, 1) 0%, rgba(5, 20, 33, 0.72) 10%, rgba(5, 20, 33, 0) 30%),
    radial-gradient(ellipse at 50% 16%, rgba(8, 116, 255, 0.14), transparent 39%),
    radial-gradient(ellipse at 16% 58%, rgba(123, 194, 255, 0.07), transparent 30%),
    linear-gradient(rgba(127, 196, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 196, 255, 0.055) 1px, transparent 1px);
  background-size: auto, auto, auto, 112px 112px, 112px 112px;
  opacity: 0.64;
  mask-image: linear-gradient(180deg, #000 0%, #000 84%, transparent 100%);
}

.services-hero + .soil-tests::after {
  background:
    linear-gradient(180deg, rgba(5, 20, 33, 0.94) 0%, rgba(2, 7, 12, 0.2) 24%, rgba(2, 7, 12, 0.04) 70%, rgba(2, 7, 12, 0.62) 100%),
    linear-gradient(90deg, rgba(2, 7, 12, 0.42), transparent 46%, rgba(2, 7, 12, 0.42));
}

.soil-tests::before,
.soil-tests::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.soil-tests::before {
  background:
    radial-gradient(ellipse at 50% 16%, rgba(8, 116, 255, 0.15), transparent 38%),
    radial-gradient(ellipse at 16% 58%, rgba(123, 194, 255, 0.07), transparent 30%),
    linear-gradient(rgba(127, 196, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 196, 255, 0.06) 1px, transparent 1px);
  background-size: auto, auto, 112px 112px, 112px 112px;
  opacity: 0.56;
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
}

.soil-tests::after {
  background:
    linear-gradient(180deg, rgba(2, 7, 12, 0.68) 0%, rgba(2, 7, 12, 0.12) 18%, rgba(2, 7, 12, 0.04) 70%, rgba(2, 7, 12, 0.62) 100%),
    linear-gradient(90deg, rgba(2, 7, 12, 0.42), transparent 46%, rgba(2, 7, 12, 0.42));
}

.soil-tests-shell {
  position: relative;
  z-index: 1;
  width: min(1420px, 100%);
  margin: 0 auto;
}

.soil-tests-head {
  display: grid;
  justify-items: center;
  gap: clamp(18px, 2vw, 26px);
  margin-bottom: clamp(34px, 4vw, 56px);
  text-align: center;
}

.soil-tests-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: var(--section-title-size);
  font-weight: var(--section-title-weight);
  line-height: var(--section-title-line);
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.42);
}

.soil-tests-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.35vw, 24px);
}

.soil-test-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(116, 183, 255, 0.23);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(4, 17, 29, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 72px rgba(0, 0, 0, 0.23);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.soil-card-media {
  position: relative;
  height: clamp(240px, 18vw, 330px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 11, 18, 0.04), rgba(3, 11, 18, 0.66)),
    radial-gradient(circle at 34% 30%, rgba(188, 218, 239, 0.18), transparent 32%),
    rgba(9, 29, 44, 0.76);
}

.soil-card-media::before,
.soil-card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.soil-card-media::before {
  background:
    radial-gradient(circle at 18% 22%, rgba(231, 238, 239, 0.23) 0 3px, transparent 4px),
    radial-gradient(circle at 38% 60%, rgba(159, 177, 184, 0.24) 0 4px, transparent 5px),
    radial-gradient(circle at 74% 34%, rgba(190, 205, 210, 0.2) 0 3px, transparent 4px),
    radial-gradient(circle at 68% 72%, rgba(112, 129, 139, 0.2) 0 5px, transparent 6px);
  background-size: 68px 58px, 86px 74px, 76px 64px, 92px 82px;
  opacity: 0.1;
  mix-blend-mode: screen;
}

.soil-card-media::after {
  background:
    linear-gradient(180deg, transparent 0%, rgba(3, 11, 18, 0.24) 54%, rgba(3, 11, 18, 0.78) 100%),
    linear-gradient(90deg, rgba(8, 116, 255, 0.14), transparent 42%, rgba(255, 255, 255, 0.06));
}

.soil-test-card-sampling .soil-card-media {
  background:
    linear-gradient(180deg, rgba(3, 11, 18, 0.1), rgba(3, 11, 18, 0.76)),
    url("../services/soil-sampling.webp") center / cover no-repeat,
    rgba(8, 28, 44, 0.8);
}

.soil-test-card-filter .soil-card-media {
  background:
    linear-gradient(180deg, rgba(3, 11, 18, 0.08), rgba(3, 11, 18, 0.72)),
    url("../services/filtration-coefficient.jpg") center / cover no-repeat,
    rgba(8, 28, 44, 0.8);
}

.soil-test-card-grain .soil-card-media {
  background:
    linear-gradient(180deg, rgba(3, 11, 18, 0.08), rgba(3, 11, 18, 0.72)),
    url("../services/grain-composition.webp") center / cover no-repeat,
    rgba(8, 28, 44, 0.8);
}

.soil-test-card-clay .soil-card-media {
  background:
    linear-gradient(180deg, rgba(3, 11, 18, 0.08), rgba(3, 11, 18, 0.7)),
    url("../services/clay-lumps.webp") center / cover no-repeat,
    rgba(8, 28, 44, 0.8);
}

.concrete-tests {
  padding-top: clamp(66px, 6.8vw, 102px);
  background: transparent;
}

.concrete-tests .soil-tests-head h2 {
  width: min(1180px, 100%);
}

.concrete-test-card-sampling .soil-card-media {
  background:
    linear-gradient(180deg, rgba(3, 11, 18, 0.08), rgba(3, 11, 18, 0.72)),
    url("../services/concrete-sampling.webp") center / cover no-repeat,
    rgba(8, 28, 44, 0.8);
}

.concrete-test-card-selection .soil-card-media {
  background:
    linear-gradient(180deg, rgba(3, 11, 18, 0.1), rgba(3, 11, 18, 0.74)),
    url("../services/concrete-selection.webp") center / cover no-repeat,
    rgba(8, 28, 44, 0.8);
}

.concrete-test-card-mobility .soil-card-media {
  background:
    linear-gradient(180deg, rgba(3, 11, 18, 0.08), rgba(3, 11, 18, 0.72)),
    url("../services/concrete-mobility.jpg") center / cover no-repeat,
    rgba(8, 28, 44, 0.8);
}

.concrete-test-card-density .soil-card-media {
  background:
    linear-gradient(180deg, rgba(3, 11, 18, 0.08), rgba(3, 11, 18, 0.72)),
    url("../services/cellular-concrete.webp") center / cover no-repeat,
    rgba(8, 28, 44, 0.8);
}

.metal-tests {
  padding-top: clamp(64px, 6.4vw, 96px);
  padding-bottom: clamp(70px, 7vw, 104px);
  background: transparent;
}

.metal-tests-grid {
  grid-template-columns: minmax(300px, 620px);
  justify-content: center;
}

.metal-tests .soil-card-body {
  min-height: clamp(132px, 10vw, 168px);
}

.metal-test-card-defectoscopy .soil-card-media {
  background:
    linear-gradient(180deg, rgba(3, 11, 18, 0.04), rgba(3, 11, 18, 0.72)),
    url("../lab/equipment/defectoscope-ud2-12.jpg") center / cover no-repeat,
    rgba(8, 28, 44, 0.8);
}

.stone-tests {
  padding-top: clamp(66px, 6.8vw, 102px);
  background: transparent;
}

.stone-test-card-sampling .soil-card-media {
  background:
    linear-gradient(180deg, rgba(3, 11, 18, 0.08), rgba(3, 11, 18, 0.72)),
    url("../services/stone-sampling.jpg") center / cover no-repeat,
    rgba(8, 28, 44, 0.8);
}

.stone-test-card-prep .soil-card-media {
  background:
    linear-gradient(180deg, rgba(3, 11, 18, 0.08), rgba(3, 11, 18, 0.72)),
    url("../services/sample-preparation.jpg") center / cover no-repeat,
    rgba(8, 28, 44, 0.8);
}

.stone-test-card-density .soil-card-media {
  background:
    linear-gradient(180deg, rgba(3, 11, 18, 0.08), rgba(3, 11, 18, 0.72)),
    url("../services/density-test.webp") center / cover no-repeat,
    rgba(8, 28, 44, 0.8);
}

.stone-test-card-strength .soil-card-media {
  background:
    linear-gradient(180deg, rgba(3, 11, 18, 0.08), rgba(3, 11, 18, 0.72)),
    url("../services/ceramic-brick-test.webp") center / cover no-repeat,
    rgba(8, 28, 44, 0.8);
}

.soil-media-icon {
  display: none;
}

.soil-card-body {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: clamp(13px, 1.1vw, 18px);
  align-items: start;
  min-height: clamp(132px, 9.5vw, 176px);
  padding: clamp(18px, 1.45vw, 25px) clamp(20px, 1.65vw, 30px) clamp(22px, 1.75vw, 30px);
}

.soil-card-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: rgba(55, 153, 255, 0.98);
  font-size: 27px;
  line-height: 1;
  filter: drop-shadow(0 0 12px rgba(8, 116, 255, 0.28));
}

.soil-card-body h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(17px, 1.08vw, 21px);
  font-weight: 620;
  line-height: 1.18;
  text-transform: uppercase;
  text-wrap: balance;
}

.soil-card-body p {
  margin: clamp(18px, 1.45vw, 26px) 0 0;
  color: rgba(236, 246, 255, 0.72);
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 390;
  line-height: 1.52;
}

.prices-page {
  --nav-glass-bg:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(23, 37, 48, 0.72);
  --nav-glass-filter: blur(14px) saturate(1.02);
  --nav-glass-shadow:
    0 16px 42px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.035);
  min-height: 100svh;
  color: #07111d;
  background:
    linear-gradient(180deg, #02070c 0%, #051421 34%, #d0d0d0 34%, #d0d0d0 100%);
}

.prices-hero {
  position: relative;
  isolation: isolate;
  min-height: 92svh;
  padding: clamp(112px, 13vh, 150px) var(--page-x) clamp(86px, 8vw, 124px);
  overflow: hidden;
  background: #04111e;
}

.prices-hero-media,
.prices-hero::before,
.prices-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.prices-hero-media {
  z-index: -6;
  background: url("../backgrounds/2.jpg") center / cover no-repeat;
  filter: saturate(0.78) contrast(1.08) brightness(0.74);
  transform: scale(1.02);
}

.prices-hero::before,
.prices-hero::after {
  content: "";
}

.prices-hero::before {
  z-index: -5;
  background:
    linear-gradient(90deg, rgba(1, 7, 13, 0.97) 0%, rgba(1, 8, 15, 0.88) 44%, rgba(1, 8, 15, 0.56) 70%, rgba(1, 8, 15, 0.28) 100%),
    linear-gradient(180deg, rgba(2, 7, 12, 0.1) 0%, rgba(2, 7, 12, 0.72) 100%);
}

.prices-hero::after {
  z-index: -4;
  background:
    linear-gradient(180deg, rgba(2, 7, 12, 0.12) 0%, rgba(2, 7, 12, 0.46) 58%, rgba(3, 13, 22, 0.92) 100%),
    linear-gradient(0deg, rgba(208, 208, 208, 1) 0%, rgba(208, 208, 208, 0.88) 5%, rgba(5, 20, 33, 0) 22%);
}

.prices-hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(460px, 740px) minmax(300px, 420px);
  gap: clamp(34px, 6vw, 120px);
  align-items: center;
  width: min(1420px, 100%);
  min-height: calc(92svh - clamp(200px, 23vh, 274px));
  margin: 0 auto;
  padding-top: clamp(30px, 5vh, 76px);
}

.prices-hero-copy {
  position: relative;
  max-width: 780px;
  padding-left: clamp(24px, 2.2vw, 38px);
}

.prices-hero-copy::before {
  position: absolute;
  left: 0;
  top: clamp(38px, 4vw, 58px);
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, var(--blue), rgba(8, 116, 255, 0.12));
  content: "";
  box-shadow: 0 0 24px rgba(8, 116, 255, 0.32);
}

.prices-title {
  display: block;
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-size: var(--hero-title-size);
  font-weight: var(--hero-title-weight);
  line-height: var(--hero-title-line);
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 12px 44px rgba(0, 0, 0, 0.46);
}

.prices-lead {
  max-width: 650px;
  margin: clamp(18px, 2vw, 28px) 0 0;
  color: rgba(235, 246, 255, 0.72);
  font-size: clamp(15px, 1.12vw, 21px);
  font-weight: 400;
  line-height: 1.48;
}

.prices-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 3vw, 42px);
}

.prices-contact-button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(8, 132, 255, 0.78);
  border-radius: 999px;
  color: #ffffff;
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 740;
  line-height: 1;
  background:
    linear-gradient(180deg, rgba(8, 116, 255, 0.34), rgba(8, 116, 255, 0.14)),
    rgba(5, 18, 31, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 16px 38px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.prices-contact-button:hover,
.prices-contact-button:focus-visible {
  border-color: rgba(114, 190, 255, 0.94);
  background:
    linear-gradient(180deg, rgba(8, 116, 255, 0.48), rgba(8, 116, 255, 0.2)),
    rgba(5, 18, 31, 0.68);
  outline: none;
  transform: translateY(-1px);
}

.prices-contact-button-secondary {
  border-color: rgba(230, 246, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(5, 18, 31, 0.54);
}

.prices-contact-button .material-symbols-outlined {
  font-size: 21px;
}

.prices-hero-summary {
  display: grid;
  gap: 14px;
}

.prices-hero-summary article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 8px 16px;
  align-items: center;
  min-height: 116px;
  padding: clamp(18px, 1.7vw, 24px);
  border: 1px solid rgba(90, 170, 255, 0.28);
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022)),
    rgba(5, 18, 31, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 22px 68px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  backdrop-filter: blur(12px) saturate(1.1);
}

.prices-hero-summary .material-symbols-outlined {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 10px;
  color: rgba(141, 202, 255, 0.98);
  font-size: 32px;
  background:
    linear-gradient(180deg, rgba(8, 116, 255, 0.42), rgba(8, 116, 255, 0.16));
}

.prices-hero-summary b {
  align-self: end;
  color: #ffffff;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 760;
  line-height: 1.05;
  text-transform: uppercase;
}

.prices-hero-summary p {
  align-self: start;
  margin: 0;
  color: rgba(236, 246, 255, 0.72);
  font-size: clamp(13px, 0.88vw, 15px);
  line-height: 1.42;
}

.pricing-section {
  position: relative;
  padding: clamp(62px, 6vw, 96px) var(--page-x) clamp(84px, 7.2vw, 122px);
  color: #07111d;
  background: #d0d0d0;
}

.pricing-shell {
  width: min(1260px, 100%);
  margin: 0 auto;
}

.pricing-section-head {
  display: grid;
  justify-items: center;
  margin-bottom: clamp(28px, 3vw, 44px);
  text-align: center;
}

.pricing-section-head h2 {
  margin: 0;
  color: #17275f;
  font-size: var(--section-title-size);
  font-weight: var(--section-title-weight);
  line-height: var(--section-title-line);
  text-transform: uppercase;
  text-wrap: balance;
}

.pricing-title-rule {
  display: block;
  width: var(--heading-rule-width);
  height: 2px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #17275f, rgba(23, 39, 95, 0.22));
}

.pricing-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: clamp(30px, 3.4vw, 48px);
}

.pricing-category-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(23, 39, 95, 0.18);
  border-radius: 999px;
  color: #17275f;
  font-size: 14px;
  font-weight: 720;
  line-height: 1;
  background: rgba(255, 255, 255, 0.42);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.pricing-category-nav a:hover,
.pricing-category-nav a:focus-visible {
  border-color: rgba(23, 39, 95, 0.42);
  color: #ffffff;
  background: #17275f;
  outline: none;
  transform: translateY(-1px);
}

.pricing-stack {
  display: grid;
  gap: clamp(34px, 4vw, 56px);
}

.price-category {
  scroll-margin-top: 24px;
}

.price-category h3 {
  margin: 0 0 clamp(14px, 1.4vw, 20px);
  color: #07111d;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 760;
  line-height: 1.2;
}

.price-table-wrap {
  overflow-x: auto;
  border-radius: 6px;
  background: #ffffff;
  box-shadow:
    0 18px 42px rgba(24, 32, 44, 0.08),
    inset 0 0 0 1px rgba(7, 17, 29, 0.04);
}

.price-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: #07111d;
  background: #ffffff;
}

.price-table th,
.price-table td {
  padding: 18px clamp(18px, 1.7vw, 26px);
  border-bottom: 1px solid #dedede;
  text-align: left;
  vertical-align: middle;
}

.price-table thead th {
  color: #202a34;
  font-size: 14px;
  font-weight: 560;
  line-height: 1.2;
  background: #f7f7f7;
}

.price-table tbody td {
  font-size: clamp(14px, 0.92vw, 16px);
  font-weight: 430;
  line-height: 1.34;
}

.price-table th:nth-child(2),
.price-table td:nth-child(2) {
  width: 190px;
  color: #3d4651;
}

.price-table th:last-child,
.price-table td:last-child {
  width: 190px;
  text-align: right;
}

.price-table td:last-child {
  color: #000814;
  font-weight: 820;
  white-space: nowrap;
}

.price-table tbody tr:last-child td {
  border-bottom: 0;
}

.price-table tbody tr:hover td {
  background: #f8fbff;
}

.pricing-contact-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  justify-items: center;
  margin-top: clamp(54px, 5vw, 78px);
  padding: clamp(48px, 5vw, 76px) clamp(20px, 5vw, 72px) clamp(56px, 5.4vw, 86px);
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  background:
    linear-gradient(180deg, #0b5ea8 0%, #080b4a 68%, #060832 100%);
  clip-path: polygon(0 0, 100% 0, 100% 82%, 50% 100%, 0 82%);
}

.pricing-contact-panel::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.06)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 44%);
  content: "";
}

.pricing-contact-panel h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 2.6vw, 44px);
  font-weight: 820;
  line-height: 1.08;
  text-transform: uppercase;
}

.pricing-contact-panel p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.5;
}

.pricing-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 22px;
}

.pricing-contact-actions a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(8, 132, 255, 0.88);
  border-radius: 999px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 760;
  line-height: 1;
  background: rgba(0, 14, 48, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 32px rgba(0, 0, 0, 0.18);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.pricing-contact-actions a:hover,
.pricing-contact-actions a:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.pricing-contact-actions .material-symbols-outlined {
  font-size: 21px;
}

.laboratory-page {
  min-height: 100svh;
  color: #ffffff;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(8, 116, 255, 0.11), transparent 34%),
    linear-gradient(180deg, #02070c 0%, #061622 48%, #02070c 100%);
}

.laboratory-hero {
  position: relative;
  isolation: isolate;
  min-height: 94svh;
  padding: clamp(116px, 13vh, 152px) var(--page-x) clamp(86px, 8vw, 126px);
  overflow: hidden;
  background: #04111e;
}

.laboratory-hero-media,
.laboratory-hero::before,
.laboratory-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.laboratory-hero-media {
  z-index: -6;
  background: url("../backgrounds/4.jpg") center / cover no-repeat;
  filter: saturate(0.78) contrast(1.08) brightness(0.64);
  transform: scale(1.02);
}

.laboratory-hero::before,
.laboratory-hero::after {
  content: "";
}

.laboratory-hero::before {
  z-index: -5;
  background:
    linear-gradient(90deg, rgba(1, 7, 13, 0.98) 0%, rgba(1, 8, 15, 0.9) 42%, rgba(1, 8, 15, 0.58) 70%, rgba(1, 8, 15, 0.3) 100%),
    radial-gradient(ellipse at 72% 38%, rgba(8, 116, 255, 0.14), transparent 42%);
}

.laboratory-hero::after {
  z-index: -4;
  background:
    linear-gradient(180deg, rgba(2, 7, 12, 0.08) 0%, rgba(2, 7, 12, 0.42) 58%, #061622 100%),
    linear-gradient(0deg, #061622 0%, rgba(6, 22, 34, 0.72) 9%, rgba(6, 22, 34, 0) 26%);
}

.laboratory-hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(28px, 4vw, 58px);
  align-content: center;
  width: min(1340px, 100%);
  min-height: calc(94svh - clamp(202px, 23vh, 278px));
  margin: 0 auto;
  padding-top: clamp(22px, 4vh, 64px);
}

.laboratory-hero-copy {
  position: relative;
  max-width: 970px;
  padding-left: clamp(24px, 2.2vw, 38px);
}

.laboratory-hero-copy::before {
  position: absolute;
  left: 0;
  top: clamp(38px, 4vw, 58px);
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--blue), rgba(8, 116, 255, 0.12));
  content: "";
  box-shadow: 0 0 24px rgba(8, 116, 255, 0.3);
}

.laboratory-title {
  display: block;
  max-width: 920px;
  margin: 0;
  color: #ffffff;
  font-size: var(--hero-title-size);
  font-weight: var(--hero-title-weight);
  line-height: var(--hero-title-line);
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 12px 44px rgba(0, 0, 0, 0.46);
}

.laboratory-lead {
  width: min(720px, 100%);
  margin: clamp(18px, 2vw, 28px) 0 0;
  color: rgba(235, 246, 255, 0.8);
  font-size: clamp(16px, 1.2vw, 22px);
  font-weight: 420;
  line-height: 1.46;
}

.laboratory-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.45vw, 22px);
  width: min(1120px, 100%);
}

.laboratory-proof-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 8px 16px;
  min-height: clamp(104px, 8vw, 132px);
  padding: clamp(20px, 1.7vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(90, 170, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.024)),
    rgba(5, 18, 31, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 22px 68px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  backdrop-filter: blur(12px) saturate(1.1);
}

.laboratory-proof-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(8, 116, 255, 0.72), transparent 64%);
  content: "";
  opacity: 0.64;
}

.laboratory-proof-icon {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(80, 166, 255, 0.54);
  border-radius: 50%;
  color: rgba(116, 194, 255, 0.98);
  font-size: 28px;
  background: rgba(8, 116, 255, 0.13);
  box-shadow: 0 0 24px rgba(8, 116, 255, 0.2);
}

.laboratory-proof-card h2 {
  align-self: end;
  margin: 0;
  color: #ffffff;
  font-size: clamp(15px, 0.98vw, 18px);
  font-weight: 760;
  line-height: 1.22;
  text-transform: uppercase;
}

.laboratory-proof-card p {
  align-self: start;
  margin: 0;
  color: rgba(236, 246, 255, 0.72);
  font-size: clamp(13px, 0.88vw, 16px);
  font-weight: 400;
  line-height: 1.48;
}

.lab-workflow-section,
.lab-gallery-section,
.lab-articles-section,
.lab-equipment-section,
.lab-faq-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.lab-workflow-section {
  padding: clamp(72px, 7vw, 112px) var(--page-x) clamp(70px, 6.8vw, 108px);
  margin-top: -1px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(8, 116, 255, 0.12), transparent 36%),
    linear-gradient(180deg, #061622 0%, #03101a 52%, #061622 100%);
}

.lab-workflow-section::before {
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  z-index: -1;
  height: clamp(90px, 8vw, 150px);
  background: linear-gradient(180deg, rgba(6, 22, 34, 0.98), rgba(6, 22, 34, 0));
  content: "";
}

.lab-section-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.lab-section-head {
  display: grid;
  justify-items: center;
  margin-bottom: clamp(30px, 3.6vw, 54px);
  text-align: center;
}

.lab-section-head h2,
.lab-faq-section h2 {
  margin: 0;
  color: #ffffff;
  font-size: var(--section-title-size);
  font-weight: var(--section-title-weight);
  line-height: var(--section-title-line);
  text-transform: uppercase;
  text-wrap: balance;
}

.lab-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 22px);
}

.lab-step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: clamp(120px, 9vw, 156px);
  padding: clamp(20px, 1.7vw, 28px);
  border: 1px solid rgba(90, 170, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.068), rgba(255, 255, 255, 0.02)),
    rgba(5, 18, 31, 0.66);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 54px rgba(0, 0, 0, 0.2);
}

.lab-step-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: rgba(142, 206, 255, 0.98);
  font-size: 28px;
  background:
    linear-gradient(180deg, rgba(8, 116, 255, 0.42), rgba(8, 116, 255, 0.16));
  box-shadow: 0 0 24px rgba(8, 116, 255, 0.22);
}

.lab-step h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(16px, 1.08vw, 20px);
  font-weight: 760;
  line-height: 1.22;
}

.lab-step p {
  margin: 10px 0 0;
  color: rgba(236, 246, 255, 0.72);
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 400;
  line-height: 1.5;
}

.lab-gallery-section {
  padding: clamp(102px, 8.4vw, 150px) var(--page-x) clamp(66px, 6.2vw, 98px);
  background:
    radial-gradient(ellipse at 18% 22%, rgba(8, 116, 255, 0.08), transparent 38%),
    radial-gradient(ellipse at 82% 84%, rgba(142, 206, 255, 0.045), transparent 34%),
    linear-gradient(180deg, #061622 0%, #03101a 34%, #02070c 70%, #061622 100%);
}

.lab-gallery-section::before {
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  z-index: -1;
  height: clamp(150px, 14vw, 240px);
  background:
    linear-gradient(180deg, #061622 0%, rgba(6, 22, 34, 0.86) 32%, rgba(6, 22, 34, 0.34) 68%, rgba(6, 22, 34, 0) 100%);
  content: "";
}

.lab-gallery-section::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: -1;
  height: clamp(120px, 10vw, 190px);
  background: linear-gradient(180deg, rgba(6, 22, 34, 0), rgba(6, 22, 34, 0.92) 74%, #061622 100%);
  content: "";
}

.lab-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  gap: clamp(18px, 2.2vw, 34px);
  justify-content: center;
}

.lab-gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(142, 206, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.022)),
    rgba(5, 18, 31, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 72px rgba(0, 0, 0, 0.24);
}

.lab-gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05) brightness(0.86);
}

.lab-gallery-card figcaption {
  padding: 16px 18px 18px;
  color: rgba(236, 246, 255, 0.8);
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 540;
}

.lab-articles-section {
  padding: clamp(54px, 5.4vw, 88px) var(--page-x) clamp(78px, 6.8vw, 112px);
  margin-top: -1px;
  background:
    radial-gradient(ellipse at 18% 18%, rgba(8, 116, 255, 0.1), transparent 36%),
    radial-gradient(ellipse at 88% 82%, rgba(142, 206, 255, 0.05), transparent 34%),
    linear-gradient(180deg, #061622 0%, #04131f 48%, #061622 100%);
}

.lab-articles-section::before,
.lab-articles-section::after {
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.lab-articles-section::before {
  top: -1px;
  height: clamp(110px, 9vw, 170px);
  background: linear-gradient(180deg, #061622 0%, rgba(6, 22, 34, 0.76) 46%, rgba(6, 22, 34, 0) 100%);
}

.lab-articles-section::after {
  bottom: -1px;
  height: clamp(110px, 9vw, 170px);
  background: linear-gradient(180deg, rgba(6, 22, 34, 0), rgba(6, 22, 34, 0.84) 74%, #061622 100%);
}

.lab-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.5vw, 24px);
}

.lab-article-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(90, 170, 255, 0.24);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.022)),
    rgba(5, 18, 31, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 62px rgba(0, 0, 0, 0.22);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.lab-article-card:hover,
.lab-article-card:focus-visible {
  border-color: rgba(78, 166, 255, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 74px rgba(8, 116, 255, 0.17);
  transform: translateY(-3px);
}

.lab-article-card:focus-visible {
  outline: 2px solid rgba(78, 166, 255, 0.9);
  outline-offset: 4px;
}

.lab-article-media {
  display: block;
  overflow: hidden;
  background: rgba(4, 16, 27, 0.88);
}

.lab-article-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04) brightness(0.9);
  transition: transform 240ms ease, filter 240ms ease;
}

.lab-article-card:hover .lab-article-media img,
.lab-article-card:focus-visible .lab-article-media img {
  filter: saturate(1) contrast(1.08) brightness(0.98);
  transform: scale(1.035);
}

.lab-article-body {
  display: flex;
  flex-direction: column;
  min-height: clamp(222px, 17vw, 262px);
  padding: clamp(18px, 1.6vw, 24px);
}

.lab-article-tag {
  margin-bottom: 12px;
  color: #5aaaff;
  font-size: 11px;
  font-weight: 820;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lab-article-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(17px, 1.18vw, 21px);
  font-weight: 780;
  line-height: 1.18;
  text-wrap: balance;
}

.lab-article-card p {
  margin: 12px 0 0;
  color: rgba(236, 246, 255, 0.72);
  font-size: clamp(13px, 0.88vw, 15px);
  font-weight: 430;
  line-height: 1.48;
}

.lab-article-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  color: rgba(142, 206, 255, 0.94);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lab-article-more .material-symbols-outlined {
  font-size: 18px;
  line-height: 1;
}

.article-page {
  background: #061622;
}

.article-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: min(720px, 78svh);
  padding: clamp(180px, 18vh, 236px) var(--page-x) clamp(72px, 8vw, 118px);
  overflow: hidden;
  background: #061622;
}

.article-hero-bg,
.article-hero::before,
.article-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.article-hero-bg {
  z-index: -5;
  background: url("../backgrounds/4.jpg") center / cover no-repeat;
  filter: saturate(0.68) contrast(1.08) brightness(0.56);
  transform: scale(1.02);
}

.article-hero::before,
.article-hero::after {
  content: "";
}

.article-hero::before {
  z-index: -4;
  background:
    radial-gradient(ellipse at 20% 22%, rgba(8, 116, 255, 0.26), transparent 34%),
    linear-gradient(90deg, rgba(1, 8, 15, 0.92) 0%, rgba(2, 9, 16, 0.74) 44%, rgba(2, 9, 16, 0.5) 100%);
}

.article-hero::after {
  z-index: -3;
  background: linear-gradient(180deg, rgba(2, 8, 14, 0.14) 0%, rgba(2, 8, 14, 0.38) 62%, #061622 100%);
}

.article-hero-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(28px, 3.1vw, 44px);
  color: rgba(236, 246, 255, 0.76);
  font-size: clamp(13px, 0.86vw, 15px);
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 180ms ease, transform 180ms ease;
}

.article-back-link .material-symbols-outlined {
  font-size: 19px;
}

.article-back-link:hover,
.article-back-link:focus-visible {
  color: #ffffff;
  outline: none;
  transform: translateX(-2px);
}

.article-hero-copy {
  position: relative;
  max-width: 980px;
  padding-left: clamp(22px, 2.3vw, 38px);
}

.article-hero-copy::before {
  position: absolute;
  left: 0;
  top: clamp(36px, 4vw, 58px);
  bottom: clamp(10px, 1vw, 18px);
  width: 1px;
  background: linear-gradient(180deg, var(--blue), rgba(8, 116, 255, 0.18));
  box-shadow: 0 0 26px rgba(8, 116, 255, 0.34);
  content: "";
}

.article-hero h1 {
  max-width: 960px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 4.3vw, 74px);
  font-weight: var(--hero-title-weight);
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.46);
}

.article-lead {
  max-width: 760px;
  margin: clamp(22px, 2.4vw, 34px) 0 0;
  color: rgba(236, 246, 255, 0.76);
  font-size: clamp(17px, 1.35vw, 24px);
  font-weight: 500;
  line-height: 1.48;
}

.article-body-section {
  position: relative;
  isolation: isolate;
  margin-top: -1px;
  padding: clamp(52px, 5.4vw, 90px) var(--page-x) clamp(86px, 8vw, 132px);
  background:
    radial-gradient(ellipse at 12% 8%, rgba(8, 116, 255, 0.1), transparent 38%),
    linear-gradient(180deg, #061622 0%, #04131f 50%, #061622 100%);
}

.article-body-section::before {
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  z-index: -1;
  height: clamp(120px, 12vw, 220px);
  background: linear-gradient(180deg, #061622 0%, rgba(6, 22, 34, 0.7) 50%, rgba(6, 22, 34, 0) 100%);
  content: "";
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(18px, 2vw, 30px);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.article-cover {
  grid-column: 1 / -1;
  margin: 0 0 clamp(8px, 1vw, 14px);
  overflow: hidden;
  border: 1px solid rgba(90, 170, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.02)),
    rgba(5, 18, 31, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 72px rgba(0, 0, 0, 0.24);
}

.article-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 8;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04) brightness(0.92);
}

.article-cover figcaption {
  padding: 14px clamp(16px, 1.7vw, 24px) 16px;
  color: rgba(236, 246, 255, 0.66);
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 500;
  line-height: 1.42;
}

.article-panel,
.article-summary {
  border: 1px solid rgba(90, 170, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(5, 18, 31, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 62px rgba(0, 0, 0, 0.2);
}

.article-panel {
  padding: clamp(24px, 2.5vw, 42px);
}

.article-text-block + .article-text-block {
  margin-top: clamp(26px, 2.8vw, 42px);
  padding-top: clamp(24px, 2.4vw, 36px);
  border-top: 1px solid rgba(142, 206, 255, 0.14);
}

.article-text-block h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 780;
  line-height: 1.12;
  text-wrap: balance;
}

.article-text-block p,
.article-text-block li {
  color: rgba(236, 246, 255, 0.76);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 430;
  line-height: 1.62;
}

.article-text-block p {
  margin: 0;
}

.article-text-block p + p {
  margin-top: 14px;
}

.article-text-block ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-text-block li {
  position: relative;
  padding-left: 22px;
}

.article-text-block li::before {
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 16px rgba(8, 116, 255, 0.44);
  content: "";
}

.article-summary {
  position: sticky;
  top: 24px;
  padding: clamp(20px, 2vw, 28px);
}

.article-summary h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(18px, 1.25vw, 22px);
  font-weight: 780;
  line-height: 1.2;
  text-transform: uppercase;
}

.article-summary ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-summary li {
  position: relative;
  padding-left: 18px;
  color: rgba(236, 246, 255, 0.72);
  font-size: clamp(14px, 0.95vw, 16px);
  font-weight: 520;
  line-height: 1.42;
}

.article-summary li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(90, 170, 255, 0.92);
  content: "";
}

.article-actions {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 14px;
  margin-top: clamp(28px, 3.2vw, 48px);
}

.article-contact-link,
.article-next-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.article-contact-link {
  padding: 0 22px;
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 14px 38px rgba(8, 116, 255, 0.25);
}

.article-next-link {
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 18px;
  border: 1px solid rgba(90, 170, 255, 0.28);
  color: rgba(236, 246, 255, 0.86);
  background: rgba(8, 116, 255, 0.08);
}

.article-next-link span {
  color: rgba(142, 206, 255, 0.78);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-next-link strong {
  margin-top: 4px;
  color: #ffffff;
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 760;
}

.article-contact-link:hover,
.article-contact-link:focus-visible,
.article-next-link:hover,
.article-next-link:focus-visible {
  border-color: rgba(90, 170, 255, 0.56);
  color: #ffffff;
  outline: none;
  transform: translateY(-2px);
}

.lab-equipment-section {
  padding: clamp(84px, 7.4vw, 124px) var(--page-x) clamp(96px, 8.2vw, 142px);
  margin-top: -1px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(8, 116, 255, 0.11), transparent 34%),
    radial-gradient(ellipse at 14% 58%, rgba(142, 206, 255, 0.045), transparent 32%),
    radial-gradient(ellipse at 86% 76%, rgba(8, 116, 255, 0.06), transparent 34%),
    linear-gradient(180deg, #061622 0%, #03101a 42%, #02070c 78%, #061622 100%);
}

.lab-equipment-section::before,
.lab-equipment-section::after {
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.lab-equipment-section::before {
  top: -1px;
  height: clamp(132px, 12vw, 220px);
  background: linear-gradient(180deg, #061622 0%, rgba(6, 22, 34, 0.74) 42%, rgba(6, 22, 34, 0) 100%);
}

.lab-equipment-section::after {
  bottom: -1px;
  height: clamp(220px, 18vw, 330px);
  background:
    linear-gradient(
      180deg,
      rgba(2, 7, 12, 0) 0%,
      rgba(3, 13, 22, 0.34) 30%,
      rgba(4, 17, 27, 0.78) 66%,
      #061622 100%
    );
}

.lab-equipment-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.lab-equipment-head {
  display: grid;
  gap: clamp(12px, 1.2vw, 18px);
  justify-items: center;
  margin-bottom: clamp(32px, 3.2vw, 48px);
  text-align: center;
}

.lab-equipment-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: var(--section-title-size);
  font-weight: var(--section-title-weight);
  line-height: var(--section-title-line);
  text-transform: uppercase;
  text-wrap: balance;
}

.lab-equipment-head::after {
  display: block;
  width: var(--heading-rule-width);
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(8, 116, 255, 0), rgba(8, 116, 255, 0.9) 48%, rgba(142, 206, 255, 0.58) 52%, rgba(8, 116, 255, 0));
  content: "";
  box-shadow: 0 0 22px rgba(8, 116, 255, 0.36);
}

.lab-equipment-viewport {
  position: relative;
}

.lab-equipment-track {
  display: grid;
  grid-auto-columns: clamp(220px, 22vw, 260px);
  grid-auto-flow: column;
  gap: clamp(16px, 1.6vw, 24px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, transparent 0, #000 36px, #000 calc(100% - 36px), transparent 100%);
}

.lab-equipment-track::-webkit-scrollbar {
  display: none;
}

.lab-equipment-card {
  position: relative;
  display: grid;
  grid-template-rows: clamp(176px, 15.4vw, 220px) 1fr;
  min-height: clamp(358px, 29vw, 414px);
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(142, 206, 255, 0.2);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.076), rgba(255, 255, 255, 0.024)),
    rgba(5, 18, 31, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 22px 64px rgba(0, 0, 0, 0.26);
  scroll-snap-align: start;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.lab-equipment-card:hover {
  border-color: rgba(90, 170, 255, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 28px 76px rgba(0, 0, 0, 0.32),
    0 0 26px rgba(8, 116, 255, 0.12);
  transform: translateY(-2px);
}

.lab-equipment-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(14px, 1.2vw, 18px);
  border: 1px solid rgba(142, 206, 255, 0.14);
  border-radius: 7px 7px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 252, 0.94));
  filter: saturate(0.9) contrast(1.02);
}

.lab-equipment-card-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(16px, 1.35vw, 22px) clamp(14px, 1.25vw, 20px);
  border: 1px solid rgba(142, 206, 255, 0.14);
  border-top: 0;
  border-radius: 0 0 7px 7px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.054), rgba(255, 255, 255, 0.014)),
    rgba(2, 9, 15, 0.5);
}

.lab-equipment-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 760;
  line-height: 1.2;
  text-transform: uppercase;
  text-wrap: balance;
}

.lab-equipment-card p {
  margin: 0;
  color: rgba(236, 246, 255, 0.72);
  font-size: clamp(13px, 0.88vw, 15px);
  font-weight: 430;
  line-height: 1.5;
}

.lab-equipment-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(142, 206, 255, 0.34);
  border-radius: 50%;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(5, 18, 31, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(8, 116, 255, 0.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  backdrop-filter: blur(14px) saturate(1.1);
  cursor: pointer;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
  transform: translateY(-50%);
}

.lab-equipment-arrow:hover,
.lab-equipment-arrow:focus-visible {
  border-color: rgba(142, 206, 255, 0.68);
  background:
    linear-gradient(180deg, rgba(8, 116, 255, 0.32), rgba(8, 116, 255, 0.12)),
    rgba(5, 18, 31, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 20px 48px rgba(0, 0, 0, 0.38),
    0 0 26px rgba(8, 116, 255, 0.18);
  outline: none;
  transform: translateY(-50%) scale(1.04);
}

.lab-equipment-arrow:disabled {
  opacity: 0;
  cursor: default;
  pointer-events: none;
  transform: translateY(-50%);
}

.lab-equipment-arrow span {
  display: block;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-1px);
}

.lab-equipment-arrow-prev {
  left: clamp(-58px, -4.8vw, -42px);
}

.lab-equipment-arrow-next {
  right: clamp(-58px, -4.8vw, -42px);
}

.lab-faq-section {
  overflow: visible;
  margin-top: clamp(-120px, -7vw, -82px);
  padding-top: clamp(172px, 13vw, 230px);
  background:
    radial-gradient(ellipse at 50% 18%, rgba(8, 116, 255, 0.1), transparent 42%),
    linear-gradient(
      180deg,
      #061622 0%,
      #061622 18%,
      #04111b 48%,
      #061622 72%,
      #02070c 100%
    );
}

.lab-faq-section .faq-shell {
  position: relative;
  z-index: 1;
  width: min(1000px, 100%);
  margin: 0 auto;
}

.lab-faq-section::before {
  position: absolute;
  left: 0;
  right: 0;
  top: clamp(-210px, -12vw, -140px);
  z-index: 0;
  height: clamp(260px, 18vw, 360px);
  background:
    linear-gradient(
      180deg,
      rgba(6, 22, 34, 0) 0%,
      rgba(6, 22, 34, 0) 20%,
      rgba(6, 22, 34, 0.46) 58%,
      #061622 100%
    );
  content: "";
  pointer-events: none;
}

.lab-faq-section h2 {
  margin-bottom: clamp(28px, 3vw, 42px);
  text-align: center;
}

.contacts-page {
  min-height: 100svh;
  color: #ffffff;
  background:
    radial-gradient(ellipse at 50% 16%, rgba(8, 116, 255, 0.14), transparent 38%),
    linear-gradient(180deg, #02070c 0%, #051421 48%, #02070c 100%);
}

.contacts-hero,
.contacts-team-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.contacts-hero {
  min-height: 100svh;
  padding: clamp(124px, 13vh, 158px) var(--page-x) clamp(74px, 7vw, 112px);
  background: #04111e;
}

.contacts-hero-media,
.contacts-hero::before,
.contacts-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contacts-hero-media {
  z-index: -6;
  background: url("../backgrounds/6.jpg") center / cover no-repeat;
  filter: saturate(0.82) contrast(1.08) brightness(0.72);
  transform: scale(1.02);
}

.contacts-hero::before,
.contacts-hero::after {
  content: "";
}

.contacts-hero::before {
  z-index: -5;
  background:
    radial-gradient(ellipse at 78% 28%, rgba(8, 116, 255, 0.18), transparent 36%),
    linear-gradient(90deg, rgba(1, 7, 13, 0.92) 0%, rgba(1, 8, 15, 0.78) 44%, rgba(1, 8, 15, 0.58) 100%);
}

.contacts-hero::after {
  z-index: -4;
  background:
    linear-gradient(180deg, rgba(2, 7, 12, 0.08) 0%, rgba(2, 7, 12, 0.48) 66%, #061622 100%),
    linear-gradient(0deg, #061622 0%, rgba(6, 22, 34, 0.8) 10%, rgba(6, 22, 34, 0) 28%);
}

.contacts-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(420px, 1.18fr) minmax(360px, 0.82fr);
  column-gap: clamp(32px, 4.8vw, 76px);
  row-gap: clamp(20px, 2.4vw, 34px);
  align-items: start;
  width: min(1420px, 100%);
  min-height: calc(100svh - clamp(198px, 22vh, 270px));
  margin: 0 auto;
  padding-top: clamp(30px, 5vh, 74px);
}

.contacts-map-card {
  position: relative;
  grid-column: 1;
  min-height: clamp(360px, 31vw, 520px);
  overflow: hidden;
  border: 1px solid rgba(213, 236, 255, 0.32);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(235, 244, 250, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 34px 100px rgba(0, 0, 0, 0.36);
}

.contacts-map-card::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 24% 24%, rgba(255, 255, 255, 0.4), transparent 36%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 42%);
  content: "";
  pointer-events: none;
}

.contacts-map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: saturate(0.86) contrast(1.02) brightness(1.02);
}

.contacts-logo-card {
  position: relative;
  grid-column: 1;
  display: grid;
  place-items: center;
  min-height: clamp(190px, 17vw, 284px);
  margin-top: 0;
  overflow: hidden;
  border: 1px solid rgba(142, 206, 255, 0.18);
  border-radius: 12px;
  background:
    radial-gradient(ellipse at 28% 52%, rgba(8, 116, 255, 0.18), transparent 38%),
    radial-gradient(ellipse at 72% 44%, rgba(236, 246, 255, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.012)),
    rgba(2, 11, 18, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 80px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
  backdrop-filter: blur(10px) saturate(1.08);
}

.contacts-logo-card::before,
.contacts-logo-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.contacts-logo-card::before {
  inset: 18px;
  border: 1px solid rgba(142, 206, 255, 0.1);
  border-radius: 10px;
  background:
    linear-gradient(rgba(142, 206, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 206, 255, 0.034) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(135deg, transparent 0%, #000 24%, #000 74%, transparent 100%);
}

.contacts-logo-card::after {
  left: 50%;
  bottom: clamp(28px, 3vw, 46px);
  width: min(360px, 76%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8, 116, 255, 0.92), rgba(236, 246, 255, 0.32), transparent);
  box-shadow: 0 0 26px rgba(8, 116, 255, 0.42);
  transform: translateX(-50%);
}

.contacts-logo-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(620px, 74%);
  max-height: 138px;
  object-fit: contain;
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 0 22px rgba(8, 116, 255, 0.34))
    drop-shadow(0 18px 44px rgba(0, 0, 0, 0.36));
  opacity: 0.92;
}

.contacts-info-card {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: clamp(12px, 1vw, 18px) 0;
}

.contacts-company {
  margin: 0 0 clamp(22px, 2vw, 30px);
  color: rgba(244, 250, 255, 0.9);
  font-size: clamp(14px, 0.96vw, 18px);
  font-weight: 520;
  line-height: 1.42;
  text-transform: uppercase;
}

.contacts-info-card h1 {
  max-width: 700px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 3.1vw, 58px);
  font-weight: var(--hero-title-weight);
  line-height: 1.08;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 12px 44px rgba(0, 0, 0, 0.48);
}

.contacts-title-rule {
  display: block;
  width: var(--heading-rule-width);
  height: 2px;
  margin: clamp(18px, 1.8vw, 28px) 0 clamp(24px, 2.4vw, 38px);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(8, 116, 255, 0.92), rgba(142, 206, 255, 0.18));
  box-shadow: 0 0 22px rgba(8, 116, 255, 0.34);
}

.contacts-detail-list {
  display: grid;
  gap: clamp(12px, 1.15vw, 18px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.contacts-detail-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  color: rgba(246, 250, 255, 0.9);
  font-size: clamp(14px, 0.98vw, 18px);
  font-weight: 520;
  line-height: 1.42;
}

.contacts-detail-list a {
  width: fit-content;
  color: rgba(246, 250, 255, 0.92);
  transition: color 160ms ease;
}

.contacts-detail-list a:hover,
.contacts-detail-list a:focus-visible {
  color: #ffffff;
  outline: none;
}

.contacts-detail-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(80, 166, 255, 0.5);
  border-radius: 50%;
  color: rgba(142, 206, 255, 0.98);
  font-size: 24px;
  background:
    linear-gradient(180deg, rgba(8, 116, 255, 0.38), rgba(8, 116, 255, 0.12)),
    rgba(5, 18, 31, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 24px rgba(8, 116, 255, 0.2);
}

.contacts-team-section {
  margin-top: -1px;
  padding: clamp(58px, 5.4vw, 88px) var(--page-x) clamp(76px, 7vw, 112px);
  background:
    radial-gradient(ellipse at 50% 8%, rgba(8, 116, 255, 0.13), transparent 34%),
    radial-gradient(ellipse at 12% 82%, rgba(142, 206, 255, 0.07), transparent 36%),
    linear-gradient(180deg, #061622 0%, #03101a 54%, #02070c 100%);
}

.contacts-team-section::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8, 116, 255, 0.72), transparent);
  content: "";
}

.contacts-team-shell {
  width: min(980px, 100%);
  margin: 0 auto;
}

.contacts-section-head {
  display: grid;
  justify-items: center;
  margin-bottom: clamp(28px, 3vw, 44px);
  text-align: center;
}

.contacts-section-head h2 {
  display: grid;
  justify-items: center;
  margin: 0;
  color: #ffffff;
  font-size: var(--section-title-size);
  font-weight: var(--section-title-weight);
  line-height: var(--section-title-line);
  text-transform: uppercase;
  text-wrap: balance;
}

.contacts-section-head h2::after {
  display: block;
  width: var(--home-heading-rule-width, clamp(112px, 11vw, 168px));
  height: 2px;
  margin-top: clamp(14px, 1.35vw, 20px);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(236, 246, 255, 0.18) 0 calc(50% - 30px), rgba(8, 116, 255, 0.9) calc(50% - 30px) calc(50% + 30px), rgba(236, 246, 255, 0.18) calc(50% + 30px) 100%);
  content: "";
}

.contacts-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.contact-person-card {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: clamp(244px, 18vw, 292px);
  padding: clamp(22px, 2vw, 30px);
  border: 1px solid rgba(90, 170, 255, 0.24);
  border-radius: 10px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.022)),
    rgba(5, 18, 31, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 24px 72px rgba(0, 0, 0, 0.24);
}

.contact-person-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border: 1px solid rgba(80, 166, 255, 0.54);
  border-radius: var(--icon-badge-radius);
  color: rgba(142, 206, 255, 0.98);
  font-size: 30px;
  background:
    linear-gradient(180deg, rgba(8, 116, 255, 0.42), rgba(8, 116, 255, 0.16));
  box-shadow: 0 0 24px rgba(8, 116, 255, 0.22);
}

.contact-person-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(17px, 1.16vw, 21px);
  font-weight: 760;
  line-height: 1.22;
  text-transform: uppercase;
  text-wrap: balance;
}

.contact-person-role {
  margin: 8px 0 0;
  color: rgba(142, 206, 255, 0.92);
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 520;
  line-height: 1.32;
}

.contact-person-rule {
  display: block;
  width: min(180px, 72%);
  height: 1px;
  margin: clamp(18px, 1.7vw, 24px) auto clamp(14px, 1.4vw, 20px);
  background:
    linear-gradient(90deg, transparent, rgba(236, 246, 255, 0.36) 18%, rgba(8, 116, 255, 0.84) 50%, rgba(236, 246, 255, 0.36) 82%, transparent);
}

.contact-person-card a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: min(230px, 100%);
  min-height: 42px;
  margin-top: 10px;
  padding: 0 14px;
  border: 1px solid rgba(8, 132, 255, 0.62);
  border-radius: 6px;
  color: rgba(246, 250, 255, 0.92);
  font-size: clamp(12px, 0.82vw, 14px);
  font-weight: 720;
  text-transform: uppercase;
  background: rgba(8, 116, 255, 0.08);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.contact-person-card a:hover,
.contact-person-card a:focus-visible {
  border-color: rgba(142, 206, 255, 0.72);
  background: rgba(8, 116, 255, 0.18);
  outline: none;
  transform: translateY(-1px);
}

.contact-person-card a .material-symbols-outlined {
  color: rgba(77, 157, 255, 0.98);
  font-size: 20px;
}

.contacts-form-section {
  position: relative;
  isolation: isolate;
  margin-top: -1px;
  padding: clamp(64px, 6.2vw, 98px) var(--page-x) clamp(88px, 7.6vw, 126px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 18% 18%, rgba(8, 116, 255, 0.1), transparent 36%),
    radial-gradient(ellipse at 84% 72%, rgba(142, 206, 255, 0.06), transparent 34%),
    linear-gradient(180deg, #02070c 0%, #061622 50%, #02070c 100%);
}

.contacts-form-section::before,
.contacts-form-section::after {
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.contacts-form-section::before {
  top: -1px;
  height: clamp(120px, 10vw, 190px);
  background: linear-gradient(180deg, rgba(2, 7, 12, 0.98), rgba(2, 7, 12, 0));
}

.contacts-form-section::after {
  bottom: -1px;
  height: clamp(130px, 11vw, 200px);
  background: linear-gradient(180deg, rgba(2, 7, 12, 0), rgba(2, 7, 12, 0.92) 72%, #02070c 100%);
}

.contacts-form-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(360px, 520px);
  gap: clamp(28px, 4.8vw, 82px);
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.contacts-form-copy {
  max-width: 520px;
}

.contacts-form-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: var(--section-title-size);
  font-weight: var(--section-title-weight);
  line-height: var(--section-title-line);
  text-transform: uppercase;
  text-wrap: balance;
}

.contacts-form-copy p:not(.services-kicker) {
  margin: clamp(16px, 1.8vw, 24px) 0 0;
  color: rgba(236, 246, 255, 0.74);
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 400;
  line-height: 1.58;
}

.contacts-form-fast-links {
  display: grid;
  gap: 12px;
  width: min(360px, 100%);
  margin-top: clamp(24px, 2.8vw, 38px);
}

.contacts-form-fast-links a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(8, 132, 255, 0.62);
  border-radius: 999px;
  color: rgba(246, 250, 255, 0.92);
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 720;
  line-height: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(5, 18, 31, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 52px rgba(0, 0, 0, 0.18);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.contacts-form-fast-links a:hover,
.contacts-form-fast-links a:focus-visible {
  border-color: rgba(142, 206, 255, 0.72);
  background: rgba(8, 116, 255, 0.16);
  outline: none;
  transform: translateY(-1px);
}

.contacts-form-fast-links .material-symbols-outlined {
  color: rgba(77, 157, 255, 0.98);
  font-size: 21px;
}

.contacts-form-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 2.8vw, 36px);
  border: 1px solid rgba(142, 206, 255, 0.24);
  border-radius: 12px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.028)),
    rgba(4, 14, 23, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 32px 110px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(8, 116, 255, 0.08);
  -webkit-backdrop-filter: blur(20px) saturate(1.12);
  backdrop-filter: blur(20px) saturate(1.12);
}

.contacts-form-card::before {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8, 116, 255, 0.86), transparent);
  content: "";
  box-shadow: 0 0 24px rgba(8, 116, 255, 0.5);
}

.contacts-order-head {
  padding-right: 0;
}

.contact-order-form .order-submit {
  margin-top: 8px;
}

.site-footer {
  position: relative;
  isolation: isolate;
  min-height: clamp(310px, 33vw, 450px);
  padding: clamp(56px, 4.2vw, 78px) var(--page-x) clamp(24px, 2.6vw, 38px);
  overflow: hidden;
  background: #02070c;
}

.site-footer::before,
.site-footer::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.site-footer::before {
  z-index: -5;
  background: url("../backgrounds/podval.jpg") center / cover no-repeat;
  filter: saturate(0.86) contrast(1.08) brightness(0.72);
  transform: scale(1.02);
}

.site-footer::after {
  z-index: -4;
  background:
    radial-gradient(ellipse at 74% 52%, rgba(8, 116, 255, 0.1), transparent 34%),
    linear-gradient(90deg, rgba(2, 7, 12, 0.92) 0%, rgba(2, 11, 19, 0.78) 48%, rgba(2, 7, 12, 0.78) 100%),
    linear-gradient(180deg, rgba(2, 7, 12, 0.9) 0%, rgba(3, 12, 20, 0.62) 32%, rgba(2, 7, 12, 0.9) 100%);
}

.footer-arc {
  position: absolute;
  left: 50%;
  top: clamp(-58px, -3.2vw, -34px);
  z-index: -2;
  width: 112vw;
  height: clamp(58px, 4.8vw, 82px);
  border-bottom: 1px solid rgba(8, 116, 255, 0.58);
  border-radius: 0 0 50% 50%;
  background: linear-gradient(180deg, rgba(221, 238, 255, 0.1), rgba(6, 32, 55, 0.1) 42%, transparent 100%);
  box-shadow:
    0 8px 20px rgba(8, 116, 255, 0.12),
    inset 0 -12px 18px rgba(255, 255, 255, 0.035);
  transform: translateX(-50%);
  pointer-events: none;
}

.footer-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(330px, 1fr) minmax(140px, 0.34fr) minmax(190px, 0.42fr);
  gap: clamp(28px, 4.2vw, 64px);
  align-items: start;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.footer-column h2 {
  margin: 0;
  color: rgba(248, 252, 255, 0.9);
  font-size: clamp(15px, 0.95vw, 18px);
  font-weight: 740;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.48);
}

.footer-column-label {
  margin: clamp(16px, 1.4vw, 24px) 0 clamp(8px, 0.8vw, 12px);
  color: rgba(8, 116, 255, 0.96);
  font-size: clamp(15px, 0.98vw, 18px);
  font-weight: 450;
  line-height: 1.2;
}

.service-kicker,
.home-section-kicker,
.services-kicker {
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  line-height: 1.2;
  letter-spacing: var(--eyebrow-letter);
  text-transform: uppercase;
}

.services-page .soil-tests-head h2,
.visits-page .visit-tests-head h2,
.prices-page .pricing-section-head h2,
.laboratory-page .lab-section-head h2,
.laboratory-page .lab-equipment-head h2,
.laboratory-page .lab-faq-section h2,
.contacts-page .contacts-section-head h2 {
  display: grid;
  justify-items: center;
}

.services-page .soil-tests-head h2::after,
.visits-page .visit-tests-head h2::after,
.prices-page .pricing-section-head h2::after,
.laboratory-page .lab-section-head h2::after,
.laboratory-page .lab-equipment-head h2::after,
.laboratory-page .lab-faq-section h2::after,
.contacts-page .contacts-section-head h2::after {
  display: block;
  width: var(--home-heading-rule-width);
  height: 2px;
  margin-top: clamp(14px, 1.35vw, 20px);
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      var(--home-heading-rule-soft) 0 calc(50% - 30px),
      var(--home-heading-rule-accent) calc(50% - 30px) calc(50% + 30px),
      var(--home-heading-rule-soft) calc(50% + 30px) 100%
    );
  content: "";
}

.prices-page .pricing-section-head h2::after {
  --home-heading-rule-soft: rgba(23, 39, 95, 0.22);
}

.contacts-page .contacts-info-card h1 {
  display: grid;
  justify-items: start;
}

.contacts-page .contacts-info-card h1::after {
  display: block;
  width: var(--home-heading-rule-width);
  height: 2px;
  margin: clamp(18px, 1.8vw, 28px) 0 clamp(24px, 2.4vw, 38px);
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      var(--home-heading-rule-soft) 0 calc(50% - 30px),
      var(--home-heading-rule-accent) calc(50% - 30px) calc(50% + 30px),
      var(--home-heading-rule-soft) calc(50% + 30px) 100%
    );
  content: "";
}

.lab-equipment-head::after,
.visits-title-rule,
.pricing-title-rule,
.contacts-title-rule {
  display: none;
}

.visits-title-rule,
.pricing-title-rule {
  width: var(--heading-rule-width);
  height: 2px;
  border-radius: 999px;
}

.pricing-title-rule {
  background: linear-gradient(90deg, #17275f, rgba(23, 39, 95, 0.22));
}

.footer-list,
.footer-service-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-list {
  max-width: 540px;
}

.footer-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-height: 38px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(222, 241, 255, 0.13);
  color: rgba(238, 247, 255, 0.82);
  font-size: clamp(13px, 0.78vw, 15px);
  font-weight: 390;
  line-height: 1.38;
}

.footer-list a,
.footer-service-list a {
  color: #ffffff;
  font-weight: 720;
}

.footer-icon {
  color: rgba(8, 116, 255, 0.98);
  font-size: clamp(18px, 1.14vw, 22px);
  line-height: 1;
  filter: drop-shadow(0 0 14px rgba(8, 116, 255, 0.22));
}

.footer-social p {
  margin: 0;
  color: rgba(238, 247, 255, 0.82);
  font-size: clamp(13px, 0.82vw, 16px);
  line-height: 1.42;
}

.footer-service-list {
  display: grid;
  width: min(240px, 100%);
}

.footer-service-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(222, 241, 255, 0.13);
  color: rgba(248, 252, 255, 0.9);
  font-size: clamp(14px, 0.9vw, 17px);
  font-weight: 420;
  line-height: 1.34;
}

.footer-service-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: rgba(8, 116, 255, 0.98);
  font-size: 26px;
  line-height: 1;
  filter: drop-shadow(0 0 16px rgba(8, 116, 255, 0.25));
}

.feature-icon,
.services-card-icon,
.visits-card-icon,
.prices-hero-summary .material-symbols-outlined,
.laboratory-proof-icon,
.lab-step-icon {
  border: 1px solid rgba(80, 166, 255, 0.42);
  border-radius: var(--icon-badge-radius);
  color: rgba(141, 202, 255, 0.98);
  background:
    linear-gradient(180deg, rgba(8, 116, 255, 0.36), rgba(8, 116, 255, 0.14));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 34px rgba(8, 116, 255, 0.16);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  align-items: center;
  width: min(1080px, 100%);
  margin: clamp(24px, 3.2vw, 44px) auto 0;
  padding-top: clamp(14px, 1.4vw, 22px);
  border-top: 1px solid rgba(222, 241, 255, 0.14);
  color: rgba(238, 247, 255, 0.78);
  font-size: clamp(12px, 0.72vw, 14px);
  font-weight: 390;
}

.scroll-top-button {
  position: fixed;
  left: clamp(18px, 2.4vw, 34px);
  bottom: clamp(18px, 2.4vw, 34px);
  z-index: 80;
  display: inline-grid;
  place-items: center;
  width: clamp(46px, 3.5vw, 58px);
  height: clamp(46px, 3.5vw, 58px);
  padding: 0;
  border: 1px solid rgba(230, 246, 255, 0.28);
  border-radius: 50%;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(8, 116, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 44px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(8, 116, 255, 0.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  backdrop-filter: blur(18px) saturate(1.18);
  cursor: pointer;
  opacity: 0.78;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.scroll-top-button.is-visible {
  opacity: 1;
  border-color: rgba(89, 170, 255, 0.5);
}

.scroll-top-button:hover,
.scroll-top-button:focus-visible {
  border-color: rgba(89, 170, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0.055)),
    rgba(8, 116, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 20px 50px rgba(0, 0, 0, 0.36),
    0 0 28px rgba(8, 116, 255, 0.28);
  outline: none;
}

.scroll-top-button .material-symbols-outlined {
  font-size: clamp(24px, 1.8vw, 30px);
  font-weight: 300;
  line-height: 1;
}

.support-widget {
  position: fixed;
  right: clamp(18px, 2.4vw, 34px);
  bottom: clamp(18px, 2.4vw, 34px);
  z-index: 90;
  display: grid;
  justify-items: end;
  color: #ffffff;
  pointer-events: none;
}

.support-toggle {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  max-width: min(310px, calc(100vw - 32px));
  min-height: 60px;
  padding: 8px 18px 8px 9px;
  border: 1px solid rgba(142, 206, 255, 0.44);
  border-radius: 999px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(8, 116, 255, 0.92), rgba(0, 59, 150, 0.92)),
    rgba(3, 12, 20, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 18px 50px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(8, 116, 255, 0.24);
  cursor: pointer;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.support-toggle::before {
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 1px solid rgba(76, 162, 255, 0.28);
  border-radius: inherit;
  content: "";
  opacity: 0.72;
  animation: support-pulse 3.4s ease-out infinite;
}

.support-toggle:hover,
.support-toggle:focus-visible,
.support-widget.is-open .support-toggle {
  border-color: rgba(205, 235, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(36, 139, 255, 0.96), rgba(0, 72, 188, 0.94)),
    rgba(3, 12, 20, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 22px 62px rgba(0, 0, 0, 0.44),
    0 0 36px rgba(8, 116, 255, 0.34);
  outline: none;
  transform: translateY(-2px);
}

.support-widget.is-open .support-toggle::before {
  opacity: 0;
}

.support-widget.has-nudge:not(.is-open) .support-toggle {
  animation: support-nudge 1.8s ease 2;
}

.support-toggle-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.08);
  font-size: 22px;
}

.support-toggle-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
  text-align: left;
}

.support-toggle-title {
  overflow: hidden;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.08;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-toggle-note {
  overflow: hidden;
  color: rgba(239, 248, 255, 0.7);
  font-size: 11px;
  font-weight: 520;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-toggle-dot {
  position: absolute;
  top: 8px;
  right: 11px;
  width: 9px;
  height: 9px;
  border: 2px solid rgba(2, 15, 28, 0.88);
  border-radius: 50%;
  background: #35e08f;
  box-shadow: 0 0 0 0 rgba(53, 224, 143, 0.42);
  animation: support-dot 2.2s ease-out infinite;
}

.support-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: min(392px, calc(100vw - 32px));
  max-height: min(78svh, 620px);
  overflow: auto;
  padding: 18px;
  border: 1px solid rgba(142, 206, 255, 0.25);
  border-radius: 16px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.032)),
    rgba(4, 14, 23, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 28px 90px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(8, 116, 255, 0.08);
  -webkit-backdrop-filter: blur(22px) saturate(1.12);
  backdrop-filter: blur(22px) saturate(1.12);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 16px, 0) scale(0.96);
  transform-origin: right bottom;
  transition:
    opacity 180ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 220ms;
  visibility: hidden;
}

.support-widget.is-open .support-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity 180ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 0s;
  visibility: visible;
}

.support-panel-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.support-eyebrow {
  margin: 0 0 6px;
  color: rgba(77, 157, 255, 0.98);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-transform: uppercase;
}

.support-panel h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(21px, 1.55vw, 25px);
  font-weight: 760;
  line-height: 1.05;
}

.support-close {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid rgba(142, 206, 255, 0.28);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(8, 116, 255, 0.12);
  cursor: pointer;
}

.support-close:hover,
.support-close:focus-visible {
  border-color: rgba(142, 206, 255, 0.58);
  background: rgba(8, 116, 255, 0.2);
  outline: none;
}

.support-close .material-symbols-outlined {
  font-size: 20px;
}

.support-intro {
  margin: 0 0 14px;
  color: rgba(236, 246, 255, 0.74);
  font-size: 14px;
  line-height: 1.45;
}

.support-channel-list {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.support-channel {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid rgba(142, 206, 255, 0.2);
  border-radius: 10px;
  color: rgba(246, 251, 255, 0.92);
  font-size: 13px;
  font-weight: 680;
  background: rgba(2, 9, 15, 0.46);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.support-channel:hover,
.support-channel:focus-visible {
  border-color: rgba(8, 132, 255, 0.64);
  color: #ffffff;
  background: rgba(8, 116, 255, 0.15);
  outline: none;
}

.support-channel .material-symbols-outlined {
  width: 20px;
  flex: 0 0 auto;
  color: rgba(142, 206, 255, 0.96);
  font-size: 19px;
}

.support-form {
  display: grid;
  gap: 10px;
}

.support-field {
  display: grid;
  gap: 7px;
}

.support-field span {
  color: rgba(236, 246, 255, 0.66);
  font-size: 12px;
  font-weight: 560;
}

.support-field input,
.support-field textarea {
  width: 100%;
  border: 1px solid rgba(142, 206, 255, 0.24);
  border-radius: 8px;
  color: #ffffff;
  font: inherit;
  font-size: 14px;
  background: rgba(2, 9, 15, 0.54);
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.support-field input {
  min-height: 42px;
  padding: 0 12px;
}

.support-field textarea {
  min-height: 94px;
  padding: 11px 12px;
  resize: vertical;
}

.support-field input:focus,
.support-field textarea:focus {
  border-color: rgba(8, 116, 255, 0.88);
  background: rgba(3, 13, 21, 0.72);
  box-shadow: 0 0 0 3px rgba(8, 116, 255, 0.16);
}

.support-field input.is-invalid,
.support-field input[aria-invalid="true"] {
  border-color: rgba(255, 105, 105, 0.95);
  background: rgba(42, 8, 12, 0.72);
  box-shadow: 0 0 0 3px rgba(255, 79, 79, 0.2);
}

.support-field input::placeholder,
.support-field textarea::placeholder {
  color: rgba(236, 246, 255, 0.38);
}

.support-field-error {
  display: block;
  padding: 8px 10px;
  border: 1px solid rgba(255, 105, 105, 0.45);
  border-radius: 8px;
  color: #ffd9d9;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.35;
  background: rgba(92, 18, 24, 0.72);
}

.support-field-error[hidden] {
  display: none;
}

.support-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 1px;
}

.support-topics button {
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(142, 206, 255, 0.2);
  border-radius: 999px;
  color: rgba(236, 246, 255, 0.78);
  font: inherit;
  font-size: 12px;
  font-weight: 640;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.support-topics button:hover,
.support-topics button:focus-visible {
  border-color: rgba(8, 132, 255, 0.62);
  color: #ffffff;
  background: rgba(8, 116, 255, 0.15);
  outline: none;
}

.support-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 2px;
  padding: 0 18px;
  border: 1px solid rgba(8, 132, 255, 0.86);
  border-radius: 999px;
  color: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
  background:
    linear-gradient(180deg, rgba(8, 132, 255, 0.9), rgba(0, 82, 220, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 38px rgba(8, 116, 255, 0.2);
  cursor: pointer;
}

.support-submit:hover,
.support-submit:focus-visible {
  border-color: rgba(142, 206, 255, 0.82);
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 16px 46px rgba(8, 116, 255, 0.3);
}

.support-status {
  min-height: 17px;
  margin: 0;
  color: rgba(142, 206, 255, 0.92);
  font-size: 12px;
  line-height: 1.4;
}

.support-status.is-error {
  padding: 9px 11px;
  border: 1px solid rgba(255, 105, 105, 0.45);
  border-radius: 8px;
  color: #ffd9d9;
  font-weight: 720;
  background: rgba(92, 18, 24, 0.72);
}

body.order-modal-open .support-widget {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 34px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 240ms ease,
    visibility 0s linear 240ms;
}

.order-modal.is-open,
.order-modal:target {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 240ms ease,
    visibility 0s linear 0s;
}

.order-modal-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(ellipse at 50% 34%, rgba(8, 116, 255, 0.18), transparent 36%),
    rgba(0, 6, 11, 0.78);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  backdrop-filter: blur(16px) saturate(1.08);
  transition: opacity 260ms ease;
}

.order-modal.is-open .order-modal-backdrop,
.order-modal:target .order-modal-backdrop {
  opacity: 1;
}

.order-dialog {
  position: relative;
  width: min(480px, 100%);
  max-height: min(90svh, 820px);
  overflow: auto;
  padding: clamp(26px, 3.2vw, 38px);
  border: 1px solid rgba(142, 206, 255, 0.26);
  border-radius: 12px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.028)),
    rgba(4, 14, 23, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 32px 120px rgba(0, 0, 0, 0.54),
    0 0 0 1px rgba(8, 116, 255, 0.08);
  -webkit-backdrop-filter: blur(22px) saturate(1.14);
  backdrop-filter: blur(22px) saturate(1.14);
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.965);
  transform-origin: center;
  transition:
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.order-modal.is-open .order-dialog,
.order-modal:target .order-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.order-dialog::before {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8, 116, 255, 0.86), transparent);
  content: "";
  box-shadow: 0 0 24px rgba(8, 116, 255, 0.5);
}

.order-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(142, 206, 255, 0.28);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(8, 116, 255, 0.12);
  cursor: pointer;
}

.order-close .material-symbols-outlined {
  font-size: 20px;
}

.order-head {
  padding-right: 28px;
  margin-bottom: 22px;
  text-align: center;
}

.order-eyebrow {
  margin: 0 0 8px;
  color: rgba(77, 157, 255, 0.98);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.order-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 760;
  line-height: 1.1;
  text-wrap: balance;
}

.order-head p {
  margin: 12px 0 0;
  color: rgba(236, 246, 255, 0.74);
  font-size: 14px;
  line-height: 1.45;
}

.order-form {
  display: grid;
  gap: 12px;
}

.order-field,
.order-file-field {
  display: grid;
  gap: 7px;
}

.order-field span,
.order-file-field > span:first-child {
  color: rgba(236, 246, 255, 0.68);
  font-size: 12px;
  font-weight: 520;
}

.order-field b,
.order-consent b {
  color: rgba(77, 157, 255, 0.98);
  font-weight: 720;
}

.order-field input,
.order-field textarea {
  width: 100%;
  border: 1px solid rgba(142, 206, 255, 0.24);
  border-radius: 8px;
  color: #ffffff;
  font: inherit;
  font-size: 15px;
  background: rgba(2, 9, 15, 0.54);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.order-field input {
  min-height: 46px;
  padding: 0 14px;
}

.order-field textarea {
  min-height: 108px;
  padding: 13px 14px;
  resize: vertical;
}

.order-field input:focus,
.order-field textarea:focus {
  border-color: rgba(8, 116, 255, 0.88);
  background: rgba(3, 13, 21, 0.72);
  box-shadow: 0 0 0 3px rgba(8, 116, 255, 0.16);
}

.order-file-field {
  padding: 12px;
  border: 1px solid rgba(142, 206, 255, 0.24);
  border-radius: 8px;
  background: rgba(2, 9, 15, 0.48);
}

.order-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.order-file-button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(8, 132, 255, 0.76);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 680;
  background: rgba(8, 116, 255, 0.14);
  cursor: pointer;
}

.order-file-button .material-symbols-outlined {
  font-size: 18px;
}

.order-file-name {
  color: rgba(236, 246, 255, 0.56);
  font-size: 12px;
  line-height: 1.35;
}

.order-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: rgba(236, 246, 255, 0.62);
  font-size: 11px;
  line-height: 1.35;
}

.order-consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.order-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 4px;
  padding: 0 24px;
  border: 1px solid rgba(8, 132, 255, 0.86);
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 760;
  text-transform: uppercase;
  background:
    linear-gradient(180deg, rgba(8, 132, 255, 0.9), rgba(0, 82, 220, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 16px 44px rgba(8, 116, 255, 0.22);
  cursor: pointer;
}

.order-submit:hover,
.order-submit:focus-visible {
  border-color: rgba(142, 206, 255, 0.82);
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 54px rgba(8, 116, 255, 0.32);
}

.order-status {
  min-height: 18px;
  margin: 0;
  color: rgba(142, 206, 255, 0.92);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

body.order-modal-open {
  overflow: hidden;
}

@keyframes support-pulse {
  0% {
    opacity: 0.68;
    transform: scale(0.96);
  }

  72%,
  100% {
    opacity: 0;
    transform: scale(1.16);
  }
}

@keyframes support-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(53, 224, 143, 0.42);
  }

  72%,
  100% {
    box-shadow: 0 0 0 8px rgba(53, 224, 143, 0);
  }
}

@keyframes support-nudge {
  0%,
  100% {
    transform: translateY(0);
  }

  32% {
    transform: translateY(-3px);
  }

  58% {
    transform: translateY(1px);
  }
}

@keyframes reviews-marquee {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes grid-drift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(116px, 116px, 0);
  }
}

@keyframes scan-pass {
  0%,
  18% {
    transform: translateX(-130%);
    opacity: 0;
  }

  42%,
  60% {
    opacity: 0.58;
  }

  84%,
  100% {
    transform: translateX(360%);
    opacity: 0;
  }
}

@keyframes trace-line {
  0%,
  20% {
    opacity: 0;
    transform: scaleX(0.12);
  }

  42%,
  68% {
    opacity: 0.62;
    transform: scaleX(1);
  }

  100% {
    opacity: 0;
    transform: scaleX(0.22);
  }
}

@keyframes arrow-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@media (max-width: 1440px) {
  :root {
    --page-x: clamp(24px, 4.8vw, 68px);
    --hero-title-size: clamp(38px, 4.2vw, 58px);
    --hero-brand-title-size: clamp(66px, 7.4vw, 106px);
  }

  .site-header {
    padding: 0 var(--page-x);
  }

  .nav-link {
    padding: 0 clamp(13px, 0.95vw, 17px);
  }

}

@media (max-width: 1180px) {
  .site-header {
    top: 24px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .brand-group {
    justify-self: center;
  }

  .brand {
    width: clamp(176px, 25vw, 216px);
  }

  .main-nav {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    justify-self: center;
    flex-wrap: wrap;
    width: min(860px, calc(100% - (var(--page-x) * 2)));
    min-height: auto;
    border-radius: 32px;
    transform: none;
  }

  .nav-link {
    min-height: 38px;
    font-size: 13px;
  }

  .hero-content {
    top: 54.5%;
    width: min(980px, calc(100% - (var(--page-x) * 2)));
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card {
    min-height: 220px;
  }

  .service-spotlight {
    grid-template-columns: minmax(240px, 430px) minmax(300px, 500px);
    gap: clamp(38px, 5.8vw, 72px);
  }

  .services-hero {
    padding-top: 164px;
  }

  .services-shell {
    grid-template-columns: 1fr;
    width: min(790px, 100%);
    min-height: auto;
    padding-top: clamp(34px, 5.6vh, 72px);
  }

  .services-copy {
    max-width: 790px;
    margin-top: clamp(26px, 4.8vh, 62px);
  }

  .services-card-grid {
    max-width: 640px;
  }

  .services-visual {
    position: absolute;
    top: 72px;
    right: -92px;
    z-index: -1;
    width: 390px;
    min-height: 390px;
    opacity: 0.2;
  }

  .services-visual img {
    right: 0;
    bottom: 0;
    width: 420px;
  }

  .soil-tests-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(860px, 100%);
    margin: 0 auto;
  }

  .metal-tests-grid {
    grid-template-columns: minmax(280px, 620px);
    justify-content: center;
    width: min(660px, 100%);
  }

  .soil-card-media {
    height: clamp(230px, 31vw, 320px);
  }

  .soil-test-card::after {
    height: clamp(230px, 31vw, 320px);
  }

  .soil-test-card .service-order-button {
    top: calc(clamp(230px, 31vw, 320px) / 2);
  }

  .prices-hero {
    min-height: auto;
    padding-top: 164px;
  }

  .prices-hero-shell {
    grid-template-columns: 1fr;
    width: min(920px, 100%);
    min-height: auto;
    padding-top: clamp(34px, 5.6vh, 72px);
  }

  .prices-hero-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .prices-hero-summary article {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .prices-hero-summary .material-symbols-outlined {
    grid-row: auto;
  }

  .pricing-shell {
    width: min(940px, 100%);
  }

  .price-table {
    min-width: 720px;
  }

  .contacts-hero {
    min-height: auto;
    padding-top: 176px;
  }

  .contacts-shell {
    grid-template-columns: 1fr;
    width: min(920px, 100%);
    min-height: auto;
    padding-top: clamp(34px, 5.6vh, 72px);
  }

  .contacts-map-card {
    min-height: clamp(330px, 46vw, 460px);
  }

  .contacts-logo-card,
  .contacts-info-card {
    grid-column: 1;
    grid-row: auto;
  }

  .contacts-logo-card {
    min-height: clamp(150px, 26vw, 220px);
    margin-top: 0;
  }

  .contacts-logo-card img {
    width: min(520px, 72%);
    max-height: 112px;
  }

  .contacts-team-grid {
    grid-template-columns: 1fr;
    width: min(640px, 100%);
    margin: 0 auto;
  }

  .contact-person-card {
    min-height: auto;
  }

  .contacts-form-shell {
    grid-template-columns: 1fr;
    width: min(720px, 100%);
  }

  .contacts-form-copy {
    max-width: 680px;
  }

  .site-footer {
    min-height: auto;
    padding-top: 76px;
  }

  .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 48px;
  }

  .footer-contacts {
    grid-column: 1 / -1;
  }

  .footer-list {
    max-width: none;
  }

  .footer-bottom {
    margin-top: 42px;
  }
}

@media (max-width: 760px) {
  :root {
    --page-x: 20px;
    --hero-title-size: clamp(29px, 8.6vw, 42px);
    --hero-brand-title-size: clamp(43px, 13.2vw, 64px);
    --section-title-size: clamp(23px, 6.4vw, 32px);
    --eyebrow-size: 11px;
    --heading-rule-width: 58px;
    --home-heading-rule-width: 104px;
  }

  .home-page {
    --home-heading-rule-width: 104px;
  }

  .hero {
    min-height: 100svh;
  }

  .site-header {
    top: 20px;
    gap: 14px;
  }

  .brand {
    width: min(166px, 44vw);
  }

  .brand-group {
    gap: 11px;
  }

  .header-contacts {
    gap: 4px;
    padding-left: 11px;
  }

  .header-contacts a {
    font-size: 11px;
  }

  .main-nav {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    padding: 6px;
    border-radius: 25px;
    background:
      linear-gradient(rgba(232, 246, 255, 0.18), rgba(232, 246, 255, 0.18)) center / 1px calc(100% - 18px) no-repeat,
      linear-gradient(90deg, transparent, rgba(232, 246, 255, 0.18), transparent) center 33.333% / calc(100% - 24px) 1px no-repeat,
      linear-gradient(90deg, transparent, rgba(232, 246, 255, 0.16), transparent) center 66.666% / calc(100% - 24px) 1px no-repeat,
      linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
      rgba(219, 237, 248, 0.1);
    transform: none;
  }

  .nav-link {
    width: 100%;
    min-height: 36px;
    padding: 0 8px;
    font-size: 12px;
  }

  .hero-content {
    top: 55%;
    width: calc(100% - (var(--page-x) * 2));
  }

  .company-line {
    margin-bottom: 16px;
    font-size: clamp(13px, 3.5vw, 18px);
  }

  h1 {
    gap: 14px;
    line-height: var(--hero-title-line);
  }

  .hero-order-button {
    min-width: 152px;
    min-height: 40px;
    margin-top: 28px;
    padding: 0 22px;
    font-size: 12px;
  }

  .more-link {
    bottom: 20px;
    gap: 16px;
    font-size: 11px;
  }

  .more-arrow {
    width: 42px;
    height: 42px;
  }

  .details-band {
    padding-top: 60px;
    padding-bottom: 62px;
  }

  .details-shell h2 {
    margin-bottom: 26px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
    padding: 22px 20px 24px;
  }

  .feature-card h3 {
    margin-top: 16px;
    font-size: 18px;
  }

  .feature-card p {
    font-size: 14px;
  }

  .service-spotlight {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    padding-top: 62px;
    padding-bottom: 66px;
  }

  .service-visual {
    left: auto;
    right: auto;
    bottom: auto;
    justify-self: center;
    width: min(300px, 76vw);
    opacity: 0.94;
    transform: none;
  }

  .service-content {
    justify-self: center;
    width: 100%;
    max-width: 420px;
    text-align: center;
  }

  .service-kicker {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .service-content h2 {
    font-size: clamp(25px, 7.4vw, 38px);
  }

  .service-copy {
    margin-top: 22px;
    font-size: 14px;
  }

  .service-button {
    min-width: 144px;
    min-height: 42px;
    border-radius: 999px;
    font-size: 13px;
  }

  .services-hero {
    min-height: auto;
    padding-top: 196px;
    padding-bottom: 94px;
  }

  .services-shell {
    display: block;
    width: 100%;
    min-height: auto;
    margin-top: 0;
    padding-top: 0;
  }

  .services-copy {
    max-width: 100%;
    margin-top: 18px;
    padding-left: 18px;
  }

  .services-hero + .soil-tests {
    margin-top: -1px;
    padding-top: 72px;
  }

  .services-copy::before {
    top: 38px;
    bottom: auto;
    height: 124px;
  }

  .services-kicker {
    gap: 12px;
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .services-kicker::before {
    height: 16px;
  }

  .services-title {
    max-width: calc(100vw - (var(--page-x) * 2) - 22px);
    font-size: clamp(29px, 7.8vw, 36px);
    line-height: 1.04;
  }

  .services-lead {
    margin-top: 18px;
    font-size: 14px;
  }

  .services-list-label {
    margin-top: 30px;
    margin-bottom: 16px;
    font-size: 11px;
  }

  .services-card-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: none;
  }

  .services-card {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 86px;
    padding: 16px;
    font-size: 12px;
  }

  .services-card-icon {
    width: 32px;
    height: 32px;
  }

  .services-visual {
    display: none;
  }

  .soil-tests {
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .soil-tests-head {
    gap: 16px;
    margin-bottom: 28px;
  }

  .soil-tests-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .soil-test-card {
    border-radius: 6px;
  }

  .soil-card-media {
    height: clamp(214px, 56vw, 300px);
  }

  .soil-test-card::after {
    height: clamp(214px, 56vw, 300px);
  }

  .soil-test-card .service-order-button {
    top: calc(clamp(214px, 56vw, 300px) / 2);
  }

  .soil-media-icon {
    right: 14px;
    bottom: 12px;
    font-size: 58px;
  }

  .soil-card-body {
    grid-template-columns: 32px minmax(0, 1fr);
    min-height: auto;
    padding: 18px 18px 22px;
  }

  .soil-card-body h3 {
    font-size: 17px;
  }

  .soil-card-body p {
    margin-top: 12px;
    font-size: 14px;
  }

  .prices-hero {
    min-height: auto;
    padding-top: clamp(232px, 32vh, 272px);
    padding-bottom: 78px;
  }

  .prices-hero-shell {
    display: block;
    width: 100%;
    padding-top: 0;
  }

  .prices-hero-copy {
    max-width: 100%;
    padding-left: 18px;
  }

  .prices-hero-copy::before {
    top: 38px;
    bottom: auto;
    height: 138px;
  }

  .prices-title {
    line-height: var(--hero-title-line);
  }

  .prices-lead {
    font-size: 14px;
  }

  .prices-hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .prices-contact-button {
    width: min(100%, 320px);
    min-height: 44px;
    padding: 0 16px;
    font-size: 13px;
  }

  .prices-hero-summary {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .prices-hero-summary article {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 94px;
    padding: 16px;
  }

  .prices-hero-summary .material-symbols-outlined {
    grid-row: span 2;
    width: 46px;
    height: 46px;
    border-radius: var(--icon-badge-radius);
    font-size: 28px;
  }

  .prices-hero-summary b {
    font-size: 17px;
  }

  .pricing-section {
    padding-top: 54px;
    padding-bottom: 76px;
  }

  .pricing-section-head {
    margin-bottom: 24px;
  }

  .pricing-title-rule {
    width: var(--heading-rule-width);
    margin-top: 12px;
  }

  .pricing-category-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 30px;
  }

  .pricing-category-nav a {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .contacts-hero {
    padding-top: clamp(232px, 32vh, 272px);
    padding-bottom: 58px;
  }

  .contacts-shell {
    display: block;
    width: 100%;
    padding-top: 0;
  }

  .contacts-map-card {
    min-height: 260px;
    margin-bottom: 34px;
    border-radius: 10px;
  }

  .contacts-logo-card {
    min-height: 132px;
    margin: -12px 0 30px;
    border-radius: 10px;
  }

  .contacts-logo-card::before {
    inset: 12px;
    background-size: 42px 42px;
  }

  .contacts-logo-card::after {
    bottom: 20px;
    width: 70%;
  }

  .contacts-logo-card img {
    width: min(360px, 78%);
    max-height: 82px;
  }

  .contacts-info-card h1 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .contacts-company {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .contacts-detail-list {
    gap: 12px;
  }

  .contacts-detail-list li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    font-size: 14px;
  }

  .contacts-detail-icon {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .contacts-team-section {
    padding-top: 54px;
    padding-bottom: 76px;
  }

  .contacts-team-grid {
    gap: 14px;
  }

  .contact-person-card {
    padding: 20px;
  }

  .contact-person-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    font-size: 26px;
  }

  .contacts-form-section {
    padding-top: 58px;
    padding-bottom: 78px;
  }

  .contacts-form-shell {
    gap: 28px;
  }

  .contacts-form-copy h2 {
    font-size: clamp(23px, 6.4vw, 32px);
  }

  .contacts-form-copy p:not(.services-kicker) {
    font-size: 14px;
  }

  .contacts-form-fast-links {
    width: 100%;
    margin-top: 22px;
  }

  .contacts-form-fast-links a {
    min-height: 44px;
    padding: 0 16px;
    font-size: 13px;
  }

  .contacts-form-card {
    padding: 22px 18px;
    border-radius: 10px;
  }

  .pricing-stack {
    gap: 34px;
  }

  .price-category h3 {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .price-table {
    display: block;
    min-width: 0;
    background: transparent;
  }

  .price-table thead {
    display: none;
  }

  .price-table tbody {
    display: grid;
    gap: 10px;
    padding: 10px;
  }

  .price-table tbody tr {
    display: grid;
    padding: 14px 16px;
    border: 1px solid #dedede;
    border-radius: 6px;
    background: #ffffff;
  }

  .price-table tbody td {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    width: auto;
    padding: 8px 0;
    border-bottom: 1px solid #e3e3e3;
    text-align: left;
  }

  .price-table tbody td {
    font-size: 13px;
  }

  .price-table tbody td::before {
    flex: 0 0 auto;
    color: #5d6874;
    font-size: 11px;
    font-weight: 720;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    content: "";
  }

  .price-table tbody td:nth-child(1)::before {
    content: "Услуга";
  }

  .price-table tbody td:nth-child(2)::before {
    content: "Ед. изм.";
  }

  .price-table tbody td:nth-child(3)::before {
    content: "Цена";
  }

  .price-table tbody td:first-child {
    display: block;
    font-weight: 620;
  }

  .price-table tbody td:first-child::before {
    display: block;
    margin-bottom: 6px;
  }

  .price-table tbody td:last-child {
    color: #000814;
    text-align: left;
    white-space: normal;
  }

  .price-table tbody tr:last-child td {
    border-bottom: 1px solid #e3e3e3;
  }

  .price-table tbody td:last-child,
  .price-table tbody tr td:last-child {
    border-bottom: 0;
  }

  .price-table th:nth-child(2),
  .price-table td:nth-child(2) {
    width: auto;
  }

  .price-table th:last-child,
  .price-table td:last-child {
    width: auto;
  }

  .pricing-contact-panel {
    margin-top: 42px;
    padding: 42px 18px 62px;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
  }

  .pricing-contact-panel h2 {
    font-size: clamp(24px, 7.2vw, 32px);
  }

  .pricing-contact-panel p {
    margin-top: 12px;
    font-size: 13px;
  }

  .pricing-contact-actions {
    display: grid;
    width: min(320px, 100%);
    gap: 10px;
  }

  .pricing-contact-actions a {
    min-height: 44px;
    padding: 0 14px;
    font-size: 13px;
  }

  .site-footer {
    padding-top: 62px;
    padding-bottom: 34px;
  }

  .footer-arc {
    top: -38px;
    height: 74px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-contacts {
    grid-column: auto;
  }

  .footer-column h2 {
    font-size: 15px;
  }

  .footer-column-label {
    margin-top: 18px;
    margin-bottom: 10px;
    font-size: 16px;
  }

  .footer-list li {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
    min-height: 44px;
    font-size: 13px;
  }

  .footer-service-list {
    width: 100%;
  }

  .footer-service-list li {
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 12px 0;
    font-size: 14px;
  }

  .footer-bottom {
    align-items: flex-start;
    margin-top: 34px;
    padding-top: 18px;
    font-size: 12px;
    line-height: 1.4;
  }

  .scroll-top-button {
    display: none;
  }

  .support-widget {
    left: 0;
    right: 0;
    bottom: calc(12px + env(safe-area-inset-bottom));
    justify-items: center;
  }

  .support-toggle {
    gap: 9px;
    min-height: 52px;
    padding: 7px 14px 7px 7px;
    max-width: calc(100vw - 24px);
  }

  .support-toggle-icon {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .support-toggle-title {
    max-width: 142px;
    font-size: 13px;
  }

  .support-toggle-note {
    display: none;
  }

  .support-toggle-dot {
    top: 7px;
    right: 8px;
  }

  .support-panel {
    position: fixed;
    right: 12px;
    bottom: calc(76px + env(safe-area-inset-bottom));
    left: 12px;
    width: auto;
    max-height: min(74svh, 560px);
    padding: 16px;
    border-radius: 14px;
    transform-origin: center bottom;
  }

  .support-panel h2 {
    font-size: 22px;
  }

  .support-intro {
    font-size: 13px;
  }

  .support-field textarea {
    min-height: 84px;
  }
}

@media (max-width: 420px) {
  .site-header {
    top: 18px;
  }

  .brand {
    width: min(142px, 42vw);
  }

  .header-contacts a {
    font-size: 10px;
  }

  .main-nav {
    top: auto;
  }

  .nav-link {
    font-size: 11px;
  }

  .hero-content {
    top: 56%;
  }

  .hero-order-button {
    min-height: 38px;
    margin-top: 24px;
    padding: 0 20px;
    font-size: 11px;
  }

  .services-card {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 14px;
  }

  .services-card-icon {
    width: 28px;
    height: 28px;
  }

  .soil-card-media {
    height: clamp(190px, 54vw, 240px);
  }

  .soil-test-card::after {
    height: clamp(190px, 54vw, 240px);
  }

  .soil-test-card .service-order-button {
    top: calc(clamp(190px, 54vw, 240px) / 2);
  }

  .soil-card-body {
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 18px 16px 20px;
  }

  .prices-hero-summary article {
    grid-template-columns: 1fr;
  }

  .prices-hero-summary .material-symbols-outlined {
    grid-row: auto;
  }

  .pricing-category-nav {
    grid-template-columns: 1fr;
  }

  .contacts-map-card {
    min-height: 228px;
  }

  .contacts-logo-card {
    min-height: 112px;
    margin-bottom: 26px;
  }

  .contacts-logo-card img {
    width: min(300px, 82%);
    max-height: 66px;
  }

  .contacts-info-card h1 {
    font-size: clamp(26px, 7.4vw, 34px);
  }

  .contacts-detail-list li {
    grid-template-columns: 1fr;
  }

  .contacts-detail-icon {
    grid-row: auto;
  }

  .contact-person-card a {
    width: 100%;
  }

  .contacts-form-card {
    padding: 20px 16px;
  }

  .price-table {
    min-width: 0;
  }

  .price-table th,
  .price-table td {
    padding: 13px 14px;
  }

  .price-table th:nth-child(2),
  .price-table td:nth-child(2) {
    width: auto;
  }

  .price-table th:last-child,
  .price-table td:last-child {
    width: auto;
  }

  .site-footer {
    padding-top: 56px;
  }

  .footer-list li {
    font-size: 12px;
  }

  .support-topics {
    display: grid;
    grid-template-columns: 1fr;
  }

  .support-topics button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 1180px) {
  .home-section-shell {
    width: min(940px, 100%);
  }

  .certificate-grid,
  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .certificate-card {
    aspect-ratio: 0.78;
  }
}

@media (max-width: 760px) {
  .home-proof-section {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .partners-section {
    padding-bottom: 88px;
  }

  .partners-section::after {
    height: 138px;
  }

  .faq-section {
    margin-top: -66px;
    padding-top: 112px;
  }

  .home-section-head {
    margin-bottom: 24px;
  }

  .home-section-kicker {
    letter-spacing: 0.16em;
  }

  .home-section-kicker::before,
  .home-section-kicker::after {
    width: 18px;
  }

  .home-section-head p {
    font-size: 13px;
  }

  .certificate-grid {
    gap: 10px;
  }

  .certificate-card {
    aspect-ratio: 0.7;
  }

  .certificate-badge {
    left: 10px;
    bottom: 10px;
    min-height: 26px;
    padding: 0 9px;
    font-size: 10px;
  }

  .certificate-badge .material-symbols-outlined {
    font-size: 15px;
  }

  .partners-grid {
    gap: 10px;
  }

  .reviews-section {
    padding-top: 52px;
    padding-bottom: 66px;
  }

  .reviews-marquee {
    margin-inline: -8px;
    mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  }

  .reviews-grid {
    --reviews-gap: 14px;
  }

  .review-card {
    width: min(300px, 78vw);
    flex-basis: min(300px, 78vw);
    gap: 12px;
  }

  .review-card blockquote {
    height: 188px;
    padding: 19px;
    font-size: 13px;
  }

  .review-author {
    grid-template-columns: 40px minmax(0, 1fr);
    font-size: 13px;
  }

  .review-logo {
    width: 40px;
    height: 40px;
  }

  .partner-card {
    min-height: 108px;
    padding: 18px 14px;
  }

  .partner-card img {
    max-width: 88%;
    max-height: 62px;
  }

  .faq-list {
    gap: 0;
  }

  .faq-item summary {
    grid-template-columns: minmax(0, 1fr) 24px;
    min-height: 58px;
    padding: 0 16px;
    font-size: 14px;
  }

  .faq-item p {
    padding: 0 16px 18px;
    font-size: 13px;
  }

  .faq-toggle {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 420px) {
  .certificate-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .certificate-card {
    width: min(270px, 100%);
    margin: 0 auto;
  }

  .partner-card {
    min-height: 96px;
  }
}

@media (max-width: 1180px) {
  .visits-hero {
    min-height: auto;
  }

  .visits-hero::before {
    background:
      radial-gradient(ellipse at 20% 26%, rgba(209, 232, 255, 0.12), transparent 27%),
      linear-gradient(90deg, rgba(2, 7, 12, 0.34) 0%, rgba(2, 7, 12, 0.72) 44%, rgba(2, 7, 12, 0.94) 100%);
  }

  .visits-shell {
    grid-template-columns: 1fr;
    width: min(940px, 100%);
    min-height: auto;
  }

  .visits-copy,
  .visits-card-grid {
    grid-column: 1;
  }

  .visits-copy {
    width: min(760px, 100%);
    margin-left: auto;
  }

  .visits-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visit-tests-shell,
  .visit-tests-shell-narrow {
    width: min(940px, 100%);
  }

  .visit-tests-grid-four,
  .visit-tests-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .visits-hero {
    padding-top: 194px;
    padding-bottom: 56px;
  }

  .visits-hero-media {
    background-position: 35% center;
  }

  .visits-hero::before {
    background:
      linear-gradient(180deg, rgba(2, 7, 12, 0.58) 0%, rgba(2, 7, 12, 0.82) 38%, rgba(2, 7, 12, 0.94) 100%),
      linear-gradient(90deg, rgba(2, 7, 12, 0.34), rgba(2, 7, 12, 0.92));
  }

  .visits-copy {
    margin-left: 0;
    padding-left: 18px;
  }

  .visits-copy::before {
    top: 38px;
    bottom: auto;
    height: 124px;
  }

  .visits-lead {
    font-size: 14px;
  }

  .visits-card-grid {
    grid-template-columns: 1fr;
  }

  .visits-info-card {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: auto;
    padding: 18px;
  }

  .visits-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--icon-badge-radius);
    font-size: 27px;
  }

  .visits-info-card h2 {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .visits-info-card p,
  .visits-info-card li {
    font-size: 13px;
  }

  .visits-benefits {
    grid-template-columns: 1fr;
  }

  .visits-benefits article {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 68px;
    padding: 14px 16px;
  }

  .visits-benefits .material-symbols-outlined {
    font-size: 30px;
  }

  .visit-tests {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .visit-tests-head {
    margin-bottom: 24px;
  }

  .visit-tests-grid-four,
  .visit-tests-grid-three {
    grid-template-columns: 1fr;
  }

  .visit-test-card {
    max-width: 420px;
    margin: 0 auto;
  }

  .visit-test-card img {
    height: clamp(190px, 52vw, 260px);
  }

  .visit-test-card::after {
    height: clamp(190px, 52vw, 260px);
  }

  .visit-test-card .service-order-button {
    top: calc(clamp(190px, 52vw, 260px) / 2);
  }

  .visit-test-card-body {
    min-height: auto;
    padding: 18px 18px 22px;
  }

  .visit-test-card h3 {
    font-size: 17px;
  }

  .visit-test-card p {
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .visits-hero {
    padding-top: 182px;
  }

  .visits-info-card {
    grid-template-columns: 1fr;
  }

  .visit-test-card {
    max-width: 100%;
  }

  .visit-test-card img {
    height: 180px;
  }

  .visit-test-card::after {
    height: 180px;
  }

  .visit-test-card .service-order-button {
    top: 90px;
  }
}

@media (max-width: 1180px) {
  .laboratory-hero {
    min-height: auto;
    padding-top: 176px;
  }

  .laboratory-hero-shell {
    min-height: auto;
  }

  .laboratory-proof-grid,
  .lab-timeline {
    grid-template-columns: 1fr;
    width: min(760px, 100%);
  }

  .lab-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 360px));
  }

  .lab-articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lab-equipment-track {
    padding-inline: 56px;
    scroll-padding-inline: 56px;
  }

  .lab-equipment-arrow-prev {
    left: 0;
  }

  .lab-equipment-arrow-next {
    right: 0;
  }
}

@media (max-width: 760px) {
  .laboratory-hero {
    padding-top: 206px;
    padding-bottom: 72px;
  }

  .laboratory-hero-media {
    background-position: 48% center;
  }

  .laboratory-hero-copy {
    padding-left: 18px;
  }

  .laboratory-hero-copy::before {
    top: 34px;
  }

  .laboratory-lead {
    font-size: 15px;
  }

  .laboratory-proof-grid,
  .lab-timeline,
  .lab-gallery-grid {
    grid-template-columns: 1fr;
  }

  .lab-articles-section {
    padding-top: 56px;
    padding-bottom: 70px;
  }

  .lab-articles-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lab-article-card {
    grid-template-columns: minmax(104px, 32vw) minmax(0, 1fr);
    grid-template-rows: none;
    min-height: 0;
  }

  .lab-article-media img {
    height: 100%;
    min-height: 168px;
    aspect-ratio: auto;
  }

  .lab-article-body {
    min-height: 0;
    padding: 16px;
  }

  .lab-article-tag {
    margin-bottom: 9px;
    font-size: 10px;
  }

  .lab-article-card h3 {
    font-size: 16px;
    line-height: 1.18;
  }

  .lab-article-card p {
    margin-top: 9px;
    font-size: 12px;
    line-height: 1.42;
  }

  .lab-article-more {
    padding-top: 14px;
    font-size: 11px;
  }

  .lab-equipment-section {
    padding-top: 62px;
    padding-bottom: 92px;
  }

  .lab-faq-section {
    margin-top: -68px;
    padding-top: 138px;
  }

  .lab-equipment-head {
    margin-bottom: 30px;
  }

  .lab-equipment-track {
    grid-auto-columns: minmax(238px, 82vw);
    padding-inline: 0;
    scroll-padding-inline: 0;
    mask-image: none;
  }

  .lab-equipment-card {
    grid-template-rows: 190px 1fr;
    min-height: 366px;
  }

  .lab-equipment-arrow {
    display: none;
  }

  .laboratory-proof-card,
  .lab-step {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 18px;
  }

  .laboratory-proof-icon,
  .lab-step-icon {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

}

@media (max-width: 420px) {
  .laboratory-hero {
    padding-top: 220px;
  }

  .laboratory-proof-card,
  .lab-step {
    grid-template-columns: 1fr;
  }

  .laboratory-proof-icon,
  .lab-step-icon {
    grid-row: auto;
  }

  .lab-article-card {
    grid-template-columns: 1fr;
  }

  .lab-article-media img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 920px) {
  .article-hero {
    min-height: auto;
    padding-top: 202px;
    padding-bottom: 72px;
  }

  .article-hero-copy {
    max-width: 100%;
  }

  .article-hero h1 {
    font-size: clamp(34px, 8.6vw, 54px);
    line-height: 1.14;
    overflow-wrap: anywhere;
  }

  .article-lead {
    max-width: 100%;
    font-size: clamp(15px, 4.2vw, 19px);
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-summary {
    position: static;
    order: -1;
  }

  .article-cover img {
    aspect-ratio: 16 / 9;
  }

  .article-actions {
    grid-template-columns: 1fr;
  }

  .article-next-link {
    align-items: center;
  }
}

@media (max-width: 520px) {
  .article-hero {
    padding-top: 220px;
  }

  .article-hero-copy {
    padding-left: 18px;
  }

  .article-hero-copy::before {
    top: 34px;
  }

  .article-back-link {
    margin-bottom: 24px;
    font-size: 12px;
  }

  .article-panel,
  .article-summary {
    padding: 18px;
  }

  .article-cover figcaption {
    padding: 12px 14px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reviews-grid.is-ready {
    animation: none !important;
    transform: none !important;
  }
}
