:root {
  --navy: #061d2d;
  --navy-2: #08283a;
  --ink: #101b2f;
  --muted: #536274;
  --teal: #008071;
  --teal-dark: #006b61;
  --green: #14c7a2;
  --line: #dfe7ea;
  --soft: #f3f8f8;
  --white: #ffffff;
  --shadow: 0 8px 22px rgba(18, 35, 55, .12);
  font-family: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 15px;
  line-height: 1.36;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 112px, 1210px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(90deg, #061c2d 0%, #061928 53%, #06293a 100%);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.header-inner {
  min-height: 50px;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 190px;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: logo-light 15s ease-in-out infinite;
  filter: brightness(1) saturate(1) drop-shadow(0 0 0 rgba(255, 255, 255, 0));
}

@keyframes logo-light {
  0%,
  68%,
  100% {
    filter: brightness(1) saturate(1) drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }

  74% {
    filter: brightness(1.22) saturate(1.08) drop-shadow(0 0 8px rgba(255, 255, 255, .34));
  }

  82% {
    filter: brightness(1.55) saturate(1.15) drop-shadow(0 0 14px rgba(255, 255, 255, .66)) drop-shadow(0 0 22px rgba(20, 199, 162, .42));
  }

  90% {
    filter: brightness(1.18) saturate(1.05) drop-shadow(0 0 9px rgba(255, 255, 255, .38));
  }
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 52px;
  font-weight: 700;
  font-size: 13px;
}

.main-nav a {
  position: relative;
  padding: 18px 0 16px;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  height: 2px;
  border-radius: 5px;
  background: var(--green);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 125px;
  min-height: 30px;
  padding: 8px 15px;
  border-radius: 6px;
  background: linear-gradient(135deg, #0ab59e, #16c89d);
  font-size: 12px;
  font-weight: 800;
}

.header-cta svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 6px;
  background: transparent;
  color: white;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 274px;
  overflow: hidden;
  color: var(--white);
  background: #041a2b;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 19, 33, .98) 0%, rgba(4, 19, 33, .95) 32%, rgba(4, 19, 33, .36) 58%, rgba(4, 19, 33, .12) 100%),
    url("assets/hero-worker-clean.png") right center / auto 100% no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 31px 0 28px;
}

.hero h1 {
  margin: 0 0 13px;
  max-width: 620px;
  font-size: clamp(29px, 3.2vw, 37px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--green);
}

.hero-subtitle {
  margin: 0 0 12px;
  max-width: 590px;
  font-size: 17px;
  line-height: 1.18;
  font-weight: 700;
}

.hero-text {
  margin: 0;
  max-width: 540px;
  font-size: 13px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 137px;
  min-height: 31px;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, #13c9a9, #00937d);
  box-shadow: 0 7px 16px rgba(0, 128, 113, .24);
}

.btn-outline {
  color: white;
  border: 1.5px solid white;
}

.section-pad {
  padding: 24px 0 18px;
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
}

.about h2 {
  margin: 0 0 12px;
  max-width: 410px;
  font-size: 25px;
  line-height: 1.12;
  font-weight: 800;
}

.about-copy > p:not(.eyebrow) {
  margin: 0 0 13px;
  max-width: 450px;
  font-size: 12px;
  font-weight: 600;
}

blockquote {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: start;
  max-width: 395px;
  margin: 0;
  padding: 12px 20px;
  border-radius: 8px;
  background: #eef4f7;
  font-size: 12px;
  font-weight: 800;
}

blockquote span {
  color: var(--teal);
  font-size: 46px;
  line-height: .75;
  font-weight: 800;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.feature-card,
.service-card,
.testimonial-card,
.team-card,
.contact-box,
.logo-strip {
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}

.feature-card,
.service-card,
.testimonial-card,
.team-card,
.contact-box {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card:hover,
.service-card:hover,
.testimonial-card:hover,
.team-card:hover,
.contact-box:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 199, 162, .42);
  box-shadow: 0 18px 34px rgba(20, 199, 162, .24), 0 8px 18px rgba(18, 35, 55, .1);
}

.feature-card {
  min-height: 164px;
  padding: 17px 12px 15px;
  border-radius: 9px;
  text-align: center;
}

.feature-card svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 7px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.04;
  font-weight: 800;
}

.feature-card p {
  margin: 0;
  font-size: 10px;
  line-height: 1.28;
  font-weight: 600;
}

.section-title {
  position: relative;
  margin: 0 0 15px;
  text-align: center;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .02em;
}

.section-title::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin: 7px auto 0;
  border-radius: 8px;
  background: var(--teal);
}

