:root,
:root[data-theme="forest"] {
  --deep: #0d382e;
  --deep-rgb: 13, 56, 46;
  --deep-2: #092920;
  --deep-2-rgb: 9, 41, 32;
  --deep-3: #164d3d;
  --emerald: #19724f;
  --emerald-rgb: 25, 114, 79;
  --mint: #9ce0be;
  --mint-rgb: 156, 224, 190;
  --lime: #a7d85c;
  --lime-rgb: 167, 216, 92;
  --orange: #f5730e;
  --orange-dark: #b94900;
  --orange-soft: #fff0e3;
  --ink: #14231e;
  --text: #34443e;
  --muted: #65736e;
  --line: #dce5e0;
  --surface: #f4f7f5;
  --surface-2: #eaf1ed;
  --white: #ffffff;
  --danger: #b42318;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --font: Avenir, "Avenir Next", "Segoe UI", Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

:root[data-theme="navy"] {
  --deep: #0b2540;
  --deep-rgb: 11, 37, 64;
  --deep-2: #071a30;
  --deep-2-rgb: 7, 26, 48;
  --deep-3: #123a5c;
  --emerald: #1f6f93;
  --emerald-rgb: 31, 111, 147;
  --mint: #a8d8e8;
  --mint-rgb: 168, 216, 232;
  --lime: #5fd8a0;
  --lime-rgb: 95, 216, 160;
  --orange: #f5730e;
  --orange-dark: #b94900;
  --orange-soft: #fff0e3;
  --ink: #0f1b2a;
  --text: #33454f;
  --muted: #62737d;
  --line: #dbe3e8;
  --surface: #f3f6f8;
  --surface-2: #e9eef2;
}

:root[data-theme="earth"] {
  --deep: #3b2a1d;
  --deep-rgb: 59, 42, 29;
  --deep-2: #2a1d13;
  --deep-2-rgb: 42, 29, 19;
  --deep-3: #55402c;
  --emerald: #6b7c4f;
  --emerald-rgb: 107, 124, 79;
  --mint: #cfe0b8;
  --mint-rgb: 207, 224, 184;
  --lime: #8fae4f;
  --lime-rgb: 143, 174, 79;
  --orange: #f5730e;
  --orange-dark: #b94900;
  --orange-soft: #fdece0;
  --ink: #241a12;
  --text: #4a3c2e;
  --muted: #7c6b58;
  --line: #e6ddd0;
  --surface: #f8f4ee;
  --surface-2: #f0e9dd;
}

:root {
  --shadow-sm: 0 8px 24px rgba(var(--deep-rgb), 0.08);
  --shadow-lg: 0 24px 70px rgba(var(--deep-2-rgb), 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  scroll-snap-type: y mandatory;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.1;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 4.4vw, 4.2rem);
  font-weight: 760;
  letter-spacing: -0.057em;
}

h1 em {
  color: var(--mint);
  font-style: normal;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 750;
  letter-spacing: -0.047em;
}

h3 {
  font-size: 1.2rem;
  letter-spacing: -0.025em;
}

::selection {
  background: var(--mint);
  color: var(--deep-2);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

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

.section {
  display: flex;
  min-height: 100svh;
  padding-block: clamp(28px, 3.5vw, 48px);
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero,
.trust-strip,
.contact {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-footer {
  scroll-snap-align: start;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--deep);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.theme-switcher {
  position: fixed;
  z-index: 900;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 4px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.theme-switcher button {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px 8px 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease;
}

.theme-switcher button[aria-pressed="true"] {
  background: var(--surface-2);
  color: var(--ink);
}

.theme-swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--line);
}

.theme-swatch--forest {
  background: linear-gradient(135deg, #0d382e 50%, #f5730e 50%);
}

.theme-swatch--navy {
  background: linear-gradient(135deg, #0b2540 50%, #f5730e 50%);
}

.theme-swatch--earth {
  background: linear-gradient(135deg, #3b2a1d 50%, #f5730e 50%);
}

@media (max-width: 620px) {
  .theme-switcher {
    right: 10px;
    bottom: 10px;
  }

  .theme-switcher button span {
    margin: 0;
  }

  .theme-switcher button {
    padding: 8px;
  }

  .theme-switcher button .theme-label {
    display: none;
  }
}

@media print {
  .theme-switcher {
    display: none;
  }
}

.utility-bar {
  background: var(--deep-2);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.utility-bar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-bar p {
  margin: 0;
}

.utility-bar__links {
  display: flex;
  gap: 24px;
}

.utility-bar a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  transition: box-shadow 220ms ease, border-color 220ms ease;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(var(--deep-rgb), 0.07);
}

.site-header__inner {
  display: grid;
  min-height: 78px;
  align-items: center;
  grid-template-columns: 170px 1fr auto;
  gap: 34px;
}

.site-logo {
  width: 144px;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.primary-nav a {
  position: relative;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 650;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--deep);
  transition: transform 200ms ease, opacity 200ms ease;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid var(--orange);
  border-radius: var(--radius-sm);
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(245, 115, 14, 0.22);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  gap: 14px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--orange-dark);
  background: var(--orange-dark);
  box-shadow: 0 14px 30px rgba(180, 71, 0, 0.24);
  transform: translateY(-2px);
}

.button--small {
  min-height: 43px;
  padding: 10px 17px;
  font-size: 0.83rem;
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--deep);
  font-weight: 800;
  gap: 12px;
}

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

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

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

.eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--mint);
  font-size: 0.75rem;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.eyebrow--dark {
  color: var(--emerald);
}

.lead {
  color: var(--text);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.55;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  color: var(--white);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 43%;
  height: 100%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 60%);
  content: "";
}

.hero__mesh {
  position: absolute;
  right: -13%;
  bottom: -65%;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(var(--mint-rgb), 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(var(--mint-rgb), 0.025), 0 0 0 160px rgba(var(--mint-rgb), 0.018);
}

.hero__grid {
  position: relative;
  display: grid;
  align-items: center;
  padding-block: clamp(96px, 11vh, 128px) clamp(24px, 4vh, 40px);
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: clamp(32px, 4vw, 70px);
}

.hero__content,
.hero-visual,
.section-heading > *,
.split-layout > *,
.contact__grid > * {
  min-width: 0;
}

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

.hero__lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.hero__actions {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  gap: 28px;
}

.hero__assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero__assurance span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  gap: 7px;
}

.hero__assurance span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 510px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.hero-visual::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: rgba(245, 115, 14, 0.16);
  filter: blur(1px);
  content: "";
}

.hero-visual__topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status {
  display: flex;
  align-items: center;
  gap: 7px;
}

.status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(var(--lime-rgb), 0.14);
}

