@charset "UTF-8";
:root {
  --black: #010302;
  --space: #06100c;
  --panel: rgba(8, 20, 14, 0.78);
  --panel-strong: rgba(10, 26, 18, 0.92);
  --lime: #d7ff12;
  --lime-soft: #a9d814;
  --green: #54d61d;
  --green-deep: #0c6f24;
  --white: #f5fff4;
  --muted: #a7b7aa;
  --line: rgba(198, 255, 41, 0.22);
  --line-strong: rgba(215, 255, 18, 0.56);
  --amber: #ffe36a;
  --steel: #8aa5a0;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --glow: 0 0 18px rgba(215, 255, 18, 0.45), 0 0 52px rgba(84, 214, 29, 0.2);
  --radius: 8px;
  font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(1, 3, 2, 0.96), rgba(4, 13, 8, 0.98)),
    var(--black);
  font-size: 16px;
  line-height: 1.6;
  perspective: 1600px;
}

body::before {
  content: "";
  position: fixed;
  inset: auto 0 0 0;
  z-index: -2;
  height: 52vh;
  pointer-events: none;
  opacity: 0.2;
  background: url("assets/ceu-neon-bg.jpg") center bottom / cover no-repeat;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.24;
  background:
    linear-gradient(90deg, rgba(215, 255, 18, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(215, 255, 18, 0.06) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 76%);
}

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

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

main {
  transform-origin: left center;
  backface-visibility: hidden;
}

.page-turn {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(1, 3, 2, 0.04), rgba(215, 255, 18, 0.2) 42%, rgba(245, 255, 244, 0.3) 52%, rgba(1, 3, 2, 0.96) 68%),
    radial-gradient(circle at 72% 50%, rgba(215, 255, 18, 0.28), transparent 34%);
  transform: translateX(105%) skewX(-8deg);
  box-shadow: -34px 0 80px rgba(215, 255, 18, 0.16);
}

body.is-page-ready main {
  animation: pageOpen 1000ms cubic-bezier(0.2, 0.82, 0.2, 1) both;
}

body.is-page-leaving main {
  opacity: 0;
  filter: brightness(0.72) blur(2px);
  transform: rotateY(-12deg) translateX(-22px) scale(0.985);
  transition: opacity 1000ms ease, filter 1000ms ease, transform 1000ms cubic-bezier(0.56, 0.02, 0.32, 1);
}

body.is-page-leaving .page-turn {
  animation: pageSweep 1000ms cubic-bezier(0.56, 0.02, 0.32, 1) both;
}

@keyframes pageOpen {
  from {
    opacity: 0;
    filter: brightness(0.78) blur(3px);
    transform: rotateY(9deg) translateX(24px) scale(0.99);
  }

  to {
    opacity: 1;
    filter: brightness(1) blur(0);
    transform: rotateY(0) translateX(0) scale(1);
  }
}

@keyframes pageSweep {
  0% {
    opacity: 0;
    transform: translateX(105%) skewX(-8deg);
  }

  28% {
    opacity: 1;
  }

  100% {
    opacity: 0.96;
    transform: translateX(-18%) skewX(-8deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.is-page-ready main,
  body.is-page-leaving .page-turn {
    animation: none;
  }

  body.is-page-leaving main {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

button,
input,
textarea {
  font: inherit;
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 320px 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 94px;
  padding: 10px 42px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18));
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(1, 5, 3, 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.brand {
  display: block;
  width: 320px;
  height: 76px;
  min-width: 0;
  padding: 0;
  overflow: visible;
  border-radius: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav a,
.header-phone {
  position: relative;
  white-space: nowrap;
}

.main-nav a::after,
.header-phone::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--lime);
  box-shadow: var(--glow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after,
.header-phone:hover::after {
  transform: scaleX(1);
}

.header-phone {
  color: var(--white);
  font-weight: 900;
  text-shadow: 0 0 16px rgba(245, 255, 244, 0.36);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--lime);
  background: rgba(215, 255, 18, 0.05);
  box-shadow: inset 0 0 16px rgba(215, 255, 18, 0.08), 0 0 18px rgba(215, 255, 18, 0.12);
  cursor: pointer;
}

.menu-toggle span:not(.visually-hidden) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 780px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.page-hero {
  min-height: max(640px, min(56.28vw, 1882px));
  align-items: start;
}

.hero__image,
.hero__shade,
.hero__pattern {
  position: absolute;
  inset: 0;
}

.hero__image {
  z-index: -3;
  background: url("assets/ceu-neon-bg.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero--home .hero__image {
  background-color: #010302;
  background-image: url("assets/hero-metallurgy-plant-web.jpg");
  background-position: center top;
  background-size: 100% auto;
  transform: none;
}

.hero--home .hero__shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.66) 37%, rgba(0, 0, 0, 0.14) 62%, rgba(0, 0, 0, 0.02) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.34), rgba(5, 35, 10, 0.08) 54%, rgba(0, 0, 0, 0.08));
}

.hero--lab .hero__image {
  background-color: #010302;
  background-image: url("assets/hero-laboratory-mass-spec-topaz-web.jpg");
  background-position: center top;
  background-size: 100% auto;
  transform: none;
}

.hero--lab-emissions .hero__image {
  background-image: url("assets/card-lab-emissions-stack-web.jpg");
  background-position: center;
  background-size: cover;
}

.hero--lab-szz-mobile .hero__image {
  background-image: url("assets/card-lab-mobile-lab-web.jpg");
  background-position: center;
  background-size: cover;
}

.hero--lab-water .hero__image {
  background-image: url("assets/card-lab-water-drop-web.jpg");
  background-position: center;
  background-size: cover;
}

.hero--lab-soil .hero__image {
  background-image: url("assets/card-lab-soil-sample-web.jpg");
  background-position: center;
  background-size: cover;
}

.hero--lab-waste .hero__image {
  background-image: url("assets/card-lab-waste-sample-web.jpg");
  background-position: center;
  background-size: cover;
}

.hero--design .hero__image {
  background-color: #010302;
  background-image: url("assets/hero-design-szz-topaz-web.jpg");
  background-position: center top;
  background-size: 100% auto;
  transform: none;
}

.hero--design-ndv .hero__image {
  background-image: url("assets/design-ndv-bg-web.jpg");
}

.hero--design-szz .hero__image {
  background-image: url("assets/design-szz-bg-web.jpg");
}

.hero--design-pnoolr .hero__image {
  background-image: url("assets/design-pnoolr-bg-web.jpg");
}

.hero--design-nvos .hero__image {
  background-image: url("assets/design-nvos-bg-web.jpg");
}

.hero--design-eco-fee .hero__image {
  background-image: url("assets/design-eco-fee-bg-web.jpg");
}

.hero--design-pmoos .hero__image {
  background-image: url("assets/design-pmoos-bg-web.jpg");
}

.hero--design-pek .hero__image {
  background-image: url("assets/design-pek-bg-web.jpg");
}

.hero--design-reporting .hero__image {
  background-image: url("assets/design-reporting-bg-web.jpg");
}

.hero--design-license .hero__image {
  background-image: url("assets/design-license-bg-web.jpg");
}

.hero--design-ovos .hero__image {
  background-image: url("assets/design-ovos-bg-web.jpg");
}

.hero--design-nds .hero__image {
  background-image: url("assets/design-nds-bg-web.jpg");
}

.hero--design-orzn .hero__image {
  background-image: url("assets/design-orzn-bg-web.jpg");
}

.hero--design-ker .hero__image {
  background-image: url("assets/design-ker-bg-web.jpg");
}

.hero--design-zso .hero__image {
  background-image: url("assets/design-zso-bg-web.jpg");
}

.hero--design-gee .hero__image {
  background-image: url("assets/design-gee-bg-web.jpg");
}

.hero--design-rekultivaciya .hero__image {
  background-image: url("assets/design-rekultivaciya-bg-web.jpg");
}

.hero--design-ekozos .hero__image {
  background-image: url("assets/design-ekozos-bg-web.jpg");
}

.hero--design-nmu .hero__image {
  background-image: url("assets/design-nmu-bg-web.jpg");
}


.hero--engineering .hero__image {
  background-color: #010302;
  background-image: url("assets/hero-engineering-drilling-rig-web.jpg");
  background-position: center top;
  background-size: 100% auto;
  transform: none;
}

.hero--water .hero__image {
  background-color: #010302;
  background-image: url("assets/hero-water-treatment-web.jpg");
  background-position: center top;
  background-size: 100% auto;
  transform: none;
}

.hero--gas .hero__image {
  background-color: #010302;
  background-image: url("assets/hero-gas-cleaning-web.jpg");
  background-position: center top;
  background-size: 100% auto;
  transform: none;
}

.hero--contacts .hero__image {
  background-position: 60% center;
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.52), rgba(4, 33, 10, 0.2));
}

.hero__pattern {
  z-index: -1;
  opacity: 0.5;
  background:
    linear-gradient(90deg, rgba(215, 255, 18, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(215, 255, 18, 0.08) 1px, transparent 1px),
    repeating-linear-gradient(110deg, transparent 0 22px, rgba(84, 214, 29, 0.12) 23px, transparent 24px);
  background-size: 110px 110px, 110px 110px, 220px 220px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
  animation: drift 16s linear infinite;
}

@keyframes drift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    background-position: 110px 110px, 110px 110px, 220px 0;
  }
}

.hero__content {
  padding-top: 128px;
}

.hero--home .hero__content {
  padding-top: 160px;
}

