/* [project]/app/globals.css [app-client] (css) */
:root {
  --navy-950: #071b2c;
  --navy-900: #0b2438;
  --navy-800: #14364e;
  --slate-700: #415d70;
  --slate-600: #5a7282;
  --slate-500: #748896;
  --blue-700: #0874b8;
  --blue-600: #058bd1;
  --blue-500: #13a3e4;
  --cyan-400: #55d7ee;
  --cyan-300: #91e6f4;
  --sky-100: #eaf7fc;
  --sky-50: #f4fbfe;
  --cloud: #f7fafc;
  --white: #fff;
  --line: #dce8ee;
  --line-dark: #ffffff24;
  --shadow-sm: 0 12px 35px #08223614;
  --shadow-md: 0 24px 70px #08223621;
  --shadow-blue: 0 18px 45px #058bd13d;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shell: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: clip;
}

body {
  color: var(--navy-950);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  margin: 0;
  font-family: Avenir Next, Avenir, Segoe UI, Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
}

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

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

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

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

button {
  color: inherit;
}

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

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

::selection {
  color: var(--navy-950);
  background: var(--cyan-300);
}

:focus-visible {
  outline: 3px solid var(--cyan-400);
  outline-offset: 3px;
}

.skip-link {
  z-index: 1000;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 10px;
  padding: 10px 16px;
  transition: transform .2s;
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
}

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

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.kicker {
  color: var(--blue-700);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.2;
  display: inline-block;
}

.kicker--light {
  color: var(--cyan-300);
}

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

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

.section-heading h2, .partner-intro h2, .nature h2, .showroom h2, .contact h2 {
  letter-spacing: -.045em;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 750;
  line-height: 1.06;
}

.section-heading p, .partner-intro p {
  color: var(--slate-600);
  margin-bottom: 0;
  font-size: 1.05rem;
}

.section-heading--split {
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  align-items: end;
  gap: 72px;
  display: grid;
}

.section-heading--split > div {
  max-width: 720px;
}

.section-heading--split p {
  max-width: 455px;
}

.section-heading--center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading--center p {
  max-width: 660px;
  margin: 20px auto 0;
}

[data-reveal] {
  opacity: 0;
  transition: opacity .7s ease var(--delay, 0s),
    transform .7s cubic-bezier(.2, .65, .25, 1) var(--delay, 0s);
  transform: translateY(24px);
}

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

.button {
  cursor: pointer;
  border: 0;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 21px;
  font-size: .9rem;
  font-weight: 750;
  line-height: 1.2;
  transition: transform .2s, color .2s, background-color .2s, box-shadow .2s, border-color .2s;
  display: inline-flex;
}

.button svg, .text-link svg, .partner-tool__arrow svg, .catalogue-list svg {
  transition: transform .2s;
}

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

.button:hover svg, .text-link:hover svg, .partner-tool:hover .partner-tool__arrow svg, .catalogue-list a:hover > svg {
  transform: translateX(4px);
}

.button--primary {
  color: var(--white);
  background: var(--blue-700);
  box-shadow: var(--shadow-blue);
}

.button--primary:hover {
  background: var(--navy-800);
}

.button--secondary {
  color: var(--navy-900);
  border: 1px solid var(--line);
  background: #ffffffdb;
  box-shadow: 0 8px 30px #0822360d;
}

.button--secondary:hover {
  box-shadow: var(--shadow-sm);
  border-color: #a8d5e8;
}

.button--cyan {
  color: var(--navy-950);
  background: var(--cyan-400);
  box-shadow: 0 15px 36px #55d7ee33;
}

.button--cyan:hover {
  background: var(--cyan-300);
}

.button--light {
  color: var(--navy-950);
  background: var(--white);
  box-shadow: 0 15px 40px #00000026;
}

.button--light:hover {
  color: var(--blue-700);
}

.button--full {
  width: 100%;
}

.text-link {
  color: var(--blue-700);
  cursor: pointer;
  background: none;
  border: 0;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-size: .92rem;
  font-weight: 800;
  display: inline-flex;
}

.topbar {
  z-index: 102;
  color: #ffffffc7;
  background: var(--navy-950);
  font-size: .73rem;
  position: relative;
}

.topbar__inner {
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 34px;
  display: flex;
}

.topbar p, .topbar span, .topbar a {
  align-items: center;
  gap: 6px;
  margin: 0;
  display: inline-flex;
}

.topbar__links {
  align-items: center;
  gap: 24px;
  display: flex;
}

.topbar a {
  transition: color .2s;
}

.topbar a:hover {
  color: var(--white);
}

.nav {
  z-index: 100;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background: #ffffffeb;
  border-bottom: 1px solid #dce8eee0;
  position: sticky;
  top: 0;
  box-shadow: 0 8px 28px #071b2c0a;
}

.nav__inner {
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  min-height: 78px;
  display: flex;
}

.brand {
  z-index: 3;
  flex: none;
  align-items: center;
  display: inline-flex;
  position: relative;
}

.brand img {
  width: 174px;
  height: auto;
}

.nav__menu {
  align-items: center;
  gap: 27px;
  display: flex;
}

.nav__menu > a {
  color: var(--slate-700);
  font-size: .84rem;
  font-weight: 700;
  transition: color .2s;
  position: relative;
}

.nav__menu > a:after {
  background: var(--blue-500);
  content: "";
  opacity: 0;
  border-radius: 3px;
  height: 2px;
  transition: opacity .2s, transform .2s;
  position: absolute;
  bottom: -9px;
  left: 0;
  right: 0;
  transform: scaleX(.4);
}

