@font-face {
  font-family: "AkzidenzGrotesk Heavy";
  src: url("akzidenzgrotesk/Akzidenz-grotesk-black.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Univers Bold";
  src: url("univers/UniversBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Univers Light";
  src: url("univers/UniversLight.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

:root {
  --navy-900: #001f37;
  --navy-800: #002954;
  --blue-600: #006aa3;
  --white: #ffffff;
  --font-display: "AkzidenzGrotesk Heavy", "Arial Narrow", Arial, sans-serif;
  --font-strong: "Univers Bold", "Segoe UI", Arial, sans-serif;
  --font-body: "Univers Light", "Segoe UI", Arial, sans-serif;
  --header-height: 88px;
  --site-max: 1360px;
  --transition-fast: 180ms ease;
  --transition-medium: 240ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--white);
  background: var(--navy-900);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1100;
  transform: translateY(-180%);
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-900);
  transition: transform var(--transition-fast);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-strong);
  font-size: 0.95rem;
  line-height: 1;
  transition:
    transform var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    box-shadow var(--transition-fast);
}

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

.button:focus-visible,
.site-header__nav a:focus-visible,
.hero__secondary-action:focus-visible,
.hero__case-link:focus-visible,
.irrigation-panel__toggle:focus-visible,
.site-header__burger:focus-visible,
.mobile-menu__nav a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.92);
  outline-offset: 3px;
}

.button--primary {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 16px 32px rgba(0, 31, 55, 0.18);
}

.button--primary:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 36px rgba(0, 31, 55, 0.22);
}

.button--secondary {
  border-color: rgba(0, 31, 55, 0.16);
  background: transparent;
  color: var(--navy-900);
}

.button--secondary:hover {
  background: rgba(0, 31, 55, 0.04);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition:
    background-color var(--transition-medium),
    box-shadow var(--transition-medium),
    backdrop-filter var(--transition-medium);
}

.site-header::after {
  content: "";
  position: absolute;
  left: clamp(20px, 3vw, 48px);
  right: clamp(20px, 3vw, 48px);
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  transition: opacity var(--transition-medium), background-color var(--transition-medium);
}

.site-header.is-scrolled {
  background: rgba(0, 31, 55, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 28px rgba(0, 20, 35, 0.16);
}

.site-header.is-scrolled::after {
  opacity: 0;
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 20px clamp(22px, 3vw, 42px);
  transition: padding var(--transition-medium);
}

.site-header.is-scrolled .site-header__inner {
  padding-top: 14px;
  padding-bottom: 14px;
}

.site-header__brand,
.mobile-menu__brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.site-header__brand img,
.mobile-menu__brand img {
  width: auto;
  height: clamp(32px, 2.7vw, 42px);
}

.site-header__nav {
  justify-self: center;
  padding-left: clamp(10px, 2vw, 40px);
}

.site-header__nav ul,
.mobile-menu__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__nav ul {
  display: flex;
  align-items: center;
  gap: clamp(22px, 1.9vw, 34px);
}

.site-header__nav a,
.mobile-menu__nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 6px 0;
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.94);
  transition: color var(--transition-fast);
}

.site-header__nav a::after,
.mobile-menu__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition-fast);
}

.site-header__nav a:hover,
.site-header__nav a.is-active,
.mobile-menu__nav a:hover,
.mobile-menu__nav a.is-active {
  color: var(--white);
}

.site-header__nav a:hover::after,
.site-header__nav a.is-active::after,
.mobile-menu__nav a:hover::after,
.mobile-menu__nav a.is-active::after {
  transform: scaleX(1);
}

.site-header__phone {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  padding: 6px 0;
  font-family: var(--font-strong);
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--transition-fast);
}

.site-header__phone:hover,
.site-header__phone:focus-visible {
  color: var(--white);
}

.site-header__cta {
  min-height: 48px;
  padding: 11px 20px;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.site-header__burger {
  display: none;
  position: relative;
  width: 50px;
  height: 50px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
}

.site-header__burger span {
  position: absolute;
  left: 13px;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition:
    transform var(--transition-fast),
    opacity var(--transition-fast);
}

.site-header__burger span:nth-child(1) {
  top: 16px;
}

.site-header__burger span:nth-child(2) {
  top: 24px;
}

.site-header__burger span:nth-child(3) {
  top: 32px;
}

body.menu-open .site-header__burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

body.menu-open .site-header__burger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0, 20, 35, 0.4);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.mobile-menu[hidden] {
  display: block;
}

.mobile-menu.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  width: 100vw;
  min-height: 100dvh;
  overflow-y: auto;
  padding: 18px 18px 28px;
  background:
      linear-gradient(180deg, rgba(0, 31, 55, 0.98) 0%, rgba(0, 41, 84, 0.96) 100%);
  transform-origin: top right;
  transform: scale(0.92);
  opacity: 0;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.mobile-menu.is-visible .mobile-menu__panel {
  transform: scale(1);
  opacity: 1;
}

.mobile-menu__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.mobile-menu__close {
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.mobile-menu__close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.mobile-menu__close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.92);
  outline-offset: 3px;
}

.mobile-menu__close span {
  position: absolute;
  top: 22px;
  left: 12px;
  width: 20px;
  height: 1.5px;
  background: currentColor;
}

.mobile-menu__close span:nth-child(1) {
  transform: rotate(45deg);
}

.mobile-menu__close span:nth-child(2) {
  transform: rotate(-45deg);
}

.mobile-menu__cta {
  width: 100%;
  margin-bottom: 28px;
}

.mobile-menu__nav ul {
  display: grid;
  gap: 12px;
}

.mobile-menu__nav a {
  width: 100%;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  font-size: clamp(1.08rem, 3.4vw, 1.3rem);
  line-height: 1.1;
}

.mobile-menu__nav a::after {
  display: none;
}

.mobile-menu__nav a:hover,
.mobile-menu__nav a.is-active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: clip;
  background:
    radial-gradient(circle at top right, rgba(0, 106, 163, 0.08), transparent 44%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero::before {
  top: -6%;
  left: -8%;
  right: -8%;
  bottom: -6%;
  background-image: var(--hero-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 45%;
  opacity: 0.4;
  transform: scale(1.06);
  filter: saturate(0.88);
}

.hero::after {
  background:
    linear-gradient(
      90deg,
      rgba(0, 31, 55, 0.92) 0%,
      rgba(0, 31, 55, 0.82) 22%,
      rgba(0, 41, 84, 0.52) 44%,
      rgba(0, 41, 84, 0.18) 68%,
      rgba(0, 41, 84, 0.04) 100%
    );
}

.hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 780px) 1fr;
  align-items: center;
  min-height: inherit;
  max-width: var(--site-max);
  margin: 0 auto;
  padding: calc(var(--header-height) + 22px) clamp(20px, 3vw, 48px) 36px;
  gap: 24px;
}

.hero__content {
  max-width: 780px;
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 3.7vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  max-width: 16ch;
}

.hero__copy {
  max-width: 620px;
  margin: 20px 0 0;
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 0.98vw, 1.08rem);
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.82);
}

.hero__proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  max-width: 470px;
  margin: 26px 0 0;
}

.proof-marker {
  position: relative;
  min-height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.proof-marker--link {
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.proof-marker--link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 34px rgba(0, 20, 35, 0.16);
}

.proof-marker--link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.92);
  outline-offset: 3px;
}

.proof-marker::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 1px;
  background: var(--blue-600);
}

