:root {
  --ink: #071313;
  --ink-soft: #102d2d;
  --teal: #1ba5a0;
  --teal-dark: #0c6d69;
  --mint: #9fd3ca;
  --paper: #f6f8f7;
  --line: #d9e4e1;
  --text: #1c2424;
  --muted: #60706e;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(7, 19, 19, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
.site-header.nav-open .header-phone {
    display: inline-flex;
    margin: 8px 24px 20px;
}
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background: var(--paper);
}

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

img,
svg {
  display: block;
  max-width: 100%;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  color: var(--white);
  background: var(--teal);
  border: 1px solid var(--teal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-btn span {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 10px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(22px, 5vw, 76px);
  color: var(--white);
  background: rgba(1, 14, 15, 0.96);
  border-bottom: 1px solid rgba(27, 165, 160, 0.22);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 800;
  color: var(--teal);
}

.brand img,
.footer-brand img {
  width: 58px;
  height: 40px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 29px 0 25px;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 2px;
  content: "";
  background: transparent;
}

.site-nav a:hover,
.site-nav .active {
  color: var(--mint);
}

.site-nav a:hover::after,
.site-nav .active::after {
  background: var(--teal);
}

.header-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 6px;
  color: var(--white);
  border: 1px solid var(--teal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.header-phone strong {
  color: var(--teal);
}

.header-cta span,
.primary-button span {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 10px;
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: 390px;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.3fr);
  color: var(--white);
  background: linear-gradient(90deg, #061718 0%, #062223 45%, #0e3435 100%);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(44px, 7vw, 76px) clamp(24px, 5vw, 76px);
}

.hero h1 {
  max-width: 590px;
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.hero p {
  max-width: 570px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.7;
}

.primary-button {
  min-height: 48px;
  background: var(--teal);
  border-color: var(--teal);
}

.hero-media {
  position: relative;
  min-height: 390px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(6, 23, 24, 0.74), rgba(6, 23, 24, 0.08));
}

.shape {
  position: absolute;
  z-index: 2;
  width: 150px;
  height: 140%;
  top: -20%;
  transform: skewX(-30deg);
  background: rgba(27, 165, 160, 0.34);
}

.shape-one {
  left: -80px;
}

.shape-two {
  left: 80px;
  background: rgba(159, 211, 202, 0.18);
}


.section-pad {
  padding: 28px clamp(22px, 5vw, 76px);
}

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

.section-heading h2,
.why h2,
.contact h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.1;
  text-transform: uppercase;
}

.section-heading h2::after {
  display: block;
  width: 48px;
  height: 2px;
  margin: 10px auto 0;
  content: "";
  background: var(--teal);
}

.section-heading p {
  color: var(--muted);
  line-height: 1.7;
}

.service-grid {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, minmax(125px, 1fr));
  gap: 12px;
}
.service-card{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;

    padding: 18px 14px;
}
.service-card .service-arrow {
  margin-top: 10px;
  color: var(--teal-dark);
  font-size: 20px;
}

.service-card svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--teal-dark);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 12px 0 8px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: #4b5c5a;
  font-size: 11px;
  line-height: 1.45;
}

.service-card a {
  margin-top: 10px;
  color: var(--teal-dark);
  font-size: 20px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 26px clamp(22px, 7vw, 120px);
  color: var(--white);
  background: linear-gradient(90deg, #032729, #05393b 55%, #032729);
}

.metric {
  position: relative;
  min-height: 80px;
  padding-left: 76px;
}

.metric::before {
  position: absolute;
  left: 0;
  top: 3px;
  width: 54px;
  height: 54px;
  content: "";
  border: 1px solid rgba(159, 211, 202, 0.55);
  border-radius: 999px;
}
.metric {
    position: relative;
}

.metric-icon {
    position: absolute;
    left: 0;
    top: 3px;

    width: 54px;
    height: 54px;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 2;
}

.metric-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.metric span {
  display: block;
  font-size: 28px;
  font-weight: 900;
}

.metric strong {
  display: block;
  margin: 2px 0 5px;
  font-size: 13px;
  text-transform: uppercase;
}

.metric p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.45;
}

.why {
  display: grid;
  grid-template-columns: 0.9fr 2.5fr;
  gap: 48px;
  align-items: start;
  background: var(--white);
}

.why-intro p {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.65;
}

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

.why-grid article span {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 10px;
  color: var(--teal-dark);
  border: 1px solid var(--teal-dark);
  border-radius: 999px;
  font-weight: 800;
}

.why-grid h3,
.solution-list h3,
.blog-grid h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 14px;
  text-transform: uppercase;
}

.why-grid p,
.solution-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.solutions {
  background: #edf5f3;
}

.solution-list,
.blog-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.solution-list article,
.blog-grid article,
.contact-form {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(7, 19, 19, 0.06);
}

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

.blog-grid span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-cta {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #061718, #0b3435);
}

.contact h2 {
  color: var(--white);
}

.contact-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.contact-copy a {
  color: var(--mint);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-weight: 500;
  text-transform: none;
}

.contact-form button {
  min-height: 48px;
  color: var(--white);
  background: var(--teal);
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(22px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.72);
  background: #020d0e;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    justify-self: end;
    width: 42px;
    height: 38px;
    display: grid;
    gap: 5px;
    place-content: center;
    background: transparent;
    border: 1px solid rgba(159, 211, 202, 0.45);
    border-radius: 6px;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--white);
  }

  .site-nav,
.header-phone {
    display: none;
}

  .site-header.nav-open .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 10px 24px 22px;
    background: #020d0e;
    border-bottom: 1px solid rgba(27, 165, 160, 0.25);
  }

  .site-header.nav-open .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .hero-media {
    min-height: 260px;
  }

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

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

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

@media (max-width: 760px) {
  .site-header {
    height: 66px;
    padding: 0 18px;
  }

  .brand span,
  .footer-brand span {
    font-size: 14px;
  }

  .brand img,
  .footer-brand img {
    width: 48px;
    height: 34px;
  }

  .site-header.nav-open .site-nav {
    top: 66px;
  }

  .hero h1 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .hero-copy {
    padding: 42px 22px;
  }

  .service-grid,
  .metrics,
  .why-grid,
  .solution-list,
  .blog-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 66px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (min-width: 1121px) {
  .service-grid .service-card {
    align-items: center !important;
    text-align: center !important;
  }
  
  .service-grid .service-card svg {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .service-grid .service-card h3,
  .service-grid .service-card p {
    text-align: center !important;
    width: 100% !important;
  }

  .service-grid .service-card a,
  .service-grid .service-card .service-arrow {
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}