.page-hero .hero__content {
  padding-top: 160px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: var(--glow);
}

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 72px;
  line-height: 1.02;
  font-weight: 950;
  text-shadow: 0 0 26px rgba(245, 255, 244, 0.22), 0 0 70px rgba(84, 214, 29, 0.14);
}

.hero--home h1 {
  max-width: 580px;
  margin-bottom: 14px;
}

.hero-logo-title {
  display: block;
  width: min(620px, 100%);
  margin-bottom: 16px;
}

.hero-logo-title img {
  width: 100%;
  height: auto;
}

.hero__tagline {
  position: relative;
  max-width: 580px;
  margin-bottom: 32px;
  color: var(--lime);
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.08;
  font-weight: 950;
  text-shadow: 0 0 18px rgba(215, 255, 18, 0.54), 0 0 52px rgba(84, 214, 29, 0.24);
}

.hero--home .hero__tagline::after {
  content: "";
  display: block;
  width: min(52vw, 760px);
  height: 2px;
  margin-top: 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime), rgba(215, 255, 18, 0.55), transparent);
  box-shadow: var(--glow);
}

.hero--home .hero__lead {
  max-width: 560px;
}

h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 44px;
  line-height: 1.12;
  font-weight: 950;
}

h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 24px;
  line-height: 1.22;
}

.hero__lead {
  max-width: 720px;
  margin-bottom: 36px;
  color: rgba(245, 255, 244, 0.84);
  font-size: 22px;
}

.hero__actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 950;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: #081003;
  background: linear-gradient(180deg, #efff3b, var(--lime) 48%, #98d400);
  box-shadow: 0 0 18px rgba(215, 255, 18, 0.48), 0 18px 48px rgba(87, 214, 29, 0.24);
}

.button--primary:hover {
  box-shadow: 0 0 26px rgba(215, 255, 18, 0.62), 0 22px 56px rgba(87, 214, 29, 0.32);
}

.button--ghost,
.button--outline {
  color: var(--white);
  border-color: var(--line-strong);
  background: rgba(215, 255, 18, 0.05);
  box-shadow: inset 0 0 18px rgba(215, 255, 18, 0.08);
}

.button--ghost:hover,
.button--outline:hover {
  background: rgba(215, 255, 18, 0.12);
  box-shadow: 0 0 22px rgba(215, 255, 18, 0.2);
}

.button--play {
  gap: 10px;
  color: var(--lime);
  border-color: rgba(215, 255, 18, 0.74);
  background: rgba(215, 255, 18, 0.08);
  box-shadow: inset 0 0 20px rgba(215, 255, 18, 0.12), 0 0 20px rgba(215, 255, 18, 0.22);
}

.button--play:hover {
  color: #081003;
  background: var(--lime);
  box-shadow: 0 0 28px rgba(215, 255, 18, 0.68), 0 18px 48px rgba(87, 214, 29, 0.28);
}

.play-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding-left: 2px;
  border-radius: 50%;
  color: #081003;
  background: var(--lime);
  box-shadow: var(--glow);
}

.button--play:hover .play-icon {
  color: var(--lime);
  background: #081003;
}

.hero__quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 860px;
  margin-top: 28px;
}

.hero__quicklinks a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  background: rgba(215, 255, 18, 0.06);
  box-shadow: inset 0 0 16px rgba(215, 255, 18, 0.06);
}

.hero__quicklinks a:hover {
  color: #081003;
  border-color: var(--lime);
  background: var(--lime);
  box-shadow: var(--glow);
}

.service-sibling-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 920px;
  margin-top: 22px;
}

.service-sibling-nav span {
  flex-basis: 100%;
  color: var(--lime);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: var(--glow);
}

.service-sibling-nav a {
  padding: 10px 14px;
  border: 1px solid rgba(215, 255, 18, 0.32);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  background: rgba(1, 6, 3, 0.58);
  box-shadow: inset 0 0 14px rgba(215, 255, 18, 0.06);
}

.service-sibling-nav a:hover {
  color: #081003;
  border-color: var(--lime);
  background: var(--lime);
  box-shadow: var(--glow);
}

.advantages-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 255, 18, 0.14), transparent 28%),
    radial-gradient(circle at 78% 12%, rgba(215, 255, 18, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(2, 12, 7, 0.96), rgba(1, 5, 3, 0.98));
  border-top: 1px solid rgba(215, 255, 18, 0.18);
}

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

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center h2 {
  margin: 10px 0 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  text-shadow: 0 0 22px rgba(215, 255, 18, 0.3), 0 6px 28px rgba(0, 0, 0, 0.85);
}

.geo-section {
  padding: 86px 0;
}

.geo-section .section-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(360px, 1fr);
  grid-template-rows: auto auto auto auto 1fr;
  gap: 14px 42px;
  max-width: none;
  margin: 0;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(215, 255, 18, 0.18);
  border-radius: 8px;
  padding: clamp(30px, 4vw, 54px);
  text-align: left;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(2, 19, 10, 0.92) 46%, rgba(2, 18, 9, 0.68) 100%),
    url("assets/ceu-neon-bg.jpg") center / cover no-repeat;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(245, 255, 244, 0.06);
}

.geo-section .section-heading::before {
  content: "";
  z-index: 0;
  grid-column: 2;
  grid-row: 1 / -1;
  min-height: 340px;
  align-self: stretch;
  border-radius: 8px;
  background:
    radial-gradient(circle at 35% 55%, rgba(215, 255, 18, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(1, 5, 3, 0), rgba(1, 7, 4, 0.32)),
    url("assets/geo-russia-map.svg") center / contain no-repeat;
  filter: drop-shadow(0 0 22px rgba(215, 255, 18, 0.12));
  opacity: 0.98;
}

.geo-section .section-heading::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0) 0 42%, rgba(0, 0, 0, 0.2) 66%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(0deg, rgba(215, 255, 18, 0.09), transparent 28%);
}

.geo-section .section-heading .eyebrow {
  position: relative;
  z-index: 1;
  grid-column: 1;
  justify-content: flex-start;
  margin-bottom: 0;
}

.geo-section .section-heading h2 {
  position: relative;
  z-index: 1;
  grid-column: 1;
  max-width: 470px;
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 4vw, 62px);
  line-height: 0.98;
  text-shadow: 0 0 22px rgba(215, 255, 18, 0.22), 0 6px 28px rgba(0, 0, 0, 0.75);
}

.geo-section .section-heading p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  grid-column: 1;
  max-width: 540px;
  margin: 8px 0 0;
  color: rgba(245, 255, 244, 0.78);
  font-size: 17px;
  line-height: 1.65;
  text-align: left;
}

.geo-section .button {
  position: relative;
  z-index: 1;
  grid-column: 1;
  justify-self: start;
  margin-top: 16px;
}


.contact-geo-showcase {
  width: 100%;
  padding: 34px 0 0;
}

.contact-geo-showcase > .container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.contact-geo-showcase__panel {
  position: relative;
  width: 100%;
  min-height: clamp(620px, 46vw, 920px);
  overflow: hidden;
  display: grid;
  align-content: start;
  padding: clamp(48px, 6vw, 92px) clamp(24px, 4vw, 72px) clamp(48px, 6vw, 92px) clamp(72px, 7vw, 132px);
  border-top: 1px solid rgba(215, 255, 18, 0.22);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(0, 5, 2, 0.9) 0%, rgba(0, 8, 4, 0.68) 33%, rgba(0, 5, 2, 0.08) 64%),
    url("assets/geo-russia-showcase.jpg") center / cover no-repeat;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(245, 255, 244, 0.08);
}

.contact-geo-showcase__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), transparent 44%, rgba(0, 0, 0, 0.14)),
    radial-gradient(circle at 22% 34%, rgba(215, 255, 18, 0.1), transparent 28%);
}

.contact-geo-showcase .eyebrow,
.contact-geo-showcase h2,
.contact-geo-showcase__text,
.contact-geo-showcase .button {
  position: relative;
  z-index: 1;
  max-width: 610px;
}

.contact-geo-showcase .eyebrow {
  margin-bottom: 30px;
  color: var(--lime);
  text-shadow: 0 0 18px rgba(215, 255, 18, 0.42);
}

.contact-geo-showcase h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(54px, 6.6vw, 88px);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(215, 255, 18, 0.2), 0 8px 34px rgba(0, 0, 0, 0.78);
}

.contact-geo-showcase__text {
  margin-top: clamp(64px, 8vw, 104px);
  color: rgba(245, 255, 244, 0.88);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
}

.contact-geo-showcase__text p {
  margin: 0;
}

.contact-geo-showcase__text p + p {
  margin-top: 14px;
  color: rgba(220, 232, 218, 0.88);
  font-weight: 400;
}