.proof-marker--stat {
  min-height: 92px;
  padding: 14px 16px 13px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
}

.proof-marker--support {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 15px 18px;
}

.proof-marker__value-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.proof-marker__value {
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 2.6vw, 2.55rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.proof-marker__suffix {
  font-family: var(--font-strong);
  font-size: 0.9rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
}

.proof-marker__label {
  display: block;
  font-family: var(--font-strong);
  font-size: 0.86rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 18px;
  margin-top: 28px;
}

.hero__primary-action {
  padding-inline: 24px;
}

.hero__secondary-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-family: var(--font-strong);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero__secondary-action::after {
  content: "\2192";
  font-size: 1.1em;
  transition: transform var(--transition-fast);
}

.hero__secondary-action::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
}

.hero__secondary-action:hover::after {
  transform: translateX(3px);
}

.hero__case-card {
  align-self: end;
  justify-self: end;
  width: min(248px, 100%);
  margin-right: 6px;
  margin-bottom: 4px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 36px rgba(0, 22, 40, 0.18);
}

.hero__case-label {
  margin: 0 0 8px;
  font-family: var(--font-strong);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
}

.hero__case-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
}

.hero__case-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  font-family: var(--font-strong);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.88);
}

.services {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 12% 16%, rgba(0, 106, 163, 0.08), transparent 20%),
    radial-gradient(circle at 84% 10%, rgba(0, 41, 84, 0.08), transparent 18%),
    linear-gradient(180deg, #eef4f8 0%, #f3f7fa 52%, #f7fafc 100%);
  color: var(--navy-900);
  border-bottom: 1px solid rgba(0, 31, 55, 0.06);
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 31, 55, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 31, 55, 0.022) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.05));
  pointer-events: none;
}

.services__container {
  position: relative;
  z-index: 1;
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 84px clamp(20px, 3vw, 48px) 92px;
}

.services__header {
  max-width: 780px;
  margin-bottom: 34px;
}

.services__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 3.4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

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

.service-card {
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: end;
  gap: 0;
  min-height: 360px;
  padding: 30px 28px 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--navy-800);
  color: var(--white);
  box-shadow: 0 26px 54px rgba(0, 31, 55, 0.12);
  transition:
    transform var(--transition-medium),
    box-shadow var(--transition-medium),
    border-color var(--transition-medium);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--service-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: var(--service-position, center center);
  transform: scale(1.03);
  opacity: 0.32;
  filter: saturate(0.68) contrast(0.92) brightness(0.88);
  pointer-events: none;
  z-index: -1;
  transition: transform 420ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(245, 249, 252, 0.18) 0%, rgba(0, 31, 55, 0.36) 28%, rgba(0, 31, 55, 0.88) 100%),
    linear-gradient(135deg, rgba(0, 31, 55, 0.9) 0%, rgba(0, 41, 84, 0.58) 44%, rgba(0, 31, 55, 0.78) 100%);
  pointer-events: none;
  z-index: -2;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 34px 68px rgba(0, 31, 55, 0.18);
}

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

.service-card__title {
  max-width: 17ch;
  margin: 0;
  font-family: var(--font-strong);
  font-size: 1.22rem;
  line-height: 1.22;
  color: var(--white);
  text-shadow: 0 12px 22px rgba(0, 12, 24, 0.28);
}

.service-card__description {
  max-width: 50ch;
  margin: 14px 0 0;
  font-size: 0.96rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.88);
}

.service-card__details {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.service-card__details li {
  position: relative;
  padding-left: 14px;
  font-family: var(--font-strong);
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.94);
}

.service-card__details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  margin-top: 18px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--font-strong);
  font-size: 0.82rem;
  line-height: 1;
  color: var(--white);
  backdrop-filter: blur(8px);
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.service-card__cta:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
}

.service-card__cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.92);
  outline-offset: 3px;
}

.irrigation-types {
  background:
    linear-gradient(180deg, rgba(232, 240, 246, 0.96) 0%, rgba(223, 234, 242, 0.98) 100%);
  color: var(--navy-900);
}

.irrigation-types__container {
  max-width: none;
  margin: 0 auto;
  padding: 84px 0 0;
}

.irrigation-types__header {
  max-width: calc(var(--site-max) + clamp(40px, 6vw, 96px));
  margin: 0 auto 26px;
  padding: 0 clamp(20px, 3vw, 48px);
}

.irrigation-types__title,
.irrigation-types__intro {
  max-width: 760px;
}

.irrigation-types__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.2vw, 3.25rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.irrigation-types__intro {
  max-width: 680px;
  margin: 14px 0 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(0, 31, 55, 0.76);
}

.irrigation-types__carousel {
  display: flex;
  gap: 0;
  width: 100%;
  min-height: 560px;
}

.irrigation-panel {
  position: relative;
  display: flex;
  flex: 0.82 1 0;
  align-items: stretch;
  min-width: 0;
  min-height: 560px;
  overflow: hidden;
  border: 0;
  background:
    linear-gradient(180deg, rgba(0, 31, 55, 0.14), rgba(0, 31, 55, 0.34)),
    var(--navy-800);
  cursor: pointer;
  transition:
    border-color var(--transition-medium),
    box-shadow var(--transition-medium);
}

.irrigation-panel + .irrigation-panel {
  margin-left: 0;
}

.irrigation-panel::before,
.irrigation-panel::after {
  content: "";
  position: absolute;
  inset: 0;
}

.irrigation-panel::before {
  background-image: var(--panel-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(0.88) contrast(1.02);
}

.irrigation-panel::after {
  background:
    linear-gradient(180deg, rgba(0, 31, 55, 0.2) 0%, rgba(0, 31, 55, 0.44) 30%, rgba(0, 31, 55, 0.9) 100%);
}

.irrigation-panel.is-active {
  flex: 2.15 1 0;
  box-shadow: 0 22px 48px rgba(0, 18, 31, 0.12);
}

.irrigation-panel__surface {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  padding: 20px 18px 18px;
  overflow: hidden;
  will-change: transform;
}

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

.irrigation-panel__title {
  width: auto;
  max-width: min(420px, 100%);
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 1.5vw, 1.72rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--white);
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.irrigation-panel__title--long {
  font-size: clamp(1.08rem, 1.28vw, 1.48rem);
  line-height: 1.02;
}

.irrigation-panel__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-strong);
  font-size: 0.76rem;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition:
    color var(--transition-fast),
    opacity var(--transition-fast);
}

.irrigation-panel__toggle:hover {
  color: rgba(255, 255, 255, 0.96);
}

.irrigation-panel__toggle::after {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition-fast);
}

.irrigation-panel.is-active .irrigation-panel__toggle::after {
  transform: rotate(-135deg);
}

.irrigation-panel__details {
  width: min(420px, calc(100vw - 72px));
  max-width: none;
  margin-top: 16px;
  margin-bottom: 0;
}

.irrigation-panel__description {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.84);
}

.irrigation-panel__list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.irrigation-panel__list li {
  position: relative;
  padding-left: 14px;
  font-family: var(--font-strong);
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.irrigation-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
}

.process {
  position: relative;
  overflow: clip;
  background: #001f37;
  color: var(--navy-900);
}

.process::before {
  display: none;
}

.process::after {
  display: none;
}

.process__container {
  position: relative;
  z-index: 1;
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 82px clamp(20px, 3vw, 40px) 88px;
}

.process__header {
  margin-bottom: 28px;
}

.process__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.2vw, 3.3rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--white);
}

