
:root {
  --navy: #082a5e;
  --navy-deep: #041a3c;
  --navy-soft: #123c73;
  --green: #62b432;
  --green-bright: #78c93f;
  --ink: #101b2c;
  --muted: #657084;
  --line: #dce3ea;
  --cloud: #f4f7f8;
  --white: #ffffff;
  --background: #ffffff;
  --foreground: #101b2c;
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --font-sans: "Aptos", "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Aptos", "Segoe UI", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.siteHeader {
  position: sticky;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid #e2e8ed;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 34px rgba(4, 26, 60, 0.07);
  backdrop-filter: blur(14px);
}

.headerInner {
  width: min(1440px, calc(100% - 64px));
  min-height: 106px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(330px, 1.2fr) auto minmax(220px, 0.8fr);
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand img {
  width: 360px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}

.desktopNav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 650;
}

.desktopNav a {
  position: relative;
  padding: 13px 0;
  transition: color 180ms ease;
}

.desktopNav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.desktopNav a:hover,
.desktopNav a:focus-visible {
  color: var(--navy-soft);
}

.desktopNav a:hover::after,
.desktopNav a:focus-visible::after {
  transform: scaleX(1);
}

.headerCta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-height: 52px;
  padding: 6px 7px 6px 22px;
  border: 1px solid rgba(8, 42, 94, 0.08);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), #0d477f);
  color: white;
  font-size: 14px;
  font-weight: 750;
  box-shadow: 0 12px 28px rgba(8, 42, 94, 0.2);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.headerCta:hover,
.headerCta:focus-visible {
  background: linear-gradient(135deg, #0d3c75, #12609c);
  box-shadow: 0 16px 34px rgba(8, 42, 94, 0.27);
  transform: translateY(-2px);
}

.headerCta span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-bright);
  color: var(--navy-deep);
  font-size: 16px;
}

.mobileMenu {
  display: none;
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 22%, rgba(98, 180, 50, 0.22), transparent 30%),
    linear-gradient(120deg, var(--navy-deep) 10%, var(--navy) 62%, #0b386a 100%);
  color: white;
}

.heroImage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}

.heroShade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 17, 40, 0.97) 0%, rgba(4, 27, 62, 0.86) 36%, rgba(5, 26, 56, 0.2) 73%, rgba(3, 18, 41, 0.6) 100%),
    linear-gradient(0deg, rgba(2, 14, 32, 0.6), transparent 45%);
}

.heroGrid {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 104px 104px;
  mask-image: linear-gradient(90deg, black, transparent 75%);
}

.heroInner {
  position: relative;
  z-index: 2;
  width: min(1440px, calc(100% - 64px));
  min-height: 800px;
  margin: 0 auto;
  padding-top: 182px;
  padding-bottom: 86px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 80px;
}

.heroCopy {
  max-width: 850px;
}

.eyebrow,
.kicker {
  margin: 0 0 25px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
}

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

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(68px, 7.2vw, 118px);
  font-weight: 530;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

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

.heroLead {
  max-width: 620px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.65;
}

.heroActions {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.button {
  min-height: 58px;
  padding: 0 22px 0 26px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button span {
  font-size: 18px;
}

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

.buttonPrimary {
  background: var(--green);
  color: var(--navy-deep);
  box-shadow: 0 14px 34px rgba(24, 93, 17, 0.25);
}

.buttonPrimary:hover,
.buttonPrimary:focus-visible {
  background: var(--green-bright);
  box-shadow: 0 18px 42px rgba(24, 93, 17, 0.35);
}

.textLink {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 6px;
}

.heroCard {
  align-self: end;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 27, 59, 0.6);
  backdrop-filter: blur(14px);
}

.heroCardIndex {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.58);
}

.heroCardRule {
  height: 1px;
  margin: 22px 0 28px;
  background: rgba(255, 255, 255, 0.17);
}

.heroCard > p {
  margin: 0 0 12px;
  color: var(--green-bright);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.heroCard h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 520;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.heroCardFooter {
  margin-top: 32px;
  display: grid;
  gap: 9px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.58);
}

.statusDot::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 4px rgba(120, 201, 63, 0.12);
}