.contact-geo-showcase .button {
  width: fit-content;
  margin-top: clamp(48px, 5.2vw, 92px);
  align-self: start;
  box-shadow: 0 18px 42px rgba(215, 255, 18, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.advantages-grid > * {
  position: relative;
  display: grid;
  grid-template-rows: 78px 1fr;
  align-items: stretch;
  grid-column: span 2;
  min-height: 320px;
  overflow: hidden;
  padding: 34px 30px 32px;
  border: 1px solid rgba(215, 255, 18, 0.42);
  border-radius: var(--radius);
  color: inherit;
  background: #020704;
  box-shadow: inset 0 1px 0 rgba(245, 255, 244, 0.08), 0 0 22px rgba(215, 255, 18, 0.12);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.advantages-grid > *::before,
.advantages-grid > *::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.advantages-grid > *::before {
  inset: 0;
  opacity: 0.44;
  background: url("assets/hero-metallurgy-plant-web.jpg") 66% center / cover no-repeat;
  transform: scale(1.02);
  transition: opacity 180ms ease, transform 220ms ease;
}

.advantages-grid > *::after {
  inset: 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(215, 255, 18, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.5) 44%, rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18));
}

.advantages-grid > *:nth-child(4) {
  grid-column: 2 / span 2;
}

.advantages-grid > *:nth-child(5) {
  grid-column: 4 / span 2;
}

.advantages-grid > *:hover {
  border-color: rgba(215, 255, 18, 0.7);
  box-shadow: inset 0 1px 0 rgba(245, 255, 244, 0.12), var(--glow), 0 0 32px rgba(215, 255, 18, 0.2);
  transform: translateY(-2px);
}

.advantages-grid > *:hover::before {
  opacity: 0.58;
  transform: scale(1.06);
}

.advantages-grid strong,
.advantages-grid span {
  display: block;
}

.advantages-grid strong {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 78px;
  max-width: 420px;
  margin: 0 auto;
  color: var(--lime);
  font-size: 26px;
  line-height: 1.1;
  font-weight: 950;
  text-align: center;
  text-shadow: var(--glow), 0 2px 16px rgba(0, 0, 0, 0.9);
}

.advantages-grid span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 440px;
  margin: 0 auto;
  color: rgba(245, 255, 244, 0.92);
  font-size: 20px;
  line-height: 1.36;
  text-align: center;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.88);
}

@media (min-width: 1061px) {
  .hero--home {
    --home-image-height: min(56.28vw, 1882px);
    align-items: start;
    min-height: var(--home-image-height);
  }

  .hero--home .hero__image,
  .hero--home .hero__shade,
  .hero--home .hero__pattern {
    bottom: auto;
    height: var(--home-image-height);
  }

  .hero--home .hero__content {
    width: min(1120px, calc(100% - 84px));
    margin-right: auto;
    margin-left: 42px;
    padding-top: calc(clamp(170px, 17vw, 245px) + 30px);
  }

  .page-hero .hero__content {
    width: min(1120px, calc(100% - 84px));
    margin-right: auto;
    margin-left: 42px;
    padding-top: calc(clamp(170px, 17vw, 245px) + 30px);
  }

  .cta-band__inner {
    width: calc(100% - 350px);
    margin-right: 308px;
    margin-left: 42px;
  }

  .cta-band__inner > div {
    margin-left: 57px;
  }
}

.section {
  position: relative;
  padding: 112px 0;
}

.section--paper,
.section--white {
  background:
    linear-gradient(180deg, rgba(6, 16, 12, 0.92), rgba(1, 3, 2, 0.96)),
    var(--space);
}

.section--white {
  border-top: 1px solid rgba(215, 255, 18, 0.08);
  border-bottom: 1px solid rgba(215, 255, 18, 0.08);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

.section-heading p:last-child,
.direction-card p,
.map-column li,
.detail-block p,
.check-list,
.contact-panel address,
.footer p,
.footer a,
.footer span {
  color: var(--muted);
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.directions-section .direction-grid {
  align-items: stretch;
}

.direction-card {
  position: relative;
  min-height: 430px;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(215, 255, 18, 0.28);
  border-radius: var(--radius);
  color: var(--white);
  background: #020704;
  box-shadow: var(--shadow), inset 0 0 28px rgba(215, 255, 18, 0.05);
  text-align: center;
}

.direction-card::before,
.direction-card::after {
  content: "";
  position: absolute;
  inset: 0;
  transition: transform 300ms ease, opacity 300ms ease;
}

.direction-card::before {
  z-index: 0;
  background: url("assets/ceu-neon-bg.jpg") center / cover no-repeat;
  opacity: 0.94;
}

.direction-card--lab::before {
  background-image: url("assets/hero-laboratory-mass-spec-topaz-web.jpg");
  background-position: 68% center;
}

.direction-card--design::before {
  background-image: url("assets/hero-design-szz-topaz-web.jpg");
  background-position: 64% center;
}

.direction-card--surveys::before {
  background-image: url("assets/hero-engineering-drilling-rig-web.jpg");
  background-position: 66% center;
}

.direction-card--water::before {
  background-image: url("assets/hero-water-treatment-web.jpg");
  background-position: 68% center;
}

.direction-card--gas::before {
  background-image: url("assets/hero-gas-cleaning-web.jpg");
  background-position: 68% center;
}

.direction-card::after {
  z-index: 1;
  background:
    radial-gradient(circle at 72% 18%, rgba(215, 255, 18, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.16) 36%, rgba(0, 0, 0, 0.78) 68%, rgba(0, 0, 0, 0.94) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.02) 52%, rgba(0, 0, 0, 0.25));
}

.direction-card:hover::before {
  transform: scale(1.04);
  opacity: 1;
}

.direction-card:hover {
  border-color: rgba(215, 255, 18, 0.62);
  box-shadow: var(--shadow), var(--glow), inset 0 0 34px rgba(215, 255, 18, 0.08);
}

.direction-card > * {
  position: relative;
  z-index: 2;
}

.direction-card__label {
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: var(--glow);
}

.direction-card h3 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 74px;
  max-width: 100%;
  margin: 0 auto 12px;
  font-size: 26px;
  line-height: 1.12;
  text-shadow: 0 0 18px rgba(215, 255, 18, 0.36), 0 2px 18px rgba(0, 0, 0, 0.86);
  text-wrap: balance;
}

.direction-card p {
  display: -webkit-box;
  min-height: 86px;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  color: rgba(245, 255, 244, 0.76);
  font-size: 15px;
  line-height: 1.38;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.86);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.direction-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 190px);
  min-height: 44px;
  margin: 20px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(215, 255, 18, 0.44);
  border-radius: var(--radius);
  color: var(--lime);
  font-size: 14px;
  line-height: 1.1;
  background: rgba(1, 6, 3, 0.62);
  box-shadow: inset 0 0 14px rgba(215, 255, 18, 0.08);
  text-shadow: var(--glow);
}

.direction-card:hover strong {
  color: #081003;
  background: var(--lime);
  box-shadow: var(--glow);
  text-shadow: none;
}

.site-map {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 38px;
}

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

.map-column {
  min-height: 470px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(15, 35, 22, 0.9), rgba(3, 10, 6, 0.94));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(245, 255, 244, 0.06);
}

.map-column h3 {
  margin-bottom: 22px;
}

.map-column ol {
  display: grid;
  gap: 18px;
  padding-left: 22px;
  margin: 0;
}

.map-column li::marker {
  color: var(--lime);
  font-weight: 950;
}

.cta-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(4, 42, 12, 0.22) 100%),
    url("assets/hero-laboratory-mass-spec-topaz-web.jpg") center / cover no-repeat;
}

.cta-band h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(23px, 2.1vw, 32px);
  line-height: 1.22;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(245, 255, 244, 0.24), 0 0 54px rgba(215, 255, 18, 0.18);
}

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

.cta-band .button {
  margin-left: auto;
  white-space: nowrap;
}

.subnav {
  position: sticky;
  z-index: 30;
  top: 88px;
  border-top: 1px solid rgba(215, 255, 18, 0.08);
  border-bottom: 1px solid var(--line);
  background: rgba(1, 5, 3, 0.92);
  backdrop-filter: blur(16px);
}

.subnav__inner {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-top: 12px;
  padding-bottom: 12px;
}

.subnav a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  background: rgba(215, 255, 18, 0.05);
}

.subnav a:hover {
  color: #081003;
  border-color: var(--lime);
  background: var(--lime);
  box-shadow: var(--glow);
}

.service-detail-list {
  display: grid;
  gap: 22px;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 42px;
}

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

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 310px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(215, 255, 18, 0.34);
  border-radius: var(--radius);
  color: var(--white);
  font: inherit;
  text-align: left;
  background: #020704;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(245, 255, 244, 0.06);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::before,
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.service-card::before {
  opacity: 0.42;
  background: url("assets/hero-metallurgy-plant-web.jpg") 68% center / cover no-repeat;
  transform: scale(1.02);
  transition: opacity 180ms ease, transform 220ms ease;
}

.service-card--lab::before {
  background-image: url("assets/hero-laboratory-mass-spec-topaz-web.jpg");
}

.service-card--lab:nth-child(1)::before {
  background-image: url("assets/card-lab-emissions-stack-web.jpg");
}

.service-card--lab:nth-child(2)::before {
  background-image: url("assets/card-lab-mobile-lab-web.jpg");
}

.service-card--lab:nth-child(3)::before {
  background-image: url("assets/card-lab-water-drop-web.jpg");
}

.service-card--lab:nth-child(4)::before {
  background-image: url("assets/card-lab-soil-sample-web.jpg");
}

.service-card--lab:nth-child(5)::before {
  background-image: url("assets/card-lab-waste-sample-web.jpg");
}

.service-card--design::before {
  background-image: url("assets/hero-design-szz-topaz-web.jpg");
}

.service-card--design:nth-child(1)::before {
  background-image: url("assets/card-design-ndv.jpg");
}

.service-card--design:nth-child(2)::before {
  background-image: url("assets/card-design-szz.jpg");
}

.service-card--design:nth-child(3)::before {
  background-image: url("assets/card-design-pnoolr.jpg");
}

.service-card--design:nth-child(4)::before {
  background-image: url("assets/card-design-nvos.jpg");
}

.service-card--design:nth-child(5)::before {
  background-image: url("assets/card-design-eco-fee.jpg");
}

.service-card--design:nth-child(6)::before {
  background-image: url("assets/card-design-pmoos.jpg");
}

.service-card--design:nth-child(7)::before {
  background-image: url("assets/card-design-pek.jpg");
}