.process__list {
  position: relative;
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process__item {
  position: relative;
}

.process__item:nth-child(odd) {
  padding-right: clamp(20px, 3vw, 44px);
}

.process__item:nth-child(even) {
  padding-left: clamp(20px, 3vw, 44px);
}

.process-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
  align-items: stretch;
  min-height: 318px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.94)),
    rgba(255, 255, 255, 0.94);
  box-shadow:
    0 30px 70px rgba(0, 31, 55, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
  transition:
    transform var(--transition-medium),
    box-shadow var(--transition-medium),
    border-color var(--transition-medium);
}

.process-card--reverse {
  grid-template-columns: minmax(300px, 400px) minmax(0, 1fr);
}

.process__item:nth-child(3n + 1) .process-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 249, 253, 0.94)),
    rgba(255, 255, 255, 0.95);
}

.process__item:nth-child(3n + 2) .process-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.94)),
    rgba(255, 255, 255, 0.95);
}

.process__item:nth-child(3n) .process-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 251, 0.94)),
    rgba(255, 255, 255, 0.95);
}

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

.process-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 36px 78px rgba(0, 31, 55, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.process-card__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 34px 34px 36px;
}

.process-card__meta {
  margin-bottom: 8px;
}

.process-card__step {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(0, 41, 84, 0.54);
  text-shadow: 0 10px 24px rgba(255, 255, 255, 0.78);
}

.process__item:nth-child(3n + 1) .process-card__step {
  color: rgba(0, 106, 163, 0.58);
}

.process__item:nth-child(3n + 2) .process-card__step {
  color: rgba(0, 41, 84, 0.56);
}

.process__item:nth-child(3n) .process-card__step {
  color: rgba(28, 95, 130, 0.52);
}

.process-card__title {
  margin: 0;
  font-family: var(--font-strong);
  font-size: 1.34rem;
  line-height: 1.18;
  color: var(--navy-900);
}

.process-card__description {
  max-width: 58ch;
  margin: 16px 0 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(0, 31, 55, 0.76);
}

.process-card__media {
  position: relative;
  min-height: 318px;
  overflow: hidden;
}

.cases-preview {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 12% 16%, rgba(0, 106, 163, 0.08), transparent 24%),
    radial-gradient(circle at 84% 14%, rgba(0, 41, 84, 0.06), transparent 20%),
    linear-gradient(180deg, #f7fbfd 0%, #f1f6f9 100%);
  color: var(--navy-900);
  border-top: 1px solid rgba(0, 31, 55, 0.08);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.cases-preview::before,
.cases-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 31, 55, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 31, 55, 0.022) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.05));
  pointer-events: none;
}

.cases-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 24%);
  pointer-events: none;
}

.cases-preview__container {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  padding: 94px 0 98px;
}

.cases-preview__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  width: min(1360px, calc(100vw - clamp(40px, 6vw, 96px)));
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.cases-preview__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}

.cases-preview__intro {
  max-width: 62ch;
  margin: 14px 0 0;
  font-size: 1rem;
  line-height: 1.68;
  color: rgba(0, 31, 55, 0.74);
}

.cases-preview__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 2px;
  font-family: var(--font-strong);
  font-size: 0.96rem;
  white-space: nowrap;
  color: var(--navy-900);
  transition: color var(--transition-fast);
}

.cases-preview__link:hover {
  color: var(--blue-600);
}

.cases-preview__grid,
.cases-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.cases-preview__grid {
  grid-template-columns: 1fr;
}

.cases-preview__grid .case-card,
.cases-preview__grid .case-card--featured {
  grid-column: auto;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  grid-template-rows: none;
}

.cases-preview__grid .case-card:nth-child(odd) {
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
}

.cases-preview__grid .case-card:nth-child(even) {
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
}

.cases-page__section--listing {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.cases-page__section--listing > .cases-page__header {
  width: min(1360px, calc(100vw - clamp(40px, 6vw, 96px)));
  margin-left: auto;
  margin-right: auto;
}

.cases-page__grid {
  align-items: stretch;
}

.case-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 290px auto;
  cursor: pointer;
  border: 1px solid rgba(0, 41, 84, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(246, 251, 253, 0.985));
  box-shadow: 0 18px 34px rgba(0, 18, 32, 0.08);
  transition:
    transform var(--transition-medium),
    filter var(--transition-medium),
    box-shadow var(--transition-medium);
}

.case-card:focus-visible {
  outline: 2px solid rgba(0, 106, 163, 0.62);
  outline-offset: -2px;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(0, 106, 163, 0.34), rgba(0, 31, 55, 0.08));
  z-index: 2;
  pointer-events: none;
}

.case-card--featured {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.88fr);
  grid-template-rows: none;
}

.case-card--featured .case-card__media {
  min-height: 100%;
}

.cases-preview__grid .case-card__media,
.cases-preview__grid .case-card--featured .case-card__media {
  min-height: 100%;
}

.case-card--featured .case-card__content {
  align-self: stretch;
  margin: 0;
  padding: 30px 30px 28px;
  border-top: 0;
  border-left: 1px solid rgba(0, 41, 84, 0.12);
  background:
    radial-gradient(circle at top right, rgba(0, 106, 163, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(243, 249, 252, 0.98));
}

.cases-preview__grid .case-card__content,
.cases-preview__grid .case-card--featured .case-card__content {
  padding: 30px 30px 28px;
  border-top: 0;
  border-left: 1px solid rgba(0, 41, 84, 0.12);
  background:
    radial-gradient(circle at top right, rgba(0, 106, 163, 0.075), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 250, 252, 0.98));
}

.cases-preview__grid .case-card:nth-child(odd) .case-card__content {
  background:
    radial-gradient(circle at top right, rgba(0, 106, 163, 0.095), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(246, 250, 252, 0.98));
}

.cases-preview__grid .case-card:nth-child(even) .case-card__media {
  grid-column: 2;
}

.cases-preview__grid .case-card:nth-child(even) .case-card__content {
  grid-column: 1;
  grid-row: 1;
  border-left: 0;
  border-right: 1px solid rgba(0, 41, 84, 0.12);
  background:
    radial-gradient(circle at top left, rgba(0, 41, 84, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(248, 251, 253, 0.995), rgba(241, 247, 250, 0.985));
  box-shadow: inset -1px 0 0 rgba(0, 41, 84, 0.04);
}

.case-card--reserved {
  filter: saturate(0.92);
}

.case-card--reserved .case-card__details {
  background: linear-gradient(180deg, rgba(241, 247, 250, 0.94), rgba(250, 252, 253, 0.9));
}

.case-card:hover {
  z-index: 1;
  transform: translateY(-4px);
  box-shadow: 0 30px 46px rgba(0, 18, 32, 0.16);
}

.case-card__media {
  position: relative;
  display: block;
  min-height: 290px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 31, 55, 0.24)),
    var(--case-image) center/cover no-repeat;
  transition:
    transform 360ms ease;
  filter: saturate(1.04) contrast(1.03);
}

.case-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 18%),
    linear-gradient(180deg, rgba(0, 31, 55, 0.05) 0%, rgba(0, 31, 55, 0.34) 100%);
}

.case-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.case-card:hover .case-card__media {
  transform: scale(1.02);
}

.case-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin: 0;
  min-height: 100%;
  padding: 24px 22px 22px;
  border-top: 1px solid rgba(0, 106, 163, 0.14);
  background:
    radial-gradient(circle at top right, rgba(0, 106, 163, 0.075), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 250, 252, 0.98));
}