.hero-visual__radar {
  position: relative;
  width: 325px;
  height: 325px;
  margin: 18px auto 0;
}

.radar-ring,
.radar-core,
.radar-point {
  position: absolute;
  border-radius: 50%;
}

.radar-ring {
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  transform: translate(-50%, -50%);
}

.radar-ring::before,
.radar-ring::after {
  position: absolute;
  background: rgba(255, 255, 255, 0.07);
  content: "";
}

.radar-ring::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.radar-ring::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}

.radar-ring--one { width: 100%; height: 100%; }
.radar-ring--two { width: 68%; height: 68%; }
.radar-ring--three { width: 36%; height: 36%; }

.radar-core {
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  background: var(--orange);
  box-shadow: 0 0 0 13px rgba(245, 115, 14, 0.12);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.radar-point {
  z-index: 4;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--deep-3);
  color: var(--mint);
  font-size: 0.73rem;
  font-weight: 900;
}

.radar-point--one { top: 22px; left: 53px; }
.radar-point--two { top: 50px; right: 24px; }
.radar-point--three { bottom: 18px; right: 67px; }
.radar-point--four { bottom: 44px; left: 25px; }

.hero-visual__metrics {
  position: relative;
  z-index: 3;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(5, 33, 26, 0.42);
  grid-template-columns: repeat(3, 1fr);
}

