﻿:root {
  --navy: #092b4a;
  --deep: #061c31;
  --green: #4b8f2d;
  --lime: #8cc63f;
  --teal: #15977f;
  --red: #b92c25;
  --ink: #10263b;
  --muted: #647485;
  --line: #dfe7ea;
  --paper: #f6f8f8;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(9, 43, 74, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

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

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

.container {
  width: min(1480px, calc(100% - 56px));
  margin-inline: auto;
}

.top-strip {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  padding: 0.45rem 1rem;
  color: var(--white);
  background: linear-gradient(90deg, #062744, #0b3858);
  font-size: 0.78rem;
  font-weight: 800;
}

.top-strip span:nth-child(even) {
  color: #bfe78e;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(9, 43, 74, 0.08);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1480px, calc(100% - 56px));
  min-height: 92px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

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

.nav-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.45rem;
  color: var(--deep);
  font-size: 0.88rem;
  font-weight: 900;
}

.nav-menu a:hover {
  color: var(--green);
}

.nav-menu a.is-current {
  color: var(--green);
}

.nav-menu a.is-current::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: var(--green);
}

.nav-toggle {
  display: none;
  margin-left: auto;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.35rem;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-family: Poppins, Arial, sans-serif;
  font-weight: 800;
}

.header-cta,
.btn-green {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #24691f);
  box-shadow: 0 12px 28px rgba(75, 143, 45, 0.24);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(9, 43, 74, 0.12);
}

.btn-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.hero-v2 {
  position: relative;
  min-height: clamp(520px, calc(100svh - 150px), 640px);
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.hero-slider,
.hero-slider picture,
.hero-slider img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slider {
  overflow: hidden;
}

.hero-slider picture {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 6s ease;
}

.hero-slider picture.is-active {
  opacity: 1;
  transform: scale(1);
}

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

.hero-overlay {
  background:
    radial-gradient(circle at 18% 45%, rgba(140, 198, 63, 0.16), transparent 25%),
    linear-gradient(90deg, rgba(3, 18, 31, 0.56), rgba(3, 18, 31, 0.36) 42%, rgba(3, 18, 31, 0.08) 76%),
    linear-gradient(0deg, rgba(3, 18, 31, 0.46), rgba(3, 18, 31, 0.12) 56%, rgba(3, 18, 31, 0.02));
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: clamp(520px, calc(100svh - 150px), 640px);
  display: grid;
  align-items: end;
}

.hero-copy {
  position: relative;
  width: min(100%, 760px);
  max-width: 760px;
  margin-inline: auto;
  padding: 0 0 clamp(0.75rem, 2vw, 1.35rem);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -1.2rem -1.6rem;
  z-index: -1;
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(3, 18, 31, 0.34), rgba(3, 18, 31, 0.05));
  filter: blur(0.2px);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: #c7ef95;
  font-family: Poppins, Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-copy h1 {
  margin: 0;
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(2.25rem, 3.55vw, 3.95rem);
  line-height: 1.02;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

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

.hero-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 0.85rem 0 1rem;
  font-size: 1.02rem;
  font-weight: 800;
}

.hero-actions,
.bottom-cta .container > div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-actions {
  justify-content: center;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.hero-trust span {
  padding: 0.42rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  max-width: 640px;
  margin-top: 1rem;
}

.hero-metrics article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.48rem;
  align-items: center;
  min-height: 62px;
  padding: 0.48rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(4, 23, 38, 0.44);
  backdrop-filter: blur(12px);
}

.hero-metrics article::before {
  content: "";
  width: 34px;
  height: 34px;
  border: 2px solid rgba(191, 231, 142, 0.82);
  border-radius: 50%;
  background: rgba(75, 143, 45, 0.35);
}

.hero-metrics strong {
  display: block;
  font-family: Poppins, Arial, sans-serif;
  font-size: 0.96rem;
}

.hero-metrics span {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.85rem;
}

.hero-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--lime);
}

.logo-band,
.section-block,
.problem-solution,
.flow-card,
.calculator-industries {
  padding: 1.8rem 0;
  background: var(--white);
}

.problem-solution {
  position: relative;
  padding: 3rem 0 1.4rem;
  background:
    radial-gradient(circle at 50% 42%, rgba(21, 151, 127, 0.13), transparent 24rem),
    linear-gradient(90deg, rgba(185, 44, 37, 0.055), rgba(255, 255, 255, 0.94) 37%, rgba(75, 143, 45, 0.07));
}

.flow-card {
  padding: 0 0 3rem;
  background:
    linear-gradient(90deg, rgba(185, 44, 37, 0.055), rgba(255, 255, 255, 0.96) 50%, rgba(75, 143, 45, 0.075));
}

.logo-band {
  position: relative;
  z-index: 3;
}

.logo-band .container {
  overflow: hidden;
}

