:root {
  --navy-950: #04111f;
  --navy-900: #071a2c;
  --navy-800: #0b2942;
  --navy-700: #123c5d;
  --blue-100: #e7f0f7;
  --green-600: #159947;
  --green-500: #20ad55;
  --green-400: #45c86f;
  --white: #ffffff;
  --ink: #102235;
  --muted: #5c6b78;
  --line: #dce3e8;
  --off-white: #f5f8fa;
  --shadow: 0 22px 70px rgba(7, 26, 44, 0.12);
  --container: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

img,
svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-600);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    height 220ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(4, 17, 31, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.brand-mark svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 3;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-copy strong {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.075em;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.27em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav > a:not(.button) {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 650;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--green-400);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.button-small {
  min-height: 43px;
  padding-inline: 20px;
}

.button-green {
  color: var(--white);
  background: var(--green-600);
  box-shadow: 0 10px 28px rgba(21, 153, 71, 0.24);
}

.button-green:hover,
.button-green:focus-visible {
  background: var(--green-500);
  box-shadow: 0 14px 32px rgba(21, 153, 71, 0.34);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  display: flex;
  min-height: 780px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  z-index: 0;
  inset: 0;
}

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

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 17, 31, 0.96) 0%, rgba(4, 17, 31, 0.86) 31%, rgba(4, 17, 31, 0.32) 60%, rgba(4, 17, 31, 0.06) 100%),
    linear-gradient(0deg, rgba(4, 17, 31, 0.64) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 48px;
  padding-bottom: 110px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--green-600);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: var(--green-400);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(56px, 6vw, 86px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 span {
  color: rgba(255, 255, 255, 0.78);
}

.hero-intro {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 750;
}

.text-link span {
  transition: transform 160ms ease;
}

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

.text-link-light {
  color: var(--white);
}

.hero-stats {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(4, 17, 31, 0.6);
  backdrop-filter: blur(10px);
}

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

.stats-grid > div {
  display: flex;
  min-height: 104px;
  flex-direction: column;
  justify-content: center;
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.stats-grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stats-grid strong {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.intro-band {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.intro-band p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 5px rgba(32, 173, 85, 0.12);
}

.intro-band a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-800);
  font-size: 14px;
  font-weight: 800;
}

.section {
  padding-block: 112px;
}

.section-heading h2,
.industries-copy h2,
.about-copy h2,
.quote-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr;
  align-items: end;
  gap: 80px;
}

.split-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 40px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: var(--white);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.service-card:last-child {
  border-right: 0;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.featured-card {
  color: var(--white);
  background:
    linear-gradient(155deg, rgba(18, 60, 93, 0.88), rgba(4, 17, 31, 0.98)),
    var(--navy-900);
}

.card-number {
  position: absolute;
  top: 34px;
  right: 36px;
  color: #afbac3;
  font-size: 12px;
  font-weight: 800;
}

.featured-card .card-number {
  color: rgba(255, 255, 255, 0.45);
}

.service-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 48px;
  color: var(--green-600);
  place-items: center;
  background: rgba(21, 153, 71, 0.09);
}

.featured-card .service-icon {
  color: var(--green-400);
  background: rgba(69, 200, 111, 0.12);
}

.service-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.025em;
}

.service-card p {
  margin: 16px 0 30px;
  color: var(--muted);
  font-size: 15px;
}

.featured-card p {
  color: rgba(255, 255, 255, 0.66);
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--green-600);
  font-size: 13px;
  font-weight: 800;
}

.featured-card a {
  color: var(--green-400);
}

.industries-section {
  color: var(--white);
  background:
    radial-gradient(circle at 16% 20%, rgba(32, 173, 85, 0.11), transparent 28%),
    var(--navy-900);
}

.industries-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 100px;
}

.industries-copy {
  align-self: center;
}

.industries-copy > p:not(.eyebrow) {
  margin: 28px 0 36px;
  color: rgba(255, 255, 255, 0.65);
}

.industry-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.industry-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 28px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 180ms ease;
}

.industry-list article:hover {
  background: rgba(255, 255, 255, 0.035);
}

