:root {
  --bg: #f5f7fa;
  --surface: #ffffff;
  --surface-soft: #eef3f8;
  --hero: #0b1d3a;
  --text: #0b1d3a;
  --muted: #4a4f57;
  --line: #d7dde5;
  --line-strong: #aeb8c4;
  --accent: #0066ff;
  --accent-dark: #004dbf;
  --orange: #c7661d;
  --steel-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 18px 42px rgba(11, 29, 58, 0.08);
  --shadow: 0 18px 42px rgba(11, 29, 58, 0.11);
  --steel-brush:
    linear-gradient(90deg, rgba(255, 255, 255, 0.68), rgba(228, 234, 242, 0.4), rgba(255, 255, 255, 0.62)),
    repeating-linear-gradient(90deg, rgba(11, 29, 58, 0.028) 0 1px, transparent 1px 5px);
  --slit-lines: repeating-linear-gradient(135deg, rgba(11, 29, 58, 0.045) 0 1px, transparent 1px 18px);
  --radius: 8px;
  --container: 1140px;
  --font-body: Inter, Manrope, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --font-heading: "Space Grotesk", Sora, Inter, "Segoe UI", system-ui, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(245, 247, 250, 0.96)),
    var(--steel-brush),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.58;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 0.85rem;
  font-size: clamp(2.35rem, 10vw, 4.95rem);
  font-weight: 700;
  line-height: 0.98;
}

h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.75rem, 6vw, 3rem);
  font-weight: 650;
  line-height: 1.05;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.18rem;
  font-weight: 650;
  line-height: 1.2;
}

.container {
  width: min(100% - 1.25rem, var(--container));
  margin-inline: auto;
}

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

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--accent);
  color: #fff;
  padding: 0.65rem 0.9rem;
  border-radius: 6px;
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  overflow: hidden;
  background: linear-gradient(135deg, #07111f 0%, #081827 55%, #0b1220 100%);
  border-bottom: 1px solid rgba(0, 102, 255, 0.22);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  animation: headerDrop 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 22px);
}

.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1480px);
  min-height: var(--header-height);
  margin-inline: auto;
  padding-inline: clamp(24px, 4vw, 64px);
  gap: 2rem;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  margin-right: auto;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  color: #fff;
  text-decoration: none;
}

.brand-logo {
  display: none;
  width: clamp(150px, 48vw, 190px);
  height: auto;
  max-height: 48px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  box-shadow: none;
  mix-blend-mode: normal;
  object-fit: contain;
}

.brand-logo-mobile {
  width: clamp(150px, 48vw, 190px);
  max-height: 48px;
}

.brand-logo-desktop {
  width: clamp(240px, 18vw, 310px);
  max-height: 60px;
}

.brand.has-mobile-logo > .brand-logo-mobile {
  display: block;
}

.brand.has-mobile-logo > .brand-fallback {
  display: none;
}

.brand-fallback {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.58rem;
}