.logo-band h2,
.section-title {
  margin: 0 0 1rem;
  color: var(--navy);
  font-family: Poppins, Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.section-title span {
  font-size: 0.9em;
}

.client-row {
  display: flex;
  width: max-content;
  gap: 1.2rem;
  align-items: center;
  animation: clientMarquee 28s linear infinite;
  will-change: transform;
}

.client-row:hover {
  animation-play-state: paused;
}

.client-row img {
  flex: 0 0 280px;
  width: 280px;
  height: 128px;
  padding: 0.9rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
  box-shadow: 0 10px 24px rgba(9, 43, 74, 0.06);
}

.client-row img.client-logo-sm {
  padding: 0.35rem 0.45rem;
  transform: scale(1.22);
}

.client-row img.client-logo-thyssenkrupp {
  transform: scale(1.34);
}

.client-row img.client-logo-bharat,
.client-row img.client-logo-sujan {
  transform: scale(1.42);
}

@keyframes clientMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.6rem));
  }
}

.split-compare {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(380px, 520px) minmax(260px, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.problem-list,
.solution-list {
  min-height: 280px;
  padding: 1.35rem;
  border: 1px solid rgba(9, 43, 74, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 54px rgba(9, 43, 74, 0.08);
}

.problem-list {
  border-left: 5px solid var(--red);
}

.solution-list {
  border-left: 5px solid var(--green);
}

.problem-list h2,
.solution-list h2 {
  margin: 0 0 1.15rem;
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(1.25rem, 1.6vw, 1.55rem);
  text-transform: uppercase;
}

.problem-list h2 { color: var(--red); }
.solution-list h2 { color: var(--green); }

.problem-list ul,
.solution-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  font-weight: 800;
}

.problem-list li::before {
  content: "x";
  color: var(--red);
  margin-right: 0.7rem;
}

.solution-list li::before {
  content: "✓";
  color: var(--green);
  margin-right: 0.7rem;
}

.problem-list li,
.solution-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 40px;
  padding: 0.35rem 0.1rem;
  color: var(--ink);
  font-size: 1.02rem;
}

.problem-list li::before,
.solution-list li::before {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  margin-right: 0;
  border-radius: 50%;
  font-family: Poppins, Arial, sans-serif;
  font-weight: 900;
}

.problem-list li::before {
  background: rgba(185, 44, 37, 0.09);
}

.solution-list li::before {
  content: "\2713";
  background: rgba(75, 143, 45, 0.1);
}

.vs-card {
  position: relative;
  overflow: hidden;
  padding: 0.6rem;
  border: 1px solid rgba(9, 43, 74, 0.1);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(246, 248, 248, 0.85));
  box-shadow: 0 28px 68px rgba(9, 43, 74, 0.16);
}

.vs-card img {
  width: 100%;
  height: clamp(300px, 22vw, 390px);
  border-radius: 12px;
  background: var(--white);
  object-fit: contain;
  filter: grayscale(1) contrast(1.04);
}

.vs-card span {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 5px solid #b5d987;
  border-radius: 50%;
  color: var(--white);
  background: radial-gradient(circle at 35% 30%, #123f65, var(--navy));
  font-family: Poppins, Arial, sans-serif;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(9, 43, 74, 0.28);
  transform: translate(-50%, -50%);
}

.flow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 48px rgba(9, 43, 74, 0.1);
}

.flow-grid > div {
  padding: 1.2rem;
}

.flow-grid > div + div {
  border-left: 1px solid var(--line);
}

.flow-grid h2 {
  margin: 0 0 1rem;
  font-family: Poppins, Arial, sans-serif;
  font-size: 1.1rem;
  text-align: center;
  text-transform: uppercase;
}

.flow-grid > div:first-child h2 { color: var(--red); }
.flow-grid > div:last-child h2 { color: var(--green); }

.mini-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
  font-weight: 900;
}

.mini-flow span {
  display: grid;
  min-height: 46px;
  place-items: center;
  padding: 0.45rem 0.55rem;
  border-radius: 999px;
  background: rgba(246, 248, 248, 0.9);
}

.red-flow { grid-template-columns: repeat(3, 1fr); color: var(--red); }
.green-flow { color: var(--green); }

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.service-strip article,
.cert-grid article,
.before-grid article,
.story-grid article,
.blog-grid article,
.reason-grid article,
.industry-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(9, 43, 74, 0.07);
}

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(190px, 1fr) auto auto;
  min-height: 290px;
  cursor: zoom-in;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card::after {
  content: "+";
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(9, 43, 74, 0.92);
  font-family: Poppins, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  opacity: 0;
  transform: scale(0.84);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(21, 151, 127, 0.35);
  box-shadow: 0 22px 54px rgba(9, 43, 74, 0.14);
  outline: none;
  transform: translateY(-5px);
}

.service-card:hover::after,
.service-card:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.service-strip img {
  width: 100%;
  height: 210px;
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 46%, rgba(21, 151, 127, 0.08), transparent 52%),
    linear-gradient(180deg, #ffffff, #f8fbfb);
  object-fit: contain;
}

.service-strip h3 {
  margin: 0;
  min-height: 66px;
  display: grid;
  place-items: center;
  padding: 0.85rem 0.7rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #07395f);
  font-family: Poppins, Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.25;
  text-align: center;
}