.hero-visual__metrics div {
  padding: 14px 12px;
}

.hero-visual__metrics div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-visual__metrics strong,
.hero-visual__metrics span {
  display: block;
}

.hero-visual__metrics strong {
  color: var(--white);
  font-size: 1.1rem;
}

.hero-visual__metrics span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.66rem;
  line-height: 1.35;
}

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

.trust-strip__inner {
  display: grid;
  min-height: 88px;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 42px;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sector-marquee {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--deep);
  font-size: 0.87rem;
  font-weight: 800;
  gap: 18px;
}

.sector-marquee i {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(60px, 10vw, 140px);
}

.section-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.problem {
  background: var(--surface);
}

.problem__content > .lead {
  margin-bottom: 40px;
}

.problem-list {
  border-top: 1px solid var(--line);
}

.problem-list article {
  display: grid;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 52px 1fr;
  gap: 16px;
}

.problem-list article > span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.problem-list h3 {
  margin-bottom: 7px;
}

.problem-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 24px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.6fr);
  gap: 60px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

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

.service-tabs {
  display: grid;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  grid-template-columns: 0.37fr 0.63fr;
}

.service-tabs__list {
  display: flex;
  padding: 18px;
  border-right: 1px solid var(--line);
  flex-direction: column;
  gap: 7px;
}

.service-tabs__list button {
  display: grid;
  width: 100%;
  min-height: 82px;
  align-items: center;
  padding: 16px 18px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  grid-template-columns: 38px 1fr;
  text-align: left;
  transition: background 180ms ease, color 180ms ease;
}

.service-tabs__list button span {
  color: var(--orange);
  font-size: 0.73rem;
}

.service-tabs__list button[aria-selected="true"] {
  background: var(--deep);
  color: var(--white);
}

.service-tabs__content {
  display: flex;
  align-items: stretch;
  padding: 24px;
  background: var(--white);
}

.service-tabs__content article {
  width: 100%;
  align-items: center;
  grid-template-columns: 1fr 0.76fr;
  gap: 58px;
}

.service-tabs__content article:not([hidden]) {
  display: grid;
  animation: panel-in 280ms var(--ease);
}

.service-code {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--orange-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.service-tabs__content h3 {
  margin-bottom: 10px;
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
}

.service-tabs__content p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 9px 0 9px 30px;
  border-bottom: 1px solid var(--line);
  color: var(--deep);
  font-weight: 700;
}

.feature-list li::before {
  position: absolute;
  top: 16px;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange-dark);
  content: "✓";
  font-size: 0.65rem;
  font-weight: 900;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.no-js .service-tabs {
  display: block;
}

.no-js .service-tabs__list {
  display: none;
}

.no-js .service-tabs__content {
  display: grid;
  gap: 48px;
}

.no-js .service-tabs__content article[hidden] {
  display: grid;
}

.outcomes {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  color: var(--white);
}

.outcomes::before {
  position: absolute;
  top: -240px;
  right: -180px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.02), 0 0 0 140px rgba(255, 255, 255, 0.015);
  content: "";
}

.section-heading--light {
  position: relative;
}

.section-heading--light h2 {
  color: var(--white);
}

.section-heading--light p {
  color: rgba(255, 255, 255, 0.66);
}

.outcome-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.outcome-card {
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.outcome-card:hover {
  border-color: rgba(var(--mint-rgb), 0.5);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-6px);
}

.outcome-card > span {
  display: block;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
}

.outcome-card h3 {
  color: var(--white);
}

.outcome-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.industries {
  background: var(--surface);
}

.industries__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(60px, 10vw, 140px);
}

.industries__content .lead {
  margin-bottom: 32px;
}

.industry-map {
  position: relative;
  min-height: 500px;
}

.industry-map::before,
.industry-map::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(var(--emerald-rgb), 0.22);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.industry-map::before {
  width: 410px;
  height: 410px;
}

