:root {
  --orange: #ff5a00;
  --orange-dark: #cf4100;
  --ink: #111111;
  --coal: #181818;
  --muted: #696969;
  --line: #dedede;
  --paper: #ffffff;
  --soft: #f6f4f1;
  --steel: #496171;
  --green: #4e6f58;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  color: white;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
  width: 42px;
  height: 38px;
}

.brand-mark::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  content: "";
  background: var(--orange);
  transform: skewX(-22deg);
}

.brand-mark span {
  display: block;
  width: 9px;
  border: 3px solid currentColor;
  border-bottom: 0;
}

.brand-mark span:nth-child(1) {
  height: 23px;
}

.brand-mark span:nth-child(2) {
  height: 34px;
}

.brand-mark span:nth-child(3) {
  height: 18px;
  border-color: var(--orange);
}

.brand-name {
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 0;
}

.brand-name strong {
  color: var(--orange);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
  font-size: 14px;
}

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

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: #101010;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.95) 48%, rgba(0, 0, 0, 0.44) 72%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.38), transparent 42%);
}

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

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  padding: 120px clamp(22px, 7vw, 90px) 80px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.8vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow) {
  max-width: 760px;
  font-size: clamp(18px, 1.8vw, 23px);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: white;
  background: var(--orange);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-dark);
}

.button-secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.65);
}

.dark-button {
  color: var(--ink);
  border-color: rgba(0, 0, 0, 0.24);
}

.intro,
.service-overview,
.industries,
.work-model,
.advantage,
.contact {
  padding: clamp(70px, 10vw, 130px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
  background: var(--paper);
}

.intro-copy {
  font-size: clamp(18px, 1.8vw, 23px);
  color: #303030;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.stat-row span {
  min-height: 126px;
  padding: 22px;
  background: var(--soft);
  color: var(--muted);
  font-size: 16px;
}

.stat-row strong {
  display: block;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.service-overview {
  background: var(--soft);
}

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

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 90, 0, 0.09), transparent 44%),
    white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::after {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 128px;
  height: 128px;
  content: "";
  border: 18px solid rgba(255, 90, 0, 0.12);
  border-radius: 50%;
}

.service-card div {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  min-height: 310px;
  padding: 28px;
}

.service-card-image {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 0;
  overflow: hidden;
  background: #151515;
}

.service-card-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.34));
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--photo-position, center);
}

.service-card p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.48;
}

.service-card a {
  align-self: end;
  width: fit-content;
  color: var(--orange);
  font-weight: 850;
}

.service-card a::after {
  content: " ->";
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 0, 0.32);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.12);
}

.service-code {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: white;
  background: var(--ink);
  border-radius: 50%;
  font-weight: 900;
}

.service-card-wide {
  grid-column: span 3;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  grid-template-rows: auto;
}

.service-card-wide .service-card-image {
  height: 100%;
  min-height: 320px;
  aspect-ratio: auto;
}

.service-card-wide div {
  min-height: 320px;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(340px, 1.12fr);
  min-height: 720px;
  background: var(--coal);
  color: white;
}

.feature-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy {
  align-self: center;
  padding: clamp(54px, 7vw, 96px);
}

.feature-copy p:not(.eyebrow),
.feature-copy li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.about-platform {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 90, 0, 0.16), transparent 30%),
    #121212;
}

.about-platform h2 {
  max-width: 760px;
  font-size: clamp(40px, 5.6vw, 82px);
}

.about-platform .feature-copy p:not(.eyebrow) {
  max-width: 660px;
}

.about-photo-panel {
  min-height: 720px;
}

.about-photo-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.18), transparent 42%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent 42%);
}

.photo-callout {
  position: absolute;
  z-index: 1;
  left: clamp(20px, 4vw, 48px);
  bottom: clamp(20px, 4vw, 48px);
  width: min(360px, calc(100% - 40px));
  padding: 24px;
  color: white;
  background: rgba(18, 18, 18, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.photo-callout span {
  display: block;
  color: var(--orange);
  font-size: 54px;
  font-weight: 900;
  line-height: 0.95;
}

.photo-callout p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.check-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 10px;
  align-items: baseline;
  padding-left: 0;
}

.check-list li::before {
  position: static;
  grid-column: 1;
  color: var(--orange);
  content: "✓";
  font-size: 1.05em;
  font-weight: 900;
  line-height: 1;
  transform: translateY(0.08em);
}

.industries {
  background: white;
}

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

.industry-grid article {
  min-height: 260px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 90, 0, 0.08), transparent 50%),
    #fbfaf7;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