.service-card > span {
  display: block;
  padding: 0.5rem 0.75rem 0.7rem;
  color: var(--teal);
  background: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.image-zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(3, 18, 31, 0.78);
}

.image-zoom-modal[hidden] {
  display: none;
}

.image-zoom-panel {
  position: relative;
  width: min(920px, 96vw);
  padding: 1rem 1rem 1.2rem;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.image-zoom-panel img {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f7faf9);
}

.image-zoom-panel h2 {
  margin: 0.9rem 0 0;
  color: var(--navy);
  font-family: Poppins, Arial, sans-serif;
  font-size: 1.2rem;
  text-align: center;
}

#service-zoom-close {
  position: absolute;
  top: -0.8rem;
  right: -0.8rem;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(9, 43, 74, 0.28);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(120px, 1fr));
  gap: 1rem;
}

.reason-grid article {
  position: relative;
  min-height: 214px;
  display: grid;
  align-content: start;
  gap: 0.42rem;
  padding: 1rem;
  isolation: isolate;
  text-align: left;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(237, 250, 244, 0.78)),
    radial-gradient(circle at 20% 0%, rgba(160, 215, 75, 0.18), transparent 42%);
  box-shadow: 0 18px 38px rgba(9, 43, 74, 0.08);
  transition: transform 400ms ease, border-color 400ms ease, box-shadow 400ms ease;
}

.reason-grid article::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  z-index: -1;
  height: 38%;
  border-radius: 999px;
  background: rgba(22, 160, 133, 0.1);
  filter: blur(20px);
  opacity: 0;
  transition: opacity 400ms ease;
}

.reason-grid article:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(22, 160, 133, 0.46);
  box-shadow: 0 26px 52px rgba(9, 43, 74, 0.16);
}

.reason-grid article:hover::after {
  opacity: 1;
}

.reason-grid img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 0.25rem;
  transition: transform 400ms ease;
}

.reason-grid article:hover img {
  transform: rotate(-6deg) scale(1.08);
}

.reason-grid strong {
  color: var(--green);
  font-family: Poppins, Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1;
}

.reason-grid span {
  color: var(--deep);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.2;
}

.reason-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.process {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(22, 160, 133, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(9, 43, 74, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #f7fbfb 0%, #ffffff 52%, #eef8f1 100%);
  background-size: 42px 42px, 42px 42px, auto;
}

.process .container {
  position: relative;
}

.process-lede {
  max-width: 720px;
  margin: -1rem auto 1.5rem;
  color: var(--muted);
  text-align: center;
  font-size: 1rem;
  line-height: 1.75;
}

.process-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(86px, 1fr));
  gap: 0.82rem;
  margin: 0;
  padding: 0.75rem 0 1.15rem;
  list-style: none;
  counter-reset: step;
  overflow-x: auto;
  scrollbar-width: thin;
}

.process-rail::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 36px;
  right: 36px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(22, 160, 133, 0.92), rgba(160, 215, 75, 0.72), rgba(222, 232, 235, 0.72));
  background-size: 200% 100%;
  animation: railPulse 4s linear infinite;
}

.process-rail li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 62px auto;
  gap: 0.55rem;
  justify-items: center;
  min-height: 118px;
  padding: 0.35rem 0.28rem 0.55rem;
  color: var(--deep);
  font-size: 0.75rem;
  font-weight: 900;
  text-align: center;
  counter-increment: step;
  cursor: default;
  transition: transform 260ms ease, color 260ms ease;
}

.process-rail li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 2px solid rgba(22, 160, 133, 0.28);
  border-radius: 50%;
  color: var(--green);
  background: #fff;
  font-family: Poppins, Arial, sans-serif;
  font-size: 0.58rem;
  box-shadow: 0 8px 18px rgba(9, 43, 74, 0.08);
  transition: background 260ms ease, color 260ms ease, border-color 260ms ease;
}