.case-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.42rem;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: rgba(0, 31, 55, 0.96);
}

.cases-preview__grid .case-card__title {
  font-size: clamp(1.9rem, 2.7vw, 2.55rem);
  line-height: 0.94;
  max-width: 13ch;
}

.case-card__context {
  display: inline-flex;
  width: fit-content;
  margin: -4px 0 0;
  padding: 7px 11px 6px;
  border: 1px solid rgba(0, 106, 163, 0.14);
  background: rgba(0, 106, 163, 0.065);
  font-family: var(--font-strong);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 41, 84, 0.76);
}

.case-card__summary {
  margin: 0;
  max-width: 40ch;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(0, 31, 55, 0.82);
}

.case-card__details {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 9px 12px;
  margin: 0;
  padding: 15px 14px 13px;
  border: 1px solid rgba(0, 106, 163, 0.12);
  background:
    linear-gradient(180deg, rgba(232, 244, 249, 0.82), rgba(248, 251, 252, 0.97));
}

.cases-preview__grid .case-card:nth-child(even) .case-card__details {
  background:
    linear-gradient(180deg, rgba(237, 244, 247, 0.9), rgba(248, 251, 252, 0.98));
}

.case-card__details dt {
  margin: 0;
  font-family: var(--font-strong);
  font-size: 0.8rem;
  color: rgba(0, 41, 84, 0.84);
}

.case-card__details dd {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.54;
  color: rgba(0, 31, 55, 0.72);
}

.case-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  align-self: flex-start;
  font-family: var(--font-strong);
  font-size: 0.94rem;
  color: var(--blue-600);
  transition: color var(--transition-fast);
}

.case-card__link:hover {
  color: var(--navy-900);
}

.case-card__link::after,
.cases-preview__link::after {
  content: "→";
  transition: transform var(--transition-fast);
}

.case-card:hover .case-card__link::after,
.case-card__link:hover::after,
.cases-preview__link:hover::after {
  transform: translateX(3px);
}

.case-card__link::after,
.cases-preview__link::after {
  content: "\203A";
}

.cases-page {
  position: relative;
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 106, 163, 0.08), transparent 18%),
    radial-gradient(circle at 82% 8%, rgba(0, 41, 84, 0.08), transparent 18%),
    linear-gradient(180deg, #edf4f8 0%, #f3f7fa 100%);
  color: var(--navy-900);
}

.cases-page__hero,
.case-page__hero {
  position: relative;
  overflow: clip;
  min-height: 50vh;
  background:
    linear-gradient(180deg, rgba(0, 31, 55, 0.84) 0%, rgba(0, 31, 55, 0.64) 100%),
    var(--page-hero-image) center/cover no-repeat;
  color: var(--white);
}

.cases-page__hero::before,
.case-page__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 31, 55, 0.9) 0%, rgba(0, 31, 55, 0.72) 42%, rgba(0, 31, 55, 0.34) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 22%);
  pointer-events: none;
}

.cases-page__hero-inner,
.case-page__hero-inner {
  position: relative;
  z-index: 1;
  width: min(1360px, calc(100vw - clamp(40px, 6vw, 96px)));
  margin: 0 auto;
  padding: calc(var(--header-height) + 68px) 0 70px;
}

.cases-page__eyebrow,
.case-page__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 16px;
  padding: 7px 12px 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  font-family: var(--font-strong);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.cases-page__title,
.case-page__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.cases-page__lead,
.case-page__lead {
  max-width: 58ch;
  margin: 18px 0 0;
  font-size: 1.02rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 12px 24px rgba(0, 18, 32, 0.14);
}

.cases-page__section,
.case-page__section {
  width: min(1360px, calc(100vw - clamp(40px, 6vw, 96px)));
  margin: 0 auto 18px;
  padding: 34px 34px 36px;
  border: 1px solid rgba(0, 31, 55, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 253, 0.9));
  box-shadow: 0 22px 46px rgba(0, 31, 55, 0.05);
}

.case-page__section {
  width: min(1120px, calc(100vw - clamp(40px, 6vw, 96px)));
  padding: 26px 28px 28px;
}

.cases-page__header {
  margin-bottom: 18px;
}

.cases-page__section-title,
.case-page__section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.case-page__section-title {
  margin-bottom: 16px;
}

.case-page__section--facts {
  position: relative;
  z-index: 2;
  margin-top: -64px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 250, 252, 0.94));
  box-shadow: 0 30px 58px rgba(0, 31, 55, 0.1);
}

.cases-page__section-copy,
.case-page__section-copy {
  max-width: 62ch;
  margin: 16px 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(0, 31, 55, 0.76);
}

.case-page__facts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.case-page__fact {
  padding: 18px 16px 16px;
  border: 1px solid rgba(0, 31, 55, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 251, 0.9));
  box-shadow: 0 18px 36px rgba(0, 31, 55, 0.05);
}

.case-page__fact-label {
  margin: 0;
  font-family: var(--font-strong);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 31, 55, 0.48);
}

.case-page__fact-value {
  margin: 10px 0 0;
  font-family: var(--font-strong);
  font-size: 1.02rem;
  line-height: 1.5;
  color: rgba(0, 31, 55, 0.84);
}

.case-page__text {
  max-width: 78ch;
  margin: 0;
  font-size: 1rem;
  line-height: 1.74;
  color: rgba(0, 31, 55, 0.8);
}

.case-page__subheading {
  margin: 24px 0 10px;
  font-family: var(--font-strong);
  font-size: 1.08rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}

.case-page__section-title + .case-page__subheading {
  margin-top: 0;
}

.case-page__list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
  max-width: 76ch;
  color: rgba(0, 31, 55, 0.8);
}

.case-page__list li {
  padding-left: 4px;
  line-height: 1.68;
}

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

.case-page__section--gallery {
  width: min(1280px, calc(100vw - clamp(40px, 6vw, 96px)));
}

.case-page__section--gallery .case-page__gallery {
  grid-template-columns: 1.15fr 1fr 1fr;
}

.case-page__section--gallery .case-page__gallery figure:first-child {
  grid-column: span 2;
}

.case-page__section--gallery .case-page__gallery figure:first-child img {
  height: 320px;
}

.case-page__gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 31, 55, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 36px rgba(0, 31, 55, 0.05);
  transition:
    transform var(--transition-medium),
    box-shadow var(--transition-medium);
}

.case-page__gallery figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 44px rgba(0, 31, 55, 0.08);
}

.case-page__gallery img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 360ms ease;
}

.case-page__gallery figure:hover img {
  transform: scale(1.03);
}

.case-page__gallery figcaption {
  padding: 12px 14px 14px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(0, 31, 55, 0.68);
}

.case-page__cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 86% 16%, rgba(0, 106, 163, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(0, 31, 55, 0.98) 0%, rgba(0, 41, 84, 0.94) 100%);
  box-shadow: 0 28px 56px rgba(0, 20, 35, 0.16);
}

.case-page__section--cta {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 8px 0 18px;
}

.case-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.case-page__cta-band .case-page__section-title,
.case-page__cta-band .case-page__section-copy {
  color: var(--white);
}

.case-page__cta-band .case-page__section-copy {
  color: rgba(255, 255, 255, 0.76);
}

.case-page__cta-band .button--secondary {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.case-page__cta-band .button--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.process-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 106, 163, 0.16), rgba(0, 31, 55, 0.28));
}

