:root {
  --ink: #071b2c;
  --ink-soft: #17364d;
  --blue: #0879b8;
  --blue-bright: #12a7df;
  --green: #67a93f;
  --green-dark: #4d8d2c;
  --cream: #f4f7f5;
  --white: #fff;
  --line: #dce5e8;
  --muted: #60717c;
  --shadow: 0 24px 70px rgba(6, 31, 48, .12);
  --radius: 24px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.utility {
  color: rgba(255,255,255,.8);
  background: #04131f;
  font-size: 12px;
}

.utility-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-weight: 650;
}

.status-dot,
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #78cf4e;
  box-shadow: 0 0 0 5px rgba(120,207,78,.12);
}

.utility-links {
  display: flex;
  gap: 22px;
}

.utility a {
  transition: color .2s ease;
}

.utility a:hover {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(7,27,44,.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  width: 220px;
  flex: 0 0 auto;
}

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

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 23px;
}

.main-nav > a,
.services-trigger {
  position: relative;
  padding: 0;
  border: 0;
  color: #29465a;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.main-nav > a::after,
.services-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--green);
  transition: right .25s ease;
}

.main-nav > a:hover::after,
.services-trigger:hover::after,
.services-menu.open .services-trigger::after {
  right: 0;
}

.services-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.services-trigger > span {
  color: var(--blue);
  font-size: 13px;
  transition: transform .2s ease;
}

.services-menu {
  position: static;
}

.services-menu.open .services-trigger > span,
.services-menu:hover .services-trigger > span {
  transform: rotate(180deg);
}