.industry-grid span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  color: white;
  background: var(--ink);
  border-radius: 50%;
  font-weight: 900;
}

.industry-grid h3 {
  text-transform: capitalize;
}

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

.work-model {
  color: white;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 90, 0, 0.18), transparent 32%),
    #111;
}

.work-heading {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.work-heading h2 {
  margin-bottom: 0;
}

.work-heading > p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.5vw, 21px);
}

.work-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-steps li {
  min-height: 300px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 90, 0, 0.16), transparent 56%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.work-steps span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 90, 0, 0.4);
  border-radius: 50%;
  font-weight: 900;
}

.work-steps h3 {
  color: white;
}

.work-steps p {
  color: rgba(255, 255, 255, 0.72);
}

.advantage {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #ffffff 0%, #f7f4ef 58%, #eef2f0 100%);
}

.advantage::before {
  position: absolute;
  right: clamp(20px, 6vw, 90px);
  top: 72px;
  width: clamp(180px, 22vw, 340px);
  aspect-ratio: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 90, 0, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(255, 90, 0, 0.18) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle, #000 0 55%, transparent 72%);
  opacity: 0.55;
}

.advantage-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.advantage-heading h2 {
  max-width: 1080px;
  margin-bottom: 0;
  font-size: clamp(42px, 5.2vw, 88px);
}

.advantage-heading > p {
  margin-bottom: 8px;
  color: #4a4a4a;
  font-size: clamp(17px, 1.5vw, 21px);
}

.advantage-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
  border: 0;
}

.advantage-grid article {
  min-height: 280px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.07);
}

.advantage-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--orange);
  font-size: 42px;
  font-weight: 900;
}

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

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

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(34px, 8vw, 110px);
  max-width: 1280px;
  margin: 0 auto;
}

.contact-panel p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 14px 15px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.service-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.service-picker legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-picker label {
  display: block;
  color: white;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.service-picker input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-picker span {
  display: grid;
  min-height: 48px;
  align-items: center;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.service-picker input:checked + span {
  color: white;
  background:
    linear-gradient(135deg, rgba(255, 90, 0, 0.28), rgba(255, 90, 0, 0.08)),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 90, 0, 0.72);
}

.service-picker input:focus-visible + span {
  outline: 3px solid rgba(255, 90, 0, 0.36);
  outline-offset: 2px;
}

.service-picker label:hover span {
  color: white;
  border-color: rgba(255, 255, 255, 0.34);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: white;
  background: #070707;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.service-page {
  background: #f7f7f4;
}

.service-header,
.service-header.is-scrolled,
.service-header.menu-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  min-height: 760px;
  padding: 150px clamp(20px, 5vw, 72px) 90px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 90, 0, 0.12), transparent 30%),
    linear-gradient(135deg, #fff 0%, #f4f2ec 56%, #e8ece8 100%);
}

.service-hero-copy {
  max-width: 820px;
}

.service-hero h1 {
  color: var(--ink);
  font-size: clamp(48px, 7.4vw, 104px);
  text-transform: none;
}

.service-hero p:not(.eyebrow) {
  max-width: 680px;
  color: #3f3f3f;
  font-size: clamp(18px, 2vw, 24px);
}

.back-link {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--muted);
  font-weight: 850;
}

.back-link::before {
  content: "<- ";
}

.service-detail,
.service-split,
.service-process,
.service-metrics {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 1.3fr);
  gap: clamp(34px, 7vw, 90px);
  background: white;
}

.detail-grid {
  display: grid;
  gap: 18px;
}