.process__item:nth-child(3n + 1) .process-card__media::after {
  background:
    linear-gradient(180deg, rgba(0, 106, 163, 0.2), rgba(0, 31, 55, 0.3));
}

.process__item:nth-child(3n + 2) .process-card__media::after {
  background:
    linear-gradient(180deg, rgba(0, 84, 128, 0.18), rgba(0, 31, 55, 0.3));
}

.process__item:nth-child(3n) .process-card__media::after {
  background:
    linear-gradient(180deg, rgba(44, 123, 160, 0.18), rgba(0, 31, 55, 0.28));
}

.process-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.process-card:hover .process-card__image {
  transform: scale(1.035);
}

.lighting-promo {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.07), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(9, 22, 34, 0.18), transparent 24%),
    linear-gradient(180deg, #173649 0%, #1c4258 52%, #214d66 100%);
  color: var(--white);
}

.lighting-promo__container {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 560px;
  width: 100%;
  margin: 0 auto;
  padding: 84px clamp(20px, 3vw, 48px) 92px;
}

.lighting-promo__mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, minmax(280px, 1fr));
  gap: 0;
  opacity: 1;
  pointer-events: none;
}

.lighting-promo__tile {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(23, 54, 73, 0.18), rgba(10, 25, 37, 0.54)),
    var(--lighting-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: none;
}

.lighting-promo__tile:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.lighting-promo__tile:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.lighting-promo__tile:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.lighting-promo__tile:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}

.lighting-promo__tile:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}

.lighting-promo__tile:nth-child(6) {
  grid-column: 3;
  grid-row: 2;
}

.lighting-promo__content {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: 34px 34px 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(16, 37, 52, 0.84), rgba(16, 37, 52, 0.92));
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 60px rgba(0, 12, 24, 0.22);
  transition: box-shadow var(--transition-medium);
}

.lighting-promo__content::before {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 1px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(90deg, transparent 0%, rgba(110, 212, 255, 0.7) 48%, transparent 56%),
    linear-gradient(180deg, transparent 0%, rgba(96, 201, 255, 0.5) 42%, transparent 52%);
  background-size:
    100% 100%,
    220% 100%,
    100% 220%;
  background-position:
    0 0,
    -160% 0,
    0 -160%;
  background-repeat: no-repeat;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: lighting-border-travel 6.8s ease-in-out infinite;
}

.lighting-promo__content::after {
  content: "";
  position: absolute;
  inset: -18px;
  background:
    radial-gradient(circle at 18% 18%, rgba(82, 195, 255, 0.12), transparent 18%),
    radial-gradient(circle at 82% 78%, rgba(120, 214, 255, 0.1), transparent 18%);
  opacity: 0.75;
  filter: blur(18px);
  pointer-events: none;
  animation: lighting-border-glow 6.5s ease-in-out infinite alternate;
}

.lighting-promo__eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-strong);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.lighting-promo__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.lighting-promo__copy {
  max-width: 48ch;
  margin: 16px 0 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.84);
}

.lighting-promo__cta {
  margin-top: 22px;
}

.contact-section {
  background:
    linear-gradient(180deg, #eff5f9 0%, #f7fafc 100%);
  color: var(--navy-900);
  border-top: 1px solid rgba(0, 31, 55, 0.08);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.contact-section__container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 52px);
  width: min(1360px, calc(100vw - clamp(40px, 6vw, 96px)));
  margin: 0 auto;
  padding: 96px 0 100px;
}

.contact-section__eyebrow {
  margin: 0;
  font-family: var(--font-strong);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 31, 55, 0.54);
}

.contact-section__title {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.contact-section__copy {
  max-width: 52ch;
  margin: 18px 0 0;
  font-size: 1.04rem;
  line-height: 1.72;
  color: rgba(0, 31, 55, 0.78);
}

.contact-section__meta {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-section__meta-item {
  display: block;
  padding: 16px 18px;
  border: 1px solid rgba(0, 31, 55, 0.1);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(0, 31, 55, 0.84);
  box-shadow: 0 16px 34px rgba(0, 31, 55, 0.05);
}

.contact-section__meta-item--static {
  margin: 0;
}

.contact-form {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(0, 31, 55, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 48px rgba(0, 31, 55, 0.08);
}

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

.contact-form__field {
  display: grid;
  gap: 8px;
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form__field span {
  font-family: var(--font-strong);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0, 31, 55, 0.56);
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  border: 1px solid rgba(0, 31, 55, 0.14);
  border-radius: 0;
  background: rgba(245, 248, 251, 0.9);
  padding: 14px 16px;
  font: inherit;
  color: var(--navy-900);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast);
}

.contact-form__field textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: rgba(0, 106, 163, 0.48);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 106, 163, 0.12);
}

.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
}

.contact-form__submit {
  min-width: 220px;
}

.contact-form__submit:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.contact-form__frame {
  width: 0;
  height: 0;
  border: 0;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-form__note {
  max-width: 34ch;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.58;
  color: rgba(0, 31, 55, 0.58);
}

.contact-form.is-success .contact-form__note {
  color: #1e6b4b;
}

.contact-form.is-error .contact-form__note {
  color: #9f2f2f;
}

@keyframes lighting-border-glow {
  from {
    opacity: 0.45;
    transform: scale(0.98);
  }

  to {
    opacity: 0.78;
    transform: scale(1.02);
  }
}

@keyframes lighting-border-travel {
  0% {
    background-position:
      0 0,
      -160% 0,
      0 -160%;
  }

  30% {
    background-position:
      0 0,
      160% 0,
      0 -20%;
  }

  55% {
    background-position:
      0 0,
      160% 0,
      0 160%;
  }

  80% {
    background-position:
      0 0,
      -40% 0,
      0 160%;
  }

  100% {
    background-position:
      0 0,
      -160% 0,
      0 -160%;
  }
}

.placeholder-sections {
  background: #f5f8fb;
  color: var(--navy-900);
}

.placeholder-section {
  max-width: var(--site-max);
  margin: 0 auto;
  min-height: 52vh;
  padding: 112px clamp(20px, 3vw, 48px);
  border-top: 1px solid rgba(0, 31, 55, 0.08);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.placeholder-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 40px;
  align-items: center;
}

.placeholder-section__body {
  min-width: 0;
}

.placeholder-section__eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-strong);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 41, 84, 0.58);
}

.placeholder-section__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.placeholder-section__copy {
  max-width: 700px;
  margin: 18px 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(0, 31, 55, 0.78);
}

.placeholder-section__actions {
  margin-top: 28px;
}

.placeholder-section__cta {
  width: fit-content;
}

.placeholder-section__visual {
  position: relative;
}

.placeholder-section__highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.placeholder-section__highlight-card {
  min-height: 124px;
  display: flex;
  align-items: end;
  padding: 16px;
  border: 1px solid rgba(0, 41, 84, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 250, 0.98));
  box-shadow: 0 16px 30px rgba(0, 18, 32, 0.06);
  font-family: var(--font-strong);
  font-size: 0.96rem;
  line-height: 1.3;
  color: var(--navy-900);
}

.placeholder-section--catalog {
  position: relative;
  max-width: none;
  margin: 0;
  padding-top: 128px;
  padding-bottom: 128px;
  background:
    linear-gradient(180deg, rgba(0, 31, 55, 0.7), rgba(0, 31, 55, 0.74)),
    url("services-supply.jpg") center / cover no-repeat;
}

.placeholder-section--catalog::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.14;
  pointer-events: none;
}

.placeholder-section--catalog .placeholder-section__inner {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, calc(100vw - 48px));
  margin: 0 auto;
}