.industry-map::after {
  width: 260px;
  height: 260px;
}

.industry-map__core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 155px;
  height: 155px;
  place-items: center;
  border-radius: 50%;
  background: var(--deep);
  box-shadow: 0 18px 45px rgba(var(--deep-rgb), 0.22);
  color: var(--white);
  font-size: 1.9rem;
  font-weight: 900;
  text-align: center;
  transform: translate(-50%, -50%);
}

.industry-map__core span {
  display: block;
  margin-top: -38px;
  color: var(--mint);
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
}

.industry-chip {
  position: absolute;
  z-index: 4;
  padding: 11px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--deep);
  font-size: 0.79rem;
  font-weight: 800;
}

.industry-chip--one { top: 5%; left: 35%; }
.industry-chip--two { top: 23%; right: 0; }
.industry-chip--three { right: 3%; bottom: 19%; }
.industry-chip--four { bottom: 4%; left: 35%; }
.industry-chip--five { bottom: 20%; left: 0; }
.industry-chip--six { top: 23%; left: 3%; }

.process-list {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 25px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: var(--line);
  content: "";
}

.process-list li {
  position: relative;
  padding-top: 76px;
}

.process-list li > span {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 8px solid var(--white);
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange-dark);
  box-shadow: 0 0 0 1px var(--line);
  font-size: 0.72rem;
  font-weight: 900;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.projects {
  background: var(--surface);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.project-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 180px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  flex-direction: column;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.project-card::after {
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border: 26px solid var(--surface-2);
  border-radius: 50%;
  content: "";
}

.project-card:hover {
  border-color: var(--mint);
  box-shadow: 0 20px 44px rgba(var(--deep-rgb), 0.12);
  transform: translateY(-5px);
}

.project-card--featured {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.7);
}

.project-card--featured h3 {
  color: var(--white);
}

.project-card__meta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card h3 {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin-bottom: 6px;
  font-size: clamp(1.05rem, 1.3vw, 1.3rem);
}

.project-card p {
  position: relative;
  z-index: 2;
  max-width: 510px;
  color: inherit;
}

.project-card__footer {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 10px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.project-card--featured .project-card__footer {
  color: var(--mint);
}

.about__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(55px, 9vw, 120px);
}

.about__portrait {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  margin: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--deep-3), var(--deep-2));
}

.about__portrait::before {
  position: absolute;
  z-index: 1;
  inset: 42% 0 0;
  background: linear-gradient(to top, rgba(var(--deep-2-rgb), 0.94), transparent);
  content: "";
}

.about__portrait img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center top;
}

.about__portrait figcaption {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 30px;
  left: 34px;
  color: var(--mint);
  font-size: 1.1rem;
  font-weight: 800;
}

.about__content .lead {
  margin-bottom: 22px;
}

.about__content > p:not(.lead) {
  color: var(--muted);
}

.credential-card {
  margin-top: 34px;
  padding: 24px 28px;
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--surface);
}

.credential-card span,
.credential-card strong,
.credential-card small {
  display: block;
}

.credential-card span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.credential-card strong {
  color: var(--deep);
}

.credential-card small {
  margin-top: 2px;
  color: var(--orange-dark);
  font-weight: 800;
}

.why-us {
  border-top: 1px solid var(--line);
  background: var(--white);
}

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

.why-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: background 200ms ease, transform 200ms ease;
}

.why-grid article:hover {
  background: var(--surface);
  transform: translateY(-5px);
}

.why-icon {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 14px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 900;
}

.why-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq {
  background: var(--surface);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 8vw, 110px);
}

.faq__intro p {
  color: var(--muted);
}

.accordion article {
  border-bottom: 1px solid var(--line);
}

.accordion h3 {
  margin: 0;
}

.accordion button {
  display: grid;
  width: 100%;
  min-height: 56px;
  align-items: center;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  grid-template-columns: 1fr 32px;
  text-align: left;
}

.accordion button span {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.accordion button span::before,
.accordion button span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--deep);
  content: "";
  transform: translate(-50%, -50%);
}