.brand-mark-img {
  display: none;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-fallback.is-loaded .brand-mark-img {
  display: block;
}

.brand-mark-text {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, #0b1d3a, #123463);
  color: #fff;
  font-weight: 800;
}

.brand-fallback.is-loaded .brand-mark-text {
  display: none;
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  font-family: var(--font-heading);
  font-size: 1.02rem;
}

.brand-copy small {
  margin-top: 0.12rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

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

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  padding: 10px 4px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

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

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.header-cta {
  order: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 40px;
  margin-left: auto;
  padding: 0.58rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.nav-toggle {
  display: inline-grid;
  order: 3;
  width: 42px;
  height: 42px;
  padding: 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.site-nav.is-open {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  display: grid;
  gap: 0.1rem;
  padding: 0.85rem 1rem 1rem;
  background:
    radial-gradient(circle at 12% 0, rgba(0, 102, 255, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(11, 29, 58, 0.98), rgba(7, 19, 38, 0.96));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.site-nav.is-open a {
  min-height: 44px;
  padding: 0.7rem 0;
  color: #fff;
}

.site-nav.is-open a::after {
  bottom: 0.35rem;
}

.site-nav.is-open a:hover,
.site-nav.is-open a:focus-visible {
  color: #dceaff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.74rem 0.95rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 102, 255, 0.22);
}

.button[href^="tel:"]::before,
.button[href*="wa.me"]::before,
.button[href*="maps.app.goo.gl"]::before,
.header-cta::before,
.mobile-action-bar a::before {
  display: inline-block;
  font-size: 0.95em;
  line-height: 1;
}

.button[href^="tel:"]::before,
.header-cta::before,
.mobile-action-bar a[href^="tel:"]::before {
  content: "\260E";
}

.button[href*="wa.me"]::before,
.mobile-action-bar a[href*="wa.me"]::before {
  content: "\2197";
}

.button[href*="maps.app.goo.gl"]::before,
.mobile-action-bar a[href*="maps.app.goo.gl"]::before {
  content: "\2316";
}

.button:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(0, 102, 255, 0.3);
  outline-offset: 3px;
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 102, 255, 0.22);
}

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

.button-light {
  border-color: rgba(255, 255, 255, 0.45);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

.button-outline {
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, #fff, #f3f7fb);
  color: var(--text);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  background:
    linear-gradient(90deg, rgba(11, 29, 58, 0.99), rgba(11, 29, 58, 0.9)),
    radial-gradient(circle at 84% 24%, rgba(0, 102, 255, 0.22), transparent 28%),
    linear-gradient(110deg, transparent 0 58%, rgba(255, 255, 255, 0.05) 58% 59%, transparent 59% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 22px),
    #0b1d3a;
  color: #fff;
  padding: clamp(2.4rem, 6vw, 4.6rem) 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 8.5rem;
  right: -7rem;
  width: 25rem;
  height: 15rem;
  pointer-events: none;
  opacity: 0.42;
  background:
    radial-gradient(ellipse at 36% 52%, transparent 0 21%, rgba(255, 255, 255, 0.4) 21.5% 22.5%, transparent 23% 32%, rgba(0, 102, 255, 0.46) 32.5% 33.6%, transparent 34% 100%),
    repeating-linear-gradient(0deg, transparent 0 1rem, rgba(255, 255, 255, 0.24) 1rem 1.08rem, transparent 1.08rem 1.55rem);
  clip-path: polygon(0 14%, 73% 14%, 100% 50%, 73% 86%, 0 86%);
  transform: skewX(-12deg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background: repeating-linear-gradient(90deg, transparent 0 80px, rgba(255, 255, 255, 0.045) 80px 82px, transparent 82px 160px);
  animation: steelLinesMove 18s linear infinite;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 1600px);
  max-width: 1600px;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  min-width: 0;
  max-width: 820px;
  justify-self: start;
}

.eyebrow,
.panel-label,
.number-label {
  margin: 0 0 0.55rem;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.section .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

#services .eyebrow::before {
  content: "\25B0";
  color: var(--accent);
}

#process .eyebrow::before {
  content: "\2192";
  color: var(--orange);
}

#capability .eyebrow::before {
  content: "\25C9";
  color: var(--accent);
}

#gallery .eyebrow::before {
  content: "\25A3";
  color: var(--accent);
}

#industries .eyebrow::before {
  content: "\25A6";
  color: var(--accent);
}

#contact .eyebrow::before {
  content: "\260E";
  color: #72a7ff;
}