.detail-grid article {
  display: grid;
  grid-template-columns: 76px 1fr;
  column-gap: 26px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.detail-grid article:last-child {
  border-bottom: 1px solid var(--line);
}

.detail-grid span {
  grid-row: 1 / span 2;
  color: var(--orange);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.detail-grid h3,
.detail-grid p {
  grid-column: 2;
}

.detail-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  color: white;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 90, 0, 0.16), transparent 28%),
    #101010;
}

.service-metrics div {
  position: relative;
  min-height: 190px;
  display: grid;
  align-content: end;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 90, 0, 0.14), transparent 58%),
    #171717;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.service-metrics div::before {
  position: absolute;
  top: 24px;
  left: 28px;
  width: 44px;
  height: 4px;
  content: "";
  background: var(--orange);
  border-radius: 999px;
}

.service-metrics small {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-metrics strong {
  display: block;
  color: var(--orange);
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1;
}

.service-metrics span {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 700;
}

.service-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 90px);
  background: #f7f7f4;
}

.service-split .check-list {
  margin-top: 0;
}

.service-split .check-list li {
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: #343434;
  font-size: 19px;
}

.service-card h3,
.advantage-grid h3,
.detail-grid h3 {
  text-transform: capitalize;
}

.service-process {
  background:
    linear-gradient(180deg, #ffffff 0%, #faf8f4 100%);
}

.service-process h2 {
  max-width: 860px;
}

.service-process ol {
  counter-reset: process-step;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  background: transparent;
  border: 0;
}

.service-process li {
  position: relative;
  min-height: 270px;
  padding: 34px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.07);
}

.service-process li::before {
  counter-increment: process-step;
  content: "0" counter(process-step);
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 42px;
  place-items: center;
  color: white;
  background: var(--ink);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 900;
}

.service-process li::after {
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 150px;
  height: 150px;
  content: "";
  border: 20px solid rgba(255, 90, 0, 0.1);
  border-radius: 50%;
}

.service-process strong {
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}

.service-process span {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
}

.fulfillment-map,
.facility-board,
.lab-canvas,
.space-stack,
.people-grid,
.security-radar,
.corporate-ledger {
  min-height: 0;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-visual-pair {
  display: grid;
  gap: 18px;
}

.service-photo {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: #151515;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.46)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 45%);
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--photo-position, center);
}

.fulfillment-map {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    #171717;
  background-size: 58px 58px;
}

.node {
  position: absolute;
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  color: white;
  background: #262626;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  font-weight: 900;
}

.node-main {
  left: 42%;
  top: 38%;
  background: var(--orange);
}

.node:nth-child(2) {
  left: 12%;
  top: 16%;
}

.node:nth-child(3) {
  right: 12%;
  top: 18%;
}

.node:nth-child(4) {
  right: 18%;
  bottom: 14%;
}

.route {
  position: absolute;
  height: 3px;
  background: rgba(255, 90, 0, 0.68);
  transform-origin: left center;
}

.route-one {
  width: 210px;
  left: 28%;
  top: 35%;
  transform: rotate(24deg);
}

.route-two {
  width: 190px;
  left: 54%;
  top: 44%;
  transform: rotate(-27deg);
}

.route-three {
  width: 180px;
  left: 54%;
  top: 58%;
  transform: rotate(24deg);
}

.facility-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.facility-board div {
  display: grid;
  align-content: space-between;
  padding: 28px;
  background: #171717;
  color: white;
}

.facility-board span,
.corporate-ledger span,
.space-stack span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
  text-transform: uppercase;
}

.facility-board strong {
  color: var(--orange);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
}

.lab-canvas {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 14px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255, 90, 0, 0.18), transparent),
    #171717;
}

.lab-canvas span {
  display: grid;
  place-items: center;
  min-height: calc(110px + var(--rise, 0px));
  padding: 18px 10px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 850;
}

.lab-canvas span:nth-child(2) { --rise: 34px; }
.lab-canvas span:nth-child(3) { --rise: 76px; }
.lab-canvas span:nth-child(4) { --rise: 126px; }
.lab-canvas span:nth-child(5) {
  --rise: 178px;
  background: var(--orange);
}

.space-stack,
.corporate-ledger {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #171717;
}