.services {
  padding: 0 0 17px;
}

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

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr 18px;
  gap: 13px;
  align-items: start;
  min-height: 136px;
  padding: 15px 16px 13px;
  border-radius: 10px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 25% 20%, #00977f, #00555c);
  color: white;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 7px;
  font-size: 17px;
  line-height: 1.08;
  font-weight: 800;
}

.service-card p {
  margin: 0;
  font-size: 11px;
  line-height: 1.34;
  font-weight: 600;
}

.service-card > a {
  align-self: end;
  color: var(--teal);
  font-size: 24px;
  font-weight: 700;
}

.workflow {
  padding: 13px 0 16px;
  background: linear-gradient(90deg, #eef7f7, #ffffff 45%, #eef7f7);
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 42px;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 52px 36px 1fr;
  gap: 11px;
  align-items: center;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -31px;
  top: 27px;
  width: 50px;
  border-top: 2px dashed #3aa99b;
}

.step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: white;
  border: 5px solid #e6f5f2;
  outline: 1px solid var(--teal);
  border-radius: 50%;
  background: linear-gradient(135deg, #01a48e, #006c68);
  font-size: 18px;
  font-weight: 800;
}

.step svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step h3 {
  margin: 0 0 3px;
  font-size: 12px;
  font-weight: 800;
}

.step p {
  margin: 0;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 600;
}

.clients,
.testimonials,
.team {
  padding: 12px 0 0;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 48px;
  padding: 8px 35px;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(18,35,55,.08);
}

.client-logo {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 8px;
  align-items: center;
  color: #22334b;
  min-width: 0;
}

.client-logo span {
  grid-row: span 2;
  width: 34px;
  height: 25px;
  border: 4px solid #243954;
  border-top: 0;
  transform: skewX(-18deg);
}

.client-logo strong {
  font-size: 12px;
  line-height: 1;
  letter-spacing: .08em;
}

.client-logo small {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
}

.constructec span,
.novatec span,
.prime span,
.vectra span {
  border-radius: 50%;
  transform: none;
  border-width: 3px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  min-height: 91px;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(18,35,55,.07);
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card p {
  margin: 0 0 6px;
  font-size: 10px;
  line-height: 1.18;
  font-weight: 600;
}

.testimonial-card strong,
.team-card h3 {
  display: block;
  margin: 0;
  color: var(--teal-dark);
  font-size: 11px;
  line-height: 1.05;
  font-weight: 800;
}

.testimonial-card small,
.team-card strong,
.team-card p {
  display: block;
  font-size: 8px;
  font-weight: 700;
}

.stars {
  color: #019578;
  font-size: 11px;
  letter-spacing: 1px;
}

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

.team-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 15px;
  align-items: center;
  min-height: 87px;
  padding: 5px 16px;
  border-radius: 8px;
  box-shadow: 0 5px 14px rgba(18,35,55,.08);
}

.team-card img {
  width: 100px;
  height: 82px;
  border-radius: 5px;
  object-fit: cover;
}

.team-card h3 {
  color: var(--ink);
  font-size: 12px;
}

.team-card p {
  margin: 3px 0 4px;
  line-height: 1.2;
}

.team-card a {
  display: grid;
  place-items: center;
  width: 13px;
  height: 13px;
  color: white;
  border-radius: 2px;
  background: #0a73a8;
  font-size: 9px;
  font-weight: 800;
}

.cta-band {
  padding: 8px 0 12px;
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr 300px;
  gap: 18px;
  align-items: center;
  min-height: 75px;
  padding: 11px 56px 11px 40px;
  overflow: hidden;
  color: white;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0,118,103,.98), rgba(4,76,83,.96) 62%, rgba(4,38,53,.74)),
    url("assets/cta-bg.png") right center / auto 100% no-repeat;
  box-shadow: 0 8px 18px rgba(5, 28, 42, .18);
}

.support-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 2px solid rgba(20, 199, 162, .9);
  border-radius: 50%;
}

.support-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-card h2 {
  margin: 0 0 2px;
  font-size: 21px;
  line-height: 1.05;
  font-weight: 800;
}

.cta-card p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.cta-card .btn {
  min-height: 29px;
  justify-self: end;
  min-width: 240px;
}

.contact {
  padding: 0 0 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.55fr .85fr;
  gap: 36px;
  align-items: start;
}

.contact-form {
  border-left: 1px solid #e9eef0;
  padding-left: 65px;
}

.contact-form h2 {
  margin: 0 0 9px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .03em;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 9px 13px;
}

input,
textarea {
  width: 100%;
  min-height: 28px;
  border: 1px solid #cfd9df;
  border-radius: 3px;
  padding: 7px 14px;
  color: var(--ink);
  background: white;
  font-size: 9px;
  font-weight: 600;
}