.service-card--design:nth-child(8)::before {
  background-image: url("assets/card-design-reporting.jpg");
}

.service-card--design:nth-child(9)::before {
  background-image: url("assets/card-design-license.jpg");
}

.service-card--engineering::before {
  background-image: url("assets/hero-engineering-drilling-rig-web.jpg");
  background-position: 70% center;
}

.service-card--engineering:hover::before {
  transform: scale(1.025);
}

.service-card::after {
  background:
    radial-gradient(circle at 82% 12%, rgba(215, 255, 18, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.92)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.14));
}

.service-card:hover {
  border-color: rgba(215, 255, 18, 0.72);
  box-shadow: var(--shadow), var(--glow), inset 0 1px 0 rgba(245, 255, 244, 0.1);
  transform: translateY(-3px);
}

.service-card:hover::before {
  opacity: 0.58;
  transform: scale(1.06);
}

.service-card--design:hover::before {
  transform: scale(1.02);
}

/* Design service cards: individual backgrounds */
.service-card-grid--design .service-card--design:nth-child(1)::before {
  background-image: url("assets/design-ndv-bg-web.jpg");
  background-position: center center;
}
.service-card-grid--design .service-card--design:nth-child(2)::before {
  background-image: url("assets/design-szz-bg-web.jpg");
  background-position: center center;
}
.service-card-grid--design .service-card--design:nth-child(3)::before {
  background-image: url("assets/design-pnoolr-bg-web.jpg");
  background-position: center center;
}
.service-card-grid--design .service-card--design:nth-child(4)::before {
  background-image: url("assets/design-nvos-bg-web.jpg");
  background-position: center center;
}
.service-card-grid--design .service-card--design:nth-child(5)::before {
  background-image: url("assets/design-pek-bg-web.jpg");
  background-position: center center;
}
.service-card-grid--design .service-card--design:nth-child(6)::before {
  background-image: url("assets/design-pmoos-bg-web.jpg");
  background-position: center center;
}
.service-card-grid--design .service-card--design:nth-child(7)::before {
  background-image: url("assets/design-ovos-bg-web.jpg");
  background-position: center center;
}
.service-card-grid--design .service-card--design:nth-child(8)::before {
  background-image: url("assets/design-nds-bg-web.jpg");
  background-position: center center;
}
.service-card-grid--design .service-card--design:nth-child(9)::before {
  background-image: url("assets/design-orzn-bg-web.jpg");
  background-position: center center;
}
.service-card-grid--design .service-card--design:nth-child(10)::before {
  background-image: url("assets/design-ker-bg-web.jpg");
  background-position: center center;
}
.service-card-grid--design .service-card--design:nth-child(11)::before {
  background-image: url("assets/design-zso-bg-web.jpg");
  background-position: center center;
}
.service-card-grid--design .service-card--design:nth-child(12)::before {
  background-image: url("assets/design-gee-bg-web.jpg");
  background-position: center center;
}
.service-card-grid--design .service-card--design:nth-child(13)::before {
  background-image: url("assets/design-rekultivaciya-bg-web.jpg");
  background-position: center center;
}
.service-card-grid--design .service-card--design:nth-child(14)::before {
  background-image: url("assets/design-ekozos-bg-web.jpg");
  background-position: center center;
}
.service-card-grid--design .service-card--design:nth-child(15)::before {
  background-image: url("assets/design-nmu-bg-web.jpg");
  background-position: center center;
}
.service-card-grid--design .service-card--design:nth-child(16)::before {
  background-image: url("assets/design-eco-fee-bg-web.jpg");
  background-position: center center;
}
.service-card-grid--design .service-card--design:nth-child(17)::before {
  background-image: url("assets/design-reporting-bg-web.jpg");
  background-position: center center;
}
.service-card-grid--design .service-card--design:nth-child(18)::before {
  background-image: url("assets/design-license-bg-web.jpg");
  background-position: center center;
}

.service-card span,
.service-card strong,
.service-card p {
  position: relative;
  z-index: 1;
}

.service-card span {
  color: var(--lime);
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
  text-shadow: var(--glow);
}

.service-card strong {
  display: flex;
  align-items: flex-end;
  min-height: 74px;
  margin-top: 22px;
  color: var(--lime);
  font-size: 26px;
  line-height: 1.12;
  font-weight: 950;
  text-shadow: var(--glow), 0 2px 16px rgba(0, 0, 0, 0.88);
}

.service-card p {
  align-self: end;
  margin: 22px 0 0;
  color: rgba(245, 255, 244, 0.88);
  font-size: 17px;
  line-height: 1.42;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

.service-modal-sources {
  display: none;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  padding: 28px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(14px);
}

.service-modal.is-open {
  display: grid;
  place-items: center;
}

.service-modal__panel {
  position: relative;
  width: min(1180px, 100%);
  max-height: min(86vh, 900px);
  overflow: auto;
  padding: 34px;
  border: 1px solid rgba(215, 255, 18, 0.58);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 84% 8%, rgba(215, 255, 18, 0.13), transparent 28%),
    linear-gradient(135deg, rgba(3, 10, 6, 0.98), rgba(7, 24, 14, 0.96));
  box-shadow: var(--shadow), var(--glow);
}

.service-modal__close {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid rgba(215, 255, 18, 0.48);
  border-radius: 50%;
  color: var(--lime);
  font-size: 28px;
  line-height: 1;
  background: rgba(1, 6, 3, 0.92);
  box-shadow: var(--glow);
  cursor: pointer;
}

.service-modal__body {
  margin-top: -20px;
}

.service-modal__body .detail-block,
.service-modal__body .expert-case {
  border: 0;
  box-shadow: none;
}

.service-modal__body .detail-block {
  min-height: 0;
  padding: 0;
  background: transparent;
}

.service-modal__body .expert-case {
  padding: 0;
  background: transparent;
}

.service-modal__body .expert-case::before,
.service-modal__body .detail-block::after {
  display: none;
}

body.is-modal-open {
  overflow: hidden;
}

.detail-block {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 34px;
  min-height: 330px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(10, 28, 18, 0.96), rgba(5, 13, 8, 0.86)),
    url("assets/ceu-neon-bg.jpg") right center / 620px auto no-repeat;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(245, 255, 244, 0.06);
  scroll-margin-top: 170px;
}

.detail-block::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 64%, rgba(215, 255, 18, 0.08) 64.3%, transparent 65%);
}

.detail-block--design {
  background:
    linear-gradient(90deg, rgba(10, 28, 18, 0.96), rgba(5, 13, 8, 0.88)),
    url("assets/ceu-neon-bg.jpg") right center / 680px auto no-repeat;
}

.detail-block__content {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
}

.legal-summary {
  max-width: 1120px;
}

.legal-summary__lead {
  max-width: 960px;
  margin: 0 0 24px;
  color: rgba(245, 255, 244, 0.9);
  font-size: 19px;
  line-height: 1.55;
}

.legal-summary__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.legal-summary__item {
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(215, 255, 18, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 10%, rgba(215, 255, 18, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(1, 8, 4, 0.72), rgba(0, 0, 0, 0.34));
  box-shadow: inset 0 1px 0 rgba(245, 255, 244, 0.05);
}

.legal-summary__item--wide {
  grid-column: 1 / -1;
  min-height: 0;
  border-color: rgba(215, 255, 18, 0.42);
  background:
    radial-gradient(circle at 90% 0%, rgba(215, 255, 18, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(7, 24, 12, 0.9), rgba(1, 8, 4, 0.74));
  box-shadow: inset 0 1px 0 rgba(245, 255, 244, 0.07), var(--glow);
}

.legal-summary__item strong {
  display: block;
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 17px;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: var(--glow);
}

.legal-summary__item p,
.legal-summary__item li {
  color: rgba(245, 255, 244, 0.84);
  font-size: 16px;
  line-height: 1.48;
}

.legal-summary__item ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.legal-summary__note {
  margin-top: 20px;
  padding: 16px 18px;
  border-left: 3px solid var(--lime);
  color: rgba(245, 255, 244, 0.86);
  background: rgba(215, 255, 18, 0.06);
}

.detail-block--surveys {
  background:
    linear-gradient(90deg, rgba(10, 28, 18, 0.96), rgba(5, 13, 8, 0.88)),
    url("assets/hero-lab-topaz-web.jpg") right center / 760px auto no-repeat;
}

.detail-block--water {
  background:
    linear-gradient(90deg, rgba(10, 28, 18, 0.96), rgba(5, 13, 8, 0.88)),
    url("assets/hero-water-treatment-web.jpg") right center / 760px auto no-repeat;
}

.detail-block--gas {
  background:
    linear-gradient(90deg, rgba(10, 28, 18, 0.96), rgba(5, 13, 8, 0.88)),
    url("assets/hero-gas-cleaning-web.jpg") right center / 760px auto no-repeat;
}

.detail-block--engineering {
  background:
    linear-gradient(90deg, rgba(10, 28, 18, 0.96), rgba(5, 13, 8, 0.88)),
    url("assets/hero-engineering-drilling-rig-web.jpg") right center / 760px auto no-repeat;
}

.aqua-section {
  overflow: hidden;
}

.aqua-layout {
  display: grid;
  gap: 24px;
}

.aqua-hero-card,
.aqua-proof-grid article,
.aqua-equipment,
.aqua-projects,
.aqua-bottom-grid article {
  border: 1px solid rgba(215, 255, 18, 0.34);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 8%, rgba(215, 255, 18, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(5, 17, 12, 0.92), rgba(1, 6, 3, 0.96));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(245, 255, 244, 0.07), 0 0 26px rgba(215, 255, 18, 0.08);
}

.aqua-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 0;
  overflow: hidden;
}

.aqua-hero-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.aqua-hero-card__copy h2 {
  max-width: 760px;
  color: var(--white);
  text-shadow: 0 0 22px rgba(245, 255, 244, 0.18), var(--glow);
}

.aqua-hero-card__copy p {
  color: rgba(245, 255, 244, 0.78);
  font-size: 18px;
}

.aqua-ticks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.aqua-ticks li,
.aqua-equipment__grid article,
.aqua-projects__grid article {
  border: 1px solid rgba(215, 255, 18, 0.4);
  border-radius: var(--radius);
  background: rgba(1, 6, 3, 0.66);
  box-shadow: inset 0 0 14px rgba(215, 255, 18, 0.08);
}

.aqua-ticks li {
  padding: 12px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  text-shadow: var(--glow);
}

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

.aqua-proof-grid article {
  min-height: 230px;
  padding: 28px;
}

.aqua-proof-grid strong,
.aqua-equipment__grid strong,
.aqua-projects__grid strong {
  display: block;
  color: var(--lime);
  font-size: 22px;
  line-height: 1.15;
  text-shadow: var(--glow);
}

.aqua-proof-grid p,
.aqua-bottom-grid p {
  color: rgba(245, 255, 244, 0.76);
}

.aqua-project-cover {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: #010302;
}

.aqua-project-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 42%),
    linear-gradient(180deg, transparent 72%, rgba(1, 3, 2, 0.7));
}

