:root {
  --navy-950: #071425;
  --navy-900: #0b1d33;
  --navy-850: #122742;
  --navy-800: #173457;
  --steel-800: #32465b;
  --steel-700: #4e6579;
  --steel-600: #698093;
  --steel-300: #c6d2dd;
  --steel-200: #dce5ed;
  --steel-100: #edf2f6;
  --cloud: #f5f8fb;
  --white: #ffffff;
  --accent: #c6ff38;
  --accent-blue: #55d7ff;
  --text: #102338;
  --muted: #5e7184;
  --line: rgba(10, 27, 46, 0.12);
  --line-strong: rgba(10, 27, 46, 0.2);
  --shadow-soft: 0 20px 40px rgba(7, 20, 37, 0.08);
  --shadow-medium: 0 28px 56px rgba(7, 20, 37, 0.14);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
  --container: 1220px;
  --header-height: 96px;
  --section-space: clamp(72px, 9vw, 128px);
  --transition: 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 8%, rgba(85, 215, 255, 0.12), transparent 26%),
    radial-gradient(circle at 88% 14%, rgba(198, 255, 56, 0.12), transparent 22%),
    linear-gradient(180deg, #eff4f8 0%, #ffffff 26%, #f5f8fb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(12, 32, 53, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 32, 53, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

input,
select,
textarea {
  appearance: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(85, 215, 255, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 1200;
  padding: 12px 16px;
  background: var(--navy-950);
  color: var(--white);
  border-radius: 12px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.site-main {
  padding-top: var(--header-height);
}

.section {
  position: relative;
  padding: var(--section-space) 0;
}

.section-tight {
  padding-top: 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(237, 242, 246, 0.8), rgba(255, 255, 255, 0.9));
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 14% 18%, rgba(85, 215, 255, 0.14), transparent 24%),
    radial-gradient(circle at 86% 12%, rgba(198, 255, 56, 0.1), transparent 20%),
    linear-gradient(180deg, #071425 0%, #0b1d33 100%);
}

.section-dark::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.45;
}

.section-dark p,
.section-dark li,
.section-dark .card-copy,
.section-dark .section-copy,
.section-dark .eyebrow,
.section-dark .section-kicker,
.section-dark .summary-value,
.site-footer p,
.site-footer a,
.site-footer span,
.site-footer li,
.site-footer label {
  color: rgba(255, 255, 255, 0.76);
}

.eyebrow,
.section-kicker,
.meta-label,
.tag,
.summary-label,
.form-step-index,
.filter-button,
.badge-title,
.stat-label,
.footer-small,
.pill,
.placeholder-scene__label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--steel-700);
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.6rem, 7vw, 6.4rem);
}

h2 {
  font-size: clamp(2.5rem, 4vw, 4.4rem);
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  margin: 0;
}

.section-heading,
.page-hero__copy,
.stack {
  display: grid;
  gap: 18px;
}

.section-heading {
  margin-bottom: 34px;
  max-width: 760px;
}

.section-heading h2 {
  max-width: 12ch;
}

.section-copy,
.page-copy,
.card-copy,
.detail-copy,
.project-copy,
.timeline-copy,
.faq-intro,
.contact-copy,
.summary-value,
.footer-copy {
  line-height: 1.72;
  color: var(--muted);
}

.btn-group,
.action-row,
.pill-row,
.filter-bar,
.region-chip-row,
.page-hero__actions,
.hero-capability-list,
.footer-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

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

.btn-primary {
  background: var(--accent);
  color: var(--navy-950);
  box-shadow: 0 12px 30px rgba(198, 255, 56, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #d4ff62;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border-color: var(--line);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn-dark {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
}

.btn-text {
  min-height: auto;
  padding: 0;
  border: 0;
  color: var(--text);
  border-radius: 0;
}

.btn-text:hover,
.btn-text:focus-visible {
  transform: none;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition);
}

.icon-button:hover,
.icon-button:focus-visible {
  transform: translateY(-2px);
  background: var(--white);
  border-color: var(--line-strong);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(10, 27, 46, 0.08);
  transition:
    background-color var(--transition),
    box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(7, 20, 37, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: var(--header-height);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(85, 215, 255, 0.18), rgba(198, 255, 56, 0.14)),
    linear-gradient(180deg, #0b1d33 0%, #173457 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(12, 29, 53, 0.14);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: auto;
}

.brand-mark::before {
  top: 10px;
  left: 12px;
  width: 11px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent);
  box-shadow: 14px 0 0 rgba(255, 255, 255, 0.92);
  transform: skew(-10deg);
}