textarea {
  grid-row: span 2;
  min-height: 64px;
  resize: vertical;
}

.send-btn {
  display: inline-flex;
  justify-content: center;
  gap: 34px;
  width: 195px;
  min-height: 29px;
  margin-top: 18px;
  border: 0;
  border-radius: 4px;
  color: white;
  background: linear-gradient(135deg, #009e87, #007767);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.contact-box {
  max-width: 315px;
  padding: 16px 24px 14px;
  border-radius: 9px;
  box-shadow: 0 7px 18px rgba(18,35,55,.12);
}

.contact-box h3 {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
}

.contact-box p {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 600;
}

.contact-box span {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 12px;
}

.newsletter {
  padding: 0 0 6px;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 58px 1fr 515px;
  align-items: center;
  gap: 22px;
  min-height: 46px;
  padding: 6px 78px;
  border-radius: 7px;
  background: #e8f5f5;
}

.newsletter svg {
  width: 40px;
  height: 32px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.newsletter p {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 0;
}

.newsletter input {
  border-radius: 3px 0 0 3px;
  min-height: 28px;
}

.newsletter button {
  border: 0;
  border-radius: 0 4px 4px 0;
  color: white;
  background: var(--teal);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.site-footer {
  position: relative;
  padding: 17px 0 10px;
  color: white;
  background: linear-gradient(90deg, #061c2d 0%, #052437 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr .8fr .95fr .9fr 1.55fr;
  gap: 30px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.site-footer .brand {
  width: 176px;
}

.site-footer h2 {
  margin: 0 0 8px;
  font-size: 9px;
  font-weight: 800;
}

.site-footer nav a {
  display: block;
  margin-top: 3px;
  font-size: 8px;
  font-weight: 600;
}

.socials a {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 11px;
  border: 1px solid white;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
}

.footer-note {
  margin: 14px 0 0;
  font-size: 11px;
  font-weight: 600;
}

.copyright {
  padding-top: 8px;
  text-align: center;
  font-size: 7px;
  font-weight: 600;
}

.back-top {
  position: absolute;
  right: 70px;
  bottom: 8px;
  color: white;
  font-size: 20px;
}

@media (max-width: 1000px) {
  .container {
    width: min(100% - 40px, 920px);
  }

  .header-inner {
    grid-template-columns: 210px auto 1fr;
  }

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

  .main-nav {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 20px 14px;
    background: #061d2d;
    border-top: 1px solid rgba(255,255,255,.14);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 0;
  }

  .header-cta {
    justify-self: end;
  }

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

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

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

  .step:not(:last-child)::after {
    display: none;
  }

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

  .cta-card {
    grid-template-columns: 74px 1fr;
    padding: 18px 24px;
  }

  .cta-card .btn {
    grid-column: 2;
    justify-self: start;
  }

  .contact-form {
    padding-left: 0;
    border-left: 0;
  }

  .newsletter-inner {
    grid-template-columns: 48px 1fr;
    padding: 12px 22px;
  }

  .newsletter form {
    grid-column: 1 / -1;
  }

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

@media (prefers-reduced-motion: reduce) {
  .brand img {
    animation: none;
  }

  .feature-card,
  .service-card,
  .testimonial-card,
  .team-card,
  .contact-box {
    transition: none;
  }

  .feature-card:hover,
  .service-card:hover,
  .testimonial-card:hover,
  .team-card:hover,
  .contact-box:hover {
    transform: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 520px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 58px;
  }

  .brand {
    width: 172px;
  }

  .site-footer .brand {
    width: 168px;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    top: 58px;
  }

  .hero {
    min-height: 430px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(4, 19, 33, .98) 0%, rgba(4, 19, 33, .9) 45%, rgba(4, 19, 33, .35) 100%),
      url("assets/hero-worker-clean.png") center bottom / auto 65% no-repeat;
  }

  .hero-content {
    padding-top: 30px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .hero-subtitle br,
  .cta-card h2 br {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .feature-grid,
  .testimonial-grid,
  .logo-strip {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    padding-right: 22px;
  }

  .testimonial-card img {
    width: 82px;
    height: 82px;
  }

  .team-card img {
    width: 100%;
    height: 180px;
  }

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

  .cta-card .btn {
    grid-column: auto;
    min-width: 100%;
  }

  .form-grid,
  .newsletter form {
    grid-template-columns: 1fr;
  }

  textarea {
    grid-row: auto;
  }

  .send-btn,
  .contact-box {
    width: 100%;
    max-width: none;
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .newsletter input,
  .newsletter button {
    min-height: 36px;
    border-radius: 4px;
  }

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

  .back-top {
    right: 20px;
  }
}