.aqua-project-cover img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.aqua-directions,
.aqua-process,
.aqua-equipment,
.aqua-projects,
.aqua-bottom-grid article {
  border: 1px solid rgba(215, 255, 18, 0.34);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 8%, rgba(215, 255, 18, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(5, 17, 12, 0.92), rgba(1, 6, 3, 0.96));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(245, 255, 244, 0.07), 0 0 26px rgba(215, 255, 18, 0.08);
}

.aqua-directions,
.aqua-process,
.aqua-equipment,
.aqua-projects {
  padding: 34px;
}

.aqua-direction-grid,
.aqua-process__grid,
.aqua-bottom-grid {
  display: grid;
  gap: 24px;
}

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

.aqua-direction-grid article,
.aqua-process__grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(215, 255, 18, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(10, 32, 22, 0.86), rgba(1, 7, 4, 0.92));
  box-shadow: inset 0 1px 0 rgba(245, 255, 244, 0.06), 0 0 18px rgba(215, 255, 18, 0.08);
}

.aqua-direction-grid h3 {
  color: var(--lime);
  text-shadow: var(--glow);
}

.aqua-direction-grid p,
.aqua-process p {
  color: rgba(245, 255, 244, 0.76);
}

.aqua-icon {
  position: relative;
  display: block;
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  border: 1px solid rgba(215, 255, 18, 0.5);
  border-radius: 50%;
  box-shadow: var(--glow), inset 0 0 18px rgba(215, 255, 18, 0.1);
}

.aqua-icon::before,
.aqua-icon::after {
  content: "";
  position: absolute;
}

.aqua-icon--drop::before {
  left: 23px;
  top: 14px;
  width: 24px;
  height: 34px;
  border: 3px solid var(--lime);
  border-radius: 50% 50% 50% 8px;
  transform: rotate(45deg);
}

.aqua-icon--waves::before,
.aqua-icon--waves::after {
  left: 16px;
  width: 40px;
  height: 12px;
  border-bottom: 3px solid var(--lime);
  border-radius: 50%;
}

.aqua-icon--waves::before { top: 24px; }
.aqua-icon--waves::after { top: 38px; }

.aqua-icon--flask::before {
  left: 23px;
  top: 14px;
  width: 25px;
  height: 38px;
  border: 3px solid var(--lime);
  border-top-width: 8px;
  border-radius: 6px 6px 18px 18px;
}

.aqua-process {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 30px;
  align-items: center;
}

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

.aqua-process__grid article {
  min-height: 128px;
}

.aqua-process__grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
  text-shadow: var(--glow);
}

.aqua-process__grid strong {
  color: var(--white);
}

.aqua-equipment__grid,
.aqua-projects__grid {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

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

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

.aqua-equipment__grid article,
.aqua-projects__grid article {
  min-height: 132px;
  padding: 20px;
}

.aqua-equipment__grid article {
  display: flex;
  flex-direction: column;
  min-height: 310px;
}

.aqua-equipment__grid span,
.aqua-projects__grid span {
  display: block;
  margin-top: 10px;
  color: rgba(245, 255, 244, 0.74);
  font-size: 14px;
  line-height: 1.35;
}

.aqua-equipment-scheme {
  position: relative;
  min-height: 132px;
  margin-top: auto;
  overflow: hidden;
  border: 1px solid rgba(215, 255, 18, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(215, 255, 18, 0.09) 1px, transparent 1px),
    linear-gradient(0deg, rgba(215, 255, 18, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 48% 45%, rgba(45, 160, 255, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(5, 22, 18, 0.9), rgba(1, 6, 3, 0.96));
  background-size: 64px 64px, 64px 64px, auto, auto;
}

.aqua-equipment-scheme::before,
.aqua-equipment-scheme::after {
  content: "";
  position: absolute;
  display: block;
}

.aqua-equipment-scheme--membrane::before {
  left: 18%;
  right: 18%;
  top: 32px;
  height: 28px;
  border: 1px solid rgba(245, 255, 244, 0.35);
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(215, 255, 18, 0.7) 0 4px, transparent 4px 10px),
    linear-gradient(180deg, rgba(245, 255, 244, 0.12), rgba(1, 6, 3, 0.92));
  box-shadow: inset 0 0 20px rgba(245, 255, 244, 0.06), 0 0 24px rgba(215, 255, 18, 0.15);
}

.aqua-equipment-scheme--membrane::after,
.aqua-equipment-scheme--pressure::after,
.aqua-equipment-scheme--module::after {
  left: 12%;
  right: 12%;
  bottom: 30px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(245, 255, 244, 0.5), var(--lime));
  box-shadow: var(--glow);
}

.aqua-equipment-scheme--pressure::before {
  left: 50%;
  top: 24px;
  width: 62px;
  height: 82px;
  border: 1px solid rgba(245, 255, 244, 0.45);
  border-radius: 36px 36px 12px 12px;
  background: linear-gradient(90deg, rgba(245, 255, 244, 0.14), rgba(215, 255, 18, 0.16), rgba(1, 6, 3, 0.86));
  transform: translateX(-50%);
  box-shadow: var(--glow);
}

.aqua-equipment-scheme--dosing::before {
  left: 18%;
  top: 22px;
  width: 42px;
  height: 82px;
  border: 1px solid rgba(245, 255, 244, 0.4);
  border-radius: 8px 8px 22px 22px;
  background: linear-gradient(180deg, rgba(245, 255, 244, 0.12), rgba(215, 255, 18, 0.26));
  box-shadow: var(--glow);
}

.aqua-equipment-scheme--dosing::after {
  right: 16%;
  top: 42px;
  width: 64px;
  height: 42px;
  border: 1px solid rgba(215, 255, 18, 0.42);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 28% 50%, var(--lime) 0 5px, transparent 6px),
    radial-gradient(circle at 50% 50%, var(--lime) 0 5px, transparent 6px),
    radial-gradient(circle at 72% 50%, var(--lime) 0 5px, transparent 6px),
    rgba(1, 6, 3, 0.8);
}

.aqua-equipment-scheme--module::before {
  left: 10%;
  right: 10%;
  top: 36px;
  height: 70px;
  border: 1px solid rgba(245, 255, 244, 0.36);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(90deg, rgba(215, 255, 18, 0.2) 0 16px, transparent 16px 26px),
    linear-gradient(180deg, rgba(245, 255, 244, 0.1), rgba(1, 6, 3, 0.92));
  box-shadow: var(--glow);
}

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

.aqua-bottom-grid article {
  overflow: hidden;
}

.aqua-bottom-grid h3,
.aqua-bottom-grid p {
  padding-right: 28px;
  padding-left: 28px;
}

.aqua-bottom-grid h3 {
  margin-top: 28px;
  color: var(--lime);
  text-shadow: var(--glow);
}

.aqua-bottom-grid p {
  padding-bottom: 28px;
}

.detail-block__number {
  color: var(--lime);
  font-size: 54px;
  line-height: 1;
  font-weight: 950;
  text-shadow: var(--glow);
}

.detail-block h2 {
  max-width: 820px;
}

.detail-block p {
  max-width: 840px;
  color: rgba(245, 255, 244, 0.76);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: var(--glow);
}

.expert-case {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(215, 255, 18, 0.62);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 10%, rgba(215, 255, 18, 0.13), transparent 28%),
    linear-gradient(135deg, rgba(3, 10, 6, 0.98), rgba(7, 24, 14, 0.94)),
    url("assets/ceu-neon-bg.jpg") right bottom / 720px auto no-repeat;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(245, 255, 244, 0.08), 0 0 38px rgba(215, 255, 18, 0.1);
  scroll-margin-top: 170px;
}

.expert-case::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(215, 255, 18, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(215, 255, 18, 0.05) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 48%, transparent 100%);
  opacity: 0.45;
}

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

.expert-case__number {
  position: absolute;
  top: 28px;
  right: 34px;
  z-index: 1;
  color: var(--lime);
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1;
  font-weight: 950;
  text-shadow: var(--glow);
  opacity: 0.9;
  pointer-events: none;
}

.expert-case__hero {
  max-width: 980px;
  margin-bottom: 26px;
}