.process-rail img {
  width: 58px;
  height: 58px;
  margin-top: 1.25rem;
  padding: 0.55rem;
  object-fit: contain;
  border: 1px solid rgba(22, 160, 133, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 30px rgba(9, 43, 74, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.process-rail span {
  line-height: 1.25;
}

.process-rail li.is-complete::before,
.process-rail li.is-active::before {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.process-rail li.is-active {
  color: var(--green);
  transform: translateY(-5px);
}

.process-rail li.is-active img {
  border-color: rgba(22, 160, 133, 0.48);
  box-shadow: 0 22px 40px rgba(22, 160, 133, 0.22);
  transform: scale(1.08);
}

.process-feature {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-top: 0.8rem;
  padding: 1.05rem;
  border: 1px solid rgba(22, 160, 133, 0.22);
  border-radius: 16px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 45, 69, 0.96), rgba(22, 94, 90, 0.94)),
    radial-gradient(circle at 5% 0%, rgba(160, 215, 75, 0.25), transparent 40%);
  box-shadow: 0 22px 48px rgba(9, 43, 74, 0.18);
}

.process-feature-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
}

.process-feature-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.process-feature span {
  display: inline-block;
  color: #a0d74b;
  font-weight: 900;
  letter-spacing: 0;
}

.process-feature h3 {
  margin: 0.15rem 0 0;
  color: var(--white);
  font-size: 1.45rem;
}

.process-feature p {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.process-feature strong {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: #093019;
  background: linear-gradient(135deg, #b8ee61, #16a085);
  white-space: nowrap;
}

@keyframes railPulse {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 200% 0;
  }
}

.calculator-grid,
.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.savings-card {
  padding: 1.3rem;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(135deg, #082a48, #0b3d63);
}

.savings-card h2,
.industries-card h2 {
  margin: 0 0 1rem;
  font-family: Poppins, Arial, sans-serif;
  text-transform: uppercase;
}

.form-grid,
.audit-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.lead-form-v2 label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.lead-form-v2 input,
.lead-form-v2 select,
.lead-form-v2 textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 0.75rem;
  font: inherit;
}

.lead-form-v2 textarea {
  grid-column: 1 / -1;
  min-height: 76px;
  resize: vertical;
}

.savings-output {
  display: inline-grid;
  gap: 0.1rem;
  margin: 1rem 0;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.savings-output strong {
  color: #c9ef8e;
  font-family: Poppins, Arial, sans-serif;
  font-size: 1.7rem;
}

.industries-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    radial-gradient(circle at 12% 8%, rgba(22, 160, 133, 0.12), transparent 18rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
  box-shadow: 0 18px 44px rgba(9, 43, 74, 0.06);
}

.industry-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, minmax(142px, 1fr));
  gap: 0.85rem;
}

.industry-grid article {
  min-height: 142px;
  display: grid;
  grid-template-rows: 68px auto;
  gap: 0.65rem;
  place-items: center;
  border: 1px solid rgba(9, 43, 74, 0.08);
  border-radius: 10px;
  padding: 1rem 0.75rem;
  color: var(--deep);
  font-weight: 900;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.industry-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 160, 133, 0.36);
  box-shadow: 0 18px 34px rgba(9, 43, 74, 0.12);
}

.industry-grid img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.industry-grid span {
  display: block;
  max-width: 10ch;
  line-height: 1.18;
}