.services-mega {
  position: absolute;
  z-index: 120;
  top: calc(100% - 1px);
  left: 50%;
  width: min(1120px, calc(100vw - 40px));
  padding: 24px;
  display: grid;
  grid-template-columns: 195px 1fr;
  gap: 22px;
  border: 1px solid #dce5e8;
  border-radius: 0 0 22px 22px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(7,27,44,.18);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.services-menu:hover .services-mega,
.services-menu:focus-within .services-mega,
.services-menu.open .services-mega {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-intro {
  padding: 20px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(145deg, #082236, #0b3b52);
}

.mega-intro span,
.mega-intro strong {
  display: block;
}

.mega-intro span {
  color: #8bd5ef;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.mega-intro strong {
  margin-top: 8px;
  font-size: 23px;
  line-height: 1.08;
}

.mega-intro p {
  margin: 13px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 11px;
}

.mega-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mega-group {
  padding: 7px;
  border-radius: 15px;
  background: #f7f9f9;
}

.mega-group-title {
  display: block;
  padding: 8px 10px 6px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.mega-sanitary .mega-group-title {
  color: var(--green-dark);
}

.mega-wastewater .mega-group-title {
  color: #7550a3;
}

.mega-group a {
  padding: 8px;
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: center;
  gap: 9px;
  border-radius: 11px;
  color: var(--ink);
  transition: background .2s ease, transform .2s ease;
}

.mega-group a::after {
  display: none;
}

.mega-group a:hover {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 7px 18px rgba(7,27,44,.07);
  transform: translateX(3px);
}

.mega-group img {
  width: 45px;
  height: 45px;
  padding: 2px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}

.mega-group a > span,
.mega-group strong,
.mega-group small {
  display: block;
}

.mega-group strong {
  font-size: 11px;
  line-height: 1.2;
}

.mega-group small {
  margin-top: 2px;
  color: #778892;
  font-size: 8px;
  font-weight: 600;
}

.mega-footer {
  grid-column: 1 / -1;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.mega-footer a {
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
}

.mega-footer a::after {
  display: none;
}

.mega-footer a:last-child {
  color: var(--green-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone {
  display: grid;
  grid-template-columns: 25px auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 8px;
  color: var(--ink);
}

.header-phone > span {
  grid-row: 1 / 3;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  background: #e8f5fa;
  font-size: 11px;
}

.header-phone small,
.header-phone strong {
  display: block;
  line-height: 1.05;
}

.header-phone small {
  color: #81919a;
  font-size: 8px;
  font-weight: 750;
  text-transform: uppercase;
}

.header-phone strong {
  font-size: 10px;
}

.mobile-nav-phone {
  display: none;
}

.mobile-services-list {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 10px;
  background: var(--ink);
  transition: transform .2s, opacity .2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

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

.button-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 13px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 14px 30px rgba(77,141,44,.25);
}

.button-primary:hover,
.button-whatsapp:hover {
  box-shadow: 0 18px 38px rgba(77,141,44,.35);
}

.button-whatsapp {
  color: #fff;
  background: #168a4d;
  box-shadow: 0 10px 24px rgba(22,138,77,.2);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
}

.button-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.35);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 0;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(7,27,44,.99) 0%, rgba(7,32,52,.98) 56%, rgba(6,48,67,.96) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .045;
  background-image:
    linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, #000, transparent 75%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb-one {
  width: 480px;
  height: 480px;
  right: 3%;
  top: -220px;
  background: radial-gradient(circle, rgba(18,167,223,.17), transparent 67%);
}

.hero-orb-two {
  width: 400px;
  height: 400px;
  left: -220px;
  bottom: -280px;
  background: radial-gradient(circle, rgba(103,169,63,.12), transparent 66%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: 58px;
}

.eyebrow,
.overline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow {
  color: #82d6f1;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--green);
}

.hero h1 {
  max-width: 680px;
  margin: 20px 0 24px;
  font-size: clamp(42px, 4.5vw, 60px);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 790;
}

.hero h1 strong {
  display: block;
  color: #8bc861;
  font-weight: inherit;
}

.hero-lead {
  max-width: 620px;
  margin: 0;
  color: rgba(235,245,249,.72);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.65;
}

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

.phone-icon {
  font-size: 17px;
}

.hero-proof {
  max-width: 660px;
  margin-top: 42px;
  padding-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero-proof > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.proof-check {
  width: 22px;
  height: 22px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #b7e29a;
  border: 1px solid rgba(139,200,97,.4);
  border-radius: 50%;
  background: rgba(103,169,63,.12);
  font-size: 12px;
}

.hero-proof p,
.hero-proof small {
  display: block;
  margin: 0;
}

.hero-proof strong {
  display: block;
  font-size: 13px;
}

.hero-proof small {
  margin-top: 2px;
  color: rgba(255,255,255,.45);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-height: 550px;
}

.hero-visual-original {
  min-height: 625px;
  display: grid;
  grid-template-rows: 340px auto;
  align-content: center;
  gap: 14px;
}

.hero-showcase {
  position: relative;
  inset: auto;
  height: 340px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  background: #e9f0f2;
  box-shadow: 0 35px 80px rgba(0,0,0,.3);
}

.hero-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,24,38,.44), transparent 44%);
  pointer-events: none;
}

.hero-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-showcase figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 22px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(5,24,38,.82);
  backdrop-filter: blur(14px);
}

.hero-showcase figcaption strong,
.hero-showcase figcaption small {
  display: block;
}

.hero-showcase figcaption strong {
  font-size: 13px;
}

.hero-showcase figcaption small {
  color: rgba(255,255,255,.55);
  font-size: 11px;
}

.hero-image-stamp {
  position: absolute;
  z-index: 3;
  right: -18px;
  top: 214px;
  width: 126px;
  height: 126px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 7px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: #d9f0cb;
  text-align: center;
  box-shadow: 0 16px 38px rgba(0,0,0,.28);
  transform: rotate(-7deg);
}

.hero-image-stamp strong {
  font-size: 25px;
  line-height: 1;
}

.hero-image-stamp span {
  margin-top: 6px;
  font-size: 9px;
  font-weight: 850;
  line-height: 1.2;
}

.hero-quote-form {
  position: relative;
  z-index: 4;
  padding: 19px 20px 20px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 19px;
  color: var(--ink);
  background: rgba(255,255,255,.97);
  box-shadow: 0 25px 60px rgba(0,0,0,.23);
}

.hero-form-heading {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.hero-form-heading span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-form-heading strong {
  color: var(--ink-soft);
  font-size: 11px;
}

.hero-form-fields {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
}

.hero-form-fields label > span {
  display: block;
  margin-bottom: 4px;
  color: #466071;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.hero-form-fields input,
.hero-form-fields select {
  width: 100%;
  height: 43px;
  padding: 0 11px;
  border: 1px solid #d7e0e3;
  border-radius: 9px;
  color: var(--ink);
  background: #f8fafb;
  outline: none;
}

.hero-form-fields input:focus,
.hero-form-fields select:focus {
  border-color: #73b9d8;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(18,167,223,.1);
}

.hero-form-fields .button {
  min-height: 43px;
  align-self: end;
}

.hero-visual figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 70px rgba(0,0,0,.27);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-main {
  position: absolute;
  inset: 20px 135px 35px 0;
  border-radius: 26px;
}

.visual-main img {
  object-position: center 54%;
}

.visual-main::after,
.visual-secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(7,27,44,.2), transparent 44%);
}

.visual-main figcaption {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(5,24,38,.78);
  backdrop-filter: blur(14px);
}

.visual-main figcaption strong,
.visual-main figcaption small {
  display: block;
}

.visual-main figcaption strong {
  font-size: 13px;
}

.visual-main figcaption small {
  color: rgba(255,255,255,.55);
  font-size: 11px;
}

.visual-secondary {
  position: absolute;
  right: 0;
  width: 190px;
  height: 220px;
  border-radius: 20px;
}

.visual-secondary img {
  object-position: center;
}

.visual-top {
  top: 0;
}

.visual-bottom {
  right: 10px;
  bottom: 18px;
  height: 250px;
}

.visual-bottom img {
  object-position: 59% center;
}

.visual-badge {
  position: absolute;
  z-index: 3;
  top: 210px;
  right: 88px;
  width: 112px;
  height: 112px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 6px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: #d9f0cb;
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
  transform: rotate(-8deg);
}

.visual-badge strong {
  font-size: 25px;
  line-height: 1;
}

.visual-badge span {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.25;
}

.hero-client-strip {
  position: relative;
  z-index: 2;
  min-height: 72px;
  margin-top: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.48);
  font-size: 12px;
}

.hero-client-strip span {
  color: #8bc861;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.hero-client-strip p {
  margin: 0;
  font-weight: 700;
}

.hero-client-strip i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}

.quick-paths {
  position: relative;
  z-index: 5;
  background: #fff;
  box-shadow: 0 15px 50px rgba(6,31,48,.08);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.quick-card {
  min-height: 110px;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid var(--line);
  transition: background .2s ease;
}

.quick-card:first-child {
  border-left: 1px solid var(--line);
}

.quick-card:hover {
  background: #f5f9f5;
}

.quick-number {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.quick-card div {
  min-width: 0;
}

.quick-card strong,
.quick-card small {
  display: block;
}

.quick-card strong {
  font-size: 15px;
}

.quick-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.quick-arrow {
  margin-left: auto;
  color: var(--blue);
  font-size: 22px;
  transition: transform .2s ease;
}

.quick-card:hover .quick-arrow {
  transform: translateX(4px);
}

.section {
  padding: 112px 0;
}

.solutions {
  background:
    radial-gradient(circle at 10% 10%, rgba(103,169,63,.08), transparent 23%),
    #f5f8f7;
}

.section-heading {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: end;
  gap: 70px;
}

.section-heading h2,
.method h2,
.experience h2,
.quote-section h2,
.faq h2 {
  margin: 12px 0 0;
  font-size: clamp(34px, 4.7vw, 56px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.section-heading p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
}

.section-heading-centered {
  grid-template-columns: 1fr;
  gap: 17px;
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading-centered .overline {
  justify-content: center;
}

.section-heading-centered p {
  max-width: 700px;
  margin-inline: auto;
}

.division-grid {
  margin-bottom: 52px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 20px;
}

.division-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 23px;
  color: #fff;
  background: #081d2d;
  box-shadow: 0 24px 60px rgba(7,27,44,.15);
}

.division-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  top: -140px;
  border: 60px solid rgba(255,255,255,.025);
  border-radius: 50%;
  pointer-events: none;
}

.division-sanitation {
  background: linear-gradient(145deg, #082236, #0b3548);
}

.division-hydraulic {
  background: linear-gradient(145deg, #092237, #123d50);
}

.division-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 15px;
}

.division-head > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(103,169,63,.45);
  border-radius: 13px;
  color: #c1e7a6;
  background: rgba(103,169,63,.1);
  font-size: 12px;
  font-weight: 900;
}

.division-hydraulic .division-head > span {
  color: #9fdef3;
  border-color: rgba(18,167,223,.45);
  background: rgba(18,167,223,.1);
}

.division-head small,
.division-head h3 {
  display: block;
  margin: 0;
}

.division-head small {
  color: rgba(255,255,255,.45);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.division-head h3 {
  margin-top: 2px;
  font-size: 25px;
  line-height: 1.1;
}

.division-card > p {
  position: relative;
  z-index: 1;
  margin: 20px 0 24px;
  color: rgba(255,255,255,.57);
  font-size: 13px;
}

.division-links {
  position: relative;
  z-index: 1;
  display: grid;
}

.division-links a,
.hydraulic-groups a {
  padding: 11px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 700;
  transition: color .2s, padding-left .2s;
}

.division-links a:first-child,
.hydraulic-groups a:first-of-type {
  border-top: 1px solid rgba(255,255,255,.09);
}

.division-links a:hover,
.hydraulic-groups a:hover {
  padding-left: 5px;
  color: #fff;
}

.division-links a span {
  color: #9ed47b;
}

.hydraulic-groups {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.hydraulic-groups h4 {
  margin: 0 0 12px;
  color: #9fdef3;
  font-size: 14px;
}

.hydraulic-groups h4 small {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,.42);
  font-size: 9px;
  font-weight: 650;
}

.hydraulic-groups a span {
  color: #74c7e6;
}

.detail-heading {
  max-width: 650px;
  margin: 0 auto 28px;
  text-align: center;
}

.detail-heading span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.detail-heading h3 {
  margin: 7px 0 0;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -.025em;
}

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

.decision-card {
  --decision-color: var(--blue);
  position: relative;
  overflow: hidden;
  padding: 28px 27px 25px;
  display: flex;
  flex-direction: column;
  border: 1px solid #dce5e8;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(7,27,44,.075);
  transition: transform .25s ease, box-shadow .25s ease;
}

.decision-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 5px;
  background: var(--decision-color);
}

.decision-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.decision-sanitary {
  --decision-color: #5e9f38;
}

.decision-water {
  --decision-color: #0879b8;
}

.decision-wastewater {
  --decision-color: #7550a3;
}

.decision-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.decision-number {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: var(--decision-color);
  font-size: 10px;
  font-weight: 900;
}

.decision-audience {
  color: var(--decision-color);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .07em;
  text-align: right;
  text-transform: uppercase;
}

.decision-icon {
  width: 66px;
  height: 66px;
  margin: 25px 0 19px;
  padding: 5px;
  border: 1px solid color-mix(in srgb, var(--decision-color) 20%, white);
  border-radius: 16px;
  background: color-mix(in srgb, var(--decision-color) 7%, white);
}

.decision-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.decision-card h3 {
  min-height: 58px;
  margin: 0 0 11px;
  font-size: 23px;
  line-height: 1.17;
  letter-spacing: -.03em;
}

.decision-card > p {
  min-height: 84px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.decision-questions {
  margin: 22px 0;
  padding: 19px 0;
  display: grid;
  gap: 10px;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.decision-questions li {
  position: relative;
  padding-left: 21px;
  color: #29465a;
  font-size: 12px;
  font-weight: 720;
}

.decision-questions li::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 1px;
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--decision-color);
  font-size: 8px;
  font-weight: 900;
}

.decision-actions {
  margin-top: auto;
  display: grid;
}

.decision-actions a {
  padding: 11px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 820;
  transition: color .2s, padding-left .2s;
}

.decision-actions a:first-child {
  border-top: 1px solid var(--line);
}

.decision-actions a:hover {
  padding-left: 4px;
  color: var(--decision-color);
}

.decision-actions a span {
  color: var(--decision-color);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1.08fr .96fr .96fr;
  gap: 22px;
}

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

.pillar-grid .solution-image {
  height: 205px;
}

.pillar-grid .solution-content {
  padding: 27px 24px 25px;
}

.pillar-grid .solution-content h3 {
  min-height: 53px;
  font-size: 20px;
}

.pillar-grid .solution-content > p {
  min-height: 90px;
  font-size: 13px;
}

.pillar-grid .solution-content ul {
  min-height: 118px;
  margin: 18px 0;
}

.pillar-grid .solution-card:nth-child(4) .solution-icon {
  background: #8052a8;
}

.solution-card {
  overflow: hidden;
  border: 1px solid #dfe7e8;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 35px rgba(7,27,44,.055);
  transition: transform .25s ease, box-shadow .25s ease;
}

.solution-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.solution-image {
  position: relative;
  height: 238px;
  display: block;
  overflow: hidden;
}

.solution-featured .solution-image {
  height: 270px;
}

.solution-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,27,44,.4), transparent 58%);
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.solution-card:first-child .solution-image img {
  object-position: center 58%;
}

.solution-card:hover .solution-image img {
  transform: scale(1.045);
}

.image-label {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 18px;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 99px;
  color: #fff;
  background: rgba(7,27,44,.64);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.solution-content {
  position: relative;
  padding: 30px;
}

.solution-icon {
  position: absolute;
  top: -27px;
  right: 25px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.solution-card:nth-child(2) .solution-icon {
  background: var(--green-dark);
}

.solution-card:nth-child(3) .solution-icon {
  background: #d18324;
}

.solution-content h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.solution-content > p {
  min-height: 76px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.solution-content ul {
  margin: 22px 0;
  padding: 18px 0;
  display: grid;
  gap: 8px;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #355062;
  font-size: 13px;
  font-weight: 680;
}

.solution-content li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green-dark);
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.service-links {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.service-links a {
  padding: 13px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #dfe7e8;
  border-radius: 10px;
  color: #456071;
  background: rgba(255,255,255,.65);
  font-size: 12px;
  font-weight: 750;
  transition: color .2s, background .2s;
}

.service-links a:hover {
  color: var(--blue);
  background: #fff;
}

.trust-ribbon {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid #dbe5e7;
  border-radius: 16px;
  background: #fff;
}

.trust-ribbon > div {
  position: relative;
  padding: 21px 20px 21px 46px;
  border-right: 1px solid #dbe5e7;
}

.trust-ribbon > div:last-child {
  border-right: 0;
}

.trust-ribbon > div::before {
  content: "✓";
  position: absolute;
  left: 19px;
  top: 22px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 10px;
  font-weight: 900;
}

.trust-ribbon strong,
.trust-ribbon span {
  display: block;
}

.trust-ribbon strong {
  color: var(--ink);
  font-size: 12px;
}

.trust-ribbon span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.specialties {
  background: #fff;
}

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

.specialty-card {
  position: relative;
  overflow: hidden;
  padding: 31px;
  border: 1px solid #dde6e8;
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 10px 35px rgba(7,27,44,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.specialty-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 4px;
  background: var(--specialty-color);
}

.specialty-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.specialty-orange {
  --specialty-color: #db812b;
}

.specialty-blue {
  --specialty-color: #0879b8;
}

.specialty-green {
  --specialty-color: #5a9a36;
}

.specialty-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 23px;
  padding: 5px;
  border: 1px solid color-mix(in srgb, var(--specialty-color) 22%, white);
  border-radius: 14px;
  background: color-mix(in srgb, var(--specialty-color) 8%, white);
}

.specialty-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.specialty-card > span {
  color: var(--specialty-color);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.specialty-card h3 {
  margin: 9px 0 12px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -.025em;
}

.specialty-card p {
  min-height: 72px;
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 13px;
}

.specialty-card > strong {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--specialty-color);
  font-size: 12px;
}

.specialty-card i {
  font-style: normal;
  transition: transform .2s ease;
}

.specialty-card:hover i {
  transform: translateX(4px);
}

.service-links-expanded {
  margin-top: 20px;
}

.method {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0a2b41;
}

.method::before {
  content: "";
  position: absolute;
  top: -170px;
  right: -120px;
  width: 600px;
  height: 600px;
  border: 110px solid rgba(18,167,223,.06);
  border-radius: 50%;
}

.method-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 110px;
}

.overline-light {
  color: #8bd0eb;
}

.method-copy > p {
  margin: 22px 0 32px;
  color: rgba(255,255,255,.62);
}

.button-light {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,.15);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: item;
}

.steps li {
  position: relative;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.steps li:first-child {
  border-top: 1px solid rgba(255,255,255,.1);
}

.steps li > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(139,200,97,.4);
  border-radius: 15px;
  color: #b7e29a;
  background: rgba(103,169,63,.1);
  font-size: 16px;
  font-weight: 900;
}

.steps strong {
  font-size: 18px;
}

.steps p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.56);
  font-size: 14px;
}