.industry-list article > span {
  padding-top: 5px;
  color: var(--green-400);
  font-size: 11px;
  font-weight: 800;
}

.industry-list h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.industry-list p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 14px;
}

.about-section {
  background: var(--off-white);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 96px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 530px;
  padding: 68px 54px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(18, 60, 93, 0.95), rgba(4, 17, 31, 0.98)),
    var(--navy-900);
}

.about-visual::before,
.about-visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.about-visual::before {
  width: 390px;
  height: 390px;
  right: -180px;
  bottom: -170px;
}

.about-visual::after {
  width: 280px;
  height: 280px;
  right: -125px;
  bottom: -115px;
}

.route-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-line {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 56px;
}

.route-line::before {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.26);
  content: "";
}

.route-line span {
  position: relative;
  width: 13px;
  height: 13px;
  border: 3px solid var(--navy-800);
  border-radius: 50%;
  background: var(--green-400);
  box-shadow: 0 0 0 3px rgba(69, 200, 111, 0.18);
}

.route-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
}

.about-quote {
  position: absolute;
  right: 54px;
  bottom: 62px;
  left: 54px;
}

.about-quote > span {
  color: var(--green-400);
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 0.5;
}

.about-quote p {
  max-width: 430px;
  margin: 16px 0 0;
  font-size: 25px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.about-copy .lead {
  margin: 28px 0 16px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 650;
}

.about-copy > p:not(.eyebrow):not(.lead) {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 14px;
  font-weight: 700;
}

.check-list li::before {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  color: var(--green-600);
  border: 1px solid rgba(21, 153, 71, 0.3);
  border-radius: 50%;
  content: "✓";
  font-size: 12px;
  place-items: center;
}

.quote-section {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(4, 17, 31, 0.99), rgba(11, 41, 66, 0.97)),
    var(--navy-950);
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 110px;
}

.quote-copy > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.quote-contact {
  display: grid;
  gap: 4px;
  margin-top: 44px;
}

.quote-contact small {
  color: rgba(255, 255, 255, 0.48);
}

.quote-contact a {
  color: var(--white);
  font-size: 18px;
  font-weight: 750;
}

.contact-hours {
  margin-top: 7px;
  color: var(--green-400);
  font-size: 12px;
  font-weight: 750;
}

.quote-promise {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.quote-promise > span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  color: var(--green-400);
  border: 1px solid rgba(69, 200, 111, 0.35);
  border-radius: 50%;
  place-items: center;
}

.quote-promise p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.quote-form {
  padding: 46px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

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

.quote-form label {
  display: grid;
  gap: 8px;
}

.quote-form label > span {
  color: #455765;
  font-size: 12px;
  font-weight: 750;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  color: var(--ink);
  border: 1px solid #ccd6dd;
  border-radius: 0;
  outline: none;
  background: #fbfcfd;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.quote-form textarea {
  min-height: 112px;
  resize: vertical;
}

.quote-form .consent-label {
  display: flex;
  align-items: flex-start;
  grid-template-columns: none;
  gap: 11px;
}

.quote-form .consent-label input {
  width: 18px;
  min-height: 18px;
  flex: 0 0 18px;
  margin-top: 3px;
  accent-color: var(--green-600);
}

.quote-form .consent-label span {
  font-weight: 500;
  line-height: 1.55;
}

.quote-form .consent-label a {
  color: var(--green-600);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--green-600);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(21, 153, 71, 0.1);
}

.full-width {
  grid-column: 1 / -1;
}

.form-submit {
  width: 100%;
  margin-top: 28px;
}

.form-note,
.form-status {
  margin: 12px 0 0;
  color: #73808a;
  font-size: 11px;
  text-align: center;
}

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

.form-status {
  min-height: 18px;
  color: var(--green-600);
  font-weight: 700;
}

.site-footer {
  color: var(--white);
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-block: 72px;
}

.brand-footer {
  margin-bottom: 22px;
}