.expert-case__hero h2 {
  max-width: 900px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 56px);
  text-shadow: 0 0 24px rgba(245, 255, 244, 0.18), var(--glow);
}

.expert-case__hero p,
.expert-card p,
.expert-case__note {
  color: rgba(245, 255, 244, 0.78);
}

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

.expert-card {
  min-height: 270px;
  padding: 24px;
  border: 1px solid rgba(215, 255, 18, 0.44);
  border-radius: var(--radius);
  background: rgba(1, 6, 3, 0.78);
  box-shadow: inset 0 1px 0 rgba(245, 255, 244, 0.06), 0 0 18px rgba(215, 255, 18, 0.08);
}

.expert-card--wide {
  grid-column: span 2;
  min-height: 0;
}

.expert-card h3 {
  margin-bottom: 16px;
  color: var(--lime);
  font-size: 24px;
  text-shadow: var(--glow);
}

.case-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  color: rgba(245, 255, 244, 0.78);
  list-style: none;
}

.case-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(245, 255, 244, 0.82);
  font-size: 16px;
  line-height: 1.54;
}

.case-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(215, 255, 18, 0.74);
  transform: translateY(-50%);
}

.penalty-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 18px;
  align-items: center;
}

.penalty-grid span {
  color: rgba(245, 255, 244, 0.76);
}

.penalty-grid strong {
  color: var(--lime);
  white-space: nowrap;
  text-shadow: var(--glow);
}

.expert-case__note {
  margin: 24px 0 0;
  padding: 20px 24px;
  border: 1px solid rgba(215, 255, 18, 0.44);
  border-radius: var(--radius);
  font-size: 21px;
  line-height: 1.35;
  background: rgba(1, 6, 3, 0.72);
  box-shadow: inset 0 1px 0 rgba(245, 255, 244, 0.06);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 34px;
}

.contacts-section {
  padding-top: 150px;
}

.contact-panel,
.request-form {
  min-height: 560px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(15, 35, 22, 0.92), rgba(3, 10, 6, 0.96));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(245, 255, 244, 0.06);
}

.contact-panel address {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  font-style: normal;
}

.contact-panel a:hover {
  color: var(--lime);
}

.request-form {
  display: grid;
  gap: 16px;
}

.request-form label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.38);
  outline: 0;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(215, 255, 18, 0.18), var(--glow);
}

.request-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer {
  padding: 56px 0;
  color: var(--white);
  border-top: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(2, 20, 7, 0.9)),
    url("assets/ceu-neon-bg.jpg") center bottom / cover no-repeat;
}

.footer__layout {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr;
  gap: 46px;
}

.footer__brand {
  width: 320px;
}

.footer__logo {
  width: 320px;
  height: 96px;
  margin: 0 auto 14px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 14px rgba(215, 255, 18, 0.42));
}

.footer__tagline {
  width: 100%;
  margin: 0;
  color: var(--lime) !important;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.22;
  text-shadow: 0 0 18px rgba(215, 255, 18, 0.54), 0 0 52px rgba(84, 214, 29, 0.24);
}

.footer__tagline span {
  display: block;
  color: var(--lime) !important;
  text-align: center;
}

.footer__geo {
  max-width: 640px;
  margin-top: 14px;
  color: rgba(245, 255, 244, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.footer__geo a {
  color: var(--lime) !important;
  text-decoration: none;
}

.footer__geo a:hover {
  color: #ffffff !important;
}

.page-geography .geo-hero {
  min-height: 620px;
}

.page-geography .geo-hero .hero__content {
  max-width: 980px;
}

.page-geography .geo-hero h1 {
  max-width: 960px;
  font-size: clamp(42px, 5.1vw, 86px);
  line-height: 0.98;
}

.geo-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.geo-hero__facts span,
.geo-city-grid span {
  border: 1px solid rgba(215, 255, 18, 0.36);
  border-radius: 999px;
  color: #f6ffe8;
  background: rgba(215, 255, 18, 0.08);
  box-shadow: inset 0 0 18px rgba(215, 255, 18, 0.06);
}

.geo-hero__facts span {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.geo-work {
  padding-top: 86px;
}

.geo-work .section-heading {
  max-width: 850px;
}

.geo-work__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.geo-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(215, 255, 18, 0.18);
  border-radius: 8px;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(13, 38, 24, 0.96), rgba(2, 8, 5, 0.94)),
    var(--space);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.geo-panel::after {
  content: "";
  position: absolute;
  inset: auto -60px -120px auto;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(215, 255, 18, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.geo-panel h3,
.geo-service-card strong,
.geo-cta h2 {
  color: var(--white);
}

.geo-panel h3 {
  max-width: 720px;
  margin: 0 0 18px;
  font-size: clamp(28px, 2.7vw, 44px);
  line-height: 1;
}

.geo-panel p {
  color: rgba(245, 255, 244, 0.76);
}

.geo-city-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.geo-city-grid span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 850;
}

.geo-panel__note {
  max-width: 900px;
  margin: 24px 0 0;
  font-size: 15px;
}

.geo-panel--format {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.geo-checks {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.geo-checks li {
  position: relative;
  padding-left: 28px;
  color: rgba(245, 255, 244, 0.78);
  line-height: 1.55;
}

.geo-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: var(--glow);
}

.geo-services {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.geo-service-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid rgba(215, 255, 18, 0.16);
  border-radius: 8px;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  background: rgba(2, 10, 6, 0.7);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.geo-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 255, 18, 0.46);
  background: rgba(14, 40, 24, 0.86);
}

.geo-service-card span {
  color: var(--lime);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.geo-service-card strong {
  min-height: 54px;
  font-size: 20px;
  line-height: 1.16;
}

.geo-service-card p {
  margin: auto 0 0;
  color: rgba(245, 255, 244, 0.7);
  font-size: 15px;
  line-height: 1.5;
}

.geo-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 24px;
  border: 1px solid rgba(215, 255, 18, 0.22);
  border-radius: 8px;
  padding: 34px;
  background:
    linear-gradient(90deg, rgba(8, 32, 18, 0.96), rgba(3, 13, 8, 0.94)),
    url("assets/ceu-neon-bg.jpg") right center / 620px auto no-repeat;
}

.geo-cta h2 {
  margin: 0;
  font-size: clamp(26px, 2.7vw, 42px);
}

.geo-cta p:not(.eyebrow) {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(245, 255, 244, 0.76);
}

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

.footer p,
.footer a,
.footer span {
  color: rgba(245, 255, 244, 0.7);
}

.footer strong {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 18px;
}

.footer address,
.socials {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.footer a:hover {
  color: var(--lime);
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].hero__content {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero__pattern {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1220px) {
  .site-header {
    grid-template-columns: 280px auto;
    padding: 12px 24px;
  }

  .brand {
    width: 280px;
    height: 66px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-phone {
    display: none;
  }

  .site-header.is-open {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-phone {
    display: flex;
  }

  .site-header.is-open .main-nav {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    padding-top: 18px;
  }

  .site-header.is-open .header-phone {
    grid-column: 1 / -1;
    width: fit-content;
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 280px auto;
    padding: 12px 24px;
  }

  .brand {
    width: 280px;
    height: 66px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-phone {
    display: none;
  }

  .site-header.is-open {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-phone {
    display: flex;
  }

  .site-header.is-open .main-nav {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    padding-top: 18px;
  }

  .site-header.is-open .header-phone {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .advantages-grid,
  .direction-grid,
  .service-card-grid,
  .site-map,
  .map-columns,
  .expert-case__grid,
  .aqua-hero-card,
  .aqua-proof-grid,
  .aqua-direction-grid,
  .aqua-process,
  .aqua-process__grid,
  .aqua-equipment__grid,
  .aqua-projects__grid,
  .aqua-bottom-grid,
  .contact-layout,
  .footer__layout {
    grid-template-columns: 1fr;
  }

  .aqua-project-cover,
  .aqua-project-cover img {
    min-height: 380px;
  }

  .expert-card--wide {
    grid-column: auto;
  }

  .advantages-grid > * {
    grid-column: auto !important;
    grid-template-rows: auto 1fr;
    min-height: 280px;
  }

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

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

  .advantages-grid strong {
    min-height: 58px;
    font-size: 24px;
  }

  .advantages-grid span {
    font-size: 18px;
  }

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

  .cta-band__inner > div {
    margin-left: 0;
  }
}

@media (max-width: 1060px) {
  .geo-section .section-heading {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .geo-section .section-heading .eyebrow,
  .geo-section .section-heading h2,
  .geo-section .section-heading p:not(.eyebrow),
  .geo-section .button {
    grid-column: 1;
  }

  .geo-section .section-heading::before {
    grid-column: 1;
    grid-row: 6;
    min-height: 280px;
    margin-top: 14px;
  }

  .geo-section .section-heading h2,
  .geo-section .section-heading p:not(.eyebrow) {
    max-width: none;
  }

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

  .geo-service-card,
  .geo-service-card strong {
    min-height: 0;
  }

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

  .legal-summary__grid {
    grid-template-columns: 1fr;
  }

  .legal-summary__item {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .geo-section {
    padding: 52px 0;
  }

  .geo-section .section-heading {
    padding: 24px;
  }

  .geo-section .section-heading::before {
    min-height: 220px;
    background-size: 118% auto;
  }

  .geo-section .section-heading h2 {
    font-size: 34px;
  }

  .geo-section .section-heading p:not(.eyebrow) {
    font-size: 15px;
  }

  .page-geography .geo-hero {
    min-height: 680px;
  }

  .page-geography .geo-hero h1 {
    font-size: 40px;
  }

  .geo-work {
    padding-top: 64px;
  }

  .geo-panel,
  .geo-cta {
    padding: 24px;
  }

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

  .geo-hero__facts span,
  .geo-city-grid span {
    width: 100%;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 78px;
    gap: 14px;
    padding: 12px 14px;
  }

  .brand {
    width: 220px;
    height: 58px;
  }

  .hero,
  .page-hero {
    min-height: 740px;
  }

  .hero__image {
    background-position: 48% center;
  }

  .hero--home .hero__image {
    background-position: 72% top;
    background-size: auto 100%;
    opacity: 1;
  }

  .page-hero .hero__image {
    background-position: 72% top;
    background-size: auto 100%;
  }

  .hero--design .hero__image {
    background-position: 78% top;
  }

  .hero__shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.76) 58%, rgba(5, 29, 8, 0.72) 100%);
  }

  .hero--home .hero__shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.68) 58%, rgba(5, 29, 8, 0.58) 100%);
  }

  .hero__pattern {
    mask-image: linear-gradient(180deg, #000 0%, transparent 80%);
  }

  .hero__content {
    padding-top: 118px;
  }

  .hero--home .hero__content {
    padding-top: 148px;
  }

  .page-hero .hero__content {
    padding-top: 148px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 22px;
  }

  .hero__lead {
    font-size: 19px;
  }

  .hero__actions,
  .contact-buttons {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 76px 0;
  }

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

  .direction-card {
    min-height: 380px;
    padding: 26px;
  }

  .direction-card h3 {
    min-height: 58px;
    font-size: 24px;
  }

  .direction-card p {
    min-height: 74px;
    font-size: 14px;
  }

  .map-column,
  .contact-panel,
  .request-form {
    min-height: 0;
    padding: 24px;
  }

  .detail-block {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 24px;
    background:
      linear-gradient(90deg, rgba(10, 28, 18, 0.98), rgba(5, 13, 8, 0.92)),
      url("assets/ceu-neon-bg.jpg") right bottom / 520px auto no-repeat;
  }

  .legal-summary__lead {
    font-size: 17px;
  }

  .legal-summary__item {
    padding: 18px;
  }

  .aqua-hero-card__copy,
  .aqua-directions,
  .aqua-process,
  .aqua-equipment,
  .aqua-projects {
    padding: 24px;
  }

  .aqua-ticks {
    grid-template-columns: 1fr;
  }

  .aqua-proof-grid article,
  .aqua-equipment__grid article,
  .aqua-projects__grid article {
    min-height: 0;
  }


  .expert-case {
    padding: 24px;
  }

  .expert-case__number {
    position: static;
    display: block;
    margin-bottom: 12px;
    font-size: 38px;
  }

  .expert-card {
    min-height: 0;
    padding: 22px;
  }

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

  .detail-block__number {
    font-size: 38px;
  }

  .subnav {
    top: 78px;
  }
}


@media (max-width: 1060px) {
  .contact-geo-showcase__panel {
    min-height: 600px;
    padding-right: 24px;
    padding-left: 24px;
    background-position: 56% center;
  }

  .contact-geo-showcase h2 {
    font-size: clamp(48px, 9vw, 70px);
  }

  .contact-geo-showcase__text {
    max-width: 560px;
    margin-top: 70px;
  }
}

@media (max-width: 760px) {
  .contact-geo-showcase {
    padding: 18px 0 64px;
  }

  .contact-geo-showcase__panel {
    min-height: 640px;
    padding: 30px 22px;
    background:
      linear-gradient(180deg, rgba(0, 5, 2, 0.88) 0%, rgba(0, 6, 3, 0.68) 46%, rgba(0, 5, 2, 0.38) 100%),
      url("assets/geo-russia-showcase.jpg") 58% center / cover no-repeat;
  }

  .contact-geo-showcase .eyebrow {
    margin-bottom: 22px;
    font-size: 12px;
  }

  .contact-geo-showcase h2 {
    font-size: clamp(39px, 13vw, 54px);
  }

  .contact-geo-showcase__text {
    margin-top: 220px;
    font-size: 18px;
    line-height: 1.45;
  }

  .contact-geo-showcase .button {
    width: 100%;
    justify-content: center;
    margin-top: 44px;
  }
}

/* Compact geography page and footer city ticker */
.footer__brand {
  width: min(100%, 420px);
}

.footer__geo {
  display: none;
}

.footer__geo-ticker {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: min(100%, 420px);
  margin-top: 14px;
  overflow: hidden;
  color: rgba(245, 255, 244, 0.78);
  font-size: 14px;
  line-height: 1.35;
}

.footer__geo-title {
  flex: 0 0 auto;
  color: var(--lime) !important;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(215, 255, 18, 0.36);
}

.footer__geo-viewport {
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.footer__geo-track {
  display: flex;
  width: max-content;
  gap: 34px;
  white-space: nowrap;
  animation: footerCityTicker 28s linear infinite;
}

.footer__geo-track span {
  display: inline-block;
}

@keyframes footerCityTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 17px));
  }
}

.page-geography-clean .site-header + main {
  padding-top: 0;
}

.geo-clean-hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  padding: 150px 0 70px;
  overflow: hidden;
  border-bottom: 1px solid rgba(215, 255, 18, 0.18);
  background:
    linear-gradient(90deg, rgba(0, 5, 2, 0.94) 0%, rgba(0, 9, 5, 0.78) 42%, rgba(0, 5, 2, 0.1) 72%),
    url("assets/geo-russia-showcase.jpg") center / cover no-repeat;
}

.geo-clean-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 38%, rgba(0, 0, 0, 0.22)),
    radial-gradient(circle at 25% 36%, rgba(215, 255, 18, 0.13), transparent 28%);
}

.geo-clean-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 48px;
  align-items: center;
}