.hero-subheading {
  max-width: 680px;
  margin-bottom: 0.65rem;
  color: #e5edf6;
  font-size: 1.08rem;
  font-weight: 500;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: clamp(28px, 4vw, 46px);
  font-size: clamp(4.2rem, 5.2vw, 6.6rem);
  line-height: 0.98;
  animation: heroFadeUp 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-line {
  display: block;
}

.hero-line-main {
  white-space: nowrap;
  color: #fff;
}

.hero-line-accent {
  background: linear-gradient(90deg, #d8eaff 0%, #6ea8ff 45%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .action-row {
  margin-bottom: 22px;
  animation: heroFadeUp 720ms cubic-bezier(0.22, 1, 0.36, 1) 140ms both;
}

.hero .location-line {
  animation: heroFadeUp 720ms cubic-bezier(0.22, 1, 0.36, 1) 220ms both;
}

.hero .range-panel {
  animation: heroSlideIn 780ms cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.location-line {
  margin: 0;
  color: #d3dee9;
  font-size: 0.9rem;
}

.range-panel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 640px;
  padding: 1.35rem;
  border: 1px solid rgba(112, 147, 186, 0.35);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(183, 203, 224, 0.045)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 5px),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 3px 0 rgba(0, 102, 255, 0.75), 0 0 0 1px rgba(0, 102, 255, 0.09), 0 22px 48px rgba(0, 0, 0, 0.2);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.range-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 102, 255, 0.65);
  box-shadow: inset 0 3px 0 rgba(0, 102, 255, 0.9), 0 22px 55px rgba(0, 102, 255, 0.16), 0 24px 55px rgba(0, 0, 0, 0.22);
}

.range-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.12) 42%, transparent 58%);
  transform: translateX(-120%);
  animation: cardSweep 3s ease-in-out infinite;
}

.range-panel::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: 0.7rem;
  width: 11rem;
  height: 4.2rem;
  pointer-events: none;
  opacity: 0.24;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.75) 0 2px, transparent 2px 10px);
  transform: skewX(-18deg);
  animation: rangeSlitMove 8s linear infinite;
}

.range-panel > * {
  position: relative;
  z-index: 1;
}

.range-visual {
  position: relative;
  width: 68px;
  height: 68px;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: conic-gradient(from 35deg, rgba(255, 255, 255, 0.35), rgba(0, 102, 255, 0.58), rgba(255, 255, 255, 0.12));
}

.range-visual span {
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
}

.range-visual span + span {
  inset: 28px;
}

.range-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.range-mini-grid div,
.service-card,
.spec-card,
.process-flow li,
.photo-card,
.map-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--steel-shadow);
}

.range-mini-grid div {
  position: relative;
  min-height: 86px;
  padding: 1rem 1rem 1rem 2.6rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.range-mini-grid div::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.08rem;
  width: 0.82rem;
  height: 0.82rem;
  border: 1px solid rgba(105, 167, 255, 0.72);
  border-radius: 3px;
  background: rgba(0, 102, 255, 0.18);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.08);
}

.range-mini-grid div:nth-child(1)::before {
  background:
    repeating-linear-gradient(0deg, rgba(105, 167, 255, 0.95) 0 2px, transparent 2px 4px),
    rgba(0, 102, 255, 0.16);
}

.range-mini-grid div:nth-child(2)::before {
  height: 0.22rem;
  margin-top: 0.28rem;
  border-radius: 999px;
}

.range-mini-grid div:nth-child(3)::before {
  width: 1rem;
  height: 0.36rem;
  margin-top: 0.2rem;
  border-left-width: 3px;
  border-right-width: 3px;
}

.range-mini-grid div:nth-child(4)::before {
  border-radius: 50%;
  background: radial-gradient(circle, transparent 0 34%, rgba(105, 167, 255, 0.95) 36% 45%, transparent 47%), rgba(0, 102, 255, 0.16);
}

.range-mini-grid span,
.spec-row span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.range-mini-grid span {
  color: #b8c6d4;
  font-size: 0.86rem;
}

.range-mini-grid strong {
  color: #fff;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  font-weight: 800;
  line-height: 1.2;
}

.panel-note {
  margin: 0.75rem 0 0;
  color: #d4e0eb;
  font-size: 0.88rem;
}

.section {
  position: relative;
  padding: 3.2rem 0;
}

.section-white {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 249, 252, 0.98)),
    var(--steel-brush),
    var(--surface);
}

.section-soft {
  background:
    linear-gradient(135deg, rgba(11, 29, 58, 0.035), rgba(0, 102, 255, 0.045)),
    var(--slit-lines),
    var(--surface-soft);
}

#industries {
  background:
    repeating-linear-gradient(135deg, rgba(11, 29, 58, 0.035) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 1.25rem;
}