.experience {
  background: #fff;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: start;
  gap: 78px;
}

.experience-gallery {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.experience-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #eaf0f1;
}

.experience-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-tall {
  grid-row: 1 / 3;
}

.gallery-tall img {
  object-position: 50% 66%;
}

.experience-gallery figure:nth-child(2) img {
  object-position: center 47%;
}

.gallery-note {
  position: absolute;
  left: 26px;
  bottom: 24px;
  padding: 16px 19px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 13px;
  color: #fff;
  background: rgba(7,27,44,.82);
  backdrop-filter: blur(10px);
}

.gallery-note strong,
.gallery-note span {
  display: block;
}

.gallery-note span {
  color: rgba(255,255,255,.58);
  font-size: 11px;
}

.experience-lead {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.integrated-routes {
  margin: 28px 0 20px;
  display: grid;
  gap: 10px;
}

.integrated-route {
  --route-color: var(--blue);
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  align-items: center;
  gap: 13px;
  border: 1px solid #dce6e8;
  border-left: 4px solid var(--route-color);
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 8px 22px rgba(7,27,44,.045);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.integrated-route:hover {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--route-color) 45%, white);
  box-shadow: 0 12px 28px rgba(7,27,44,.09);
  transform: translateX(4px);
}

.integrated-route img {
  width: 48px;
  height: 48px;
  padding: 3px;
  object-fit: contain;
  border-radius: 11px;
  background: color-mix(in srgb, var(--route-color) 8%, white);
}