.brand-mark::after {
  right: -6px;
  top: 4px;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(85, 215, 255, 0.72);
  border-radius: 12px;
}

.brand-text {
  display: grid;
  gap: 4px;
}

.brand-text strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 0.9;
  text-transform: uppercase;
}

.brand-text span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-700);
}

.site-nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex: 1 1 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--steel-800);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  color: var(--steel-700);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

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

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

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

.hero {
  padding: clamp(42px, 7vw, 78px) 0 clamp(56px, 9vw, 108px);
}

.hero-grid,
.page-hero__grid,
.quote-layout,
.about-overview-grid,
.support-grid,
.testimonial-slide.is-active {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.page-hero__copy,
.hero-panel,
.page-hero__aside,
.about-overview-copy,
.quote-form-shell,
.quote-summary {
  display: grid;
  gap: 22px;
}

.page-hero__copy {
  align-content: center;
}

.hero-copy p,
.page-hero__copy p {
  max-width: 44rem;
  font-size: 1.06rem;
  line-height: 1.74;
  color: var(--muted);
}

.hero-capability-list span,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(10, 27, 46, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--steel-800);
}

.panel,
.info-card,
.stat-card,
.project-card,
.contact-card,
.summary-card,
.detail-panel,
.faq-panel,
.timeline-card,
.service-detail,
.sector-card,
.process-note,
.testimonial-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 251, 0.94));
  box-shadow: var(--shadow-soft);
}

.panel {
  padding: 28px;
}