.section-heading p,
.split-layout > .section-heading p {
  color: var(--muted);
}

.section-heading-row {
  display: grid;
  gap: 0.65rem;
  align-items: end;
}

.service-grid {
  display: grid;
  gap: 0.85rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 244, 249, 0.92)),
    repeating-linear-gradient(0deg, transparent 0 0.82rem, rgba(0, 102, 255, 0.055) 0.82rem 0.88rem, transparent 0.88rem 1.45rem);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 3rem;
  height: 0.68rem;
  border-top: 2px solid rgba(0, 102, 255, 0.28);
  border-bottom: 2px solid rgba(0, 102, 255, 0.16);
  transform: skewX(-18deg);
}

.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 3px;
  height: 2rem;
  background: var(--orange);
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(0, 102, 255, 0.42);
  box-shadow: 0 18px 42px rgba(11, 29, 58, 0.14);
}

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

.split-layout {
  display: grid;
  gap: 1.2rem;
}

.process-flow {
  position: relative;
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: visible;
}

.process-flow::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 28px;
  width: 3px;
  background: linear-gradient(180deg, rgba(0, 102, 255, 0), rgba(0, 102, 255, 0.55), rgba(0, 102, 255, 0));
  z-index: 0;
}

.process-flow li {
  position: relative;
  z-index: 1;
  min-height: auto;
  padding: 20px;
  border: 1px solid rgba(11, 29, 58, 0.14);
  border-top: 5px solid var(--accent);
  border-radius: 16px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%),
    var(--steel-brush);
  box-shadow: 0 16px 38px rgba(11, 29, 58, 0.1);
  color: var(--text);
  overflow: visible;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.process-flow li::before {
  content: none;
}

.step-number {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.process-flow li strong {
  display: block;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 750;
  line-height: 1.35;
}

.process-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: -28px;
  width: 24px;
  height: 30px;
  background: linear-gradient(90deg, var(--accent), #0b4fb8);
  clip-path: polygon(0 25%, 62% 25%, 62% 0, 100% 50%, 62% 100%, 62% 75%, 0 75%);
  box-shadow: 0 8px 18px rgba(0, 102, 255, 0.25);
  transform: rotate(90deg);
  z-index: 2;
}

.process-flow li:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 102, 255, 0.42);
  box-shadow: 0 18px 42px rgba(11, 29, 58, 0.14);
}

.spec-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 244, 249, 0.94)),
    var(--steel-brush);
}

.spec-card::before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--hero), var(--accent), rgba(11, 29, 58, 0.2));
}

.spec-row {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
}

.spec-row:last-child {
  border-bottom: 0;
}

.spec-row strong {
  color: var(--text);
  font-weight: 700;
}

.spec-row span {
  color: #53606d;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chip-grid span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  min-height: 38px;
  padding: 0.48rem 0.68rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    linear-gradient(180deg, #fff, #f1f5f9);
  color: #344254;
  font-size: 0.94rem;
  font-weight: 600;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.industry-chip {
  transition:
    opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.industry-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 2px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.industry-chip:hover,
.industry-chip:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(0, 102, 255, 0.45);
  background: #fff;
  box-shadow: 0 16px 34px rgba(11, 29, 58, 0.12);
}

.industry-chip:hover::before,
.industry-chip:focus-visible::before {
  transform: rotate(45deg) scale(1.05);
  box-shadow: 0 0 0 5px rgba(0, 102, 255, 0.13);
}

.photo-grid {
  display: grid;
  gap: 0.85rem;
}

.photo-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 260px;
  border-radius: 18px;
  background: #d9e2ef;
  box-shadow: 0 18px 45px rgba(11, 29, 58, 0.12);
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(11, 29, 58, 0.72), rgba(11, 29, 58, 0.12) 45%, transparent 70%);
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 350ms ease, filter 350ms ease;
}

.photo-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(11, 29, 58, 0.88);
  color: #fff;
  font-weight: 700;
}