.integrated-route span,
.integrated-route strong,
.integrated-route small {
  display: block;
}

.integrated-route strong {
  font-size: 14px;
  line-height: 1.25;
}

.integrated-route small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.integrated-route i {
  color: var(--route-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  transition: transform .2s ease;
}

.integrated-route:hover i {
  transform: translateX(3px);
}

.route-sanitary {
  --route-color: #5a9a36;
}

.route-water {
  --route-color: #0879b8;
}

.route-wastewater {
  --route-color: #7550a3;
}

.experience-assurances {
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.experience-assurances span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #386d22;
  background: #edf6e8;
  font-size: 10px;
  font-weight: 800;
}

.value-list {
  margin: 30px 0;
  display: grid;
  gap: 0;
}

.value-list > div {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.value-list > div > span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.value-list p,
.value-list strong,
.value-list small {
  display: block;
  margin: 0;
}

.value-list strong {
  font-size: 15px;
}

.value-list small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.coverage-card {
  padding: 17px 19px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #cfe4ee;
  border-radius: 14px;
  background: #f0f8fb;
}

.coverage-pin {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--blue);
  background: #d8eef7;
}

.coverage-card strong,
.coverage-card small {
  display: block;
}

.coverage-card strong {
  font-size: 13px;
}

.coverage-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.integrated-method {
  position: relative;
  overflow: hidden;
  margin-top: 68px;
  padding: 40px;
  border-radius: 24px;
  color: #fff;
  background: #0a2b41;
  box-shadow: 0 22px 60px rgba(7,27,44,.14);
  scroll-margin-top: 120px;
}

.integrated-method::before {
  content: "";
  position: absolute;
  top: -190px;
  right: -140px;
  width: 470px;
  height: 470px;
  border: 85px solid rgba(18,167,223,.055);
  border-radius: 50%;
}

.integrated-method-head,
.integrated-steps,
.integrated-method-actions {
  position: relative;
  z-index: 1;
}

.integrated-method-head {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 55px;
}

.integrated-method-head h3 {
  max-width: 620px;
  margin: 9px 0 0;
  color: #fff;
  font-size: clamp(30px, 3vw, 43px);
  line-height: 1.03;
  letter-spacing: -.045em;
}

.integrated-method-head > p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 14px;
}