.impact {
  padding: 2rem 0;
  color: var(--white);
  background:
    linear-gradient(rgba(3, 20, 18, 0.8), rgba(3, 20, 18, 0.85)),
    url("assets/hero/hero-01.webp") center/cover;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.impact article {
  display: grid;
  gap: 0.3rem;
  place-items: center;
  min-height: 156px;
  padding: 1rem 0.7rem;
  border: 1px solid rgba(191, 231, 142, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  text-align: center;
}

.impact-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(191, 231, 142, 0.38);
  border-radius: 50%;
  background: rgba(140, 198, 63, 0.16);
  font-size: 1.45rem;
  line-height: 1;
}

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

.impact strong {
  color: var(--white);
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(1.35rem, 1.7vw, 2rem);
  line-height: 1.05;
}

.impact span {
  max-width: 190px;
  font-weight: 900;
}

.impact article > span:last-child {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  line-height: 1.25;
}

.cert-grid,
.before-grid,
.story-grid,
.blog-grid {
  display: grid;
  gap: 1rem;
}

.cert-grid {
  grid-template-columns: repeat(4, 1fr);
}

.cert-grid img {
  width: 100%;
  height: 190px;
  padding: 0.65rem;
  background: linear-gradient(180deg, #ffffff, #f6f9f8);
  object-fit: contain;
}

.cert-grid h3,
.story-grid h3,
.blog-grid h3 {
  margin: 0;
  padding: 0.8rem 0.8rem 0.2rem;
  font-family: Poppins, Arial, sans-serif;
  font-size: 0.95rem;
}

.cert-grid a,
.story-grid a,
.blog-grid a {
  display: inline-flex;
  margin: 0.6rem 0.8rem 0.9rem;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
}

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

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

.before-grid img,
.story-grid img,
.blog-grid img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.before-grid img {
  height: 190px;
  padding: 0.55rem;
  background: linear-gradient(180deg, #ffffff, #f6f9f8);
  object-fit: contain;
}

.before-card {
  position: relative;
  cursor: zoom-in;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.before-card::after {
  content: "+";
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(9, 43, 74, 0.92);
  font-family: Poppins, Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.before-card:hover,
.before-card:focus-visible {
  border-color: rgba(21, 151, 127, 0.35);
  box-shadow: 0 22px 54px rgba(9, 43, 74, 0.14);
  outline: none;
  transform: translateY(-5px);
}

.before-card:hover::after,
.before-card:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.before-grid h3 {
  margin: 0;
  min-height: 66px;
  display: grid;
  place-items: center;
  padding: 0.65rem;
  font-family: Poppins, Arial, sans-serif;
  font-size: 0.82rem;
  line-height: 1.25;
  text-align: center;
}

.before-card > span {
  display: block;
  padding: 0.45rem 0.75rem 0.7rem;
  color: var(--teal);
  background: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.testimonial-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(21, 151, 127, 0.09), transparent 22rem),
    linear-gradient(180deg, #ffffff, #f6f9f8);
}

.testimonial-section .section-title {
  display: table;
  margin-inline: auto;
  padding: 0.2rem 0.85rem;
  border-radius: 6px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal));
}

.story-grid p {
  margin: 0;
  padding: 0.2rem 0.8rem;
  color: var(--muted);
  font-weight: 700;
}

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

.testimonial article {
  min-height: 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(9, 43, 74, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.testimonial article:hover {
  box-shadow: 0 24px 56px rgba(9, 43, 74, 0.14);
  transform: translateY(-4px);
}

.testimonial h3 {
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-family: Poppins, Arial, sans-serif;
  font-size: 0.92rem;
  line-height: 1.25;
}

.testimonial p {
  margin: 0 0 0.45rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.avatar {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--green));
  font-family: Poppins, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

.testimonial strong {
  color: #e8a80d;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-home .section-title {
  margin-bottom: 0.45rem;
}

.faq-home .section-subtitle {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(9, 43, 74, 0.1);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(9, 43, 74, 0.07);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.faq-item:hover {
  border-color: rgba(22, 160, 133, 0.28);
  background: #f8fdfb;
  box-shadow: 0 20px 44px rgba(9, 43, 74, 0.11);
  transform: translateY(-2px);
}

.faq-item h2,
.faq-item h3 {
  margin: 0;
}

.faq-list button {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 62px;
  border: 0;
  padding: 1rem 1.1rem;
  color: var(--deep);
  background: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: left;
}

.faq-list button:hover,
.faq-list button.is-open {
  color: var(--green);
  background: #f3fbf6;
}

.faq-list button span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-family: Poppins, Arial, sans-serif;
}

.faq-panel {
  padding: 0 1.1rem 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  animation: faqPanelIn 220ms ease both;
}

.faq-panel p {
  margin: 0;
}

.faq-panel a {
  color: var(--green);
  font-weight: 900;
}

.faq-more {
  margin-top: 1rem;
}

.faq-page-section {
  padding: 4rem 0;
  background:
    radial-gradient(circle at top left, rgba(22, 160, 133, 0.08), transparent 36%),
    linear-gradient(180deg, #f8fbfb, #fff);
}

.faq-page-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) 1fr;
  gap: 1.5rem;
  align-items: start;
}

.faq-aside {
  position: sticky;
  top: 110px;
  padding: 1.3rem;
  border: 1px solid rgba(9, 43, 74, 0.1);
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #f1fbf6);
  box-shadow: 0 20px 46px rgba(9, 43, 74, 0.08);
}

.faq-aside h2 {
  margin: 0 0 0.6rem;
  color: var(--deep);
  font-family: Poppins, Arial, sans-serif;
}

.faq-aside p {
  color: var(--muted);
  line-height: 1.65;
}

.faq-page-list {
  gap: 0.85rem;
}

@keyframes faqPanelIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

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

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

.bottom-cta {
  padding: 2.1rem 0;
  color: var(--white);
  background: linear-gradient(90deg, #053052, #0a412e);
}

.page-mini-cta {
  padding: 1.4rem 0;
  color: var(--white);
  background: linear-gradient(90deg, var(--navy), #0d513c);
}

.page-mini-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-mini-cta h2 {
  margin: 0;
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
}

.page-mini-cta p {
  margin: 0.2rem 0 0;
}

.bottom-cta .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.bottom-cta h2 {
  margin: 0;
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  text-transform: uppercase;
}

.bottom-cta p {
  margin: 0.3rem 0 0;
}

.footer-v2 {
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 12% 10%, rgba(21, 151, 127, 0.18), transparent 32%),
    linear-gradient(135deg, #05243c, #06243d 48%, #041d32);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.25fr) repeat(4, minmax(150px, 1fr));
  gap: clamp(1.4rem, 2.4vw, 2.5rem);
  padding: clamp(2.2rem, 4vw, 3.5rem) 0;
  align-items: start;
}

.footer-brand-col {
  display: grid;
  gap: 1rem;
  max-width: 390px;
}

.footer-logo-box {
  display: inline-flex;
  width: min(100%, 340px);
  min-height: 82px;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.18);
}

.footer-logo-box img {
  width: 100%;
  height: auto;
  max-height: 70px;
  object-fit: contain;
}

.footer-brand-col p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.footer-grid h3 {
  margin: 0 0 0.8rem;
  color: var(--white);
  font-family: Poppins, Arial, sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0.46rem 0;
  overflow-wrap: anywhere;
}

.footer-grid a {
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-grid a:hover {
  color: #bfe78e;
  transform: translateX(3px);
}

.footer-bottom {
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-bottom a {
  color: #bfe78e;
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 60;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  color: transparent;
  background: #25d366 url("assets/icons/whatsapp-icon.webp") center / 58% auto no-repeat;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.whatsapp-float::before {
  content: "";
}

.success-popup-v2 {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(5, 18, 28, 0.62);
}

.success-popup-v2[hidden] {
  display: none;
}

.success-popup-v2 > div {
  position: relative;
  width: min(420px, 100%);
  padding: 1.6rem;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

#success-close-v2 {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.5rem;
}

.homepage-about {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.7fr);
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: center;
}

.homepage-about-copy {
  max-width: 850px;
}

.homepage-about-copy h2 {
  margin: 0.55rem 0 1rem;
  color: var(--navy);
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(2.05rem, 4vw, 4.1rem);
  line-height: 1.05;
  text-wrap: balance;
}

.homepage-about-copy p {
  max-width: 820px;
  margin: 0 0 0.95rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.homepage-about-copy .btn {
  margin-top: 0.65rem;
}

.homepage-about-card {
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
  border: 1px solid rgba(21, 151, 127, 0.2);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(241, 250, 246, 0.92)),
    radial-gradient(circle at top right, rgba(140, 198, 63, 0.18), transparent 44%);
  box-shadow: 0 24px 56px rgba(9, 43, 74, 0.1);
}

.homepage-about-card ul {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.homepage-about-card li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(21, 151, 127, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-family: Poppins, Arial, sans-serif;
  font-weight: 800;
}

.homepage-about-card li::before {
  content: "";
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(21, 151, 127, 0.1);
}

.about-hero {
  min-height: clamp(520px, 58vw, 720px);
  display: grid;
  align-items: end;
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--deep);
}

.about-hero picture,
.about-hero picture::after,
.about-hero img {
  position: absolute;
  inset: 0;
}

.about-hero picture::after {
  content: "";
  background:
    radial-gradient(circle at 18% 56%, rgba(140, 198, 63, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(4, 18, 30, 0.86), rgba(4, 18, 30, 0.54) 46%, rgba(4, 18, 30, 0.14) 80%),
    linear-gradient(0deg, rgba(4, 18, 30, 0.65), rgba(4, 18, 30, 0.08) 52%);
}

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

.about-hero .container {
  position: relative;
  z-index: 1;
}

.about-hero .section-kicker {
  color: #c7ef95;
}

.about-story-section,
.about-infrastructure-section,
.about-commitment-section {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: var(--white);
}

.about-story-grid,
.about-commitment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

.about-story-copy,
.about-commitment-grid article {
  max-width: 880px;
}

.about-story-copy h2,
.about-commitment-grid h2,
.section-heading-row .section-title {
  margin: 0.45rem 0 1rem;
  color: var(--navy);
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(2rem, 3.3vw, 3.45rem);
  line-height: 1.08;
  text-transform: none;
  text-wrap: balance;
}

.about-story-copy p,
.about-commitment-grid p,
.section-heading-row p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.about-principles {
  position: sticky;
  top: 124px;
  padding: 1.35rem;
  border: 1px solid rgba(21, 151, 127, 0.2);
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff, #f2faf6);
  box-shadow: 0 24px 60px rgba(9, 43, 74, 0.1);
}

.about-principles h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-family: Poppins, Arial, sans-serif;
}

.about-principles ul,
.commitment-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-principles li,
.commitment-list span {
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(9, 43, 74, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  font-family: Poppins, Arial, sans-serif;
  font-weight: 800;
}

.about-principles li::before {
  content: "\2713";
  margin-right: 0.65rem;
  color: var(--green);
  font-weight: 900;
}

.about-infrastructure-section {
  background:
    linear-gradient(180deg, #f7fbf9, #ffffff),
    radial-gradient(circle at top right, rgba(140, 198, 63, 0.16), transparent 34%);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.about-infra-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-infra-grid article {
  overflow: hidden;
  border: 1px solid rgba(9, 43, 74, 0.08);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(9, 43, 74, 0.1);
}

.about-infra-grid img {
  width: 100%;
  aspect-ratio: 1.24 / 1;
  object-fit: cover;
}

.about-infra-grid div {
  padding: 1rem;
}

.about-infra-grid strong,
.about-infra-grid span {
  display: block;
}

.about-infra-grid strong {
  color: var(--navy);
  font-family: Poppins, Arial, sans-serif;
  font-size: 1.05rem;
}

.about-infra-grid span {
  margin-top: 0.35rem;
  color: var(--muted);
  font-weight: 700;
}

.about-commitment-section {
  background: var(--paper);
}

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

.commitment-list span {
  display: flex;
  align-items: center;
  min-height: 66px;
  background: var(--white);
}

.commitment-list span::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-right: 0.65rem;
  border-radius: 50%;
  background: var(--teal);
}

.about-proof-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

@media (max-width: 1120px) {
  .client-row,
  .reason-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .split-compare,
  .calculator-grid,
  .faq-page-layout,
  .two-columns,
  .bottom-cta .container {
    grid-template-columns: 1fr;
  }

  .faq-aside {
    position: static;
  }

  .problem-list,
  .solution-list {
    min-height: 0;
  }

  .vs-card {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .vs-card img {
    height: auto;
    max-height: 430px;
  }

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

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

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

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

  .process-feature strong {
    grid-column: 1 / -1;
    justify-self: start;
  }

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

  .footer-brand-col {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 840px) {
  .top-strip {
    display: none;
  }

  .nav {
    width: min(100% - 28px, 720px);
    min-height: 72px;
  }

  .brand img {
    width: 150px;
  }

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

  .reason-grid article {
    min-height: 190px;
  }

  .process-rail {
    grid-template-columns: repeat(12, minmax(112px, 1fr));
  }

  .process-feature {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .nav-toggle {
    display: inline-flex;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    font-weight: 900;
  }

  .nav-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero-v2,
  .hero-inner {
    min-height: 600px;
  }

  .hero-copy {
    width: min(100%, 620px);
    max-width: 620px;
    padding: 0 0 1rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 8vw, 3.8rem);
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
  }

  .hero-metrics,
  .client-row,
  .reason-grid,
  .cert-grid,
  .before-grid,
  .story-grid,
  .blog-grid,
  .industry-grid,
  .impact-grid,
  .flow-grid,
  .form-grid,
  .audit-fields {
    grid-template-columns: 1fr 1fr;
  }

  .industry-grid {
    grid-template-rows: none;
  }

  .container {
    width: min(100% - 28px, 720px);
  }

  .problem-solution {
    padding-top: 2rem;
  }

  .flow-card {
    padding-bottom: 2rem;
  }
}

@media (max-height: 780px) and (min-width: 900px) {
  .hero-v2,
  .hero-inner {
    min-height: 540px;
  }

  .hero-copy {
    width: min(100%, 620px);
    max-width: 620px;
    padding: 0 0 0.75rem;
  }

  .eyebrow {
    margin-bottom: 0.55rem;
    font-size: 0.78rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 3.15vw, 3.45rem);
  }

  .hero-copy > p:not(.eyebrow) {
    margin: 0.65rem 0 0.85rem;
    font-size: 0.95rem;
  }

  .hero-actions .btn {
    min-height: 42px;
    padding: 0.72rem 1.05rem;
  }

  .hero-trust {
    margin-top: 0.65rem;
  }

  .hero-trust span {
    padding: 0.32rem 0.55rem;
    font-size: 0.7rem;
  }

  .hero-metrics {
    max-width: 590px;
    margin-top: 0.75rem;
  }

  .hero-metrics article {
    min-height: 54px;
    grid-template-columns: 30px 1fr;
  }

  .hero-metrics article::before {
    width: 30px;
    height: 30px;
  }

  .hero-dots {
    margin-top: 0.65rem;
  }

  .client-row img {
    flex-basis: 250px;
    width: 250px;
    height: 112px;
  }
}

@media (max-width: 560px) {
  .hero-v2,
  .hero-inner {
    min-height: 680px;
  }

  .hero-slider img {
    object-position: center top;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 18, 31, 0.34), rgba(3, 18, 31, 0.26) 46%, rgba(3, 18, 31, 0.4)),
      linear-gradient(90deg, rgba(3, 18, 31, 0.42), rgba(3, 18, 31, 0.1));
  }

  .hero-copy {
    padding: 0 0 0.85rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.15rem, 11vw, 3.15rem);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 0.98rem;
  }

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

  .hero-trust {
    gap: 0.45rem;
  }

  .hero-trust span {
    font-size: 0.72rem;
  }

  .hero-metrics article {
    min-height: 64px;
  }

  .hero-metrics,
  .client-row,
  .reason-grid,
  .cert-grid,
  .before-grid,
  .story-grid,
  .blog-grid,
  .industry-grid,
  .impact-grid,
  .flow-grid,
  .form-grid,
  .audit-fields {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-rows: none;
  }

  .reason-grid article {
    min-height: 0;
  }

  .process-rail {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .process-rail::before {
    top: 28px;
    bottom: 28px;
    left: 29px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .process-rail li {
    grid-template-columns: 58px 1fr;
    grid-template-rows: 1fr;
    justify-items: start;
    min-height: 76px;
    text-align: left;
  }

  .process-rail li::before {
    top: 50%;
    left: 29px;
    transform: translate(-50%, -50%);
  }

  .process-rail img {
    margin-top: 0;
  }

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

  .page-mini-cta .container,
  .cta-row {
    display: grid;
  }

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

  .service-strip img {
    height: 230px;
  }

  .testimonial article {
    grid-template-columns: 48px 1fr;
    padding: 0.9rem;
  }

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

  .avatar {
    width: 48px;
    height: 48px;
  }

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

  .problem-list,
  .solution-list {
    padding: 1rem;
  }

  .problem-list li,
  .solution-list li {
    font-size: 0.95rem;
  }

  .client-row img {
    flex-basis: 220px;
    width: 220px;
    height: 96px;
  }

  .testimonial article {
    grid-template-columns: 1fr;
  }

  .mini-flow {
    grid-template-columns: 1fr;
  }

  .red-flow {
    grid-template-columns: 1fr;
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 7rem) 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 28, 49, 0.92), rgba(6, 28, 49, 0.64)),
    url("assets/hero/hero-01.webp") center/cover;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.page-hero p {
  max-width: 720px;
  margin: 1rem 0 0;
  font-size: 1.12rem;
  font-weight: 800;
}

.page-content {
  padding: 2.5rem 0;
  background: var(--white);
}

.content-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: start;
}

.content-panel,
.feature-panel,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.4rem;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(9, 43, 74, 0.08);
}

.content-panel h2,
.feature-panel h2,
.contact-panel h2 {
  margin: 0 0 0.9rem;
  color: var(--navy);
  font-family: Poppins, Arial, sans-serif;
}

.content-panel p,
.feature-panel p {
  color: var(--muted);
  font-size: 1rem;
}

.page-list {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.page-list li {
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfb;
  font-weight: 900;
}

.page-list li::before {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.6rem;
  border-radius: 50%;
  background: var(--green);
}

.page-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.page-link-row a {
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(22, 160, 133, 0.28);
  border-radius: 999px;
  color: var(--green);
  background: #f3fbf6;
  font-weight: 900;
}

.subpage-proof {
  padding: 1.7rem 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 39, 64, 0.96), rgba(8, 92, 68, 0.92)),
    radial-gradient(circle at top left, rgba(160, 215, 75, 0.22), transparent 38%);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.proof-grid article {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.proof-grid strong {
  display: block;
  color: #b8ee61;
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.proof-grid span {
  font-weight: 900;
}

.industries-page-card {
  padding: 1.5rem;
}

.industries-page-card .section-subtitle,
.page-content > .container > .section-subtitle {
  max-width: 760px;
  margin: -0.55rem 0 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

.services-page-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.uploading-soon {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(22, 160, 133, 0.2);
  border-radius: 20px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(22, 160, 133, 0.12), transparent 44%),
    var(--white);
  box-shadow: 0 24px 60px rgba(9, 43, 74, 0.12);
}

.uploading-soon span {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  color: var(--green);
  background: #f3fbf6;
  font-weight: 900;
  text-transform: uppercase;
}

.uploading-soon h2 {
  margin: 0;
  color: var(--deep);
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.uploading-soon p {
  max-width: 560px;
  margin: 0.9rem auto 1.4rem;
  color: var(--muted);
  line-height: 1.7;
}

.page-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.page-card-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(9, 43, 74, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.page-card-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 160, 133, 0.3);
  box-shadow: 0 24px 52px rgba(9, 43, 74, 0.14);
}

.page-card-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.page-card-grid h2,
.page-card-grid h3 {
  margin: 0;
  padding: 1rem 1rem 0.35rem;
  color: var(--navy);
  font-family: Poppins, Arial, sans-serif;
  font-size: 1.05rem;
}

.page-card-grid p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.contact-card {
  display: grid;
  gap: 0.7rem;
}

.contact-card a,
.contact-card p {
  margin: 0;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfb;
  font-weight: 900;
}

.contact-map {
  overflow: hidden;
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(9, 43, 74, 0.08);
}

.contact-map iframe {
  display: block;
  width: 100%;
  min-height: 320px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.contact-form input,
.contact-form textarea {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem;
  font: inherit;
}

.contact-form textarea {
  grid-column: 1 / -1;
  min-height: 130px;
}

.contact-form button {
  justify-self: start;
}

@media (max-width: 900px) {
  .content-grid,
  .contact-grid,
  .page-card-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .page-hero {
    padding: 3.4rem 0;
  }

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

  .page-mini-cta .container {
    display: grid;
  }

  .nav-menu a.is-current::after {
    width: 42px;
  }
}

.about-hero {
  min-height: clamp(520px, 58vw, 720px);
  display: grid;
  align-items: end;
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--deep);
}

.about-hero h1 {
  text-transform: none;
}

.about-hero picture,
.about-hero picture::after,
.about-hero img {
  position: absolute;
  inset: 0;
}

.about-hero picture::after {
  content: "";
  background:
    radial-gradient(circle at 18% 56%, rgba(140, 198, 63, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(4, 18, 30, 0.86), rgba(4, 18, 30, 0.54) 46%, rgba(4, 18, 30, 0.14) 80%),
    linear-gradient(0deg, rgba(4, 18, 30, 0.65), rgba(4, 18, 30, 0.08) 52%);
}

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

.about-hero .container {
  position: relative;
  z-index: 1;
}

.about-hero .section-kicker {
  color: #c7ef95;
}

.about-proof-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

@media (max-width: 1120px) {
  .homepage-about,
  .about-story-grid,
  .about-commitment-grid,
  .section-heading-row {
    grid-template-columns: 1fr;
  }

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

  .about-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-principles {
    position: static;
  }
}

@media (max-width: 560px) {
  .homepage-about-card,
  .about-principles {
    padding: 1rem;
  }

  .about-hero {
    min-height: 560px;
    padding: 4rem 0 3rem;
  }

  .about-hero img {
    object-position: center;
  }

  .about-infra-grid,
  .commitment-list,
  .about-proof-grid {
    grid-template-columns: 1fr;
  }
}
