:root {
  --ink: #111823;
  --muted: #66717f;
  --line: #e2e7ee;
  --paper: #f5f7fb;
  --white: #ffffff;
  --brand: #263f87;
  --brand-dark: #14265d;
  --brand-deep: #0b1638;
  --brand-soft: #e8eefc;
  --steel: #202936;
  --shadow: 0 24px 70px rgba(15, 30, 70, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  align-items: center;
  background: var(--white);
  display: flex;
  gap: clamp(20px, 3vw, 48px);
  height: 104px;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 86px);
  position: sticky;
  top: 0;
  transition: box-shadow 180ms ease;
  z-index: 50;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(15, 30, 70, 0.12);
}

.site-header.is-hidden {
  pointer-events: none;
  transform: translateY(-110%);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 14px;
  min-width: 0;
}

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

.brand span {
  display: grid;
  line-height: 1.02;
}

.brand strong {
  color: var(--ink);
  font-size: clamp(1.14rem, 1.6vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0;
}

.brand small {
  color: var(--brand-deep);
  font-size: clamp(0.78rem, 0.95vw, 0.95rem);
  font-weight: 800;
}

.nav-cluster {
  align-items: center;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(8px, 1.2vw, 16px);
}

.site-nav a,
.nav-dropdown button {
  background: transparent;
  border: 0;
  color: var(--brand-deep);
  cursor: pointer;
  font-family: inherit;
  font-size: clamp(0.82rem, 0.95vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 10px 14px;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.is-active,
.nav-dropdown button:hover,
.nav-dropdown.is-open button,
.nav-dropdown.is-active button {
  background: var(--brand);
  color: var(--white);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown button {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.nav-dropdown button span {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  display: inline-block;
  height: 7px;
  margin-top: -4px;
  transform: rotate(45deg);
  transition: transform 180ms ease;
  width: 7px;
}

.nav-dropdown.is-open button span {
  margin-top: 2px;
  transform: rotate(225deg);
}

.dropdown-menu {
  background: var(--white);
  box-shadow: var(--shadow);
  display: none;
  left: 50%;
  min-width: 210px;
  padding: 10px;
  position: absolute;
  top: calc(100% + 22px);
  transform: translateX(-50%);
  z-index: 60;
}

.nav-dropdown.is-open .dropdown-menu {
  display: grid;
}

.dropdown-menu a {
  border-left: 4px solid transparent;
  color: var(--brand-deep);
  display: block;
  padding: 12px 14px;
}

.dropdown-menu a:hover {
  background: var(--brand-soft);
  border-left-color: var(--brand);
}

.dropdown-menu a.is-active {
  background: var(--brand-soft);
  border-left-color: var(--brand);
  color: var(--brand);
}

.nav-toggle {
  align-items: center;
  background: var(--brand);
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 42px;
  justify-content: center;
  width: 44px;
}

.nav-toggle span {
  background: var(--white);
  border-radius: 999px;
  height: 2px;
  transition: transform 180ms ease;
  width: 20px;
}

.hero {
  align-items: center;
  background:
    linear-gradient(90deg, var(--white) 0%, var(--white) 44%, rgba(232, 238, 252, 0.92) 100%);
  border-top: 5px solid var(--brand);
  display: grid;
  min-height: calc(100svh - 104px);
  overflow: hidden;
  padding: clamp(88px, 9vw, 132px) clamp(22px, 6vw, 118px) clamp(78px, 8vw, 118px);
  position: relative;
}

.hero::before,
.hero::after {
  background: rgba(38, 63, 135, 0.1);
  border-radius: 50%;
  content: "";
  height: clamp(180px, 21vw, 330px);
  position: absolute;
  width: clamp(180px, 21vw, 330px);
  z-index: 1;
}

.hero::before {
  left: -110px;
  top: 26%;
}

.hero::after {
  bottom: -135px;
  right: -120px;
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-media img {
  animation: none;
  clip-path: polygon(22% 0, 100% 0, 78% 100%, 0 100%);
  filter: saturate(0.9) contrast(1.02);
  height: 100%;
  inset: 0 12% 0 auto;
  object-fit: cover;
  object-position: center;
  opacity: 0.78;
  position: absolute;
  width: min(48vw, 760px);
}

@keyframes heroSlideshow {
  0%,
  20% {
    opacity: 1;
    transform: scale(1);
  }

  25%,
  95% {
    opacity: 0;
    transform: scale(1.04);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-overlay {
  background:
    linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.96) 38%, rgba(232, 238, 252, 0.26) 58%, rgba(232, 238, 252, 0.96) 88%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(232, 238, 252, 0.48));
}

.hero-shell {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.88fr) minmax(240px, 0.45fr);
  margin: 0 auto;
  max-width: 1400px;
  position: relative;
  transform: translateY(-26px);
  width: 100%;
  z-index: 2;
}

.hero-content {
  color: var(--brand-deep);
  max-width: 720px;
  position: relative;
  text-align: left;
}

.hero-kicker {
  border: 1px solid rgba(38, 63, 135, 0.42);
  border-radius: 999px;
  color: var(--brand-deep);
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  padding: 13px 22px;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #b8c8ff;
}

.hero h1 {
  font-size: clamp(2.45rem, 4.25vw, 4.45rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0 0 24px;
  max-width: 690px;
  text-transform: uppercase;
}

.hero-copy {
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.24rem);
  margin: 0;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
  margin-top: 38px;
}

.hero-stats {
  display: grid;
  gap: 22px;
  justify-self: end;
  margin-top: 48px;
  max-width: 330px;
  width: 100%;
}

.hero-stats article {
  align-items: center;
  background: var(--white);
  color: var(--brand-deep);
  display: flex;
  gap: 16px;
  min-height: 82px;
  padding: 16px 20px;
  position: relative;
}

.hero-stats article:nth-child(2) {
  background: var(--brand);
  color: var(--white);
  margin-left: -42px;
}

.hero-stats strong {
  display: block;
  font-size: clamp(1.65rem, 2.45vw, 2.65rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.hero-stats span {
  color: currentColor;
  display: block;
  font-size: clamp(0.9rem, 1.18vw, 1rem);
  font-weight: 800;
  line-height: 1.2;
  margin-top: 0;
}

.hero-feature-strip {
  display: none;
}

.hero-feature-strip a {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  gap: 16px;
  min-height: 104px;
  padding: 22px 26px;
}

.hero-feature-strip a:last-child {
  border-right: 0;
}

.hero-feature-strip span {
  align-items: center;
  background: var(--brand);
  color: var(--white);
  display: inline-flex;
  flex: 0 0 46px;
  font-size: 0.9rem;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.hero-feature-strip strong {
  color: var(--brand-deep);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.15;
}

.button {
  align-items: center;
  border-radius: 0;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 900;
  justify-content: center;
  min-height: 54px;
  min-width: 168px;
  padding: 13px 22px;
  text-transform: none;
}

.button-primary {
  background: var(--brand);
  color: var(--white);
}

.button-secondary {
  background: var(--brand-deep);
  border: 0;
  color: var(--white);
}

.hero .button-primary {
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--brand);
}

.hero .button-secondary {
  background: var(--brand);
  border: 1px solid var(--brand);
}

.hero-bottom-line {
  align-items: center;
  bottom: 0;
  display: flex;
  gap: 0;
  height: 8px;
  left: 0;
  position: absolute;
  width: min(34vw, 500px);
  z-index: 3;
}

.hero-bottom-line span:first-child {
  background: rgba(38, 63, 135, 0.72);
  flex: 1;
  height: 100%;
}

.hero-bottom-line span:last-child {
  background: var(--brand);
  flex: 1;
  height: 100%;
}

.section {
  padding: clamp(76px, 10vw, 132px) clamp(18px, 4vw, 56px);
}

.section-anchor {
  display: block;
  height: 1px;
  position: absolute;
  top: -110px;
  width: 1px;
}

.split,
.about-layout,
.section-heading,
.project-band {
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.intro,
.clients {
  background: var(--white);
}

.clients-heading {
  align-items: stretch;
  background: linear-gradient(90deg, var(--brand-soft), var(--white));
  border-left: 6px solid var(--brand);
  box-shadow: 0 18px 48px rgba(19, 37, 86, 0.08);
  gap: clamp(24px, 4vw, 52px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  margin-bottom: clamp(46px, 6vw, 76px);
  padding: clamp(28px, 4vw, 48px);
}

.clients-heading h2 {
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.05;
  max-width: 850px;
}

.clients-summary {
  align-content: center;
  background: #eef4ff;
  color: var(--brand-deep);
  display: grid;
  justify-self: end;
  max-width: 560px;
  padding: clamp(24px, 3vw, 38px);
  width: 100%;
}

.clients-summary strong {
  display: block;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.2;
  margin-bottom: 14px;
}

.clients-summary p {
  color: var(--brand);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.6;
  margin: 0;
  max-width: none;
}

.section-heading .clients-summary p {
  color: var(--brand);
}

.about-tabs {
  background: var(--white);
}

.about-layout {
  display: grid;
  gap: 46px;
  grid-template-columns: 1fr;
}

.about-content {
  margin: 0 auto;
  max-width: 1020px;
  text-align: center;
}

.about-content p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  margin: 22px auto 0;
  max-width: 860px;
}

.about-content .button {
  margin-top: 30px;
}

.about-cards {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.about-cards article {
  background: var(--paper);
  border-left: 5px solid var(--brand);
  box-shadow: 0 12px 34px rgba(19, 37, 86, 0.08);
  padding: 24px;
}

.about-cards span,
.finix-service-card a {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-cards h3 {
  font-size: 1.3rem;
  margin: 10px 0;
}

.about-cards p {
  color: var(--muted);
  margin: 0;
}

h2 {
  font-size: clamp(2.05rem, 4.7vw, 4.65rem);
  letter-spacing: 0;
  line-height: 1;
  margin: 12px 0 0;
}

.intro-copy > p,
.section-heading p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  margin: 0;
  max-width: 640px;
}

.mission-grid {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.mission-grid article {
  background: var(--paper);
  border-left: 4px solid var(--brand);
  padding: 20px;
}

.mission-grid span,
.service-card span {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mission-grid p {
  font-size: 1.04rem;
  font-weight: 800;
  margin: 8px 0 0;
}

.services {
  background: var(--paper);
}

.consultation {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(11, 22, 56, 0.92), rgba(20, 38, 93, 0.78)),
    url("Napo-Quarry-Site0.jpg") center / cover;
  color: var(--white);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: clamp(34px, 6vw, 58px) clamp(18px, 4vw, 56px);
}

.consultation div {
  display: grid;
  gap: 6px;
}

.consultation span {
  color: #b8c8ff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.consultation strong {
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.button-light {
  background: var(--white);
  color: var(--brand-dark);
}

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

.center-heading p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  margin: 16px auto 0;
  max-width: 680px;
}

.finix-service-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.finix-service-card {
  background: var(--white);
  box-shadow: 0 18px 46px rgba(19, 37, 86, 0.09);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.finix-service-card img {
  aspect-ratio: 1.2;
  object-fit: cover;
  width: 100%;
}

.finix-service-card div {
  border-bottom: 5px solid var(--brand);
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.finix-service-card h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  margin: 0 0 10px;
}

.finix-service-card p {
  color: var(--muted);
  margin: 0 0 22px;
}

.finix-service-card a {
  margin-top: auto;
}

.why-choose {
  align-items: center;
  background: var(--brand-deep);
  color: var(--white);
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  padding: clamp(76px, 10vw, 124px) clamp(18px, 4vw, 56px);
}

.why-choose .section-kicker {
  color: #b8c8ff;
}

.why-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.why-list article {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 18px;
}

.why-list h3 {
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  margin: 0 0 8px;
}

.why-list p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 680px;
}

.support-box {
  background: var(--white);
  border-bottom: 5px solid var(--brand);
  color: var(--ink);
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
}

.support-box span {
  color: var(--brand);
  font-weight: 900;
  text-transform: uppercase;
}

.support-box strong {
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  line-height: 1.15;
}

.section-heading {
  align-items: end;
  margin-bottom: 42px;
}

.service-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.plants-section {
  background: linear-gradient(180deg, var(--white), #eef4ff);
}

.plants-heading-panel {
  align-items: center;
  background: var(--brand-soft);
  border-left: 6px solid var(--brand);
  display: grid;
  gap: clamp(28px, 5vw, 80px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  margin-bottom: clamp(34px, 5vw, 58px);
  padding: clamp(24px, 4vw, 42px);
}

.plants-heading-panel h2 {
  color: var(--brand-deep);
  font-size: clamp(1.9rem, 3.6vw, 3.8rem);
  line-height: 1;
  margin-top: 18px;
  max-width: 760px;
}

.plants-heading-panel p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.55;
  margin: 0;
  max-width: 680px;
}

.plants-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 500px));
  justify-content: center;
  margin: 0 auto;
  max-width: 1040px;
}

.plant-card {
  animation: plantReveal 700ms ease both;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(19, 37, 86, 0.1);
  min-width: 0;
  overflow: hidden;
  transform: translateY(0);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.plant-card:nth-child(2) {
  animation-delay: 70ms;
}

.plant-card:nth-child(3) {
  animation-delay: 140ms;
}

.plant-card:nth-child(4) {
  animation-delay: 210ms;
}

.plant-card:nth-child(5) {
  animation-delay: 280ms;
}

.plant-card:nth-child(6) {
  animation-delay: 350ms;
}

.plant-card:nth-child(7) {
  animation-delay: 420ms;
}

@keyframes plantReveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.plant-card img {
  background: var(--white);
  display: block;
  height: clamp(190px, 18vw, 250px);
  object-fit: cover;
  padding: 0;
  transform: scale(0.985);
  transition: transform 260ms ease;
  width: 100%;
}

.plant-card div {
  border-bottom: 5px solid var(--brand);
  min-height: 126px;
  padding: 18px 20px;
}

.plant-card:hover {
  box-shadow: 0 26px 64px rgba(19, 37, 86, 0.16);
  transform: translateY(-6px);
}

.plant-card:hover img {
  transform: scale(1.025);
}

.plant-card span {
  color: var(--brand);
  display: block;
  font-size: clamp(0.86rem, 1.12vw, 1.05rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.plant-card h3 {
  color: var(--brand-deep);
  font-size: clamp(0.82rem, 1.08vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.42;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.plant-card p {
  color: var(--muted);
  font-size: clamp(0.82rem, 1.08vw, 1rem);
  line-height: 1.42;
  margin: 0;
}

.equipment-section {
  background: var(--white);
}

.equipment-heading {
  align-items: center;
  background: var(--brand-soft);
  border-left: 6px solid var(--brand);
  margin-bottom: clamp(34px, 5vw, 58px);
  padding: clamp(24px, 4vw, 42px);
}

.equipment-heading h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.8rem);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  background: transparent;
  counter-reset: equipment;
}

.equipment-grid article {
  align-content: center;
  background:
    linear-gradient(135deg, rgba(239, 245, 255, 0.96), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(38, 63, 135, 0.16);
  border-left: 5px solid var(--brand);
  box-shadow: 0 16px 40px rgba(19, 37, 86, 0.08);
  counter-increment: equipment;
  display: grid;
  gap: 6px;
  min-height: 112px;
  opacity: 0;
  overflow: hidden;
  padding: 22px 24px 22px 78px;
  position: relative;
  text-align: left;
  transform: translateY(34px) scale(0.98);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.equipment-grid article.is-visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

.equipment-grid article::before {
  align-items: center;
  background: var(--brand);
  color: var(--white);
  content: counter(equipment, decimal-leading-zero);
  display: flex;
  font-size: 0.78rem;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  left: 22px;
  letter-spacing: 0.04em;
  position: absolute;
  top: 22px;
  width: 38px;
}

.equipment-grid article::after {
  background: rgba(38, 63, 135, 0.07);
  border-radius: 50%;
  content: "";
  height: 120px;
  position: absolute;
  right: -52px;
  top: -52px;
  transition: transform 260ms ease;
  width: 120px;
}

.equipment-grid article:hover {
  border-color: rgba(38, 63, 135, 0.34);
  box-shadow: 0 22px 48px rgba(19, 37, 86, 0.13);
  transform: translateY(-4px);
}

.equipment-grid article:hover::after {
  transform: scale(1.45);
}

.equipment-grid article:last-child {
  grid-column: span 2;
}

.equipment-grid h3 {
  color: var(--brand);
  font-size: clamp(0.86rem, 1.12vw, 1.05rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.12;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.equipment-grid p {
  color: var(--brand-deep);
  font-size: clamp(0.82rem, 1.08vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.42;
  margin: 0;
  text-transform: uppercase;
}

.equipment-grid article:nth-child(2) {
  transition-delay: 70ms;
}

.equipment-grid article:nth-child(3) {
  transition-delay: 140ms;
}

.equipment-grid article:nth-child(4) {
  transition-delay: 210ms;
}

.equipment-grid article:nth-child(5) {
  transition-delay: 280ms;
}

.equipment-grid article:nth-child(6) {
  transition-delay: 350ms;
}

.equipment-grid article:nth-child(7) {
  transition-delay: 420ms;
}

.equipment-grid article:nth-child(8) {
  transition-delay: 490ms;
}

.equipment-grid article:nth-child(9) {
  transition-delay: 560ms;
}

.equipment-grid article:nth-child(10) {
  transition-delay: 630ms;
}

.equipment-grid article:nth-child(11) {
  transition-delay: 700ms;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom: 5px solid var(--brand);
  box-shadow: 0 18px 46px rgba(19, 37, 86, 0.08);
  min-width: 0;
  overflow: hidden;
}

.service-card img {
  aspect-ratio: 1.25;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.service-card div {
  padding: 26px;
}

.service-card h3 {
  font-size: 1.35rem;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 10px 0;
}

.service-card p {
  color: var(--muted);
  margin: 0;
}

.service-card-compact {
  border-top: 5px solid var(--brand);
  display: flex;
  min-height: 260px;
}

.service-card-compact div {
  align-content: center;
  display: grid;
}

.project-band {
  align-items: center;
  background: var(--brand-deep);
  color: var(--white);
  padding: clamp(72px, 10vw, 124px) clamp(18px, 4vw, 56px);
}

.project-band .section-kicker {
  color: #b8c8ff;
}

.project-band p {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  margin: 20px 0 30px;
  max-width: 660px;
}

.project-card {
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--ink);
  justify-self: end;
  max-width: 540px;
}

.project-card img {
  aspect-ratio: 1.42;
  object-fit: cover;
  width: 100%;
}

.project-card div {
  border-bottom: 5px solid var(--brand);
  display: grid;
  gap: 8px;
  padding: 24px;
}

.project-card span {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card strong {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.logo-marquee {
  display: grid;
  gap: clamp(42px, 6vw, 82px);
  margin-top: 18px;
  overflow: hidden;
  position: relative;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: min(12vw, 150px);
  z-index: 2;
}

.logo-marquee::before {
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
  left: 0;
}

.logo-marquee::after {
  background: linear-gradient(270deg, var(--white), rgba(255, 255, 255, 0));
  right: 0;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logoMarquee 34s linear infinite;
}

.logo-track-slow {
  animation-duration: 40s;
}

.logo-row {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: clamp(62px, 8vw, 132px);
  padding-right: clamp(62px, 8vw, 132px);
}

.logo-row img {
  filter: none;
  height: clamp(48px, 5vw, 82px);
  max-width: clamp(130px, 15vw, 250px);
  object-fit: contain;
  opacity: 0.88;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
  width: auto;
}

.logo-row img.logo-republic {
  height: clamp(68px, 6.4vw, 104px);
  max-width: clamp(150px, 17vw, 280px);
}

.logo-row img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.contact {
  background:
    linear-gradient(135deg, #eef4ff 0%, #dbe7ff 42%, #b9cbff 100%);
  color: var(--white);
  overflow: hidden;
  padding: clamp(32px, 4vw, 52px) clamp(22px, 6vw, 118px) 24px;
  position: relative;
}

.contact-grid {
  align-items: start;
  display: grid;
  gap: clamp(22px, 3.4vw, 46px);
  grid-template-columns: minmax(280px, 1.25fr) minmax(180px, 0.72fr) minmax(300px, 1fr);
  margin: 0 auto;
  max-width: 1600px;
}

.footer-brand {
  align-items: center;
  display: inline-flex;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-brand img {
  height: 44px;
  width: 44px;
}

.footer-brand span {
  color: var(--brand-deep);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.contact-brand p {
  color: #34415f;
  font-size: clamp(0.94rem, 1.22vw, 1.12rem);
  line-height: 1.55;
  margin: 0 0 16px;
  max-width: 470px;
}

.email-pill {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(19, 37, 86, 0.12);
  border-radius: 999px;
  display: flex;
  max-width: 320px;
  padding: 0 0 0 18px;
}

.email-pill input {
  background: transparent;
  border: 0;
  color: var(--brand-deep);
  flex: 1;
  font: inherit;
  font-size: clamp(0.9rem, 1.1vw, 1.02rem);
  font-weight: 800;
  min-height: 46px;
  min-width: 0;
  outline: none;
}

.email-pill input::placeholder {
  color: rgba(20, 38, 93, 0.52);
}

.email-pill button {
  align-items: center;
  background: var(--brand);
  border: 0;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 46px;
  font-size: 1.05rem;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  margin: 0 -2px 0 10px;
  width: 46px;
}

.footer-column {
  align-self: start;
  display: grid;
  gap: 13px;
  align-content: start;
  padding-top: 4px;
}

.footer-column h2 {
  color: var(--brand-deep);
  font-size: clamp(1rem, 1.35vw, 1.32rem);
  line-height: 1;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  color: #34415f;
  font-size: clamp(0.78rem, 0.94vw, 0.92rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}

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

.contact-list a,
.contact-list p {
  align-items: center;
  display: flex;
  gap: 12px;
}

.contact-list span {
  color: var(--brand);
  flex: 0 0 28px;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.contact-bottom {
  align-items: center;
  border-top: 1px solid rgba(38, 63, 135, 0.22);
  display: flex;
  gap: 28px;
  justify-content: flex-start;
  margin: clamp(24px, 3vw, 36px) auto 0;
  max-width: 1600px;
  padding-top: 18px;
}

.contact-bottom span {
  color: var(--brand-deep);
  font-size: clamp(0.72rem, 0.95vw, 0.9rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.back-top {
  align-items: center;
  background: var(--brand);
  border-radius: 50%;
  bottom: 24px;
  color: var(--white);
  display: inline-flex;
  font-size: 1.55rem;
  font-weight: 900;
  height: 58px;
  justify-content: center;
  position: absolute;
  right: 26px;
  width: 58px;
}

@media (max-width: 1080px) {
  .site-header {
    height: 82px;
    padding: 0 22px;
  }

  .brand img {
    height: 50px;
    width: 50px;
  }

  .site-nav {
    gap: 8px;
  }

  .hero {
    min-height: calc(100svh - 82px);
  }

  .hero-media img {
    inset: 0 0 0 auto;
    opacity: 0.55;
    width: 72vw;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    transform: translateY(-16px);
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-self: start;
    margin-top: 12px;
    max-width: 560px;
  }

  .hero-stats article:nth-child(2) {
    margin-left: 0;
  }

  .split,
  .about-layout,
  .section-heading,
  .project-band,
  .why-choose {
    grid-template-columns: 1fr;
  }

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

  .contact-brand {
    grid-column: 1 / -1;
  }

  .section-heading {
    align-items: start;
  }

  .clients-heading {
    grid-template-columns: 1fr;
  }

  .plants-heading-panel {
    grid-template-columns: 1fr;
  }

  .clients-summary {
    justify-self: stretch;
    max-width: none;
  }

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

  .finix-service-grid,
  .about-cards,
  .plants-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 920px;
  }

  .plant-card-wide {
    grid-column: span 1;
  }

  .plant-card img {
    height: clamp(176px, 24vw, 220px);
  }

  .service-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
  }

  .service-card-compact {
    display: block;
    min-height: auto;
  }

  .service-card img {
    aspect-ratio: auto;
    height: 100%;
  }

  .support-box {
    justify-self: start;
  }

}

@media (max-width: 720px) {
  .site-header {
    height: 76px;
    background: var(--white);
  }

  .brand img {
    height: 46px;
    width: 46px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    color: var(--ink);
    display: none;
    gap: 0;
    padding: 10px;
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a,
  .nav-dropdown button {
    color: var(--brand-deep);
    padding: 13px 14px;
    text-align: left;
    width: 100%;
  }

  .site-nav a:hover,
  .site-nav a.is-active,
  .nav-dropdown button:hover,
  .nav-dropdown.is-open button,
  .nav-dropdown.is-active button {
    background: var(--brand);
    color: var(--white);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown button {
    justify-content: space-between;
  }

  .dropdown-menu {
    box-shadow: none;
    left: auto;
    min-width: 0;
    padding: 0 0 6px 16px;
    position: static;
    transform: none;
  }

  .dropdown-menu a {
    font-size: 0.95rem;
    padding: 10px 14px;
  }

  .nav-toggle.is-open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle.is-open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    min-height: calc(100svh - 76px);
    padding: 70px 18px 44px;
  }

  .hero::before {
    left: -150px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(232, 238, 252, 0.92)),
      linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(232, 238, 252, 0.42));
  }

  .hero-media img {
    clip-path: none;
    inset: 0;
    opacity: 0.22;
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.08;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .hero-stats article {
    padding: 16px;
  }

  .hero-bottom-line {
    display: none;
  }

  .button {
    width: 100%;
  }

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

  .service-card img {
    aspect-ratio: 1.45;
  }

  .finix-service-grid,
  .about-cards,
  .plants-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .plant-card img {
    height: clamp(170px, 52vw, 230px);
  }

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

  .equipment-grid article,
  .equipment-grid article:nth-child(2n),
  .equipment-grid article:last-child {
    border-right: 0;
    grid-column: auto;
  }

  .equipment-grid article {
    min-height: 112px;
  }

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

  .contact {
    padding: 42px 18px 28px;
  }

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

  .footer-brand {
    margin-bottom: 20px;
  }

  .footer-brand img {
    height: 44px;
    width: 44px;
  }

  .contact-brand p {
    margin-bottom: 20px;
  }

  .email-pill {
    padding-left: 22px;
  }

  .email-pill input {
    min-height: 52px;
  }

  .email-pill button {
    flex-basis: 52px;
    height: 52px;
    width: 52px;
  }

  .footer-column {
    gap: 12px;
  }

  .footer-column h2 {
    margin-bottom: 12px;
  }

  .contact-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 34px;
    padding-right: 80px;
  }

  .back-top {
    bottom: 22px;
    height: 62px;
    right: 18px;
    width: 62px;
  }

}

@media (max-width: 430px) {
  .brand small {
    display: none;
  }

}