.integrated-steps {
  margin: 31px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.integrated-steps li {
  padding: 25px 22px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 13px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.integrated-steps li:first-child {
  padding-left: 0;
}

.integrated-steps li:last-child {
  padding-right: 0;
  border-right: 0;
}

.integrated-steps li > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(139,200,97,.42);
  border-radius: 12px;
  color: #b7e29a;
  background: rgba(103,169,63,.1);
  font-size: 14px;
  font-weight: 900;
}

.integrated-steps strong {
  font-size: 14px;
}

.integrated-steps p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.55);
  font-size: 11px;
}

.integrated-method-actions {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.integrated-method-actions > a:last-child {
  color: rgba(255,255,255,.65);
  font-size: 12px;
}

.integrated-method-actions > a:last-child strong {
  color: #fff;
}

.quote-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(8,54,77,.97), rgba(6,31,48,.99)),
    url("../img/gallery/hero-serviaseo.webp") center / cover;
}

.quote-section::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 24px 24px;
}

.quote-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.quote-copy > p {
  max-width: 500px;
  margin: 22px 0 34px;
  color: rgba(255,255,255,.62);
  font-size: 17px;
}

.contact-options {
  display: grid;
  gap: 10px;
}

.contact-options a {
  padding: 15px 17px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 13px;
  background: rgba(255,255,255,.04);
}