.footer-main > div:first-child > p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h3 {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.footer-links address {
  margin: 4px 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-style: normal;
  line-height: 1.6;
}

.footer-availability {
  color: var(--green-400);
  font-size: 12px;
  font-weight: 750;
}

.footer-links a:hover {
  color: var(--green-400);
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

.legal-page .site-header,
.legal-page .site-header.is-scrolled {
  height: 72px;
  background: var(--navy-950);
}

.legal-main {
  padding: 140px 0 96px;
  background: var(--off-white);
}

.legal-document {
  max-width: 860px;
  padding: 60px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-document h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 66px);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.legal-updated {
  margin: 13px 0 42px;
  color: var(--muted);
  font-size: 13px;
}

.legal-document h2 {
  margin: 38px 0 10px;
  color: var(--navy-800);
  font-size: 23px;
  letter-spacing: -0.02em;
}

.legal-document p,
.legal-document li {
  color: #50616e;
}

.legal-document ul {
  padding-left: 22px;
}

.legal-document a {
  color: var(--green-600);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-document a.button-green {
  color: var(--white);
  text-decoration: none;
}

.legal-notice {
  padding: 20px 22px;
  margin: 32px 0;
  border-left: 4px solid var(--green-600);
  background: rgba(21, 153, 71, 0.07);
}

.legal-back {
  margin-top: 42px;
}

.confirmation-document {
  padding-block: 90px;
  text-align: center;
}

.confirmation-document .eyebrow {
  justify-content: center;
}

.confirmation-document > p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px auto 0;
}

.confirmation-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 32px;
  color: var(--white);
  border-radius: 50%;
  background: var(--green-600);
  box-shadow: 0 16px 34px rgba(21, 153, 71, 0.25);
  font-size: 30px;
  font-weight: 800;
  place-items: center;
}

:focus-visible {
  outline: 3px solid rgba(69, 200, 111, 0.75);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .site-nav {
    gap: 20px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .split-heading,
  .about-layout,
  .quote-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .service-card {
    min-height: 410px;
    padding: 32px;
  }

  .industries-layout {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 52px;
  }

  .about-visual {
    min-height: 470px;
  }

  .quote-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-height);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-mark svg {
    width: 27px;
    height: 27px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 0;
    background: transparent;
    gap: 4px;
  }

  .menu-toggle span:not(.sr-only) {
    width: 100%;
    height: 2px;
    background: var(--white);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

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

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

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

  .site-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    padding: 80px 28px;
    background: rgba(4, 17, 31, 0.99);
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    padding: 14px 4px;
    font-size: 24px;
  }

  .site-nav .button {
    margin-top: 18px;
  }

  .hero {
    min-height: 730px;
    align-items: flex-end;
  }

  .hero-image {
    object-position: 69% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 17, 31, 0.91), rgba(4, 17, 31, 0.3)),
      linear-gradient(0deg, rgba(4, 17, 31, 0.98) 0%, rgba(4, 17, 31, 0.64) 48%, rgba(4, 17, 31, 0.15) 100%);
  }

  .hero-content {
    padding-top: 160px;
    padding-bottom: 150px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 66px);
  }

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

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

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

  .stats-grid > div {
    min-height: 75px;
    padding-left: 18px;
  }

  .stats-grid > div:nth-child(3),
  .stats-grid > div:nth-child(4) {
    display: none;
  }

  .intro-band-inner {
    padding-block: 18px;
  }

  .intro-band a {
    display: none;
  }

  .section {
    padding-block: 78px;
  }

  .split-heading {
    gap: 22px;
  }

  .section-heading h2,
  .industries-copy h2,
  .about-copy h2,
  .quote-copy h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .service-card {
    min-height: 350px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .industries-layout {
    grid-template-columns: 1fr;
  }

  .industry-list {
    margin-top: 10px;
  }

  .about-layout {
    gap: 48px;
  }

  .about-visual {
    min-height: 430px;
    padding: 42px 30px;
  }

  .about-quote {
    right: 30px;
    bottom: 42px;
    left: 30px;
  }

  .about-quote p {
    font-size: 21px;
  }

  .quote-layout {
    gap: 44px;
  }

  .quote-form {
    padding: 28px 22px;
  }

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

  .full-width {
    grid-column: auto;
  }

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

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .legal-main {
    padding-top: 108px;
  }

  .legal-document {
    padding: 34px 24px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
