:root {
  --navy: #061f42;
  --navy-2: #082e61;
  --blue: #075ec9;
  --blue-2: #0e7bec;
  --steel: #6e7c88;
  --steel-2: #aeb7c0;
  --line: #d7dde3;
  --line-strong: #aeb9c4;
  --ink: #061b37;
  --text: #1b2b42;
  --muted: #596879;
  --white: #ffffff;
  --off-white: #f6f8fa;
  --panel: #ffffff;
  --max: 1480px;
  --radius: 8px;
  --shadow: 0 20px 55px rgba(5, 31, 66, 0.16);
  --font: "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--off-white);
  font-family: var(--font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

svg {
  display: block;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(14, 123, 236, 0.45);
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 14px max(32px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 250, 0.96)),
    repeating-linear-gradient(105deg, rgba(8, 31, 66, 0.08) 0 1px, rgba(255, 255, 255, 0.08) 1px 4px);
  border-bottom: 1px solid #c7d0d9;
  box-shadow: 0 4px 18px rgba(3, 24, 52, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--navy);
}

.brand-logo {
  display: block;
  width: clamp(390px, 28vw, 500px);
  height: auto;
}

.brand-mark {
  width: 72px;
  height: 67px;
  flex: 0 0 72px;
  filter: drop-shadow(0 7px 10px rgba(6, 31, 66, 0.15));
}

.mark-left {
  fill: #0a3c80;
}

.mark-right {
  fill: #061f42;
}

.mark-cross {
  fill: #8f9aa5;
}

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

.wordmark {
  display: flex;
  align-items: baseline;
  gap: 9px;
  line-height: 0.9;
  white-space: nowrap;
  letter-spacing: 0;
}

.wordmark-main,
.wordmark-outline {
  font-weight: 900;
  font-size: clamp(30px, 2.3vw, 45px);
}

.wordmark-main {
  color: var(--navy);
}

.wordmark-outline {
  color: transparent;
  -webkit-text-stroke: 1.7px var(--navy);
}

.brand-subtitle {
  color: #182c49;
  font-size: clamp(11px, 0.86vw, 15px);
  font-weight: 800;
  letter-spacing: 3.6px;
  line-height: 1;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(19px, 2vw, 36px);
  color: #09224a;
  font-size: clamp(13px, 0.95vw, 17px);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  border-bottom: 3px solid transparent;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.nav-cta {
  gap: 11px;
  min-height: 44px;
  padding: 0 20px;
  color: var(--white) !important;
  background: linear-gradient(180deg, #0a438d, #062d63);
  border: 1px solid #0d56b4;
  border-bottom: 1px solid #0d56b4 !important;
  border-radius: 5px;
  box-shadow: 0 9px 18px rgba(5, 37, 79, 0.18);
}

.nav-icon,
.button-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 44px;
  padding: 0;
  border: 1px solid #9dacba;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(247, 249, 251, 0.96) 0%, rgba(236, 241, 245, 0.88) 34%, rgba(178, 192, 205, 0.58) 50%, rgba(8, 34, 70, 0.4) 66%, rgba(5, 24, 51, 0.14) 84%, rgba(4, 18, 37, 0.03) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(3, 18, 38, 0.08)),
    url("assets/industrial-hero.png");
  background-position: center center, center center, center center;
  background-size: cover, cover, cover;
  background-repeat: no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.07) 38%, rgba(2, 19, 42, 0.08) 55%, rgba(2, 19, 42, 0.24) 73%, rgba(2, 19, 42, 0.08) 100%),
    radial-gradient(circle at 86% 52%, rgba(255, 255, 255, 0.07), rgba(2, 16, 35, 0.12) 46%, rgba(2, 16, 35, 0.03) 72%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  min-height: 370px;
  margin: 0 auto;
  padding: 20px 32px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(560px, 1.05fr);
  gap: 30px;
  align-items: center;
}

.hero-copy,
.workflow-panel {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.9px;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 2.85vw, 46px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 span,
.hero h1 small,
.hero h1 i {
  display: block;
}

.hero h1 strong {
  color: var(--blue);
  font-weight: 900;
}

.hero h1 small {
  margin-top: 4px;
  color: #17273e;
  font-size: clamp(13px, 0.92vw, 15px);
  font-weight: 450;
  line-height: 1.35;
}

.hero h1 i {
  width: 66px;
  height: 2px;
  margin: 6px 0 7px;
  background: var(--blue);
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--navy);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(5, 37, 79, 0.16);
}

.button-primary {
  color: var(--white);
  border-color: #0d61c9;
  background: linear-gradient(180deg, #126ed8, #064ba2);
}

.button-secondary {
  color: #0b2d5c;
  border-color: #24558d;
  background: rgba(255, 255, 255, 0.48);
}

.button-small {
  min-height: 36px;
  padding: 9px 15px;
  font-size: 13px;
  color: var(--white);
  border-color: #0d61c9;
  background: linear-gradient(180deg, #126ed8, #064ba2);
  font-style: normal;
}

.regions {
  display: flex;
  flex-wrap: wrap;
  margin: 12px 0 0;
  color: #10294c;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.regions span {
  padding: 0 18px;
  border-right: 1px solid rgba(6, 31, 66, 0.55);
}

.regions span:first-child {
  padding-left: 0;
}

.regions span:last-child {
  border-right: 0;
}

.workflow-panel {
  overflow: hidden;
  padding: 11px;
  color: var(--white);
  background: linear-gradient(150deg, rgba(5, 33, 70, 0.92), rgba(3, 24, 52, 0.88));
  border: 1px solid rgba(151, 190, 230, 0.66);
  border-radius: 15px;
  box-shadow: 0 28px 65px rgba(0, 15, 35, 0.39);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(11, auto);
  grid-auto-flow: column;
  grid-auto-columns: auto;
  max-width: 100%;
  min-width: 0;
  align-items: start;
  justify-content: space-between;
  gap: 4px;
  padding: 3px 8px 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.workflow-step {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-width: 60px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.workflow-icon,
.flow-arrow,
.status-card svg,
.service-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-icon {
  width: 24px;
  height: 24px;
}

.flow-arrow {
  width: 19px;
  height: 28px;
  align-self: center;
  color: rgba(255, 255, 255, 0.95);
}

.status-card {
  display: grid;
  grid-template-columns: 50px 1fr 18px;
  gap: 11px;
  align-items: center;
  min-height: 72px;
  margin-top: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(160, 194, 230, 0.34);
  border-radius: 8px;
  background: linear-gradient(95deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.08));
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.status-card:hover {
  transform: translateX(2px);
  border-color: rgba(95, 168, 244, 0.84);
  background: linear-gradient(95deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.12));
}

.status-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  border: 1px solid rgba(74, 155, 242, 0.78);
  border-radius: 50%;
  background: linear-gradient(160deg, #1068d2, #073980);
}

.status-icon svg {
  width: 25px;
  height: 25px;
}

.status-card small {
  display: block;
  color: #55a8ff;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.status-card strong {
  display: block;
  margin: 2px 0 3px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.08;
}

.status-card em {
  display: block;
  color: #edf5ff;
  font-size: 12px;
  font-style: normal;
}

.status-chevron {
  width: 14px;
  height: 22px;
  color: #62adff;
  stroke-width: 2.2;
}

.section-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 32px;
}

.home-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 14px;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  height: 100%;
  min-height: 160px;
  padding: 17px;
  color: var(--text);
  background: var(--panel);
  border: 1px solid #d3dbe3;
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(5, 37, 79, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: #b7c7d7;
  box-shadow: 0 18px 38px rgba(5, 37, 79, 0.13);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(160deg, #126ed8, #073b82);
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.card-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.card-content small {
  margin-bottom: 6px;
  color: #092f68;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.card-content strong {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: clamp(20px, 1.35vw, 24px);
  line-height: 1.12;
}

.card-content > span {
  flex: 1;
  color: #304158;
  font-size: 13px;
  line-height: 1.38;
}

.card-content .button {
  margin-top: 12px;
}

.home-card .button-small {
  min-height: 36px;
  padding: 9px 15px;
  font-size: 12px;
}

.proof-band {
  color: var(--white);
  background: linear-gradient(115deg, #061f42, #0a3d78);
}

.proof-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 32px;
}

.proof-inner div {
  padding: 15px 26px;
  background: rgba(255, 255, 255, 0.04);
}

.proof-inner strong,
.proof-inner span {
  display: block;
}

.proof-inner strong {
  font-size: 16px;
  line-height: 1.2;
}

.proof-inner span {
  margin-top: 5px;
  color: #d7e5f5;
  font-size: 12px;
}

.pricing-preview {
  padding-top: 24px;
  padding-bottom: 28px;
}

.section-heading {
  display: grid;
  gap: 6px;
  max-width: 760px;
  margin-bottom: 14px;
}

.section-heading h2,
.page-hero h1,
.panel h2,
.cta-band h2,
.note-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(26px, 2.15vw, 36px);
  line-height: 1.08;
}

.section-heading p:not(.eyebrow),
.lead,
.cta-band p,
.note-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.text-link {
  width: max-content;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

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

.mini-prices a,
.values-grid article,
.process-grid article,
.panel,
.service-detail,
.note-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(5, 37, 79, 0.06);
}

.mini-prices a {
  display: grid;
  gap: 5px;
  min-height: 118px;
  padding: 16px 18px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.mini-prices a:hover {
  transform: translateY(-2px);
  border-color: #b7c7d7;
}

.mini-prices small {
  color: #536c86;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-prices strong {
  color: var(--navy);
  font-size: 23px;
  line-height: 1.1;
}

.mini-prices span {
  color: var(--muted);
  font-size: 14px;
}

.cta-band {
  max-width: var(--max);
  margin: 0 auto 36px;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.cta-band h2 {
  font-size: clamp(28px, 2.25vw, 38px);
}

.cta-band p {
  margin-top: 8px;
  max-width: 760px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 32px 30px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0 32px auto;
  height: 1px;
  background: linear-gradient(90deg, #8da4bc, transparent);
}

.page-hero h1 {
  max-width: 860px;
}

.lead {
  max-width: 860px;
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.45;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 16px;
  padding-top: 8px;
  align-items: stretch;
}

.content-grid.section-wrap {
  padding-top: 8px;
  padding-bottom: 18px;
}

.service-page .page-hero h1 {
  font-size: clamp(28px, 2.15vw, 38px);
  line-height: 1.1;
}

.service-page .lead {
  font-size: 17px;
  line-height: 1.5;
}

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

.panel {
  padding: 20px;
  height: 100%;
}

.panel h2 {
  font-size: clamp(24px, 1.75vw, 32px);
}

.service-page .panel {
  padding: 19px 21px;
}

.service-page .panel h2 {
  font-size: clamp(23px, 1.55vw, 30px);
  line-height: 1.12;
}

.panel h3,
.service-detail h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
}

.panel p {
  color: #42536a;
}

.dark-panel {
  color: var(--white);
  background: linear-gradient(150deg, #082d5c, #061d3e);
  border-color: rgba(102, 159, 220, 0.5);
}

.dark-panel h2,
.dark-panel h3,
.dark-panel p,
.dark-panel li {
  color: var(--white);
}

.dark-panel .eyebrow {
  color: #75bcff;
}

.check-list {
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 8px 0;
  padding-left: 27px;
  color: #35475d;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.dark-panel .check-list li::before {
  border-color: #75bcff;
}

.check-list.compact li {
  margin: 8px 0;
}

.dark-panel .check-list li {
  color: #f3f8ff;
}

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

.about-page .dark-panel .check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 18px;
}

.about-page .dark-panel h2 {
  max-width: 460px;
}

.about-page .values-grid.section-wrap {
  padding-top: 20px;
}

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

.process-grid .section-heading {
  grid-column: 1 / -1;
  margin-bottom: 14px;
}

.process-grid .section-heading h2 {
  font-size: clamp(26px, 2vw, 34px);
}

.process-grid.section-wrap {
  padding-top: 18px;
  padding-bottom: 24px;
}

.process-grid article,
.values-grid article {
  min-height: 118px;
  padding: 17px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.process-grid h3,
.values-grid h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.14;
}

.process-grid p,
.values-grid p {
  margin: 0;
  color: #4b5d72;
}

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

.field-section {
  padding-top: 16px;
}

.quote-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.quote-panel strong {
  margin: auto 0 18px;
  color: var(--blue);
  font-size: 27px;
  line-height: 1.1;
}

.service-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding-top: 8px;
}

.service-detail {
  min-height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
}

.service-detail small {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.3px;
}

.service-detail h2 {
  margin: 4px 0 8px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.12;
}

.service-detail p {
  margin: 0 0 10px;
  color: #42536a;
}

.service-detail ul {
  margin: 0;
  padding-left: 18px;
  color: #40526a;
}

.service-detail li {
  margin: 5px 0;
}

.service-detail .button {
  align-self: flex-start;
}

.pricing-table {
  display: grid;
  gap: 10px;
  padding-top: 8px;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.08fr) minmax(190px, 0.62fr) minmax(300px, 1.18fr) 220px;
  gap: 15px;
  align-items: center;
  min-height: 92px;
  padding: 15px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(5, 37, 79, 0.06);
}

.price-row h2 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.18;
}

.price-row p {
  margin: 0;
  color: #4a5b70;
}

.price-row strong {
  color: var(--blue);
  font-size: 22px;
  line-height: 1.15;
}

.price-row .button {
  width: 220px;
  min-width: 220px;
  min-height: 46px;
  padding-left: 14px;
  padding-right: 14px;
  font-size: 13px;
}

.note-panel {
  margin-top: 14px;
  margin-bottom: 32px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.note-panel h2 {
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.12;
}

.note-panel p {
  font-size: 16px;
  line-height: 1.55;
}

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

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

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

.contact-form label {
  display: grid;
  gap: 5px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
}

.contact-form textarea {
  resize: vertical;
}

.form-note,
.form-status {
  margin: 0;
  font-size: 14px;
}

.contact-form abbr {
  color: #0b5fc9;
  text-decoration: none;
}

.form-error {
  min-height: 17px;
  color: #9a1c1c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.contact-form [aria-invalid="true"] {
  border-color: #b12a2a;
  box-shadow: 0 0 0 3px rgba(177, 42, 42, 0.12);
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-wrap {
  display: grid;
  gap: 6px;
}

.form-note {
  color: var(--muted);
}

.form-note code {
  color: var(--navy);
  font-weight: 800;
}

.form-status {
  padding: 14px 15px;
  color: #08366f;
  background: #eaf4ff;
  border: 1px solid #a7cff8;
  border-radius: 5px;
  white-space: pre-line;
}

.form-status.success {
  color: #0b4425;
  background: #e9f8ef;
  border-color: #95d5aa;
}

.form-status.error {
  color: #7b1b1b;
  background: #fff0f0;
  border-color: #e2a4a4;
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
  box-shadow: none;
}

.site-footer {
  color: #dce9f7;
  background: #061a34;
  padding: 28px max(32px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(260px, 0.9fr) auto;
  gap: 22px;
  align-items: center;
}

.footer-main {
  display: grid;
  gap: 12px;
}

.footer-main p,
.copyright {
  margin: 0;
  color: #c7d6e6;
  font-size: 14px;
}

.footer-email,
.panel-email {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.footer-email:hover,
.panel-email:hover {
  color: #75bcff;
}


.contact-info-links {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(117, 188, 255, 0.42);
}

.dark-panel .contact-info-title {
  margin: 0 0 16px;
  color: #75bcff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-info-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

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

.contact-info-label {
  color: #75bcff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-info-row .panel-email {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(117, 188, 255, 0.55);
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.contact-info-row .panel-email:hover {
  color: #75bcff;
  text-decoration-color: currentColor;
}

@media (max-width: 520px) {
  .contact-info-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.footer-brand .brand-mark {
  width: 56px;
  height: 52px;
  flex-basis: 56px;
}

.footer-brand .brand-logo {
  width: min(410px, 100%);
}

.footer-brand .wordmark-main,
.footer-brand .wordmark-outline {
  font-size: 25px;
}

.footer-brand .wordmark-main {
  color: var(--white);
}

.footer-brand .wordmark-outline {
  color: transparent;
  -webkit-text-stroke-color: #b8c4cf;
}

.footer-brand .brand-subtitle {
  color: #b8c9dc;
  font-size: 10px;
  letter-spacing: 2.3px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 22px;
  font-size: 14px;
  font-weight: 800;
}

.footer-nav a:hover {
  color: #75bcff;
}

@media (max-width: 1240px) {
  .site-header {
    gap: 22px;
  }

  .brand-mark {
    width: 61px;
    height: 57px;
    flex-basis: 61px;
  }

  .brand-logo {
    width: clamp(320px, 34vw, 390px);
  }

  .wordmark-main,
  .wordmark-outline {
    font-size: clamp(26px, 2.4vw, 34px);
  }

  .brand-subtitle {
    letter-spacing: 2.4px;
  }

  .primary-nav {
    gap: 18px;
    font-size: 13px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
    gap: 34px;
  }

  .workflow-step {
    font-size: 13px;
    min-width: 62px;
  }

  .flow-arrow {
    width: 22px;
  }
}

@media (max-width: 1120px) {
  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    min-height: 84px;
    padding: 12px 24px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-content: start;
    justify-content: start;
    gap: 0;
    padding: 18px 24px 28px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 50px rgba(5, 31, 66, 0.18);
    overflow: auto;
  }

  .nav-open .primary-nav {
    display: grid;
  }

  .primary-nav a {
    width: 100%;
    min-height: 58px;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .nav-cta {
    width: max-content !important;
    justify-content: center !important;
    margin-top: 18px;
    padding: 0 20px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding-top: 44px;
  }

  .hero {
    background-position: center center, center center, 58% center;
  }

  .workflow-panel {
    max-width: 820px;
  }

  .home-services,
  .mini-prices,
  .process-grid,
  .three-columns,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-services .service-card:last-child,
  .process-grid .section-heading {
    grid-column: 1 / -1;
  }

  .content-grid,
  .service-directory {
    grid-template-columns: 1fr;
  }

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

  .about-page .content-grid {
    grid-template-columns: 1fr;
  }

  .price-row {
    grid-template-columns: minmax(0, 1fr) minmax(190px, 0.55fr);
  }

  .price-row .button {
    width: 220px;
    min-width: 220px;
  }

  .note-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .site-header {
    min-height: 76px;
    padding: 9px 17px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: min(265px, calc(100vw - 92px));
  }

  .brand-mark {
    width: 48px;
    height: 45px;
    flex-basis: 48px;
  }

  .wordmark {
    gap: 5px;
  }

  .wordmark-main,
  .wordmark-outline {
    font-size: clamp(18px, 5.6vw, 25px);
  }

  .wordmark-outline {
    -webkit-text-stroke-width: 1px;
  }

  .brand-subtitle {
    font-size: clamp(7px, 2.1vw, 10px);
    letter-spacing: 1.35px;
  }

  .menu-toggle {
    width: 44px;
    height: 40px;
  }

  .primary-nav {
    top: 76px;
  }

  .hero {
    background-image:
      linear-gradient(90deg, rgba(247, 249, 251, 0.98) 0%, rgba(232, 238, 243, 0.9) 64%, rgba(8, 34, 70, 0.48) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(3, 18, 38, 0.1)),
      url("assets/industrial-hero.png");
    background-position: center center, center center, 43% center;
    background-size: cover, cover, auto 100%;
    background-repeat: no-repeat;
  }

  .hero-inner,
  .section-wrap,
  .page-hero,
  .cta-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-inner {
    padding-top: 32px;
    padding-bottom: 34px;
    gap: 28px;
  }

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

  .hero h1 small {
    font-size: 15px;
  }

  .hero-actions,
  .page-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .regions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 0;
    font-size: 13px;
  }

  .regions span {
    padding: 0 10px;
  }

  .regions span:nth-child(odd) {
    padding-left: 0;
  }

  .regions span:nth-child(2) {
    border-right: 0;
  }

  .workflow-panel {
    padding: 11px;
    border-radius: 10px;
  }

  .workflow-steps {
    display: flex;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 12px;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
  }

  .workflow-step {
    min-width: 86px;
    scroll-snap-align: start;
  }

  .flow-arrow {
    width: 26px;
    flex: 0 0 26px;
  }

  .status-card {
    grid-template-columns: 56px 1fr 16px;
    min-height: 98px;
    gap: 12px;
    padding: 12px;
  }

  .status-icon {
    width: 52px;
    height: 52px;
  }

  .status-icon svg {
    width: 30px;
    height: 30px;
  }

  .status-card small {
    font-size: 12px;
  }

  .status-card strong {
    font-size: 23px;
  }

  .status-card em {
    font-size: 13px;
  }

  .home-services,
  .mini-prices,
  .proof-inner,
  .process-grid,
  .three-columns,
  .values-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .home-services .service-card:last-child {
    grid-column: auto;
  }

  .service-card {
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding: 20px;
  }

  .service-icon {
    width: 54px;
    height: 54px;
  }

  .service-icon svg {
    width: 33px;
    height: 33px;
  }

  .card-content strong {
    font-size: 25px;
  }

  .proof-inner {
    padding: 0;
  }

  .pricing-table {
    padding-left: 18px;
    padding-right: 18px;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .price-row .button {
    width: 100%;
    min-width: 0;
  }

  .about-page .dark-panel .check-list {
    grid-template-columns: 1fr;
  }

  .service-detail {
    padding: 22px;
  }

  .cta-band {
    display: grid;
    margin-bottom: 34px;
  }

  .site-footer {
    padding: 30px 18px;
  }

  .footer-brand .wordmark-main,
  .footer-brand .wordmark-outline {
    font-size: 18px;
  }

  .footer-brand {
    gap: 9px;
  }

  .footer-brand .brand-logo {
    width: min(280px, 100%);
  }

  
.contact-info-links {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(117, 188, 255, 0.42);
}

.dark-panel .contact-info-title {
  margin: 0 0 16px;
  color: #75bcff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-info-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

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

.contact-info-label {
  color: #75bcff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-info-row .panel-email {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(117, 188, 255, 0.55);
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.contact-info-row .panel-email:hover {
  color: #75bcff;
  text-decoration-color: currentColor;
}

@media (max-width: 520px) {
  .contact-info-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.footer-brand .brand-mark {
    width: 43px;
    height: 40px;
    flex-basis: 43px;
  }

  .footer-brand .brand-subtitle {
    font-size: 8px;
    letter-spacing: 1.25px;
  }

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

@media (max-width: 380px) {
  .workflow-steps {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    overflow: visible;
    justify-items: center;
  }

  .workflow-step {
    width: 100%;
    min-width: 0;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }
}

/* Supplier network */
.supplier-network {
  padding-top: 8px;
}

.supplier-network-intro {
  max-width: 850px;
  margin-bottom: 24px;
}

.supplier-network-intro h2 {
  margin-bottom: 14px;
}

.supplier-network-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.supplier-network-card h3 {
  margin-top: 0;
}

.supplier-network-card .button {
  margin-top: 8px;
}

.supplier-subject {
  margin: 20px 0;
  padding: 14px 16px;
  border: 1px solid rgba(117, 188, 255, 0.34);
  border-radius: 5px;
  background: rgba(255,255,255,0.06);
}

.supplier-disclaimer {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .supplier-network-grid {
    grid-template-columns: 1fr;
  }
}