.panel--dark,
.project-preview-card,
.testimonial-card {
  background:
    linear-gradient(180deg, rgba(7, 20, 37, 0.98), rgba(11, 29, 51, 0.96));
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.panel--dark p,
.panel--dark li,
.project-preview-card p,
.testimonial-card p,
.panel--dark .meta-label,
.project-preview-card .meta-label,
.testimonial-card .meta-label,
.panel--dark .card-copy,
.project-preview-card .card-copy,
.testimonial-card .card-copy {
  color: rgba(255, 255, 255, 0.74);
}

.hero-panel {
  padding: 28px;
  background:
    radial-gradient(circle at 82% 14%, rgba(85, 215, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(7, 20, 37, 0.98), rgba(11, 29, 51, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  color: var(--white);
}

.hero-panel__grid,
.mini-stat-grid,
.summary-list,
.detail-list,
.timeline,
.contact-card-grid,
.footer-grid,
.metric-grid,
.doc-grid,
.reason-grid,
.project-grid,
.service-grid,
.industry-grid,
.two-column-list,
.projects-preview-grid,
.service-groups {
  display: grid;
  gap: 18px;
}

.hero-panel__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.stat-chip,
.summary-chip,
.mini-stat,
.badge-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.stat-chip strong,
.mini-stat strong,
.metric-card strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.mini-stat span,
.stat-chip span,
.summary-chip span,
.metric-card span {
  color: rgba(255, 255, 255, 0.74);
}

.panel .mini-stat,
.panel .stat-chip,
.panel .summary-chip {
  border-color: rgba(10, 27, 46, 0.08);
  background: rgba(237, 242, 246, 0.58);
}

.panel .mini-stat strong,
.panel .stat-chip strong,
.panel .summary-chip strong {
  color: var(--text);
}

.panel .mini-stat span,
.panel .stat-chip span,
.panel .summary-chip span {
  color: var(--muted);
}

.hero-summary-list {
  display: grid;
  gap: 14px;
}

.hero-summary-item {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-summary-item strong {
  font-size: 1rem;
}

.hero-summary-item span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.badge-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.badge-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.badge-card strong {
  font-size: 1rem;
}

.badge-card p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-grid,
.project-grid,
.industry-grid,
.reason-grid,
.metric-grid,
.doc-grid,
.projects-preview-grid,
.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.info-card,
.sector-card,
.contact-card,
.project-card,
.timeline-card,
.testimonial-card,
.project-preview-card,
.metric-card {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.metric-card {
  padding: 26px;
}

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

.metric-card strong {
  color: var(--text);
}

.service-grid .info-card,
.projects-preview-grid .project-preview-card {
  min-height: 100%;
}

.card-topline,
.project-meta,
.detail-meta,
.contact-meta,
.support-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(10, 27, 46, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--steel-800);
}

.section-dark .tag,
.panel--dark .tag,
.project-preview-card .tag,
.testimonial-card .tag,
.site-footer .tag {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(10, 27, 46, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(85, 215, 255, 0.16), rgba(198, 255, 56, 0.1)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 242, 246, 0.94));
  color: var(--navy-850);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.two-column-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.two-column-list ul,
.detail-panel ul,
.service-detail__body ul,
.faq-panel ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.65;
}

.section-dark ul,
.panel--dark ul,
.project-preview-card ul,
.testimonial-card ul {
  color: rgba(255, 255, 255, 0.76);
}

.placeholder-scene {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 18%, rgba(85, 215, 255, 0.22), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(198, 255, 56, 0.18), transparent 22%),
    linear-gradient(135deg, #071425 0%, #0d2139 55%, #16385c 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.placeholder-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.55;
}

.placeholder-scene::after {
  content: "";
  position: absolute;
  inset: 18% 10% 16%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 16px 32px rgba(7, 20, 37, 0.3);
}

.placeholder-scene__label,
.placeholder-scene__title,
.placeholder-scene__chip {
  position: absolute;
  z-index: 1;
}

.placeholder-scene__label {
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(7, 20, 37, 0.42);
  color: rgba(255, 255, 255, 0.82);
}

.placeholder-scene__title {
  left: 20px;
  bottom: 18px;
  max-width: 16ch;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.placeholder-scene__chip {
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.placeholder-scene--tower {
  background:
    radial-gradient(circle at 20% 20%, rgba(85, 215, 255, 0.24), transparent 28%),
    radial-gradient(circle at 84% 84%, rgba(198, 255, 56, 0.14), transparent 24%),
    linear-gradient(145deg, #08172d 0%, #102949 45%, #173e67 100%);
}

.placeholder-scene--tower::after {
  inset: 12% 54% 12% 14%;
  border-radius: 18px;
  box-shadow:
    120px 24px 0 -18px rgba(255, 255, 255, 0.08),
    180px -10px 0 -26px rgba(255, 255, 255, 0.12),
    0 16px 32px rgba(7, 20, 37, 0.3);
}

.placeholder-scene--switchboard {
  background:
    radial-gradient(circle at 78% 18%, rgba(198, 255, 56, 0.16), transparent 24%),
    radial-gradient(circle at 24% 82%, rgba(85, 215, 255, 0.18), transparent 24%),
    linear-gradient(145deg, #08172d 0%, #0d2139 55%, #112c49 100%);
}

.placeholder-scene--switchboard::after {
  inset: 16% 14% 18% 48%;
  border-radius: 18px;
  box-shadow:
    -170px 0 0 -30px rgba(255, 255, 255, 0.08),
    -132px 0 0 -46px rgba(255, 255, 255, 0.1),
    0 16px 32px rgba(7, 20, 37, 0.3);
}

.placeholder-scene--warehouse {
  background:
    radial-gradient(circle at 12% 14%, rgba(198, 255, 56, 0.18), transparent 22%),
    radial-gradient(circle at 88% 72%, rgba(85, 215, 255, 0.14), transparent 24%),
    linear-gradient(145deg, #071425 0%, #0c2138 55%, #153455 100%);
}

.placeholder-scene--warehouse::after {
  inset: auto 10% 18% 10%;
  height: 36%;
  border-radius: 22px;
  box-shadow:
    0 -56px 0 -42px rgba(255, 255, 255, 0.08),
    0 16px 32px rgba(7, 20, 37, 0.3);
}

.placeholder-scene--facility {
  background:
    radial-gradient(circle at 82% 16%, rgba(85, 215, 255, 0.18), transparent 22%),
    radial-gradient(circle at 24% 72%, rgba(198, 255, 56, 0.14), transparent 26%),
    linear-gradient(145deg, #09192f 0%, #102949 50%, #183f66 100%);
}

.placeholder-scene--facility::after {
  inset: 18% 18% 18% 18%;
  border-radius: 50%;
  box-shadow:
    0 0 0 20px rgba(255, 255, 255, 0.04),
    0 0 0 50px rgba(255, 255, 255, 0.02),
    0 16px 32px rgba(7, 20, 37, 0.3);
}

.cta-ribbon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 84% 18%, rgba(85, 215, 255, 0.2), transparent 22%),
    linear-gradient(135deg, #071425 0%, #0c2138 55%, #153455 100%);
  box-shadow: var(--shadow-medium);
  color: var(--white);
}

.cta-ribbon p {
  color: rgba(255, 255, 255, 0.76);
}

.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: steps;
}

.timeline-card {
  padding: 26px;
}

.timeline-card::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(85, 215, 255, 0.18), rgba(198, 255, 56, 0.12));
  border: 1px solid rgba(10, 27, 46, 0.1);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--navy-850);
}

.testimonial-shell {
  display: grid;
  gap: 18px;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.is-active {
  display: grid;
}

.testimonial-quote {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.5;
  color: var(--white);
}

.testimonial-meta {
  display: grid;
  gap: 8px;
  align-content: start;
}

.testimonial-meta strong {
  font-size: 1rem;
}

.testimonial-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.detail-group {
  display: grid;
  gap: 20px;
}

.detail-group__header {
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.service-detail,
.faq-panel {
  overflow: hidden;
}

.service-detail summary,
.faq-panel summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 24px;
  list-style: none;
  cursor: pointer;
}

.service-detail summary::-webkit-details-marker,
.faq-panel summary::-webkit-details-marker {
  display: none;
}

.service-detail__copy,
.faq-panel__copy {
  display: grid;
  gap: 8px;
}

.service-detail__copy p,
.faq-panel__copy p {
  color: var(--muted);
  line-height: 1.68;
}

.summary-toggle {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.summary-toggle::before,
.summary-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transform: translate(-50%, -50%);
  transition: transform var(--transition), opacity var(--transition);
}

.summary-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-detail[open] .summary-toggle::after,
.faq-panel[open] .summary-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.service-detail__body,
.faq-panel__body {
  display: grid;
  gap: 16px;
  padding: 0 24px 24px;
  border-top: 1px solid rgba(10, 27, 46, 0.08);
}

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

.detail-panel {
  padding: 18px;
}

.detail-panel strong,
.summary-card strong,
.contact-card strong {
  font-size: 1rem;
}

.filter-bar {
  margin-bottom: 26px;
}

.filter-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--steel-800);
}

.filter-button.is-active {
  background: var(--navy-950);
  border-color: var(--navy-950);
  color: var(--white);
}

.project-card[hidden] {
  display: none;
}

.project-card dl,
.summary-list,
.contact-detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.project-card dl div,
.summary-list div,
.contact-detail-list div {
  padding: 14px 16px;
  border: 1px solid rgba(10, 27, 46, 0.08);
  border-radius: 18px;
  background: rgba(237, 242, 246, 0.52);
}

.project-card dt,
.summary-label,
.contact-detail-list dt {
  color: var(--steel-700);
}

.project-card dd,
.summary-value,
.contact-detail-list dd {
  margin: 6px 0 0;
}

.about-overview-grid {
  align-items: start;
}

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

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

.quote-layout {
  align-items: start;
}

.contact-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card a {
  color: var(--text);
}

.quote-form-shell,
.quote-summary {
  padding: 26px;
}

.quote-summary {
  position: sticky;
  top: 112px;
  align-content: start;
}

.form-progress {
  display: grid;
  gap: 10px;
}

.form-progress__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--steel-700);
}

.form-progress__bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(10, 27, 46, 0.08);
  overflow: hidden;
}

.form-progress__bar span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent));
  transition: width var(--transition);
}

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