.photo-card:hover img {
  transform: scale(1.045);
  filter: contrast(1.05) saturate(1.04);
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 242, 249, 0.96)),
    var(--steel-brush),
    var(--surface);
}

.contact-grid {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  background:
    radial-gradient(circle at 85% 12%, rgba(0, 102, 255, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(11, 29, 58, 0.98), rgba(9, 22, 43, 0.96)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 18px),
    var(--hero);
  color: #fff;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), transparent 72%);
}

.contact-panel::after {
  content: "";
  position: absolute;
  right: -2.4rem;
  top: 1rem;
  width: 10rem;
  height: 5rem;
  pointer-events: none;
  opacity: 0.18;
  background: repeating-linear-gradient(0deg, var(--hero) 0 2px, transparent 2px 10px);
  transform: skewX(-18deg);
}

.contact-panel > * {
  position: relative;
  z-index: 1;
}

.contact-panel > p {
  position: relative;
  color: #cad6e4;
}

.contact-panel h2,
.contact-panel h3 {
  color: #fff;
}

.contact-panel .button-outline {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.contact-panel .button-outline:hover,
.contact-panel .button-outline:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.contact-details {
  position: relative;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-brand {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin-bottom: 0.75rem;
}

.contact-brand img {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: contain;
}

.contact-brand h3 {
  margin: 0;
}

address {
  margin: 0 0 0.8rem;
  color: #e2ebf5;
  font-style: normal;
  font-weight: 600;
}

.contact-details dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.contact-details dl div {
  display: grid;
  grid-template-columns: minmax(84px, 0.35fr) 1fr;
  gap: 0.7rem;
  padding: 0.52rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-details dl div:last-child {
  border-bottom: 0;
}

dt {
  color: #aebdcb;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: #fff;
  font-weight: 650;
}

.contact-details a {
  color: #fff;
}

.map-panel {
  align-self: start;
}

.map-panel-header {
  margin-bottom: 14px;
  color: var(--text);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-panel-header h3 {
  margin: 6px 0;
  color: var(--text);
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  line-height: 1.1;
}

.map-panel-header p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
}

.map-card {
  position: relative;
  align-self: start;
  height: auto;
  min-height: 0;
  overflow: hidden;
  padding: 0.45rem;
  background: var(--hero);
  box-shadow: 0 24px 54px rgba(11, 29, 58, 0.18);
}

.map-card iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 300px;
  min-height: 0;
  border-radius: calc(var(--radius) - 2px);
  background: var(--hero);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 2.2rem 0 5.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 19px),
    radial-gradient(circle at 88% 16%, rgba(0, 102, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #061024 0%, #071326 54%, #040a15 100%);
  color: #dbe5ef;
}

.site-footer::before {
  content: "";
  position: absolute;
  right: -4rem;
  top: 1rem;
  width: 18rem;
  height: 7rem;
  pointer-events: none;
  opacity: 0.12;
  background: repeating-linear-gradient(0deg, #fff 0 2px, transparent 2px 10px);
  transform: skewX(-18deg);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.35rem;
}

.footer-brand-block {
  display: grid;
  gap: 0.85rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-logo-card {
  width: fit-content;
  max-width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: #fff;
}

.footer-logo {
  display: block;
  width: clamp(190px, 70vw, 260px);
  height: auto;
  max-height: 62px;
  object-fit: contain;
}

.footer-brand.is-loaded .footer-logo {
  display: block;
}

.footer-logo.is-missing {
  display: none;
}

.footer-brand.is-loaded .footer-fallback {
  display: none;
}

.footer-fallback {
  display: none;
  line-height: 1.15;
}

.footer-logo.is-missing + .footer-fallback {
  display: grid;
}

.footer-fallback strong {
  font-family: var(--font-heading);
  font-size: 1.35rem;
}

.footer-fallback small,
.footer-brand-block p,
.footer-contact p,
.footer-bottom {
  color: #aebdcb;
}

.site-footer p,
.footer-links h2,
.footer-contact h2,
.footer-bottom p {
  margin: 0;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.52rem;
}

.footer-links h2,
.footer-contact h2 {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  color: #e7eff8;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 0.25rem;
}

.footer-contact strong {
  color: #fff;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.footer-actions a {
  display: inline-flex;
  flex: 1 1 100%;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.58rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
}

.footer-actions a:first-child {
  border-color: var(--accent);
  background: var(--accent);
}

.footer-actions a:focus-visible,
.mobile-action-bar a:focus-visible {
  outline: 3px solid rgba(0, 102, 255, 0.34);
  outline-offset: 3px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.25rem;
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.mobile-action-bar {
  position: fixed;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.65rem;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0.45rem;
  border: 1px solid rgba(11, 29, 58, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(11, 29, 58, 0.2);
  backdrop-filter: blur(14px);
}

.mobile-action-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  min-height: 44px;
  border-radius: 8px;
  background: #eef4fb;
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.mobile-action-bar a:first-child {
  background: var(--accent);
  color: #fff;
}

.js :where([data-reveal]) {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    box-shadow 220ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.js :where([data-reveal="right"]) {
  transform: translateX(28px);
}

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

.js :where([data-reveal="right"].is-visible) {
  transform: translateX(0);
}

.spec-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 102, 255, 0.42);
  box-shadow: 0 18px 42px rgba(11, 29, 58, 0.14);
}

.service-card:nth-child(1),
.process-flow li:nth-child(1),
.photo-card:nth-child(1) {
  --reveal-delay: 0ms;
}

.service-card:nth-child(2),
.process-flow li:nth-child(2),
.photo-card:nth-child(2) {
  --reveal-delay: 90ms;
}

.service-card:nth-child(3),
.process-flow li:nth-child(3),
.photo-card:nth-child(3) {
  --reveal-delay: 180ms;
}

.process-flow li:nth-child(4) {
  --reveal-delay: 270ms;
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateX(34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes steelLinesMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(160px);
  }
}

@keyframes cardSweep {
  0%,
  55% {
    transform: translateX(-120%);
  }
  85%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes rangeSlitMove {
  from {
    transform: translateX(0) skewX(-18deg);
  }
  to {
    transform: translateX(26px) skewX(-18deg);
  }
}

@media (max-width: 520px) {
  .header-inner {
    min-height: var(--header-height);
    padding-inline: 16px;
    gap: 0.55rem;
  }

  .brand-copy small {
    display: none;
  }

  .button,
  .action-row {
    width: 100%;
  }

  .header-cta {
    padding-inline: 0.62rem;
    font-size: 0.78rem;
  }

}

@media (max-width: 379px) {
  :root {
    --header-height: 72px;
  }

  .brand-logo,
  .brand-logo-mobile {
    width: clamp(145px, 44vw, 165px);
    max-height: 46px;
  }
}

@media (max-width: 767px) {
  .hero::after {
    opacity: 0.18;
    animation-duration: 28s;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 4.7rem);
    line-height: 1;
  }

  .hero-line-main {
    white-space: normal;
  }

  .photo-card,
  .photo-card img {
    min-height: 220px;
  }

  .range-panel {
    width: 100%;
    max-width: none;
    padding: 1.25rem;
  }

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

  .map-panel-header {
    margin-top: 18px;
  }
}

@media (min-width: 620px) {
  .service-grid,
  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-actions a {
    flex-basis: auto;
  }
}

@media (min-width: 768px) {
  .mobile-action-bar {
    display: none;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .hero {
    padding: 4.4rem 0;
  }

  .hero-grid,
  .split-layout,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.78fr);
    align-items: center;
    gap: 1.6rem;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: start;
    gap: clamp(1.75rem, 4vw, 3rem);
  }

  .section {
    padding: 4.2rem 0;
  }

  .process-flow {
    grid-template-columns: repeat(2, minmax(145px, 1fr));
    gap: 24px;
    align-items: stretch;
  }

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

  .process-flow li {
    min-height: 130px;
    padding: 22px 20px;
  }

  .process-flow li:not(:last-child)::after {
    display: none;
  }

  .spec-row {
    grid-template-columns: minmax(160px, 0.4fr) 1fr;
    align-items: center;
  }

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

  .section-heading-row {
    grid-template-columns: 1fr auto;
  }

  .section-heading-row > p {
    max-width: 360px;
  }

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

  .map-card iframe {
    height: 360px;
    min-height: 0;
  }

  .site-footer {
    padding: 2.4rem 0 1.5rem;
  }

  .footer-logo {
    width: clamp(220px, 18vw, 300px);
    max-height: 70px;
  }

  .footer-grid {
    grid-template-columns: minmax(260px, 1.3fr) minmax(120px, 0.55fr) minmax(280px, 1fr);
    align-items: start;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-bottom p:last-child {
    text-align: right;
  }
}

@media (min-width: 768px) and (max-width: 1180px) {
  .hero-grid {
    width: min(100% - 2.5rem, 960px);
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-copy {
    max-width: 760px;
  }

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

  .range-panel {
    width: 100%;
    max-width: 720px;
    min-height: auto;
    justify-self: start;
  }
}

@media (min-width: 1080px) {
  :root {
    --header-height: 88px;
  }

  .container {
    width: min(100% - 2rem, var(--container));
  }

  .nav-toggle {
    display: none;
  }

  .site-nav,
  .site-nav.is-open {
    position: static;
    display: flex;
    align-items: center;
    gap: clamp(1.25rem, 2vw, 2.125rem);
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav.is-open a {
    min-height: auto;
    padding: 0;
    color: rgba(255, 255, 255, 0.88);
  }

  .header-cta {
    order: 3;
    margin-left: 0;
  }

  .brand.has-desktop-logo > .brand-logo-desktop {
    display: block;
  }

  .brand.has-desktop-logo > .brand-logo-mobile,
  .brand.has-desktop-logo > .brand-fallback {
    display: none;
  }

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

@media (min-width: 1080px) and (max-width: 1179px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 4rem);
  }

  .range-panel {
    min-height: 340px;
    padding: clamp(1.5rem, 2.4vw, 2rem);
  }
}

@media (min-width: 1181px) {
  .range-panel {
    min-height: 360px;
    padding: clamp(1.75rem, 3vw, 2.5rem);
  }

  .range-mini-grid {
    gap: 1.125rem;
  }

  .range-mini-grid div {
    min-height: 96px;
    padding: 1.25rem 1.35rem 1.25rem 2.85rem;
  }

  #process .split-layout {
    grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
    gap: 2rem;
  }

  .process-flow {
    grid-template-columns: repeat(4, minmax(145px, 1fr));
    gap: 28px;
  }

  .process-flow::before {
    display: block;
    top: 50%;
    bottom: auto;
    left: 8%;
    right: 8%;
    width: auto;
    height: 3px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, rgba(0, 102, 255, 0), rgba(0, 102, 255, 0.55), rgba(0, 102, 255, 0.55), rgba(0, 102, 255, 0));
  }

  .process-flow li:not(:last-child)::after {
    display: block;
    top: 50%;
    left: auto;
    right: -24px;
    bottom: auto;
    width: 32px;
    height: 22px;
    transform: translateY(-50%);
  }
}

@media (min-width: 1181px) {
  .hero-grid {
    width: min(100% - 4rem, 1600px);
    grid-template-columns: minmax(0, 0.95fr) minmax(480px, 0.85fr);
    gap: clamp(3rem, 5vw, 5.25rem);
  }

  .range-panel {
    justify-self: center;
  }
}

@media (max-width: 1360px) and (min-width: 768px) {
  .hero h1 {
    max-width: 720px;
    font-size: clamp(3.7rem, 5vw, 5.6rem);
  }

  .hero-line-main {
    white-space: normal;
  }
}

@media (min-width: 1361px) {
  .hero-grid {
    grid-template-columns: minmax(640px, 0.95fr) minmax(560px, 0.85fr);
    gap: clamp(3rem, 5vw, 5.25rem);
  }

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

  .hero-line-main {
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0ms !important;
  }

  .js :where([data-reveal]) {
    opacity: 1 !important;
    transform: none !important;
  }
}