.accordion button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.accordion button[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion [role="region"] {
  padding: 0 55px 26px 0;
}

.accordion [role="region"] p {
  margin: 0;
  color: var(--muted);
}

.no-js .accordion [hidden] {
  display: block;
}

.contact {
  position: relative;
  overflow: hidden;
  padding-block: clamp(84px, 10vh, 128px) clamp(16px, 3vh, 40px);
  background: var(--deep);
  color: var(--white);
}

.contact__glow {
  position: absolute;
  top: -280px;
  left: -260px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: rgba(var(--emerald-rgb), 0.35);
  filter: blur(1px);
}

.contact__grid {
  position: relative;
  display: grid;
  align-items: start;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(60px, 9vw, 120px);
}

.contact__content {
  position: sticky;
  top: 130px;
}

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

.contact__content > p {
  max-width: 420px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.contact__details {
  display: grid;
  margin-top: 14px;
  gap: 6px;
}

.contact__details a,
.contact__details div {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact__details small,
.contact__details strong {
  display: block;
}

.contact__details small {
  margin-bottom: 4px;
  color: var(--mint);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact__details strong {
  color: var(--white);
  font-size: 0.96rem;
}

.lead-form {
  padding: clamp(12px, 1.6vw, 20px);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  color: var(--text);
}

.lead-form__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.lead-form__heading span {
  color: var(--deep);
  font-size: 1.2rem;
  font-weight: 900;
}

.lead-form__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

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

.field {
  display: flex;
  flex-direction: column;
}

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

.field label {
  margin-bottom: 4px;
  color: var(--deep);
  font-size: 0.76rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 38px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 4px rgba(var(--emerald-rgb), 0.1);
  outline: 0;
}

.field [aria-invalid="true"] {
  border-color: var(--danger);
}

.field-error {
  min-height: 12px;
  margin-top: 2px;
  color: var(--danger);
  font-size: 0.7rem;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

.form-success {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--mint);
  border-radius: var(--radius-sm);
  background: #effaf3;
}

.form-success strong {
  color: var(--deep);
}

.form-success p {
  margin: 3px 0 0;
  font-size: 0.82rem;
}

.site-footer {
  padding-top: 72px;
  background: var(--deep-2);
  color: rgba(255, 255, 255, 0.65);
}

.site-footer__top {
  display: grid;
  padding-bottom: 62px;
  grid-template-columns: 1.4fr 0.75fr 0.65fr 1.1fr;
  gap: 55px;
}

.site-footer__brand img {
  width: 175px;
  margin-bottom: 24px;
  padding: 10px;
  border-radius: 10px;
  background: var(--white);
}

.site-footer__brand p,
.site-footer__top > div:last-child p {
  margin: 0;
  font-size: 0.82rem;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__top a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.82rem;
}

.site-footer__top a:hover {
  color: var(--mint);
}

.site-footer__bottom {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
}

.site-footer__bottom p {
  margin: 0;
}

.mobile-cta {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .site-header__inner {
    grid-template-columns: 145px 1fr auto;
    gap: 20px;
  }

  .primary-nav {
    gap: 18px;
  }

  .hero__grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 45px;
  }

  .hero-visual__radar {
    width: 280px;
    height: 280px;
  }

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

  .service-tabs__content {
    padding: 34px;
  }

  .service-tabs__content article {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .industry-map {
    transform: scale(0.88);
  }

  .site-footer__top {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .site-footer__top > div:last-child {
    grid-column: 2 / -1;
  }
}

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

  .utility-bar__links a:first-child {
    display: none;
  }

  .site-header__inner {
    min-height: 70px;
    grid-template-columns: 1fr auto;
  }

  .site-logo {
    width: 125px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 49;
    top: 104px;
    right: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    padding: 26px 24px 110px;
    background: var(--white);
    box-shadow: 0 20px 40px rgba(var(--deep-rgb), 0.12);
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    transform: translateY(-12px);
    transition: visibility 200ms ease, opacity 200ms ease, transform 200ms ease;
  }

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

  .primary-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-header__cta {
    display: none;
  }

  .hero__grid,
  .split-layout,
  .industries__grid,
  .about__grid,
  .faq__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    padding-block: 82px;
  }

  .hero-visual {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .trust-strip__inner {
    padding-block: 22px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sector-marquee {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .section-intro,
  .contact__content {
    position: static;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-tabs {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .service-tabs__list {
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    flex-direction: row;
    scroll-snap-type: x mandatory;
  }

  .service-tabs__list button {
    min-width: 240px;
    scroll-snap-align: start;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 28px;
  }

  .process-list::before {
    display: none;
  }

  .industry-map {
    width: min(100%, 620px);
    margin-inline: auto;
    transform: none;
  }

  .about__portrait {
    min-height: 420px;
  }

  .about__portrait img {
    height: 420px;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__top > div:last-child {
    grid-column: auto;
  }

  .mobile-cta {
    position: fixed;
    z-index: 45;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--orange);
    box-shadow: 0 14px 40px rgba(var(--deep-rgb), 0.27);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 900;
    gap: 12px;
  }
}

@media (max-width: 620px) {
  .section {
    padding-block: 76px;
  }

  h1 {
    font-size: clamp(2.45rem, 10.7vw, 3.35rem);
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .utility-bar__inner {
    justify-content: center;
  }

  .utility-bar__inner > p {
    display: none;
  }

  .primary-nav {
    top: 104px;
  }

  .hero__grid {
    min-height: 0;
    padding-block: 68px 76px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    justify-content: center;
  }

  .hero-visual {
    min-height: 450px;
    padding: 18px;
    border-radius: 22px;
  }

  .hero-visual__topline {
    font-size: 0.62rem;
  }

  .hero-visual__radar {
    width: 255px;
    height: 255px;
  }

  .radar-point {
    width: 46px;
    height: 46px;
  }

  .radar-point--one { top: 18px; left: 38px; }
  .radar-point--two { top: 43px; right: 16px; }
  .radar-point--three { bottom: 13px; right: 52px; }
  .radar-point--four { bottom: 35px; left: 13px; }

  .hero-visual__metrics div {
    padding: 11px 8px;
  }

  .hero-visual__metrics strong {
    font-size: 0.92rem;
  }

  .hero-visual__metrics span {
    font-size: 0.57rem;
  }

  .sector-marquee {
    gap: 11px;
  }

  .sector-marquee span {
    font-size: 0.75rem;
  }

  .problem-list article {
    grid-template-columns: 38px 1fr;
  }

  .service-tabs__content {
    padding: 27px 22px;
  }

  .service-tabs__content h3 {
    font-size: 1.75rem;
  }

  .outcome-grid,
  .why-grid,
  .project-grid,
  .process-list,
  .form-grid,
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .outcome-card {
    min-height: 230px;
  }

  .outcome-card > span {
    margin-bottom: 45px;
  }

  .industry-map {
    min-height: 450px;
    transform: scale(0.82);
    transform-origin: center;
  }

  .industry-chip {
    font-size: 0.7rem;
  }

  .process-list {
    gap: 36px;
  }

  .process-list li {
    padding: 14px 0 14px 72px;
  }

  .process-list li > span {
    top: 8px;
  }

  .project-card {
    min-height: 330px;
    padding: 27px;
  }

  .about__portrait {
    min-height: 350px;
  }

  .about__portrait img {
    height: 350px;
  }

  .why-icon {
    margin-bottom: 30px;
  }

  .lead-form__heading,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

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

  .site-footer {
    padding-bottom: 76px;
  }

  .site-footer__top > div:last-child,
  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__bottom {
    padding-block: 20px;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .utility-bar,
  .menu-toggle,
  .site-header__cta,
  .mobile-cta,
  .lead-form {
    display: none;
  }

  .site-header {
    position: static;
  }

  .hero,
  .outcomes,
  .contact,
  .site-footer {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}