.geo-clean-hero__content {
  max-width: 720px;
}

.geo-clean-hero h1 {
  max-width: 680px;
  margin: 16px 0 22px;
  color: var(--white);
  font-size: clamp(58px, 7vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(215, 255, 18, 0.22), 0 10px 42px rgba(0, 0, 0, 0.84);
}

.geo-clean-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: rgba(245, 255, 244, 0.82);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
}

.geo-clean-hero__lead {
  color: var(--white) !important;
  font-weight: 900;
}

.geo-clean-hero__lead + p {
  margin-top: 12px !important;
}

.geo-clean-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.geo-clean-map {
  min-height: 350px;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 10px;
}

.geo-clean-cities span {
  border: 1px solid rgba(215, 255, 18, 0.34);
  border-radius: 999px;
  color: #f6ffe8;
  background: rgba(215, 255, 18, 0.08);
  box-shadow: inset 0 0 18px rgba(215, 255, 18, 0.06);
}

.geo-clean-map span {
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.geo-clean-section {
  padding: 42px 0 84px;
  background:
    linear-gradient(180deg, rgba(1, 12, 7, 0.98), rgba(0, 6, 3, 0.98)),
    var(--space);
}

.geo-clean-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.72fr);
  gap: 18px;
}

.geo-clean-card {
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(215, 255, 18, 0.22);
  border-radius: 8px;
  background: linear-gradient(150deg, rgba(8, 27, 16, 0.92), rgba(1, 8, 4, 0.96));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(245, 255, 244, 0.06);
}

.geo-clean-card--wide {
  grid-row: span 2;
}

.geo-clean-card h2 {
  margin: 8px 0 14px;
  color: var(--white);
  font-size: clamp(27px, 3vw, 44px);
  line-height: 1;
}

.geo-clean-card p:not(.eyebrow) {
  margin: 0;
  color: rgba(245, 255, 244, 0.78);
  font-size: 17px;
  line-height: 1.6;
}

.geo-clean-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.geo-clean-cities span {
  padding: 9px 13px;
  font-size: 14px;
  font-weight: 850;
}