.heroTrust {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 100px;
  padding: 0 max(32px, calc((100% - 1440px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(3, 19, 43, 0.38);
  backdrop-filter: blur(12px);
}

.heroTrust p {
  margin: 0;
  font-weight: 650;
  font-size: 14px;
}

.heroTrust div {
  display: flex;
  align-items: center;
  gap: 46px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.heroTrust div span::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
}

.section {
  padding: 130px max(32px, calc((100% - 1440px) / 2));
}

.sectionTag {
  display: flex;
  gap: 22px;
  align-items: center;
  color: #7a8594;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.sectionTag.light {
  color: rgba(255, 255, 255, 0.46);
}

.intro {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  background: white;
}

.introContent {
  max-width: 1060px;
}

.kicker {
  color: var(--navy);
}

.kicker.green {
  color: var(--green-bright);
}

.intro h2,
.services h2,
.solutions h2,
.process h2,
.contact h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.intro h2 {
  max-width: 1050px;
  font-size: clamp(44px, 5vw, 78px);
  line-height: 1.04;
}

.intro h2 em {
  display: block;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.introColumns {
  margin-top: 58px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.introColumns p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.services {
  background: var(--navy-deep);
  color: white;
}

.servicesHeading {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}

.servicesHeading > div:last-child {
  max-width: 820px;
}

.services h2,
.process h2 {
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 1.05;
}

.servicesGrid {
  margin-top: 76px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.serviceCard {
  min-height: 430px;
  padding: 32px 28px 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition:
    background 200ms ease,
    transform 200ms ease;
}

.serviceCard:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.serviceCard:hover {
  background: rgba(98, 180, 50, 0.08);
  transform: translateY(-5px);
}

.serviceTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.serviceArrow {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--green-bright);
  font-size: 16px;
}

.serviceIcon {
  width: 92px;
  height: 92px;
  margin-top: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  color: rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(circle at 78% 20%, rgba(98, 180, 50, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.serviceIcon svg {
  width: 52px;
  height: 52px;
  overflow: visible;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.serviceIconAccent {
  stroke: var(--green-bright);
}

.serviceCard:hover .serviceIcon {
  transform: translateY(-5px) rotate(-2deg);
  border-color: rgba(98, 180, 50, 0.55);
  background:
    radial-gradient(circle at 78% 20%, rgba(98, 180, 50, 0.34), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
}

.serviceCopy {
  margin-top: auto;
  padding-top: 34px;
}

.serviceCard h3 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 560;
  letter-spacing: -0.025em;
}

.serviceCard p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.75;
}

.solutions {
  background: var(--cloud);
}

.solutionsHeader {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
}

.solutionsHeader > div:last-child {
  max-width: 880px;
}

.solutions h2 {
  font-size: clamp(46px, 5.1vw, 78px);
  line-height: 1;
}

.sectorGrid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sectorCard {
  min-height: 500px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid #e2e8ec;
}

.sectorCard > span {
  width: max-content;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.sectorVisual {
  position: relative;
  height: 220px;
  margin: 36px 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(98, 180, 50, 0.1), transparent 60%),
    linear-gradient(180deg, #f7fafb, #edf2f4);
}

.sectorVisual::before {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 18%;
  height: 55%;
  transform: perspective(500px) rotateX(58deg) rotateZ(calc(-10deg + var(--sector-index) * 4deg));
  background:
    linear-gradient(rgba(255, 255, 255, 0.16) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 2px, transparent 2px),
    linear-gradient(135deg, #0f4279, #052452);
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: 0 24px 35px rgba(6, 38, 78, 0.22);
}

.sectorVisual i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.sectorVisual i:nth-child(1) {
  top: 20%;
  left: 19%;
}

.sectorVisual i:nth-child(2) {
  top: 14%;
  right: 22%;
}

.sectorVisual i:nth-child(3) {
  bottom: 15%;
  left: 31%;
}

.sectorVisual i:nth-child(4) {
  bottom: 24%;
  right: 14%;
}

.sectorCard h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 27px;
  font-weight: 560;
  letter-spacing: -0.03em;
}

.sectorCard p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  gap: 100px;
  background: #061f45;
  color: white;
}

.processIntro {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 40px;
}

.processIntro .textLink {
  margin-top: 38px;
}

.lightLink {
  color: rgba(255, 255, 255, 0.8);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.steps li {
  min-height: 128px;
  padding: 26px 6px;
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.steps > li > span {
  color: var(--green-bright);
  font-size: 11px;
  font-weight: 750;
}

.steps h3 {
  margin: 0 0 8px;
  font-size: 23px;
  font-weight: 550;
}

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

.contact {
  padding-top: 90px;
  padding-bottom: 90px;
  background: white;
}

.contactPanel {
  min-height: 540px;
  padding: 70px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 100px;
  align-items: end;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 80% 15%, rgba(118, 201, 63, 0.24), transparent 26%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 78%);
  color: white;
}

.contactPanel::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -310px;
  right: -120px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.02);
}

.contactCopy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.contact h2 {
  max-width: 820px;
  font-size: clamp(46px, 5.5vw, 82px);
  line-height: 0.99;
}

.contactCopy > p:not(.kicker) {
  max-width: 560px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.buttonWhite {
  background: white;
  color: var(--navy);
}

.contactDetails {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 25px;
}

.contactDetails > div {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contactDetails span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contactDetails a,
.contactDetails address {
  color: white;
  font-size: 15px;
  font-style: normal;
  line-height: 1.55;
}

.footer {
  padding: 80px max(32px, calc((100% - 1440px) / 2)) 24px;
  background: #f5f7f8;
}

.footerMain {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  padding-bottom: 70px;
}

.footerBrand img {
  width: 320px;
  max-height: 160px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.footerBrand p {
  max-width: 420px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.footerLinks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.footerLinks > div {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footerLinks span {
  margin-bottom: 8px;
  color: #7c8797;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footerLinks a {
  width: max-content;
  color: var(--navy);
  font-size: 14px;
}

.footerBottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #dce2e7;
  color: #7e8793;
  font-size: 11px;
}

.footerBottom p {
  margin: 0;
}

@media (max-width: 1180px) {
  .brand img {
    width: 310px;
  }

  .desktopNav {
    gap: 20px;
  }

  .headerCta {
    padding-left: 17px;
    font-size: 13px;
  }

  .heroInner {
    grid-template-columns: 1fr 320px;
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(64px, 8vw, 95px);
  }

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

  .serviceCard:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
  }

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

@media (max-width: 920px) {
  .headerInner {
    width: min(100% - 40px, 1440px);
    grid-template-columns: 1fr auto;
  }

  .desktopNav,
  .headerCta {
    display: none;
  }

  .mobileMenu {
    display: block;
    justify-self: end;
    position: relative;
  }

  .mobileMenu summary {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid rgba(8, 42, 94, 0.22);
    border-radius: 50%;
    cursor: pointer;
    list-style: none;
  }

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

  .mobileMenu summary span {
    width: 18px;
    height: 1px;
    background: var(--navy);
  }

  .mobileMenu nav {
    position: absolute;
    top: 58px;
    right: 0;
    width: 230px;
    padding: 16px;
    display: grid;
    background: white;
    color: var(--navy);
    box-shadow: 0 24px 70px rgba(1, 15, 35, 0.25);
  }

  .mobileMenu nav a {
    padding: 12px;
    border-bottom: 1px solid #e7ebee;
    font-size: 14px;
  }

  .hero {
    min-height: 980px;
  }

  .heroInner {
    min-height: 870px;
    grid-template-columns: 1fr;
    align-content: end;
    padding-top: 150px;
    padding-bottom: 135px;
  }

  .heroCopy {
    align-self: end;
  }

  .heroCard {
    display: none;
  }

  .heroTrust {
    min-height: 100px;
  }

  .heroTrust div {
    gap: 18px;
  }

  .intro,
  .servicesHeading,
  .solutionsHeader {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .sectorCard {
    min-height: 450px;
  }

  .contactPanel {
    grid-template-columns: 1fr;
    padding: 58px 44px;
    gap: 60px;
  }

  .footerMain {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}

@media (max-width: 640px) {
  .headerInner {
    width: calc(100% - 28px);
    min-height: 86px;
  }

  .brand img {
    width: min(270px, calc(100vw - 92px));
    height: auto;
    max-height: 58px;
  }

  .hero {
    min-height: 820px;
  }

  .heroImage {
    object-position: 69% center;
  }

  .heroShade {
    background:
      linear-gradient(90deg, rgba(3, 17, 40, 0.96), rgba(4, 25, 56, 0.58)),
      linear-gradient(0deg, rgba(2, 14, 32, 0.7), transparent 50%);
  }

  .heroInner {
    width: calc(100% - 36px);
    min-height: 750px;
    padding-top: 120px;
    padding-bottom: 112px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    font-size: clamp(50px, 16vw, 70px);
  }

  .heroLead {
    margin-top: 24px;
    font-size: 16px;
  }

  .heroActions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 32px;
  }

  .button {
    min-height: 54px;
  }

  .heroTrust {
    min-height: 78px;
    padding: 0 18px;
  }

  .heroTrust p {
    font-size: 11px;
  }

  .heroTrust div {
    display: none;
  }

  .section {
    padding: 88px 20px;
  }

  .sectionTag {
    font-size: 10px;
  }

  .intro h2,
  .services h2,
  .solutions h2,
  .process h2,
  .contact h2 {
    font-size: 40px;
  }

  .introColumns {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .serviceCard,
  .serviceCard:first-child,
  .serviceCard:nth-child(3) {
    min-height: 390px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
  }

  .serviceIcon {
    width: 82px;
    height: 82px;
    margin-top: 30px;
  }

  .serviceIcon svg {
    width: 46px;
    height: 46px;
  }

  .process {
    gap: 60px;
  }

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

  .steps li {
    grid-template-columns: 55px 1fr;
  }

  .contact {
    padding: 20px 0;
  }

  .contactPanel {
    padding: 56px 24px;
  }

  .contactDetails a,
  .contactDetails address {
    font-size: 13px;
  }

  .footer {
    padding: 65px 20px 22px;
  }

  .footerBrand img {
    width: 270px;
  }

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

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

.contactPanel--form {
  grid-template-columns: minmax(0, 0.88fr) minmax(470px, 1.12fr);
  align-items: center;
}

.contactQuick {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.contactQuick a {
  color: white;
  font-size: 13px;
  font-weight: 650;
  border-bottom: 1px solid rgba(255,255,255,.28);
  padding-bottom: 5px;
}

.contactForm {
  position: relative;
  z-index: 1;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(3,20,46,.56);
  backdrop-filter: blur(14px);
}

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

.contactForm label {
  margin-bottom: 14px;
  display: grid;
  gap: 7px;
  color: rgba(255,255,255,.67);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
}

.contactForm input,
.contactForm select,
.contactForm textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 7px;
  background: rgba(255,255,255,.08);
  color: white;
  font: inherit;
  font-size: 13px;
  outline: 0;
}

.contactForm input,
.contactForm select {
  height: 45px;
  padding: 0 12px;
}

.contactForm textarea {
  padding: 12px;
  resize: vertical;
}

.contactForm option {
  color: #122037;
}

.contactForm input:focus,
.contactForm select:focus,
.contactForm textarea:focus {
  border-color: #78c93f;
  box-shadow: 0 0 0 3px rgba(120,201,63,.12);
}

.contactFormFoot {
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contactFormFoot small {
  max-width: 260px;
  color: rgba(255,255,255,.4);
  font-size: 9px;
  line-height: 1.5;
}

.contactFormFoot button {
  min-width: 154px;
  height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  background: #62b432;
  color: #041a3c;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.websiteField {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.siteToast {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  width: min(520px, calc(100% - 32px));
  padding: 14px 48px 14px 17px;
  transform: translateX(-50%);
  border: 1px solid #c7dfb7;
  border-radius: 9px;
  background: #f2faed;
  color: #3d6627;
  box-shadow: 0 18px 55px rgba(1,17,39,.22);
  font-size: 12px;
}

.siteToast--error {
  border-color: #efc1c1;
  background: #fff1f1;
  color: #8c3333;
}

.siteToast button {
  position: absolute;
  top: 7px;
  right: 9px;
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 20px;
  cursor: pointer;
}

.footerLinks address {
  color: #677486;
  font-size: 12px;
  font-style: normal;
  line-height: 1.6;
}

@media (max-width: 920px) {
  .contactPanel--form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contactForm {
    padding: 22px 18px;
  }

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

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

  .contactFormFoot button {
    width: 100%;
  }
}