.nav__menu > a:hover, .nav__menu > a[aria-current="page"] {
  color: var(--navy-950);
}

.nav__menu > a:hover:after, .nav__menu > a[aria-current="page"]:after {
  opacity: 1;
  transform: scaleX(1);
}

.button--nav {
  min-height: 44px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: none;
  border-radius: 10px;
  padding: 11px 17px;
}

.button--nav:hover {
  background: var(--blue-700);
}

.menu-button {
  border: 1px solid var(--line);
  cursor: pointer;
  background: none;
  border-radius: 11px;
  width: 46px;
  height: 46px;
  padding: 11px;
  display: none;
}

.menu-button span {
  background: var(--navy-950);
  border-radius: 2px;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  transition: transform .25s, opacity .2s;
  display: block;
}

.menu-button.is-open span:first-child {
  transform: translateY(7px)rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px)rotate(-45deg);
}

.hero {
  background: radial-gradient(circle at 77% 38%, #55d7ee40, #0000 23%), linear-gradient(148deg, #f4fbfe 0%, #fff 56%, #ecf8fc 100%);
  padding: 88px 0 0;
  position: relative;
  overflow: hidden;
}

.hero__mesh {
  pointer-events: none;
  background-image: linear-gradient(#0b243809 1px, #0000 1px), linear-gradient(90deg, #0b243809 1px, #0000 1px);
  background-size: 72px 72px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(to right, #0000, #000 58%, #000);
  mask-image: linear-gradient(to right, #0000, #000 58%, #000);
}

.hero__grid {
  grid-template-columns: minmax(0, .96fr) minmax(470px, 1.04fr);
  align-items: center;
  gap: 48px;
  min-height: 590px;
  display: grid;
  position: relative;
}

.hero__copy {
  z-index: 3;
  padding-bottom: 70px;
  position: relative;
}

.eyebrow {
  color: var(--blue-700);
  letter-spacing: .065em;
  text-transform: uppercase;
  background: #ffffffd1;
  border: 1px solid #cfe9f3;
  border-radius: 999px;
  align-items: center;
  gap: 9px;
  margin-bottom: 23px;
  padding: 8px 13px 8px 10px;
  font-size: .73rem;
  font-weight: 800;
  display: inline-flex;
  box-shadow: 0 8px 25px #0874b814;
}

.eyebrow > span {
  background: var(--cyan-400);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  box-shadow: 0 0 0 4px #55d7ee2e;
}

.hero h1 {
  letter-spacing: -.057em;
  max-width: 700px;
  margin-bottom: 25px;
  font-size: clamp(2.75rem, 5.2vw, 4.75rem);
  font-weight: 760;
  line-height: .98;
}

.hero h1 em {
  color: var(--blue-600);
  font-style: normal;
  display: block;
}

.hero__lead {
  max-width: 630px;
  color: var(--slate-700);
  margin-bottom: 32px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero__actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 29px;
  display: flex;
}

.hero__assurances {
  color: var(--slate-600);
  flex-wrap: wrap;
  gap: 18px;
  font-size: .76rem;
  font-weight: 700;
  display: flex;
}

.hero__assurances span {
  align-items: center;
  gap: 6px;
  display: inline-flex;
}

.hero__assurances svg {
  color: var(--blue-600);
}

.hero-product {
  align-self: end;
  min-height: 540px;
  position: relative;
}

.hero-product:before {
  content: "";
  background: linear-gradient(145deg, #d8f3fa, #f7fdff 56%, #cceef7);
  border: 1px solid #ffffffe6;
  border-radius: 50%;
  width: 470px;
  height: 470px;
  position: absolute;
  top: 38px;
  right: -20px;
  box-shadow: inset 0 0 0 18px #ffffff5c, 0 35px 100px #058bd129;
}

.hero-product__orbit {
  z-index: 0;
  pointer-events: none;
  border: 1px solid #058bd12e;
  border-radius: 50%;
  position: absolute;
}

.hero-product__orbit--one {
  width: 525px;
  height: 525px;
  top: 13px;
  right: -44px;
}

.hero-product__orbit--two {
  border-style: dashed;
  width: 385px;
  height: 385px;
  top: 84px;
  right: 27px;
}

.hero-product__climate {
  z-index: 2;
  filter: drop-shadow(0 22px 22px #071b2c2b);
  width: min(440px, 88%);
  position: absolute;
  top: 73px;
  right: 22px;
}

.hero-product__pump {
  z-index: 3;
  filter: drop-shadow(0 30px 24px #071b2c38);
  width: min(385px, 75%);
  position: absolute;
  bottom: 12px;
  right: -6px;
}

.product-note {
  z-index: 5;
  box-shadow: var(--shadow-sm);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #ffffffeb;
  border: 1px solid #ffffffe6;
  border-radius: 14px;
  padding: 12px 15px;
  display: flex;
  position: absolute;
}

.product-note--efficiency {
  flex-direction: column;
  top: 62px;
  left: -12px;
}

.product-note--efficiency strong {
  color: var(--blue-600);
  letter-spacing: -.04em;
  font-size: 1.6rem;
  line-height: 1;
}

.product-note--efficiency span {
  color: var(--slate-600);
  margin-top: 4px;
  font-size: .66rem;
  font-weight: 700;
}

.product-note--quiet {
  max-width: 205px;
  color: var(--slate-600);
  align-items: center;
  gap: 10px;
  font-size: .65rem;
  line-height: 1.4;
  bottom: 74px;
  right: 10px;
}

.product-note--quiet strong {
  color: var(--navy-950);
  font-size: .78rem;
  display: block;
}

.product-note__icon {
  width: 39px;
  height: 39px;
  color: var(--blue-600);
  background: var(--sky-100);
  border-radius: 11px;
  flex: none;
  place-items: center;
  display: inline-grid;
}

.hero-product__brand {
  z-index: 5;
  background: #ffffffd9;
  border: 1px solid #fffffff0;
  border-radius: 12px;
  align-items: center;
  gap: 10px;
  padding: 8px 11px 8px 14px;
  display: flex;
  position: absolute;
  top: 24px;
  right: 0;
  box-shadow: 0 10px 32px #08223614;
}

.hero-product__brand span {
  color: var(--slate-500);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .58rem;
  font-weight: 800;
}

.hero-product__brand img {
  width: 68px;
  height: auto;
}

.trust-grid {
  z-index: 8;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  grid-template-columns: repeat(4, 1fr);
  display: grid;
  position: relative;
  overflow: hidden;
  box-shadow: 0 -8px 44px #0822360f;
}

.trust-grid > div {
  padding: 23px 25px;
  position: relative;
}

.trust-grid > div + div:before {
  background: var(--line);
  content: "";
  width: 1px;
  position: absolute;
  top: 23px;
  bottom: 23px;
  left: 0;
}

.trust-grid strong {
  color: var(--navy-900);
  letter-spacing: -.02em;
  margin-bottom: 3px;
  font-size: 1rem;
  font-weight: 800;
  display: block;
}

.trust-grid span {
  color: var(--slate-500);
  font-size: .72rem;
}

.brand-strip {
  background: var(--navy-950);
  padding: 27px 0;
}

.brand-strip__inner {
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  display: flex;
}

.brand-strip p {
  color: #ffffff8c;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0;
  font-size: .66rem;
  font-weight: 800;
}

.brand-strip__inner > div {
  align-items: center;
  gap: 9px;
  display: flex;
}

.brand-strip img {
  object-fit: contain;
  background: var(--white);
  filter: grayscale(.1);
  border-radius: 8px;
  width: 104px;
  height: 42px;
  padding: 5px 9px;
}

.solutions {
  background: linear-gradient(180deg, var(--white), var(--cloud)),
    var(--white);
}

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

.solution-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  flex-direction: column;
  min-width: 0;
  min-height: 555px;
  transition: transform .28s, border-color .28s, box-shadow .28s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 9px 32px #0822360b;
}

.solution-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #b6dbe9;
  transform: translateY(-6px);
}

.solution-card__image, .solution-card__pattern {
  flex: none;
  height: 205px;
  position: relative;
  overflow: hidden;
}

.solution-card__image {
  background: radial-gradient(circle at 50% 75%, #d7f1f8 0%, #0000 52%), linear-gradient(135deg, #f8fdff, #eef9fd);
}

.solution-card__image:after {
  content: "";
  background: #058bd112;
  border-radius: 50%;
  height: 160px;
  position: absolute;
  inset: auto -15% -60% 15%;
}

.solution-card__image img {
  z-index: 1;
  object-fit: contain;
  width: 100%;
  height: 100%;
  padding: 16px 28px 5px;
  transition: transform .4s;
  position: relative;
}

.solution-card:hover .solution-card__image img {
  transform: scale(1.035)translateY(-2px);
}

.solution-card:nth-child(4) .solution-card__image img {
  padding: 30px;
}

.solution-card:nth-child(6) .solution-card__image img {
  object-fit: cover;
  padding: 0;
}

.solution-card__pattern {
  color: #058bd180;
  background: radial-gradient(circle at 25% 30%, #55d7ee59, transparent 26%),
    linear-gradient(145deg, var(--navy-900), var(--navy-800));
  place-items: center;
  display: grid;
}

.solution-card__pattern:before, .solution-card__pattern:after {
  content: "";
  border: 1px solid #ffffff1a;
  border-radius: 50%;
  position: absolute;
}

.solution-card__pattern:before {
  width: 165px;
  height: 165px;
}

.solution-card__pattern:after {
  width: 235px;
  height: 235px;
}

.solution-card__body {
  flex-direction: column;
  flex: 1;
  padding: 29px 27px 27px;
  display: flex;
}

.solution-card__meta {
  color: var(--blue-700);
  letter-spacing: .075em;
  text-transform: uppercase;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  font-size: .68rem;
  font-weight: 800;
  display: flex;
}

.solution-card__icon {
  width: 33px;
  height: 33px;
  color: var(--blue-600);
  background: var(--sky-100);
  border-radius: 9px;
  place-items: center;
  display: inline-grid;
}

.solution-card h3 {
  letter-spacing: -.03em;
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.18;
}

.solution-card p {
  color: var(--slate-600);
  margin-bottom: 17px;
  font-size: .87rem;
  line-height: 1.7;
}

.solution-card ul {
  gap: 7px;
  margin-bottom: 23px;
  padding: 0;
  list-style: none;
  display: grid;
}

.solution-card li {
  color: var(--slate-700);
  align-items: flex-start;
  gap: 8px;
  font-size: .76rem;
  font-weight: 650;
  display: flex;
}

.solution-card li svg {
  color: var(--blue-500);
  flex: none;
  margin-top: 2px;
}

.solution-card .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.nature {
  color: var(--white);
  background: radial-gradient(circle at 20% 45%, #55d7ee29, transparent 27%),
    linear-gradient(125deg, var(--navy-950), #0c3149 68%, #0c3e5c);
  padding: 95px 0;
  position: relative;
  overflow: hidden;
}

.nature:after {
  content: "";
  border: 1px solid #ffffff14;
  border-radius: 50%;
  width: 480px;
  height: 480px;
  position: absolute;
  top: -190px;
  right: -170px;
  box-shadow: 0 0 0 70px #ffffff06, 0 0 0 140px #ffffff05;
}

.nature__grid {
  z-index: 2;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 82px;
  display: grid;
  position: relative;
}

.nature__visual {
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #ffffff1a, #ffffff09);
  border: 1px solid #ffffff26;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  padding: 56px 48px 36px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nature__halo {
  background: #55d7ee1f;
  border: 1px solid #91e6f433;
  border-radius: 50%;
  width: 390px;
  height: 390px;
  position: absolute;
  box-shadow: 0 0 0 50px #55d7ee0b, 0 0 0 100px #55d7ee05;
}

.nature__visual > img {
  z-index: 2;
  filter: drop-shadow(0 35px 25px #00000059);
  width: 94%;
  position: relative;
}

.nature__chip {
  z-index: 4;
  color: var(--navy-950);
  background: var(--cyan-400);
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 9px;
  padding: 8px 12px;
  font-size: .65rem;
  font-weight: 850;
  position: absolute;
  top: 22px;
  left: 22px;
}

.nature__caption {
  z-index: 4;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #071b2cc7;
  border: 1px solid #ffffff21;
  border-radius: 13px;
  padding: 12px 15px;
  display: grid;
  position: absolute;
  bottom: 19px;
  right: 20px;
}

.nature__caption span {
  color: var(--cyan-300);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .65rem;
  font-weight: 800;
}

.nature__caption strong {
  letter-spacing: -.05em;
  margin-top: 2px;
  font-size: 1.75rem;
  line-height: 1;
}

.nature__caption small {
  color: #ffffff8c;
  margin-top: 3px;
  font-size: .63rem;
}

.nature__content h2 {
  max-width: 590px;
  margin-bottom: 25px;
}

.nature__content > p {
  color: #ffffffb0;
  max-width: 610px;
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.75;
}

.nature-specs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  margin-bottom: 35px;
  display: grid;
}

.nature-specs > div {
  background: #ffffff0e;
  border: 1px solid #ffffff1a;
  border-radius: 13px;
  padding: 15px 16px;
}

.nature-specs strong {
  color: var(--cyan-300);
  margin-bottom: 2px;
  font-size: .95rem;
  display: block;
}

.nature-specs span {
  color: #ffffff94;
  font-size: .7rem;
}

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

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  display: grid;
}

.process-card {
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  min-height: 300px;
  padding: 27px 24px 25px;
  position: relative;
  overflow: hidden;
}

.process-card:after {
  content: "";
  background: #058bd10d;
  border-radius: 50%;
  width: 155px;
  height: 155px;
  position: absolute;
  bottom: -65px;
  right: -55px;
}

.process-card__number {
  color: #cbdbe3;
  letter-spacing: -.04em;
  font-size: 1.8rem;
  font-weight: 850;
  position: absolute;
  top: 19px;
  right: 21px;
}

.process-card__icon {
  width: 50px;
  height: 50px;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 13px;
  place-items: center;
  margin-bottom: 46px;
  display: grid;
  box-shadow: 0 12px 27px #058bd13b;
}

.process-card h3 {
  letter-spacing: -.025em;
  margin-bottom: 10px;
  font-size: 1.04rem;
  font-weight: 800;
}

.process-card p {
  z-index: 2;
  color: var(--slate-600);
  margin: 0;
  font-size: .78rem;
  line-height: 1.7;
  position: relative;
}

.service-ribbon {
  color: var(--white);
  background: radial-gradient(circle at 85% 50%, #55d7ee33, transparent 24%),
    var(--navy-900);
  border-radius: var(--radius-md);
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  padding: 20px 24px;
  display: flex;
}

.service-ribbon > div {
  align-items: center;
  gap: 14px;
  display: flex;
}

.service-ribbon > div > svg {
  color: var(--cyan-400);
}

.service-ribbon span {
  display: grid;
}

.service-ribbon small {
  color: #ffffff8c;
  font-size: .68rem;
}

.service-ribbon strong {
  font-size: .92rem;
}

.service-ribbon > a {
  color: var(--cyan-300);
  letter-spacing: -.02em;
  font-size: 1.1rem;
  font-weight: 850;
}

.partner-section {
  color: var(--white);
  background: var(--navy-950);
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}

.partner-section:before {
  content: "";
  background-image: linear-gradient(#ffffff06 1px, #0000 1px), linear-gradient(90deg, #ffffff06 1px, #0000 1px);
  background-size: 66px 66px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: radial-gradient(circle at 75% 25%, #000, #0000 75%);
  mask-image: radial-gradient(circle at 75% 25%, #000, #0000 75%);
}

.partner-section__glow {
  filter: blur(120px);
  background: #058bd147;
  border-radius: 50%;
  width: 660px;
  height: 660px;
  position: absolute;
  top: -300px;
  right: -220px;
}

.partner-section > .shell {
  z-index: 2;
  position: relative;
}

.partner-intro {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 50px;
  display: grid;
}

.partner-intro h2 {
  max-width: 680px;
}

.partner-intro p {
  color: #ffffff9e;
}

.partner-tools {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
  display: grid;
}

.partner-tool {
  border-radius: var(--radius-md);
  background: #ffffff12;
  border: 1px solid #ffffff21;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 20px;
  min-height: 230px;
  padding: 29px;
  transition: background-color .25s, border-color .25s, transform .25s;
  display: grid;
  position: relative;
  overflow: hidden;
}

.partner-tool:before {
  content: "";
  background: radial-gradient(circle, #55d7ee29, #0000 67%);
  width: 230px;
  height: 230px;
  position: absolute;
  bottom: -100px;
  right: -70px;
}

.partner-tool:hover {
  background: #ffffff1a;
  border-color: #91e6f461;
  transform: translateY(-4px);
}

.partner-tool__icon {
  width: 55px;
  height: 55px;
  color: var(--navy-950);
  background: var(--cyan-400);
  border-radius: 15px;
  place-items: center;
  display: grid;
}

.partner-tool__label {
  color: var(--cyan-300);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 7px;
  font-size: .62rem;
  font-weight: 850;
  display: block;
}

.partner-tool h3 {
  letter-spacing: -.025em;
  margin-bottom: 9px;
  font-size: 1.25rem;
  font-weight: 800;
}

.partner-tool p {
  color: #ffffff91;
  max-width: 430px;
  margin: 0;
  font-size: .79rem;
  line-height: 1.7;
}

.partner-tool__arrow {
  z-index: 2;
  width: 39px;
  height: 39px;
  color: var(--cyan-300);
  border: 1px solid #ffffff29;
  border-radius: 10px;
  place-items: center;
  display: grid;
  position: relative;
}

.partner-columns {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 20px;
  display: grid;
}

.partner-benefits, .catalogues {
  border-radius: var(--radius-md);
  background: #ffffff09;
  border: 1px solid #ffffff1a;
  padding: 32px;
}

.partner-benefits h3, .catalogues h3 {
  letter-spacing: -.02em;
  margin-bottom: 21px;
  font-size: 1.15rem;
  font-weight: 800;
}

.partner-benefits ul {
  gap: 13px;
  margin-bottom: 28px;
  padding: 0;
  list-style: none;
  display: grid;
}

.partner-benefits li {
  color: #ffffffb0;
  align-items: flex-start;
  gap: 10px;
  font-size: .79rem;
  display: flex;
}

.partner-benefits li svg {
  color: var(--cyan-400);
  flex: none;
  margin-top: 2px;
}

.catalogues__heading {
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  display: flex;
}

.catalogues__heading > svg {
  color: #91e6f499;
}

.catalogue-list {
  gap: 6px;
  display: grid;
}

.catalogue-list a {
  background: #ffffff0a;
  border: 1px solid #0000;
  border-radius: 11px;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  min-height: 60px;
  padding: 10px 12px 10px 15px;
  transition: background-color .2s, border-color .2s;
  display: flex;
}

.catalogue-list a:hover {
  background: #ffffff13;
  border-color: #91e6f438;
}

.catalogue-list a > span {
  display: grid;
}

.catalogue-list strong {
  font-size: .78rem;
}

.catalogue-list small {
  color: #ffffff6e;
  font-size: .65rem;
}

.catalogue-list a > svg {
  color: var(--cyan-300);
}

.authorized {
  border-radius: var(--radius-sm);
  background: #55d7ee13;
  border: 1px solid #55d7ee2e;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  padding: 19px 22px;
  display: grid;
}

.authorized__icon {
  width: 44px;
  height: 44px;
  color: var(--navy-950);
  background: var(--cyan-400);
  border-radius: 12px;
  place-items: center;
  display: grid;
}

.authorized strong {
  margin-bottom: 2px;
  font-size: .81rem;
  display: block;
}

.authorized p {
  color: #ffffff7a;
  margin: 0;
  font-size: .67rem;
}

.authorized > a {
  color: var(--cyan-300);
  font-size: .76rem;
  font-weight: 800;
}

.authorized > a:last-child {
  align-items: center;
  gap: 5px;
  display: inline-flex;
}

.showroom {
  background: var(--white);
}

.showroom__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
  gap: 78px;
  display: grid;
}

.showroom__image {
  border-radius: var(--radius-lg);
  min-height: 600px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.showroom__image:after {
  content: "";
  background: linear-gradient(to top, #071b2c47, #0000 45%);
  position: absolute;
  inset: 0;
}

.showroom__image > img {
  object-fit: cover;
  object-position: center 46%;
  width: 100%;
  height: 600px;
}

.showroom__badge {
  z-index: 2;
  color: var(--white);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #071b2cc7;
  border: 1px solid #ffffff29;
  border-radius: 14px;
  align-items: center;
  gap: 13px;
  padding: 17px 18px;
  display: flex;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.showroom__badge > svg {
  color: var(--cyan-400);
  flex: none;
}

.showroom__badge span {
  color: #ffffff94;
  font-size: .69rem;
}

.showroom__badge strong {
  color: var(--white);
  font-size: .83rem;
  display: block;
}

.showroom__content h2 {
  margin-bottom: 22px;
}

.showroom__content > p {
  color: var(--slate-600);
  margin-bottom: 28px;
  font-size: .98rem;
  line-height: 1.75;
}

.showroom__facts {
  gap: 10px;
  margin-bottom: 32px;
  display: grid;
}

.showroom__facts > div {
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: 13px;
  align-items: center;
  gap: 13px;
  padding: 13px;
  display: flex;
}

.showroom__facts > div > span {
  width: 42px;
  height: 42px;
  color: var(--blue-600);
  background: var(--sky-100);
  border-radius: 11px;
  flex: none;
  place-items: center;
  display: grid;
}

.showroom__facts p {
  color: var(--slate-600);
  margin: 0;
  font-size: .75rem;
}

.showroom__facts strong {
  color: var(--navy-950);
  font-size: .82rem;
  display: block;
}

.showroom__actions {
  align-items: center;
  gap: 22px;
  display: flex;
}

.projects {
  background: var(--cloud);
}

.projects-grid {
  grid-template-columns: minmax(0, 1.16fr) minmax(330px, .84fr);
  grid-auto-rows: 205px;
  gap: 16px;
  display: grid;
}

.project-card {
  border-radius: var(--radius-md);
  margin: 0;
  position: relative;
  overflow: hidden;
}

.project-card--feature {
  grid-row: span 3;
}

.project-card:after {
  content: "";
  background: linear-gradient(to top, #071b2ce0 0%, #071b2c0d 58%);
  transition: background .3s;
  position: absolute;
  inset: 0;
}

.project-card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .5s;
}

.project-card--feature img {
  object-position: center 58%;
}

.project-card:hover img {
  transform: scale(1.035);
}

.project-card figcaption {
  z-index: 2;
  display: grid;
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
}

.project-card figcaption > span {
  color: var(--cyan-300);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-size: .6rem;
  font-weight: 850;
}

.project-card figcaption strong {
  color: var(--white);
  letter-spacing: -.02em;
  font-size: 1rem;
}

.project-card figcaption small {
  color: #ffffff8c;
  font-size: .67rem;
}

.project-card--feature figcaption {
  bottom: 27px;
  left: 28px;
  right: 28px;
}

.project-card--feature figcaption strong {
  font-size: 1.55rem;
}

.team {
  background: var(--white);
}

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

.person-card {
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  align-content: start;
  min-height: 335px;
  padding: 26px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: grid;
}

.person-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: #b6dbe9;
  transform: translateY(-4px);
}

.person-card__photo, .person-card__initials {
  border-radius: 18px;
  width: 70px;
  height: 70px;
  margin-bottom: 35px;
  overflow: hidden;
}

.person-card__photo img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.person-card__initials {
  color: var(--blue-700);
  background: var(--sky-100);
  border: 1px solid #cfe9f3;
  place-items: center;
  font-size: 1.13rem;
  font-weight: 850;
  display: grid;
}

.person-card__initials--dark {
  color: var(--cyan-300);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.person-card > div:last-child > span {
  color: var(--blue-700);
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-size: .64rem;
  font-weight: 850;
  display: block;
}

.person-card h3 {
  letter-spacing: -.03em;
  margin-bottom: 9px;
  font-size: 1.2rem;
  font-weight: 800;
}

.person-card p {
  min-height: 48px;
  color: var(--slate-600);
  margin-bottom: 18px;
  font-size: .77rem;
  line-height: 1.6;
}

.person-card a {
  width: fit-content;
  color: var(--slate-700);
  align-items: center;
  gap: 8px;
  margin-top: 7px;
  font-size: .77rem;
  font-weight: 700;
  transition: color .2s;
  display: flex;
}

.person-card a svg {
  color: var(--blue-600);
}

.person-card a:hover {
  color: var(--blue-700);
}

.contact {
  color: var(--white);
  background: radial-gradient(circle at 10% 10%, #058bd133, transparent 30%),
    linear-gradient(135deg, var(--navy-950), #0d3047);
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}

.contact:after {
  content: "";
  background: #55d7ee14;
  border: 1px solid #ffffff12;
  border-radius: 50%;
  width: 700px;
  height: 700px;
  position: absolute;
  bottom: -300px;
  right: -200px;
  box-shadow: 0 0 0 80px #ffffff05, 0 0 0 160px #ffffff04;
}

.contact > .shell {
  z-index: 2;
  position: relative;
}

.contact__heading {
  max-width: 750px;
  margin-bottom: 50px;
}

.contact__heading h2 {
  margin-bottom: 19px;
}

.contact__heading p {
  color: #ffffff9e;
  max-width: 660px;
  margin: 0;
}

.contact__grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
  align-items: start;
  gap: 18px;
  display: grid;
}

.enquiry-form {
  color: var(--navy-950);
  background: var(--white);
  border-radius: var(--radius-md);
  gap: 17px;
  padding: 34px;
  display: grid;
  box-shadow: 0 30px 80px #0000002e;
}

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

.enquiry-form label {
  color: var(--slate-700);
  gap: 7px;
  font-size: .7rem;
  font-weight: 800;
  display: grid;
}

.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
  width: 100%;
  color: var(--navy-950);
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  transition: border-color .2s, background-color .2s, box-shadow .2s;
}

.enquiry-form input, .enquiry-form select {
  height: 49px;
  padding: 0 14px;
}

.enquiry-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--slate-500) 50%),
    linear-gradient(135deg, var(--slate-500) 50%, transparent 50%);
  background-position: calc(100% - 17px) 21px, calc(100% - 12px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.enquiry-form textarea {
  resize: vertical;
  min-height: 125px;
  padding: 13px 14px;
}

.enquiry-form input::placeholder, .enquiry-form textarea::placeholder {
  color: #9aacb7;
}

.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus {
  background-color: var(--white);
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px #13a3e41f;
}

.form-note {
  color: var(--slate-500);
  align-items: flex-start;
  gap: 6px;
  margin: -5px 0 0;
  font-size: .64rem;
  line-height: 1.5;
  display: flex;
}

.form-note svg {
  color: var(--blue-600);
  flex: none;
  margin-top: 1px;
}

.form-status {
  color: var(--blue-700);
  background: var(--sky-100);
  border-radius: 9px;
  margin: 0;
  padding: 10px 12px;
  font-size: .7rem;
  font-weight: 700;
}

.contact-card {
  border-radius: var(--radius-md);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #ffffff13;
  border: 1px solid #ffffff24;
  overflow: hidden;
}

.contact-card__top {
  padding: 31px;
}

.contact-card__top > span {
  color: var(--cyan-300);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 7px;
  font-size: .63rem;
  font-weight: 850;
  display: block;
}

.contact-card__top h3 {
  letter-spacing: -.03em;
  margin-bottom: 8px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.contact-card__top > p {
  color: #ffffff85;
  margin-bottom: 22px;
  font-size: .73rem;
}

.contact-card__top > a {
  background: #ffffff0f;
  border: 1px solid #ffffff17;
  border-radius: 12px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 12px;
  transition: background-color .2s, border-color .2s;
  display: grid;
}

.contact-card__top > a:hover {
  background: #ffffff1a;
  border-color: #91e6f43d;
}

.contact-card__top > a > span {
  width: 42px;
  height: 42px;
  color: var(--navy-950);
  background: var(--cyan-400);
  border-radius: 11px;
  place-items: center;
  display: grid;
}

.contact-card__top > a > div {
  display: grid;
}

.contact-card__top small {
  color: #ffffff73;
  font-size: .6rem;
}

.contact-card__top strong {
  font-size: .8rem;
}

.contact-card__top > a > svg {
  color: var(--cyan-300);
}

.contact-card__address {
  background: #0000001f;
  border-top: 1px solid #ffffff17;
  gap: 20px;
  padding: 25px 31px 28px;
  display: grid;
}

.contact-card__address > div {
  align-items: flex-start;
  gap: 12px;
  display: flex;
}

.contact-card__address svg {
  color: var(--cyan-300);
  flex: none;
  margin-top: 2px;
}

.contact-card__address p {
  color: #ffffff7a;
  margin: 0;
  font-size: .68rem;
  line-height: 1.65;
}

.contact-card__address strong {
  color: var(--white);
  margin-bottom: 2px;
  font-size: .75rem;
  display: block;
}

.footer {
  color: #ffffff8c;
  background: #051522;
  padding: 66px 0 24px;
}

.footer__grid {
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(140px, .55fr));
  gap: 54px;
  padding-bottom: 50px;
  display: grid;
}

.footer__brand > a {
  background: var(--white);
  border-radius: 11px;
  padding: 9px 12px;
  display: inline-flex;
}

.footer__brand > a img {
  width: 164px;
}

.footer__brand > p {
  max-width: 340px;
  margin: 20px 0;
  font-size: .76rem;
  line-height: 1.7;
}

.footer__brand > div {
  color: var(--slate-500);
  background: var(--white);
  border-radius: 9px;
  align-items: center;
  gap: 8px;
  padding: 7px 9px 7px 12px;
  display: inline-flex;
}

.footer__brand > div span {
  color: var(--slate-700);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .55rem;
  font-weight: 850;
}

.footer__brand > div img {
  width: 62px;
}

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

.footer__column h3 {
  color: var(--white);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: .75rem;
  font-weight: 800;
}

.footer__column a, .footer__column p {
  margin: 0;
  font-size: .7rem;
}

.footer__column a {
  transition: color .2s;
}

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

.footer__contact a {
  color: var(--cyan-300);
  font-weight: 750;
}

.footer__contact p {
  margin-top: 5px;
  line-height: 1.7;
}

.footer__bottom {
  border-top: 1px solid #ffffff14;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  font-size: .62rem;
  display: flex;
}

@media (max-width: 1120px) {
  .nav__menu {
    gap: 17px;
  }

  .nav__menu > a {
    font-size: .78rem;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(410px, .9fr);
    gap: 20px;
  }

  .hero-product:before {
    right: -75px;
  }

  .hero-product__orbit--one {
    right: -99px;
  }

  .product-note--efficiency {
    left: 0;
  }

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

  .nature__grid {
    gap: 46px;
  }

  .showroom__grid {
    gap: 48px;
  }
}

@media (max-width: 940px) {
  .topbar p {
    display: none;
  }

  .topbar__inner {
    justify-content: flex-end;
  }

  .nav__inner {
    min-height: 70px;
  }

  .menu-button {
    z-index: 3;
    display: block;
    position: relative;
  }

  .nav__menu {
    z-index: 2;
    border-left: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    background: #fffffffa;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: min(390px, 88vw);
    height: 100dvh;
    padding: 112px 28px 40px;
    transition: opacity .25s, transform .3s cubic-bezier(.2, .65, .25, 1);
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(102%);
    box-shadow: -25px 0 60px #071b2c26;
  }

  .nav__menu:before {
    z-index: -1;
    content: "";
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    background: #071b2c59;
    position: fixed;
    inset: 0 100% 0 -100vw;
  }

  .nav__menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav__menu > a {
    color: var(--navy-900);
    border-bottom: 1px solid var(--line);
    padding: 16px 4px;
    font-size: 1rem;
  }

  .nav__menu > a:after {
    display: none;
  }

  .button--nav {
    margin-top: 24px;
  }

  .hero {
    padding-top: 70px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__copy {
    max-width: 760px;
    padding-bottom: 20px;
  }

  .hero-product {
    width: min(590px, 100%);
    min-height: 520px;
    margin: 0 auto;
  }

  .hero-product:before {
    right: 20px;
  }

  .hero-product__orbit--one {
    right: -4px;
  }

  .hero-product__climate {
    right: 48px;
  }

  .hero-product__pump {
    right: 16px;
  }

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

  .trust-grid > div:nth-child(3):before {
    display: none;
  }

  .trust-grid > div:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .brand-strip__inner {
    flex-direction: column;
  }

  .section-heading--split, .partner-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .nature__grid, .showroom__grid, .partner-columns, .contact__grid {
    grid-template-columns: 1fr;
  }

  .nature__visual {
    width: min(610px, 100%);
    margin-inline: auto;
  }

  .nature__content {
    max-width: 710px;
  }

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

  .partner-tools {
    grid-template-columns: 1fr;
  }

  .showroom__grid {
    gap: 44px;
  }

  .showroom__image {
    min-height: 520px;
  }

  .showroom__image > img {
    height: 520px;
  }

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

  .contact-card__address {
    border-top: 0;
    border-left: 1px solid #ffffff17;
  }

  .footer__grid {
    grid-template-columns: 1.2fr repeat(2, .7fr);
  }

  .footer__contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 30px), var(--shell));
  }

  .section, .partner-section, .contact {
    padding: 82px 0;
  }

  .topbar__links {
    justify-content: space-between;
    gap: 10px;
    width: 100%;
  }

  .topbar__links span, .topbar__links a:last-child {
    display: none;
  }

  .brand img {
    width: 151px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.55rem);
  }

  .hero__lead {
    font-size: .96rem;
    line-height: 1.68;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__assurances {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    display: grid;
  }

  .hero-product {
    min-height: 415px;
    margin-top: 12px;
  }

  .hero-product:before {
    width: 360px;
    height: 360px;
    top: 36px;
    right: -40px;
  }

  .hero-product__orbit--one {
    width: 405px;
    height: 405px;
    top: 14px;
    right: -62px;
  }

  .hero-product__orbit--two {
    width: 280px;
    height: 280px;
    top: 76px;
    right: 0;
  }

  .hero-product__climate {
    width: 330px;
    top: 78px;
    right: 8px;
  }

  .hero-product__pump {
    width: 285px;
    bottom: 9px;
    right: -9px;
  }

  .hero-product__brand {
    top: 17px;
    right: 2px;
  }

  .hero-product__brand span {
    display: none;
  }

  .product-note--efficiency {
    top: 62px;
    left: 0;
  }

  .product-note--quiet {
    max-width: 169px;
    bottom: 42px;
    right: 0;
  }

  .trust-grid {
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    grid-template-columns: 1fr;
  }

  .trust-grid > div {
    padding: 16px 18px;
  }

  .trust-grid > div + div:before {
    display: none;
  }

  .trust-grid > div:nth-child(n+2) {
    border-top: 1px solid var(--line);
  }

  .brand-strip__inner {
    gap: 18px;
  }

  .brand-strip__inner > div {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .brand-strip img {
    width: 88px;
    height: 37px;
  }

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

  .section-heading h2, .partner-intro h2, .nature h2, .showroom h2, .contact h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .solutions-grid, .process-grid, .team-grid, .nature-specs {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 0;
  }

  .solution-card__body {
    min-height: 335px;
  }

  .nature {
    padding: 75px 0;
  }

  .nature__visual {
    min-height: 385px;
    padding: 45px 25px 25px;
  }

  .nature__halo {
    width: 270px;
    height: 270px;
  }

  .nature__caption {
    bottom: 13px;
    right: 13px;
  }

  .process-card {
    min-height: 265px;
  }

  .process-card__icon {
    margin-bottom: 32px;
  }

  .service-ribbon {
    flex-direction: column;
    align-items: flex-start;
  }

  .partner-tool {
    grid-template-columns: auto 1fr;
    padding: 23px;
  }

  .partner-tool__arrow {
    display: none;
  }

  .partner-benefits, .catalogues {
    padding: 24px 20px;
  }

  .authorized {
    grid-template-columns: auto 1fr;
  }

  .authorized > a {
    grid-column: 2;
  }

  .showroom__image, .showroom__image > img {
    height: 510px;
    min-height: 510px;
  }

  .showroom__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .showroom__actions .button {
    width: 100%;
  }

  .showroom__actions .text-link {
    align-self: center;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 340px;
    display: grid;
  }

  .project-card--feature {
    grid-row: auto;
  }

  .project-card--feature figcaption strong {
    font-size: 1.2rem;
  }

  .person-card {
    min-height: 315px;
  }

  .contact__heading {
    margin-bottom: 35px;
  }

  .enquiry-form {
    padding: 24px 19px;
  }

  .form-row, .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-card__top, .contact-card__address {
    padding: 24px 20px;
  }

  .contact-card__address {
    border-top: 1px solid #ffffff17;
    border-left: 0;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 25px;
  }

  .footer__brand, .footer__contact {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 420px) {
  .hero__assurances {
    grid-template-columns: 1fr;
  }

  .hero-product {
    min-height: 380px;
  }

  .hero-product:before {
    width: 325px;
    height: 325px;
    top: 46px;
    right: -73px;
  }

  .hero-product__orbit--one {
    width: 372px;
    height: 372px;
    top: 23px;
    right: -96px;
  }

  .hero-product__climate {
    width: 290px;
  }

  .hero-product__pump {
    width: 255px;
  }

  .product-note--quiet {
    display: none;
  }

  .brand-strip img {
    width: 78px;
  }

  .partner-tool {
    grid-template-columns: 1fr;
  }

  .showroom__image, .showroom__image > img {
    height: 460px;
    min-height: 460px;
  }

  .projects-grid {
    grid-auto-rows: 300px;
  }
}

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

  *, :before, :after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/