.placeholder-section__body--centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.placeholder-section--catalog .placeholder-section__title {
  max-width: none;
  color: var(--white);
}

.placeholder-section--catalog .placeholder-section__copy {
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.84);
}

.placeholder-section--catalog .placeholder-section__actions {
  justify-content: center;
}

.about-page {
  background: #eef4f8;
  color: var(--navy-900);
}

.about-page__header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 31, 55, 0.94);
  backdrop-filter: blur(16px);
}

.about-page__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 16px clamp(20px, 3vw, 48px);
}

.about-page__brand img {
  width: auto;
  height: 36px;
}

.about-page__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.about-page__links a {
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
}

.about-page__links a[aria-current="page"] {
  color: var(--white);
}

.about-page__cta {
  min-height: 46px;
}

.about-page__hero {
  position: relative;
  overflow: clip;
  background:
    linear-gradient(180deg, rgba(0, 31, 55, 0.9), rgba(0, 31, 55, 0.82)),
    url("reg irrigation.jpg") center/cover no-repeat,
    linear-gradient(180deg, #001f37 0%, #002954 100%);
  color: var(--white);
}

.about-page__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 31, 55, 0.88) 0%, rgba(0, 31, 55, 0.62) 45%, rgba(0, 31, 55, 0.28) 100%);
}

.about-page__hero-inner,
.about-page__section {
  position: relative;
  z-index: 1;
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 88px clamp(20px, 3vw, 48px);
}

.about-page__hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 860px) 1fr;
  align-items: end;
  min-height: 68vh;
}

.about-page__eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-strong);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.about-page__title {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.about-page__lead {
  max-width: 70ch;
  margin: 24px 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

.about-page__subcopy {
  max-width: 64ch;
  margin: 14px 0 0;
  font-family: var(--font-strong);
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.about-page__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.about-page__stat {
  padding: 16px 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.about-page__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.about-page__stat-label {
  display: block;
  margin-top: 6px;
  font-family: var(--font-strong);
  font-size: 0.84rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.84);
}

.about-page__section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.about-page__section--light {
  background: #f6f9fb;
}

.about-page__section--grid {
  background:
    linear-gradient(180deg, #eaf1f6 0%, #edf4f8 100%);
}

.about-page__section-title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.about-page__section-intro {
  max-width: 820px;
  margin-bottom: 24px;
}

.about-page__section-copy {
  max-width: 62ch;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(0, 31, 55, 0.78);
}

.about-page__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.about-page__text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(0, 31, 55, 0.82);
}

.about-page__note {
  padding: 24px 24px 22px;
  border: 1px solid rgba(0, 31, 55, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(0, 31, 55, 0.06);
}

.about-page__note p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(0, 31, 55, 0.8);
}

.about-page__feature-grid {
  display: grid;
  gap: 18px;
}

.about-page__feature-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-page__feature-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-page__feature-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.about-page__feature-card {
  min-height: 100%;
  padding: 22px 20px;
  border: 1px solid rgba(0, 31, 55, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(0, 31, 55, 0.06);
}

.about-page__feature-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-strong);
  font-size: 1.02rem;
  line-height: 1.25;
}

.about-page__feature-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.62;
  color: rgba(0, 31, 55, 0.78);
}

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

.about-page__experience-card {
  padding: 18px 18px 16px;
  border: 1px solid rgba(0, 31, 55, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(0, 31, 55, 0.06);
}

.about-page__experience-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.about-page__experience-label {
  display: block;
  margin-top: 8px;
  font-family: var(--font-strong);
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(0, 31, 55, 0.76);
}

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

.about-page__card {
  padding: 22px 20px;
  border: 1px solid rgba(0, 31, 55, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px rgba(0, 31, 55, 0.06);
}

.about-page__card h3 {
  margin: 0 0 10px;
  font-family: var(--font-strong);
  font-size: 1.04rem;
}

.about-page__card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.62;
  color: rgba(0, 31, 55, 0.78);
}

.about-page__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-page__list li {
  position: relative;
  padding-left: 16px;
  font-size: 1rem;
  line-height: 1.68;
  color: rgba(0, 31, 55, 0.82);
}

.about-page__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 1px;
  background: var(--blue-600);
}

.about-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.about-page__process-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: about-process;
}

.about-page__process-strip li {
  position: relative;
  min-height: 120px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(0, 31, 55, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px rgba(0, 31, 55, 0.05);
  font-family: var(--font-strong);
  font-size: 0.9rem;
  line-height: 1.4;
  counter-increment: about-process;
}

.about-page__process-strip li::before {
  content: counter(about-process, decimal-leading-zero);
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1;
  color: rgba(0, 106, 163, 0.72);
}

.about-page__section--cta {
  background: #001f37;
  color: var(--white);
}

.about-page__cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.about-page__section--cta .about-page__section-title,
.about-page__section--cta .about-page__section-copy {
  color: var(--white);
}

.about-page__section--cta .about-page__section-copy {
  color: rgba(255, 255, 255, 0.78);
}

.about-page__section--cta .button--secondary {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.about-page__section--cta .button--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(0, 106, 163, 0.12), transparent 34%),
    linear-gradient(180deg, #001f37 0%, #001a30 100%);
  color: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.12;
  pointer-events: none;
}

.site-footer__container {
  position: relative;
  z-index: 1;
  width: min(1360px, calc(100vw - clamp(40px, 6vw, 96px)));
  margin: 0 auto;
  padding: 54px 0 26px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(0, 1fr));
  gap: 34px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__column {
  min-width: 0;
  padding-right: 12px;
}

.site-footer__column:not(:first-child) {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96);
}

.site-footer__logo {
  display: block;
  width: auto;
  max-width: min(220px, 100%);
  height: 34px;
  object-fit: contain;
}

.site-footer__copy {
  margin: 0;
  max-width: 32ch;
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer__list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.site-footer__list a,
.site-footer__bottom a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  transition: color 180ms ease, opacity 180ms ease;
}

.site-footer__list a:hover,
.site-footer__list a:focus-visible,
.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
  color: var(--white);
}

.site-footer__list:not(.site-footer__list--contacts) a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding-bottom: 2px;
}

.site-footer__list:not(.site-footer__list--contacts) a::after {
  content: "";
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
  transition: width 180ms ease;
}

.site-footer__list:not(.site-footer__list--contacts) a:hover::after,
.site-footer__list:not(.site-footer__list--contacts) a:focus-visible::after {
  width: 16px;
}