.space-stack article,
.corporate-ledger div {
  display: grid;
  align-content: space-between;
  min-height: 130px;
  padding: 24px;
  color: white;
  background:
    linear-gradient(135deg, rgba(255, 90, 0, 0.22), transparent),
    rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.space-stack strong,
.corporate-ledger strong {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1px;
  background: #ddd6c9;
}

.people-grid span {
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--ink);
  background: #fff;
  font-size: 22px;
  font-weight: 850;
}

.people-grid span:nth-child(1),
.people-grid span:nth-child(6) {
  color: white;
  background: var(--orange);
}

.security-radar {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #101010;
}

.security-radar span {
  position: absolute;
  width: calc(150px + var(--ring, 0px));
  height: calc(150px + var(--ring, 0px));
  border: 1px solid rgba(255, 90, 0, 0.42);
  border-radius: 50%;
}

.security-radar span:nth-child(1) { --ring: 0px; }
.security-radar span:nth-child(2) { --ring: 160px; }
.security-radar span:nth-child(3) { --ring: 320px; }

.security-radar strong {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  color: white;
  background: var(--orange);
  border-radius: 50%;
  font-size: 24px;
}

.corporate-ledger {
  background: #171717;
}

.corporate-ledger div {
  background:
    linear-gradient(135deg, rgba(255, 90, 0, 0.2), transparent),
    rgba(255, 255, 255, 0.09);
}

.facility-theme .eyebrow,
.facility-theme .detail-grid span,
.facility-theme .service-process strong {
  color: var(--orange);
}

.labs-theme .eyebrow,
.labs-theme .detail-grid span,
.labs-theme .service-process strong {
  color: var(--orange);
}

.spaces-theme .eyebrow,
.spaces-theme .detail-grid span,
.spaces-theme .service-process strong {
  color: var(--orange);
}

.manpower-theme .eyebrow,
.manpower-theme .detail-grid span,
.manpower-theme .service-process strong {
  color: var(--orange);
}

.security-theme .eyebrow,
.security-theme .detail-grid span,
.security-theme .service-process strong {
  color: var(--orange);
}

.corporate-theme .eyebrow,
.corporate-theme .detail-grid span,
.corporate-theme .service-process strong {
  color: var(--orange);
}

@media (max-width: 1040px) {
  .service-grid,
  .industry-grid,
  .advantage-grid,
  .work-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card-wide {
    grid-column: span 2;
  }

  .feature-band,
  .intro,
  .contact-panel,
  .advantage-heading,
  .work-heading,
  .service-hero,
  .service-detail,
  .service-split {
    grid-template-columns: 1fr;
  }

  .feature-image {
    min-height: 430px;
  }

  .about-platform .feature-image {
    order: -1;
  }

  .about-photo-panel {
    min-height: 520px;
  }

  .service-process ol,
  .service-metrics {
    grid-template-columns: 1fr;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 18px 20px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .site-header.menu-open .site-nav {
    display: grid;
    gap: 10px;
  }

  .hero {
    min-height: 760px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.88) 58%, rgba(0, 0, 0, 0.48) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent);
  }

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

  .hero-content {
    padding-top: 112px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .stat-row,
  .service-grid,
  .industry-grid,
  .work-steps,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .feature-copy,
  .intro,
  .service-overview,
  .advantage,
  .contact,
  .service-hero,
  .service-detail,
  .service-split,
  .service-process,
  .service-metrics {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-platform h2 {
    font-size: clamp(36px, 12vw, 58px);
  }

  .about-photo-panel {
    min-height: 460px;
  }

  .service-hero {
    min-height: auto;
    padding-top: 120px;
  }

  .service-hero h1 {
    font-size: clamp(44px, 15vw, 70px);
  }

  .fulfillment-map,
  .facility-board,
  .lab-canvas,
  .space-stack,
  .people-grid,
  .security-radar,
  .corporate-ledger {
    min-height: 360px;
  }

  .detail-grid article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .detail-grid span,
  .detail-grid h3,
  .detail-grid p {
    grid-column: 1;
  }

  .detail-grid span {
    grid-row: auto;
  }

  .lab-canvas,
  .people-grid {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    display: grid;
  }
}