.geo-clean-services {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.geo-clean-services a {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid rgba(215, 255, 18, 0.26);
  border-radius: 8px;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  background: rgba(2, 12, 6, 0.78);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.geo-clean-services a:hover {
  border-color: rgba(215, 255, 18, 0.68);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

.geo-clean-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(215, 255, 18, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(8, 32, 18, 0.94), rgba(1, 8, 4, 0.96)),
    url("assets/ceu-neon-bg.jpg") center / cover no-repeat;
}

.geo-clean-cta h2 {
  margin: 8px 0 8px;
  color: var(--white);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.geo-clean-cta p:not(.eyebrow) {
  max-width: 780px;
  margin: 0;
  color: rgba(245, 255, 244, 0.78);
}

@media (prefers-reduced-motion: reduce) {
  .footer__geo-track {
    animation: none;
    transform: none;
  }
}

@media (max-width: 1060px) {
  .footer__geo-ticker {
    width: 100%;
  }

  .geo-clean-hero__inner,
  .geo-clean-grid,
  .geo-clean-cta {
    grid-template-columns: 1fr;
  }

  .geo-clean-map {
    min-height: auto;
    justify-content: flex-start;
  }

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

@media (max-width: 760px) {
  .footer__geo-ticker {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .geo-clean-hero {
    min-height: 600px;
    padding: 124px 0 52px;
    background-position: 58% center;
  }

  .geo-clean-hero h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .geo-clean-hero p:not(.eyebrow) {
    font-size: 17px;
  }

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

  .geo-clean-cta .button,
  .geo-clean-actions .button {
    width: 100%;
    justify-content: center;
  }
}


.legal-summary__item--contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-color: rgba(215, 255, 18, 0.48);
  background:
    radial-gradient(circle at 88% 12%, rgba(215, 255, 18, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(14, 42, 16, 0.84), rgba(1, 8, 4, 0.74));
  box-shadow: inset 0 1px 0 rgba(245, 255, 244, 0.08), 0 18px 42px rgba(215, 255, 18, 0.08);
}

.legal-summary__button {
  width: fit-content;
  margin-top: 18px;
  padding: 13px 18px;
  font-size: 13px;
}

.back-to-top {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215, 255, 18, 0.52);
  background: linear-gradient(180deg, #e8ff19, #b7ff00);
  box-shadow: 0 18px 42px rgba(215, 255, 18, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.48);
  font-weight: 950;
  text-decoration: none;
}

.back-to-top:hover {
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .back-to-top {
    right: 14px;
    bottom: 14px;
    min-width: 82px;
    min-height: 40px;
    padding: 10px 14px;
    font-size: 12px;
  }
}


.back-to-top {
  width: 46px;
  min-width: 46px;
  min-height: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  color: #061008;
  font-size: 26px;
  line-height: 1;
  transform: translate3d(var(--follow-x, calc(100vw - 86px)), var(--follow-y, calc(100vh - 86px)), 0);
  transition: opacity 180ms ease, visibility 180ms ease, box-shadow 180ms ease;
  will-change: transform, opacity;
}

.back-to-top.is-visible {
  opacity: 0.78;
  visibility: visible;
}

.back-to-top.is-visible:hover {
  opacity: 1;
  box-shadow: 0 18px 48px rgba(215, 255, 18, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

@media (hover: none), (pointer: coarse), (max-width: 760px) {
  .back-to-top {
    right: 14px;
    bottom: 14px;
    transform: none;
  }
}


/* Refined project service hero typography and clarity */
.hero--design.page-hero {
  min-height: clamp(620px, 48vw, 760px);
  align-items: center;
}

.hero--design.page-hero .hero__image {
  background-position: center center;
  background-size: cover;
  opacity: 1;
  filter: none;
  transform: none;
}

.hero--design.page-hero .hero__shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 34%, rgba(0, 0, 0, 0.34) 62%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.28), rgba(4, 33, 10, 0.08));
}

.hero--design.page-hero .hero__pattern {
  opacity: 0.24;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.82) 38%, transparent 78%);
}

.hero--design.page-hero .hero__content {
  width: min(100%, 980px);
  padding-top: clamp(104px, 8vw, 138px);
  padding-bottom: clamp(54px, 6vw, 86px);
}

.hero--design.page-hero .eyebrow {
  margin-bottom: 18px;
  font-size: clamp(12px, 0.95vw, 14px);
  letter-spacing: 0.1em;
}

.hero--design.page-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: #f3ffe8;
  font-family: "Segoe UI Black", "Arial Black", "Segoe UI", Arial, sans-serif;
  font-size: clamp(46px, 5.1vw, 76px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 0 20px rgba(245, 255, 244, 0.18), 0 0 54px rgba(84, 214, 29, 0.12);
}

.hero--design.page-hero .hero__lead {
  max-width: 720px;
  min-height: 92px;
  margin-bottom: 36px;
  color: rgba(245, 255, 244, 0.84);
  font-size: clamp(19px, 1.45vw, 23px);
  line-height: 1.48;
}

.hero--design.page-hero .hero__actions {
  align-items: center;
  gap: 16px;
}

.hero--design.page-hero .button {
  min-width: 230px;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.15;
}

.hero--design.page-hero .button--play {
  min-width: 210px;
}

@media (max-width: 980px) {
  .hero--design.page-hero {
    min-height: 690px;
  }

  .hero--design.page-hero .hero__content {
    padding-top: 128px;
  }

  .hero--design.page-hero h1 {
    max-width: 650px;
    font-size: clamp(40px, 9vw, 58px);
  }

  .hero--design.page-hero .hero__lead {
    min-height: 0;
    font-size: 19px;
  }
}

@media (max-width: 760px) {
  .hero--design.page-hero {
    min-height: 660px;
  }

  .hero--design.page-hero .hero__image {
    background-position: 68% center;
  }

  .hero--design.page-hero .hero__shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.78) 54%, rgba(5, 29, 8, 0.72) 100%);
  }

  .hero--design.page-hero h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .hero--design.page-hero .hero__actions {
    gap: 12px;
  }

  .hero--design.page-hero .button {
    width: 100%;
    min-width: 0;
  }
}


/* Sitewide typography refinement */
:root {
  --font-display: "Segoe UI Black", "Arial Black", "Segoe UI", Arial, sans-serif;
  --font-body: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  text-rendering: geometricPrecision;
}

h1,
h2,
h3,
.button,
.eyebrow,
.service-card strong,
.direction-card h3,
.detail-block h2,
.legal-summary__item strong,
.footer strong {
  font-family: var(--font-display);
  letter-spacing: 0;
}

.page-hero {
  min-height: clamp(620px, 48vw, 760px);
  align-items: center;
}

.page-hero .hero__content {
  width: min(100%, 980px);
  padding-top: clamp(104px, 8vw, 138px);
  padding-bottom: clamp(54px, 6vw, 86px);
}

.page-hero h1 {
  max-width: 800px;
  margin-bottom: 24px;
  color: #f3ffe8;
  font-size: clamp(46px, 5.1vw, 76px);
  line-height: 0.98;
  font-weight: 950;
  text-wrap: balance;
  text-shadow: 0 0 20px rgba(245, 255, 244, 0.18), 0 0 54px rgba(84, 214, 29, 0.12);
}

.page-hero .hero__lead {
  max-width: 720px;
  margin-bottom: 36px;
  color: rgba(245, 255, 244, 0.84);
  font-size: clamp(19px, 1.45vw, 23px);
  line-height: 1.48;
}

.page-hero .hero__actions,
.contact-buttons {
  align-items: center;
  gap: 16px;
}

.page-hero .button,
.contact-buttons .button {
  min-width: 220px;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.15;
}

.section-heading h2 {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  color: #f3ffe8;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.02;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(245, 255, 244, 0.76);
  font-size: 18px;
  line-height: 1.55;
}

.service-card,
.direction-card,
.detail-block,
.legal-summary__item {
  text-align: left;
}

.service-card strong,
.direction-card h3,
.detail-block h2,
.legal-summary__item strong {
  color: var(--lime);
  line-height: 1.12;
  text-wrap: balance;
}

.service-card strong {
  font-size: clamp(22px, 2vw, 30px);
}

.service-card p,
.direction-card p,
.detail-block p,
.legal-summary__item p {
  color: rgba(245, 255, 244, 0.82);
  font-size: 16px;
  line-height: 1.52;
}

.detail-block h2 {
  font-size: clamp(30px, 3vw, 46px);
}

.legal-summary__lead {
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.55;
}

.footer,
.footer p,
.footer a,
.footer span {
  font-family: var(--font-body);
}

@media (max-width: 980px) {
  .page-hero {
    min-height: 690px;
  }

  .page-hero .hero__content {
    padding-top: 128px;
  }

  .page-hero h1 {
    max-width: 650px;
    font-size: clamp(40px, 9vw, 58px);
  }

  .page-hero .hero__lead {
    font-size: 19px;
  }
}

@media (max-width: 760px) {
  .page-hero {
    min-height: 660px;
  }

  .page-hero h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .page-hero .hero__actions,
  .contact-buttons {
    gap: 12px;
  }

  .page-hero .button,
  .contact-buttons .button {
    width: 100%;
    min-width: 0;
  }

  .section-heading h2 {
    font-size: clamp(30px, 9vw, 42px);
  }
}


/* Sitewide hero background clarity */
.hero__image {
  background-size: cover;
  background-position: center center;
  opacity: 1;
  filter: none;
  transform: none;
}

.hero--home .hero__image,
.hero--lab .hero__image,
.hero--engineering .hero__image,
.hero--water .hero__image,
.hero--gas .hero__image {
  background-size: cover;
  background-position: center center;
  transform: none;
}

.hero--contacts .hero__image {
  background-size: cover;
  background-position: 58% center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.62) 38%, rgba(0, 0, 0, 0.22) 68%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.24), rgba(4, 33, 10, 0.08));
}

.hero--home .hero__shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.62) 36%, rgba(0, 0, 0, 0.2) 66%, rgba(0, 0, 0, 0.04) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.26), rgba(5, 35, 10, 0.08));
}

.hero__pattern {
  opacity: 0.24;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.72) 42%, transparent 82%);
}

@media (max-width: 760px) {
  .hero__image,
  .page-hero .hero__image {
    background-size: cover;
    background-position: 68% center;
  }

  .hero__shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.72) 54%, rgba(5, 29, 8, 0.68) 100%);
  }

  .hero__pattern {
    opacity: 0.2;
    mask-image: linear-gradient(180deg, #000 0%, transparent 82%);
  }
}


/* Home direction card fine alignment */
.direction-card--water h3 {
  transform: translateY(-18px);
}

.direction-card--water p {
  transform: translateY(-14px);
}

@media (max-width: 760px) {
  .direction-card--water h3,
  .direction-card--water p {
    transform: none;
  }
}

/* Service card heading fit */
.service-card {
  padding-right: 24px;
  padding-left: 24px;
}

.service-card strong {
  display: block;
  min-height: 0;
  max-width: 100%;
  font-size: clamp(22px, 1.8vw, 29px);
  line-height: 1.08;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.service-card-grid:not(.service-card-grid--design) .service-card strong {
  font-size: clamp(24px, 2vw, 31px);
}

.service-card p {
  max-width: 100%;
  overflow-wrap: break-word;
}

/* CSS v88 */