.form-step {
  display: none;
  gap: 18px;
}

.form-step.is-active {
  display: grid;
}

.form-step__heading {
  display: grid;
  gap: 10px;
}

.form-grid,
.footer-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

fieldset.form-field {
  min-inline-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

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

.form-field label,
.form-field legend {
  padding: 0;
  border: 0;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(10, 27, 46, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(85, 215, 255, 0.78);
  box-shadow: 0 0 0 4px rgba(85, 215, 255, 0.14);
}

.form-field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--steel-700) 50%),
    linear-gradient(135deg, var(--steel-700) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 4px),
    calc(100% - 16px) calc(50% - 4px);
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.radio-pill {
  position: relative;
}

.radio-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-pill span {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(10, 27, 46, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  line-height: 1.5;
  transition:
    border-color var(--transition),
    background-color var(--transition),
    box-shadow var(--transition);
}

.radio-pill input:checked + span {
  border-color: var(--navy-850);
  background: rgba(12, 33, 56, 0.06);
  box-shadow: inset 0 0 0 1px rgba(12, 33, 56, 0.08);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.form-actions .btn {
  min-width: 150px;
}

.form-status {
  min-height: 1.4em;
  color: var(--muted);
  font-size: 0.94rem;
}

.form-status.is-success {
  color: #0f6c36;
}

.form-status.is-error {
  color: #b43b2d;
}

.map-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 24px;
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(85, 215, 255, 0.18), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(198, 255, 56, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(237, 242, 246, 0.84), rgba(255, 255, 255, 0.96));
}

.map-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 20px;
  border: 1px dashed rgba(10, 27, 46, 0.18);
  background-image:
    linear-gradient(rgba(10, 27, 46, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 27, 46, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}

.map-card > * {
  position: relative;
  z-index: 1;
}

.map-markers {
  position: relative;
  min-height: 180px;
}

.map-marker {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(7, 20, 37, 0.92);
  color: var(--white);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-marker--metro {
  top: 18%;
  left: 54%;
}

.map-marker--regional {
  top: 48%;
  left: 26%;
}

.map-marker--interstate {
  top: 68%;
  left: 62%;
}

.site-footer {
  position: relative;
  padding: 52px 0 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(85, 215, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #071425 0%, #08182d 100%);
}

.footer-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1.05fr 0.75fr 1.2fr;
  align-items: start;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-link-row a:hover,
.footer-link-row a:focus-visible {
  color: var(--white);
}

.footer-lead-form {
  display: grid;
  gap: 14px;
}

.footer-lead-form .form-field label,
.site-footer .form-field label {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer .form-field input,
.site-footer .form-field select {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.site-footer .form-field select {
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.74) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.74) 50%, transparent 50%);
}

.site-footer .form-field input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.site-footer .brand-text span {
  color: rgba(255, 255, 255, 0.58);
}

.footer-base {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

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

@media (max-width: 1120px) {
  .hero-grid,
  .page-hero__grid,
  .quote-layout,
  .about-overview-grid,
  .support-grid,
  .testimonial-slide.is-active {
    grid-template-columns: 1fr;
  }

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

  .feature-grid,
  .project-grid,
  .projects-preview-grid,
  .service-grid,
  .contact-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .quote-summary {
    position: static;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 84px;
  }

  .site-nav-shell {
    position: fixed;
    inset: var(--header-height) 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-medium);
  }

  .site-nav-shell.is-open {
    display: flex;
  }

  .site-nav,
  .header-actions {
    width: 100%;
    margin: 0;
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .industry-grid,
  .reason-grid,
  .doc-grid,
  .service-detail__body-grid,
  .faq-panel__body-grid,
  .two-column-list,
  .footer-form-grid {
    grid-template-columns: 1fr;
  }

  .mini-stat-grid,
  .hero-panel__grid {
    grid-template-columns: 1fr;
  }

  .cta-ribbon {
    grid-template-columns: 1fr;
  }

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

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

  .brand-text span {
    display: none;
  }

  .badge-strip,
  .feature-grid,
  .project-grid,
  .projects-preview-grid,
  .service-grid,
  .metric-grid,
  .contact-card-grid,
  .timeline,
  .form-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .btn-group,
  .page-hero__actions,
  .footer-link-row,
  .action-row {
    flex-direction: column;
  }

  .btn,
  .filter-button {
    width: 100%;
  }

  .service-detail summary,
  .faq-panel summary {
    grid-template-columns: 1fr auto;
  }

  .service-detail .card-icon,
  .faq-panel .card-icon {
    display: none;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }

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

  .map-marker--metro {
    left: 48%;
  }

  .map-marker--regional {
    left: 16%;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