.site-footer__list--contacts li {
  display: grid;
  gap: 5px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__list--contacts li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.site-footer__list--contacts span {
  font-family: var(--font-strong);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.site-footer__list--contacts strong {
  font-family: var(--font-strong);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__list--contacts a,
.site-footer__list--contacts strong {
  font-size: 0.96rem;
  line-height: 1.55;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.52);
}

.site-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 24px;
}

.site-footer__bottom-links a:first-child {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer__bottom-links a:last-child {
  font-family: var(--font-strong);
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1279px) {
  .hero__title {
    max-width: 15ch;
    font-size: clamp(2.2rem, 4.15vw, 3.6rem);
  }

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

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

  .irrigation-types__carousel {
    min-height: 520px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
  }

  .irrigation-panel {
    flex: 0 0 248px;
    min-height: 520px;
    scroll-snap-align: start;
  }

  .irrigation-panel.is-active {
    flex-basis: 420px;
  }

  .process-card,
  .process-card--reverse {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

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

  .about-page__feature-grid--four,
  .about-page__feature-grid--five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page__feature-grid--three,
  .about-page__experience-grid,
  .about-page__process-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cases-preview__grid,
  .cases-page__grid,
  .case-page__facts,
  .case-page__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-card--featured {
    grid-column: 1 / -1;
  }

  .case-page__section--gallery .case-page__gallery figure:first-child {
    grid-column: span 2;
  }

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

  .site-footer__column:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

}

@media (max-width: 1023px) {
  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header__nav,
  .site-header__cta {
    display: none;
  }

  .site-header__phone {
    display: none;
  }

  .site-header__burger {
    display: inline-flex;
    justify-self: end;
    margin-left: 0;
  }

  .site-header__brand {
    min-width: 0;
  }

  .site-header__brand img {
    height: 34px;
  }

  .mobile-menu__panel {
      padding: 18px 18px 24px;
    }

  .mobile-menu__topline {
    margin-bottom: 20px;
  }

  .mobile-menu__cta {
    margin-bottom: 20px;
  }

  .mobile-menu__nav ul {
    gap: 14px;
  }

  .mobile-menu__nav a {
    font-size: clamp(1.15rem, 4vw, 1.45rem);
  }

  .hero::before {
    left: -10%;
    right: -10%;
    background-position: 50% 45%;
    opacity: 0.34;
  }

  .hero::after {
    background:
      linear-gradient(
        120deg,
        rgba(0, 31, 55, 0.9) 0%,
        rgba(0, 31, 55, 0.78) 24%,
        rgba(0, 41, 84, 0.5) 52%,
        rgba(0, 41, 84, 0.18) 100%
      );
  }

  .hero__container {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 32px;
    padding-top: calc(var(--header-height) + 28px);
    padding-bottom: 36px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__copy {
    max-width: 640px;
  }

  .hero__case-card {
    justify-self: start;
    width: min(280px, 100%);
    margin: 0;
  }

  .services__container {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .irrigation-types__container {
    padding-top: 68px;
    padding-bottom: 0;
  }

  .irrigation-panel {
    flex-basis: 260px;
    min-height: 500px;
  }

  .irrigation-panel.is-active {
    flex-basis: 380px;
  }

  .process__container {
    padding-top: 66px;
    padding-bottom: 70px;
  }

  .cases-preview__container,
  .cases-page__section,
  .case-page__section {
    padding-top: 72px;
    padding-bottom: 74px;
  }

  .cases-page__hero-inner,
  .case-page__hero-inner {
    padding-top: calc(var(--header-height) + 58px);
    padding-bottom: 60px;
  }

  .cases-preview__header,
  .case-page__cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-page__section {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 24px 28px;
  }

  .case-card--featured .case-card__content {
    margin: 0;
    padding: 24px 24px 22px;
  }

  .case-page__section--facts {
    margin-top: -42px;
  }

  .case-page__section > .case-page__section-title,
  .case-page__section > .case-page__facts,
  .case-page__section > .case-page__text,
  .case-page__section > .case-page__list,
  .case-page__section > .case-page__gallery,
  .case-page__section > .case-page__cta-band {
    grid-column: 1;
  }

  .process__header {
    margin-bottom: 24px;
  }

  .contact-section__container {
    grid-template-columns: 1fr;
    padding-top: 76px;
    padding-bottom: 78px;
  }

  .contact-section__copy {
    max-width: 60ch;
  }

  .site-footer__grid {
    gap: 22px;
  }

  .site-footer__column {
    padding-right: 0;
  }

  .site-footer__column:nth-child(2n) {
    padding-left: 22px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-footer__column:nth-child(2n + 1) {
    padding-left: 0;
    border-left: 0;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__bottom-links {
    justify-content: flex-start;
  }

  .process__list {
    gap: 16px;
  }

  .process__item:nth-child(odd),
  .process__item:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
  }

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

  .process-card__media {
    order: -1;
    min-height: 240px;
  }

  .about-page__nav {
    flex-wrap: wrap;
  }

  .about-page__hero-inner,
  .about-page__columns,
  .about-page__cards {
    grid-template-columns: 1fr;
  }

  .about-page__cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .lighting-promo__container {
    min-height: 0;
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .lighting-promo__mosaic {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(220px, 1fr));
  }

  .lighting-promo__tile:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .lighting-promo__tile:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .lighting-promo__tile:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }

  .lighting-promo__tile:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
  }

  .lighting-promo__tile:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
  }

  .lighting-promo__tile:nth-child(6) {
    grid-column: 3;
    grid-row: 2;
  }

  .lighting-promo__content {
    width: min(520px, 100%);
  }

}

@media (max-width: 767px) {
  .site-header__inner {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .site-header::after {
    left: 18px;
    right: 18px;
  }

  .site-header.is-scrolled .site-header__inner {
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .site-header__brand img,
  .mobile-menu__brand img {
    height: 30px;
  }

  .site-header__burger {
      width: 46px;
      height: 46px;
      border-color: rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.06);
    }

  .site-header__burger span {
    left: 12px;
    width: 20px;
  }

  .site-header__burger span:nth-child(1) {
    top: 15px;
  }

  .site-header__burger span:nth-child(2) {
    top: 22px;
  }

  .site-header__burger span:nth-child(3) {
    top: 29px;
  }

  .hero::before {
    left: -16%;
    right: -16%;
    top: 0;
    bottom: -2%;
    background-position: 50% 44%;
    opacity: 0.3;
    transform: scale(1.08);
  }

  .hero::after {
    background:
      linear-gradient(
        180deg,
        rgba(0, 31, 55, 0.9) 0%,
        rgba(0, 31, 55, 0.78) 28%,
        rgba(0, 41, 84, 0.54) 56%,
        rgba(0, 41, 84, 0.22) 100%
      );
  }

  .hero__container {
    gap: 24px;
    padding-top: calc(var(--header-height) + 22px);
    padding-bottom: 24px;
  }

  .hero__title {
    max-width: none;
    font-size: clamp(1.9rem, 7.2vw, 2.7rem);
    line-height: 0.98;
  }

  .hero__copy {
    margin-top: 18px;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero__proof-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .proof-marker--stat {
    min-height: 82px;
    padding: 13px 14px 12px;
  }

  .proof-marker--support {
    min-height: 0;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 22px;
  }

  .hero__secondary-action {
    width: fit-content;
  }

  .hero__case-card {
    width: 100%;
    padding: 16px 16px 14px;
  }

  .hero__case-title {
    font-size: 1.3rem;
  }

  .services__container {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .services__header {
    margin-bottom: 22px;
  }

  .services__title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card {
    grid-column: auto;
    min-height: 320px;
    padding: 20px 16px 20px;
  }

  .service-card__title {
    font-size: 1.08rem;
  }

  .service-card__description {
    margin-top: 10px;
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .service-card__details {
    margin-top: 14px;
    padding-top: 12px;
    gap: 6px;
  }

  .service-card__cta {
    margin-top: 14px;
  }

  .irrigation-types__container {
    padding-top: 54px;
    padding-bottom: 0;
  }

  .irrigation-types__header {
    margin-bottom: 20px;
    padding-inline: 20px;
  }

  .irrigation-types__title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .irrigation-types__intro {
    margin-top: 12px;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .irrigation-types__carousel {
    display: grid;
    gap: 0;
    min-height: 0;
    overflow: visible;
  }

  .irrigation-panel,
  .irrigation-panel.is-active {
    flex: auto;
    min-height: 220px;
  }

  .irrigation-panel + .irrigation-panel {
    margin-top: 0;
    margin-left: 0;
  }

  .irrigation-panel__surface {
    padding: 16px 16px 16px;
  }

  .irrigation-panel__header {
    gap: 10px;
  }

  .irrigation-panel__title {
    max-width: 18ch;
    font-size: 1.22rem;
  }

  .irrigation-panel__details {
    margin-top: 14px;
  }

  .irrigation-panel__description {
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .irrigation-panel__list {
    margin-top: 12px;
    gap: 6px;
  }

  .process__container {
    padding-top: 50px;
    padding-bottom: 54px;
  }

  .cases-preview__container,
  .cases-page__section,
  .case-page__section,
  .cases-page__hero-inner,
  .case-page__hero-inner {
    width: min(1360px, calc(100vw - 32px));
  }

  .cases-preview__container,
  .cases-page__section,
  .case-page__section {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .cases-preview__header {
    gap: 16px;
    margin-bottom: 22px;
  }

  .cases-preview__title,
  .cases-page__title,
  .case-page__title {
    font-size: clamp(1.9rem, 7vw, 2.8rem);
  }

  .cases-preview__intro,
  .cases-page__section-copy,
  .case-page__section-copy,
  .case-page__text {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .cases-preview__grid,
  .cases-page__grid,
  .case-page__facts,
  .case-page__gallery {
    grid-template-columns: 1fr;
  }

  .cases-preview__grid {
      gap: 14px;
    }

  .case-card {
      display: block;
      min-height: 230px;
      border-color: rgba(0, 31, 55, 0.08);
      background: var(--navy-900);
    }

  .cases-preview__grid .case-card,
  .cases-preview__grid .case-card--featured {
      display: block;
      min-height: 230px;
    }

  .case-card--featured {
      display: block;
      min-height: 230px;
    }

  .case-card::before {
      display: none;
    }

  .case-card__media,
  .cases-preview__grid .case-card__media,
  .cases-preview__grid .case-card--featured .case-card__media {
      position: absolute;
      inset: 0;
      min-height: 0;
      height: 100%;
    }

  .cases-preview__grid .case-card__content,
  .cases-preview__grid .case-card--featured .case-card__content,
  .cases-preview__grid .case-card:nth-child(odd) .case-card__content,
  .cases-preview__grid .case-card:nth-child(even) .case-card__content {
      background: linear-gradient(180deg, rgba(0, 31, 55, 0.05), rgba(0, 31, 55, 0.82) 58%, rgba(0, 31, 55, 0.94) 100%);
      box-shadow: none;
    }

  .cases-preview__grid .case-card:nth-child(even) .case-card__media,
  .cases-preview__grid .case-card:nth-child(even) .case-card__content {
      grid-column: auto;
      grid-row: auto;
    }

  .case-card__content,
  .case-card--featured .case-card__content {
      position: relative;
      z-index: 1;
      justify-content: flex-end;
      min-height: 230px;
      margin: 0;
      padding: 18px 16px 16px;
    }

  .cases-preview__grid .case-card__content,
  .cases-preview__grid .case-card--featured .case-card__content {
      border: 0;
    }

  .case-card--featured .case-card__content {
      border-left: 0;
      border-top: 0;
    }

  .case-card__context,
  .case-card__summary,
  .case-card__details,
  .case-card__link {
      display: none;
    }

  .case-card__details {
      grid-template-columns: 1fr;
      gap: 6px;
      padding: 12px 12px 11px;
    }

  .cases-preview__grid .case-card__title {
      max-width: none;
      font-size: 1.6rem;
      line-height: 0.96;
      color: var(--white);
      text-wrap: balance;
      text-shadow: 0 8px 22px rgba(0, 10, 20, 0.45);
    }

  .case-page__gallery img {
      height: 220px;
    }

  .case-page__section--facts {
    margin-top: -24px;
  }

  .case-page__section--gallery .case-page__gallery figure:first-child {
    grid-column: auto;
  }

  .case-page__section--gallery .case-page__gallery figure:first-child img {
    height: 220px;
  }

  .case-page__cta-band {
    padding: 20px 18px;
  }

  .case-page__section {
    padding: 20px 18px 22px;
    gap: 14px;
  }

  .case-page__actions {
    width: 100%;
    flex-direction: column;
  }

  .case-page__actions .button {
    width: 100%;
  }

  .process__header {
    margin-bottom: 20px;
  }

  .process__title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .process__list {
    gap: 12px;
  }

  .process-card__content {
    padding: 18px 16px 20px;
  }

  .process-card__title {
    font-size: 1.08rem;
  }

  .process-card__description {
    margin-top: 10px;
    font-size: 0.93rem;
    line-height: 1.55;
  }

  .process-card__media {
    min-height: 220px;
  }

  .process-card__step {
    font-size: 2.6rem;
  }

  .contact-section__container {
    width: min(1360px, calc(100vw - 32px));
    gap: 22px;
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .contact-section__title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .contact-section__copy {
    margin-top: 14px;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .contact-section__meta {
    gap: 10px;
    margin-top: 20px;
  }

  .contact-section__meta-item {
    padding: 14px 16px;
    font-size: 0.93rem;
  }

  .contact-form {
    padding: 18px 16px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-form__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .contact-form__submit {
    width: 100%;
    min-width: 0;
  }

  .contact-form__note {
    max-width: none;
  }

  .about-page__hero-inner,
  .about-page__section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .about-page__stats {
    grid-template-columns: 1fr;
  }

  .about-page__feature-grid--four,
  .about-page__feature-grid--three,
  .about-page__feature-grid--five,
  .about-page__experience-grid,
  .about-page__process-strip {
    grid-template-columns: 1fr;
  }

  .about-page__links {
    display: none;
  }

  .about-page__cta {
    width: 100%;
  }

  .about-page__feature-card,
  .about-page__experience-card,
  .about-page__process-strip li,
  .about-page__note,
  .about-page__cta-band {
    padding: 18px 16px;
  }

  .lighting-promo__container {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .lighting-promo__mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 140px);
  }

  .lighting-promo__tile:nth-child(1),
  .lighting-promo__tile:nth-child(2),
  .lighting-promo__tile:nth-child(3),
  .lighting-promo__tile:nth-child(4),
  .lighting-promo__tile:nth-child(5),
  .lighting-promo__tile:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .lighting-promo__content {
    width: 100%;
    padding: 22px 18px 20px;
  }

  .lighting-promo__title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .lighting-promo__copy {
    margin-top: 12px;
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .lighting-promo__cta {
    width: 100%;
    margin-top: 18px;
  }

  .placeholder-section {
    min-height: 44vh;
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .placeholder-section__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .placeholder-section--catalog .placeholder-section__inner {
    width: min(100vw - 32px, 960px);
  }

  .placeholder-section__copy {
    font-size: 1rem;
  }

  .site-footer__container {
    width: min(1360px, calc(100vw - 32px));
    padding-top: 32px;
    padding-bottom: 22px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 22px;
  }

  .site-footer__column,
  .site-footer__column:nth-child(2n),
  .site-footer__column:nth-child(2n + 1),
  .site-footer__column:nth-child(3) {
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
  }

  .site-footer__copy {
    max-width: none;
  }

  .site-footer__bottom {
    gap: 12px;
    padding-top: 16px;
  }

  .site-footer__bottom-links {
    gap: 10px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lighting-promo__content::before,
  .lighting-promo__content::after {
    animation: none;
  }
}