.contact-options > a > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #b7e29a;
  background: rgba(103,169,63,.13);
}

.contact-options p,
.contact-options small,
.contact-options strong {
  display: block;
  margin: 0;
}

.contact-options small {
  color: rgba(255,255,255,.45);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.contact-options strong {
  margin-top: 2px;
  font-size: 13px;
}

.quote-form {
  padding: 38px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  color: var(--ink);
  background: rgba(255,255,255,.98);
  box-shadow: 0 35px 90px rgba(0,0,0,.25);
}

.form-head {
  margin-bottom: 25px;
  padding-bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.form-head span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.form-head strong {
  font-size: 13px;
}

.field {
  margin-bottom: 17px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #2c4657;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .02em;
}

.field label small {
  color: #8b9ba4;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d7e0e3;
  border-radius: 11px;
  color: var(--ink);
  background: #f9fbfb;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.field input,
.field select {
  height: 48px;
  padding: 0 13px;
}

.field textarea {
  min-height: 82px;
  padding: 12px 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #73b9d8;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(18,167,223,.1);
}

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

.urgency label {
  margin: 0;
  cursor: pointer;
}

.urgency input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.urgency span {
  min-height: 42px;
  padding: 0 8px;
  display: grid;
  place-items: center;
  border: 1px solid #d7e0e3;
  border-radius: 10px;
  color: #60717c;
  background: #f9fbfb;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  transition: all .2s;
}

.urgency input:checked + span {
  color: var(--blue);
  border-color: #73b9d8;
  background: #eaf7fc;
  box-shadow: 0 0 0 3px rgba(18,167,223,.08);
}

.button-submit {
  width: 100%;
  min-height: 56px;
  color: #fff;
  background: linear-gradient(135deg, #168a4d, #0f7340);
  box-shadow: 0 14px 30px rgba(15,115,64,.25);
}

.form-note {
  margin: 10px 0 0;
  color: #8998a1;
  text-align: center;
  font-size: 10px;
}

.faq {
  background: #f5f8f7;
}

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 110px;
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro > p {
  margin: 20px 0 25px;
  color: var(--muted);
}

.accordion details {
  border-bottom: 1px solid #d5e0e2;
}

.accordion details:first-child {
  border-top: 1px solid #d5e0e2;
}

.accordion summary {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #17364d;
  list-style: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #c9d8db;
  border-radius: 50%;
  color: var(--blue);
  font-size: 19px;
  font-weight: 500;
  transition: transform .2s;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 690px;
  margin: -7px 50px 25px 0;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  padding: 55px 0;
  color: #fff;
  background: linear-gradient(100deg, var(--green-dark), #2c721f);
}

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

.final-cta span {
  color: rgba(255,255,255,.65);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.final-cta h2 {
  margin: 2px 0 0;
  font-size: clamp(31px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -.04em;
}

.final-actions {
  display: flex;
  gap: 10px;
}

.button-white {
  color: var(--green-dark);
  background: #fff;
}

.button-outline-light {
  color: #fff;
  border-color: rgba(255,255,255,.35);
  background: transparent;
}

.site-footer {
  padding: 72px 0 26px;
  color: rgba(255,255,255,.58);
  background: #04131f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .8fr .8fr 1fr;
  gap: 70px;
}

.footer-brand img {
  width: 210px;
  height: 72px;
  padding: 7px 12px;
  object-fit: contain;
  border-radius: 9px;
  background: #fff;
}

.footer-brand p {
  max-width: 320px;
  margin: 20px 0 0;
  font-size: 13px;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-grid strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: 13px;
}

.footer-grid a,
.footer-grid p {
  margin: 0;
  font-size: 12px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 55px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.09);
}

.footer-bottom p {
  margin: 0;
  font-size: 10px;
}

.mobile-actions {
  display: none;
}

@media (max-width: 1100px) {
  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: .9fr 1.1fr;
    gap: 40px;
  }

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

  .solution-card:first-child {
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

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

  .pillar-grid .solution-card:first-child {
    grid-column: auto;
    display: block;
  }

  .solution-featured .solution-image {
    height: 100%;
  }

  .solution-content > p {
    min-height: auto;
  }

  .service-links {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .trust-ribbon > div:nth-child(2) {
    border-right: 0;
  }

  .trust-ribbon > div:nth-child(-n+2) {
    border-bottom: 1px solid #dbe5e7;
  }

  .method-grid,
  .experience-grid,
  .quote-grid {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 32px, 760px);
  }

  .utility-links a:first-child {
    display: none;
  }

  .menu-toggle {
    order: 3;
    margin-left: 0;
    display: block;
  }

  .header-actions {
    order: 2;
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    inset: 118px 0 auto;
    padding: 22px 20px 30px;
    max-height: calc(100vh - 118px);
    overflow-y: auto;
    display: grid;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 25px 50px rgba(7,27,44,.15);
    transform: translateY(-140%);
    visibility: hidden;
    transition: transform .28s ease, visibility .28s;
  }

  .main-nav.open {
    transform: translateY(0);
    visibility: visible;
  }

  .main-nav > a,
  .services-trigger {
    width: 100%;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .main-nav .mobile-nav-phone {
    display: flex;
    color: var(--green-dark);
    font-weight: 850;
  }

  .main-nav > a:last-child {
    border-bottom: 0;
  }

  .main-nav > a::after,
  .services-trigger::after {
    display: none;
  }

  .services-menu {
    position: static;
    width: 100%;
    min-width: 0;
  }

  .services-mega {
    position: static;
    width: calc(100vw - 40px);
    max-width: none;
    min-width: 0;
    padding: 10px 0 15px;
    display: none;
    grid-template-columns: 1fr;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .services-menu:hover .services-mega,
  .services-menu:focus-within .services-mega {
    display: none;
    transform: none;
  }

  .services-menu.open .services-mega {
    display: block;
    transform: none;
  }

  .mega-intro {
    display: none;
  }

  .mega-groups,
  .mega-footer {
    display: none;
  }

  .mobile-services-list {
    width: 100%;
    min-width: 0;
    display: block;
  }

  .mobile-services-list > span {
    display: block;
    padding: 13px 4px 7px;
    color: var(--blue);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
  }

  .mobile-services-list > a {
    width: 100%;
    min-width: 0;
    padding: 8px 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }

  .mobile-services-list img {
    width: 43px;
    height: 43px;
    padding: 2px;
    flex: 0 0 auto;
    object-fit: contain;
    border-radius: 10px;
    background: #f5f8f8;
  }

  .mobile-services-list strong {
    color: var(--ink);
    font-size: 12px;
  }

  .mobile-services-list .mobile-services-call {
    margin-top: 12px;
    justify-content: center;
    border: 0;
    border-radius: 10px;
    color: #fff;
    background: var(--green-dark);
    font-size: 12px;
    font-weight: 850;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-visual-original {
    min-height: 590px;
    grid-template-rows: 320px auto;
  }

  .hero-showcase {
    height: 320px;
  }

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

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

  .decision-card:last-child {
    grid-column: 1 / 3;
  }

  .decision-card:last-child > p,
  .decision-card:last-child h3 {
    min-height: 0;
  }

  .hero-client-strip {
    overflow-x: auto;
    justify-content: flex-start;
    white-space: nowrap;
  }

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

  .quick-card {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .quick-card:first-child {
    border-top: 0;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading,
  .method-grid,
  .experience-grid,
  .quote-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .method-grid,
  .experience-grid,
  .quote-grid,
  .faq-grid {
    gap: 42px;
  }

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

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

  .method-copy {
    max-width: 630px;
  }

  .experience-gallery {
    min-height: 620px;
  }

  .experience-copy {
    max-width: 680px;
  }

  .integrated-method-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .integrated-steps {
    grid-template-columns: 1fr;
  }

  .integrated-steps li,
  .integrated-steps li:first-child,
  .integrated-steps li:last-child {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .integrated-steps li:last-child {
    border-bottom: 0;
  }

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

  .specialty-card:last-child {
    grid-column: 1 / 3;
  }

  .quote-copy {
    max-width: 680px;
  }

  .faq-intro {
    position: static;
    max-width: 600px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 45px;
  }

  .footer-brand {
    grid-column: 1 / 4;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 26px);
    --radius: 19px;
  }

  html {
    scroll-padding-top: 80px;
  }

  body {
    padding-bottom: 64px;
  }

  .utility {
    display: none;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand {
    width: 184px;
  }

  .brand img {
    height: 52px;
  }

  .header-phone {
    display: none;
  }

  .main-nav {
    inset: 72px 0 auto;
  }

  .hero {
    padding-top: 55px;
  }

  .hero h1 {
    margin-top: 16px;
    font-size: clamp(35px, 10.5vw, 47px);
    line-height: 1.04;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    margin-top: 28px;
    padding-top: 18px;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .hero-proof > div {
    display: block;
  }

  .hero-proof .proof-check {
    margin-bottom: 7px;
  }

  .hero-proof strong {
    font-size: 10px;
    line-height: 1.25;
  }

  .hero-proof small {
    display: none;
  }

  .hero-visual {
    min-height: 450px;
  }

  .hero-visual-original {
    min-height: 0;
    grid-template-rows: 250px auto;
    gap: 11px;
  }

  .hero-showcase {
    inset: auto;
    height: 250px;
    border-radius: 20px;
  }

  .hero-showcase figcaption {
    left: 12px;
    bottom: 12px;
    padding: 11px 13px;
  }

  .hero-showcase figcaption small {
    display: none;
  }

  .hero-image-stamp {
    right: -4px;
    top: 164px;
    bottom: auto;
    width: 88px;
    height: 88px;
    border-width: 4px;
  }

  .hero-image-stamp strong {
    font-size: 20px;
  }

  .hero-image-stamp span {
    font-size: 7px;
  }

  .hero-quote-form {
    padding: 17px 14px 15px;
    border-radius: 16px;
  }

  .hero-form-heading {
    display: block;
  }

  .hero-form-heading strong {
    display: block;
    margin-top: 2px;
  }

  .hero-form-fields {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hero-form-fields input,
  .hero-form-fields select {
    height: 41px;
    padding: 0 8px;
    font-size: 11px;
  }

  .division-card {
    padding: 25px 20px;
  }

  .hydraulic-groups {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .decision-card:last-child {
    grid-column: auto;
  }

  .decision-card {
    padding: 24px 21px 21px;
  }

  .decision-card h3,
  .decision-card > p {
    min-height: 0;
  }

  .visual-main {
    inset: 0 78px 40px 0;
  }

  .visual-secondary {
    width: 132px;
    height: 168px;
  }

  .visual-bottom {
    height: 195px;
    bottom: 0;
  }

  .visual-badge {
    top: 164px;
    right: 50px;
    width: 86px;
    height: 86px;
    border-width: 4px;
  }

  .visual-badge strong {
    font-size: 20px;
  }

  .visual-badge span {
    font-size: 7px;
  }

  .hero-client-strip {
    margin-top: 42px;
  }

  .quick-card {
    min-height: 96px;
    padding: 20px 17px;
  }

  .section {
    padding: 74px 0;
  }

  .section-heading h2,
  .method h2,
  .experience h2,
  .quote-section h2,
  .faq h2 {
    font-size: clamp(33px, 10vw, 44px);
  }

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

  .solution-card:first-child {
    grid-column: auto;
    display: block;
  }

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

  .solution-featured .solution-image,
  .solution-image {
    height: 220px;
  }

  .solution-content {
    padding: 26px 23px;
  }

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

  .trust-ribbon {
    grid-template-columns: 1fr;
  }

  .trust-ribbon > div {
    border-right: 0;
    border-bottom: 1px solid #dbe5e7;
  }

  .trust-ribbon > div:last-child {
    border-bottom: 0;
  }

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

  .specialty-card:last-child {
    grid-column: auto;
  }

  .method-grid {
    gap: 50px;
  }

  .steps li {
    grid-template-columns: 48px 1fr;
    gap: 15px;
  }

  .steps li > span {
    width: 44px;
    height: 44px;
  }

  .experience-gallery {
    min-height: 480px;
    grid-template-columns: 1fr 1fr;
  }

  .integrated-route {
    grid-template-columns: 44px 1fr 18px;
    padding: 11px 10px;
    gap: 10px;
  }

  .integrated-route img {
    width: 44px;
    height: 44px;
  }

  .integrated-route strong {
    font-size: 12px;
  }

  .integrated-route small {
    font-size: 10px;
  }

  .integrated-method {
    margin-top: 45px;
    padding: 30px 22px;
    border-radius: 19px;
  }

  .integrated-method-head h3 {
    font-size: 31px;
  }

  .integrated-method-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .integrated-method-actions .button {
    justify-content: center;
  }

  .integrated-method-actions > a:last-child {
    text-align: center;
  }

  .quote-section {
    padding: 76px 0;
  }

  .quote-form {
    padding: 25px 19px;
  }

  .form-head {
    display: block;
  }

  .form-head strong {
    display: block;
    margin-top: 4px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .urgency span {
    min-height: 40px;
  }

  .accordion summary {
    font-size: 15px;
  }

  .final-cta-inner,
  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .final-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / 3;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 150;
    left: 0;
    right: 0;
    bottom: 0;
    height: 64px;
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    background: #fff;
    border-top: 1px solid #d7e0e3;
    box-shadow: 0 -12px 30px rgba(7,27,44,.12);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 850;
  }

  .mobile-actions a:last-child {
    color: #fff;
    background: #168a4d;
  }
}

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

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

@media (max-width: 680px) {
  .hero .eyebrow {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero h1,
  .hero h1 strong {
    max-width: 100%;
    font-size: 36px;
    line-height: 1.04;
    letter-spacing: -.045em;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-client-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
    padding: 18px 0;
    overflow: visible;
    white-space: normal;
  }

  .hero-client-strip > span {
    grid-column: 1 / -1;
  }

  .hero-client-strip i {
    display: none;
  }

  .hero-client-strip p {
    min-width: 0;
    line-height: 1.35;
  }

  .hero-form-fields input,
  .hero-form-fields select {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-visual-original,
  .hero-quote-form,
  .hero-form-fields,
  .hero-form-fields label {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-form-fields {
    grid-template-columns: 1fr;
  }

  .quote-grid,
  .quote-form,
  .quote-form form,
  .field,
  .field-row {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }
}
