* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --bg-muted: #eef2f7;
  --text: #071a3a;
  --text-muted: #415064;
  --border: #d8e0eb;
  --dark: #061a38;
  --dark-2: #082957;
  --blue: #063f8f;
  --blue-bright: #2563eb;
  --blue-dark: #032b66;
  --card: #ffffff;
  --shadow: 0 20px 45px rgba(6, 26, 56, 0.1);
  --shadow-strong: 0 28px 70px rgba(6, 26, 56, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

a {
  color: inherit;
}

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

ul {
  list-style-position: outside;
}

.container {
  width: min(1140px, 91%);
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--blue);
  color: var(--blue);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
  clip-path: polygon(22% 0, 100% 0, 78% 50%, 100% 100%, 22% 100%, 0 50%);
}

.logo strong,
.footer-brand strong {
  display: block;
  font-family: "Sora", "Inter", Arial, sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo small,
.footer-brand small {
  display: block;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
}

.nav a:hover {
  color: var(--blue-bright);
}

.nav-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 4px;
  background: var(--blue);
  color: white !important;
  box-shadow: 0 10px 22px rgba(6, 63, 143, 0.2);
}

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

.hero-shell {
  width: min(1260px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 560px;
}

.hero-copy {
  padding: 92px 58px 92px max(58px, calc((100vw - 1140px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-visual {
  min-height: 560px;
  background: #183454;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  z-index: 1;
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 26, 56, 0.05), rgba(6, 26, 56, 0.22));
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.eyebrow {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.76rem;
  margin-bottom: 11px;
}

h1,
h2,
h3 {
  font-family: "Sora", "Inter", Arial, sans-serif;
}

h1 {
  font-size: clamp(2.6rem, 4.7vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin-bottom: 24px;
  color: var(--text);
}

.hero-text {
  font-size: 1.18rem;
  color: var(--text-muted);
  max-width: 590px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  border-radius: 4px;
  font-weight: 900;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 12px 26px rgba(6, 63, 143, 0.2);
}

.button.primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 18px 34px rgba(6, 63, 143, 0.26);
}

.button.secondary {
  background: white;
  color: var(--text);
  border: 1px solid var(--blue);
}

.button.secondary:hover {
  background: #f8fbff;
}

.outcome-strip {
  background: linear-gradient(90deg, var(--dark), var(--dark-2));
  color: white;
  padding: 28px 0;
  box-shadow: 0 16px 30px rgba(6, 26, 56, 0.16);
  position: relative;
  overflow: hidden;
}

.outcome-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.55;
}

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

.outcome-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
  padding: 4px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.outcome-item:first-child {
  padding-left: 0;
}

.outcome-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.outcome-icon {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.outcome-icon svg {
  width: 24px;
  height: 24px;
}

.outcome-item h2 {
  font-size: 1.02rem;
  line-height: 1.25;
  margin-bottom: 7px;
}

.outcome-item p {
  color: #dbe7f6;
  font-size: 0.82rem;
}

.section {
  padding: 82px 0;
  position: relative;
  overflow: hidden;
}

.muted {
  background: var(--bg-soft);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.left-heading {
  text-align: left;
  margin-left: 0;
}

.section-heading h2,
.about-grid h2,
.problem-grid h2,
.product-grid h2,
.resource-grid h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.section-heading p,
.about-grid p,
.problem-grid p,
.product-grid p,
.resource-grid p {
  color: var(--text-muted);
  font-size: 1.02rem;
}

.problem-grid,
.product-grid,
.resource-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.problem-list,
.industry-grid,
.resource-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.problem-list span,
.industry-grid span,
.resource-list span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(6, 26, 56, 0.05);
}

.problem-list span::before,
.industry-grid span::before,
.resource-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue-bright);
  margin-right: 12px;
  flex: 0 0 auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}

.card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 14px 34px rgba(6, 26, 56, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #b7c5d8;
  box-shadow: 0 24px 48px rgba(6, 26, 56, 0.12);
}

.card-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--blue);
  background: linear-gradient(180deg, #ffffff, #eef5ff);
  margin-bottom: 18px;
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card h3,
.project-card h3,
.process-step h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.card p,
.project-card p,
.process-step p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.card ul {
  padding-left: 19px;
}

.card li {
  margin: 8px 0;
  color: var(--text-muted);
}

.industries-section {
  background: white;
}

.industry-grid {
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 1;
}

.industry-grid span {
  min-height: 66px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.project-card {
  min-height: 310px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: white;
  position: relative;
  overflow: hidden;
  transition: background 0.18s ease;
}

.project-card:hover {
  background: #fbfdff;
}

.project-card:nth-child(2n) {
  border-right: 0;
}

.project-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.large-project img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}

.project-copy {
  padding: 30px;
}

.project-copy a {
  display: inline-block;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
  margin-top: 4px;
}

.project-copy a:hover {
  color: var(--blue-bright);
}

.text-project {
  display: flex;
  align-items: center;
}

.text-project .project-copy {
  max-width: 470px;
}

.product-section {
  background: linear-gradient(180deg, #ffffff, #f6f8fb);
}

.product-panel {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: white;
  border-radius: 10px;
  padding: 34px;
  box-shadow: var(--shadow-strong);
}

.product-panel ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin-bottom: 22px;
}

.product-panel li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.product-panel li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid #9cc2ff;
  flex: 0 0 auto;
}

.product-panel p {
  color: #dbe7f6;
}

.resource-section {
  border-top: 1px solid var(--border);
}

.resource-list {
  align-self: center;
}

.process-section {
  background: white;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}

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

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 14px;
}

.process-step span {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--border);
  color: var(--blue);
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(6, 26, 56, 0.08);
}

.process-step h3 {
  font-size: 1rem;
}

.process-step p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.about-section {
  background: linear-gradient(180deg, #ffffff, #f4f7fb);
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.about-grid .button {
  margin-top: 24px;
}

.about-grid p + p {
  margin-top: 14px;
}

.capability-panel {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 14px 34px rgba(6, 26, 56, 0.08);
}

.capability-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.capability-tags span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  background: var(--bg-soft);
  font-weight: 800;
  font-size: 0.9rem;
}

.capability-tags svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
  flex: 0 0 auto;
}

.contact-band {
  background: linear-gradient(90deg, var(--dark), var(--dark-2));
  color: white;
  padding: 42px 0;
  position: relative;
  overflow: hidden;
}

.contact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 18% 20%, rgba(255,255,255,0.14), transparent 22%), 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: auto, 36px 36px, 36px 36px;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 34px;
  align-items: center;
}

.contact-grid .eyebrow {
  color: #9cc2ff;
  margin-bottom: 6px;
}

.contact-grid a {
  color: white;
  text-decoration: none;
  font-weight: 800;
}

.contact-grid p {
  color: #dbe7f6;
}

.footer-brand {
  color: white;
}

.footer-brand .logo-mark {
  border-color: white;
  color: white;
}

.footer-brand small {
  color: #dbe7f6;
}

.blueprint-bg,
.blueprint-bg-soft,
.blueprint-corner {
  position: relative;
}

.blueprint-bg::before,
.blueprint-bg-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(6, 63, 143, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 63, 143, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.8), transparent 70%);
}

.blueprint-bg-soft::before {
  opacity: 0.7;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.75), transparent 88%);
}

.blueprint-corner::after {
  content: "";
  position: absolute;
  right: max(24px, calc((100vw - 1140px) / 2));
  top: 48px;
  width: 220px;
  height: 220px;
  pointer-events: none;
  border-top: 1px solid rgba(6, 63, 143, 0.16);
  border-right: 1px solid rgba(6, 63, 143, 0.16);
  background-image: linear-gradient(rgba(6, 63, 143, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 63, 143, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.85;
}

.reveal {
  animation: reveal-up 0.72s ease both;
}

.delay-1 {
  animation-delay: 0.12s;
}

.delay-2 {
  animation-delay: 0.22s;
}

.delay-3 {
  animation-delay: 0.32s;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .reveal,
  .delay-1,
  .delay-2,
  .delay-3 {
    animation: none;
  }

  .button,
  .card {
    transition: none;
  }
}

@media (max-width: 1040px) {
  .outcome-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 0;
  }

  .outcome-item:nth-child(2) {
    border-right: 0;
    padding-right: 0;
  }

  .outcome-item:nth-child(3) {
    padding-left: 0;
  }

  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 76px 5%;
  }

  .hero-visual {
    min-height: 420px;
  }

  .problem-grid,
  .product-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  .nav {
    display: none;
  }

  .cards,
  .project-grid,
  .process-line,
  .about-grid,
  .contact-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .problem-list,
  .resource-list {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card:nth-child(2n),
  .project-card:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .project-card:last-child {
    border-bottom: 0;
  }

  .process-line::before,
  .blueprint-corner::after {
    display: none;
  }

  .process-step {
    text-align: left;
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 18px;
    padding: 0;
  }

  .process-step span {
    margin: 0;
  }

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

  .outcome-item,
  .outcome-item:first-child,
  .outcome-item:nth-child(3),
  .outcome-item:last-child {
    padding: 0;
    border-right: 0;
  }

  .section {
    padding: 66px 0;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 68px;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .logo strong,
  .footer-brand strong {
    font-size: 1.25rem;
  }

  .hero-copy {
    padding: 62px 5%;
  }

  .hero-visual {
    min-height: 300px;
  }

  h1 {
    letter-spacing: -0.045em;
  }

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

  .button {
    width: 100%;
  }

  .capability-tags {
    grid-template-columns: 1fr;
  }

  .outcome-item {
    grid-template-columns: 46px 1fr;
  }

  .outcome-icon {
    width: 42px;
    height: 42px;
  }

  .product-panel {
    padding: 26px;
  }
}

/* CNC fixture site additions */
.button{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;margin:.25rem .5rem .25rem 0;padding:.9rem 1.15rem;border-radius:999px;font-weight:800;text-decoration:none;border:1px solid var(--blue)}.button.primary,.nav-button{background:var(--blue);color:#fff}.button.secondary{background:#fff;color:var(--blue)}.checklist{display:grid;gap:.75rem;margin:1rem 0 0 1.2rem}.breadcrumb{margin-bottom:1rem;color:var(--text-muted)}.article-body{max-width:820px}.article-body h2{margin-top:2rem}.print-summary{border:1px solid var(--border);border-radius:18px;padding:1.5rem 1.5rem 1.5rem 2.5rem;background:#fff}.card a{font-weight:800;color:var(--blue)}
@media print{.site-header,.site-footer,.button{display:none}.print-summary{border:2px solid #111}}

/* Professional industrial facelift */
:root {
  --steel: #637083;
  --steel-dark: #263241;
  --industrial-orange: #f59e0b;
  --industrial-orange-dark: #b45309;
  --blue-ink: #071a3a;
  --surface: #ffffff;
  --surface-raised: #f8fafc;
  --ring: rgba(37, 99, 235, 0.18);
}

body {
  background:
    radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.08), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 48%, #eef3f8 100%);
}

.site-header {
  box-shadow: 0 10px 30px rgba(6, 26, 56, 0.08);
}

.logo-mark {
  background: linear-gradient(135deg, #ffffff 0%, #dbeafe 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), 0 10px 24px rgba(6, 63, 143, 0.16);
}

.nav a {
  border-radius: 999px;
  color: var(--steel-dark);
  font-weight: 800;
  padding: 0.68rem 0.85rem;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  background: rgba(6, 63, 143, 0.09);
  color: var(--blue);
}

.nav a:hover {
  transform: translateY(-1px);
}

.nav .nav-button,
.nav .nav-button[aria-current="page"] {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
  box-shadow: 0 12px 28px rgba(6, 63, 143, 0.22);
  color: #ffffff;
}

.hero {
  background:
    linear-gradient(135deg, rgba(6, 26, 56, 0.95) 0%, rgba(8, 41, 87, 0.92) 48%, rgba(6, 63, 143, 0.88) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 72px);
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

.hero::after {
  background: linear-gradient(135deg, transparent 0 45%, rgba(245, 158, 11, 0.28) 45% 46%, transparent 46% 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-shell {
  min-height: 620px;
  position: relative;
  z-index: 1;
}

.hero .eyebrow {
  color: #fed7aa;
}

.hero h1 {
  color: #ffffff;
  letter-spacing: -0.055em;
  max-width: 760px;
}

.hero-text {
  color: #dbeafe;
  max-width: 720px;
}

.hero-visual {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  padding: clamp(1rem, 3vw, 2rem);
}

.hero-visual img {
  filter: drop-shadow(0 24px 35px rgba(0, 0, 0, 0.28));
}

.button {
  box-shadow: 0 12px 28px rgba(6, 26, 56, 0.12);
  transition: box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 18px 36px rgba(6, 26, 56, 0.18);
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--industrial-orange) 0%, var(--industrial-orange-dark) 100%);
  border-color: transparent;
  color: #111827;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--blue-ink);
}

.section {
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(239,246,255,0.72));
}

.section-heading h2,
.article-body h2 {
  letter-spacing: -0.035em;
}

.cards.service-cards {
  align-items: stretch;
}

.card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(99, 112, 131, 0.22);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(6, 26, 56, 0.08);
  overflow: hidden;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.card::before {
  background: linear-gradient(90deg, var(--blue) 0%, var(--industrial-orange) 100%);
  content: "";
  height: 4px;
  inset: 0 0 auto;
  position: absolute;
}

.card:hover {
  border-color: rgba(6, 63, 143, 0.28);
  box-shadow: 0 24px 58px rgba(6, 26, 56, 0.13);
  transform: translateY(-3px);
}

.card h3 {
  color: var(--blue-ink);
}

.checklist li {
  background: var(--surface);
  border: 1px solid rgba(99, 112, 131, 0.18);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(6, 26, 56, 0.05);
  list-style: none;
  padding: 0.85rem 1rem 0.85rem 2.7rem;
  position: relative;
}

.checklist li::before {
  background: linear-gradient(135deg, var(--blue) 0%, var(--industrial-orange) 100%);
  border-radius: 999px;
  color: #ffffff;
  content: "✓";
  display: grid;
  font-size: 0.8rem;
  font-weight: 900;
  height: 1.25rem;
  left: 0.9rem;
  place-items: center;
  position: absolute;
  top: 0.95rem;
  width: 1.25rem;
}

.site-footer {
  background: var(--blue-ink);
  color: #dbeafe;
}

.site-footer a {
  color: #ffffff;
}

.breadcrumb {
  background: rgba(219, 234, 254, 0.55);
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 999px;
  display: inline-flex;
  padding: 0.55rem 0.85rem;
}

.article-body {
  background: #ffffff;
  border: 1px solid rgba(99, 112, 131, 0.18);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(6, 26, 56, 0.08);
  padding: clamp(1.25rem, 3vw, 2.25rem);
}

@media (max-width: 760px) {
  .hero-shell {
    min-height: auto;
    padding-block: 4rem;
  }

  .nav a {
    padding: 0.8rem 1rem;
  }
}



















/* Lead-generation fixture redesign */
.placeholder-visual{display:grid;place-items:center;gap:1rem;text-align:center}.placeholder-visual span,.image-placeholder{border:1px dashed rgba(99,112,131,.55);background:linear-gradient(135deg,#eef4fb,#fff);color:#415064;border-radius:18px;min-height:180px;display:grid;place-items:center;font-weight:900;text-transform:uppercase;letter-spacing:.06em}.icon-placeholder{width:48px;height:48px;border-radius:14px;display:grid;place-items:center;background:#eaf2ff;color:var(--blue);font-weight:900;margin-bottom:1rem}.benefit-card:hover .icon-placeholder{background:#fff2d8;color:#92400e}.deliverable-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.six-step{grid-template-columns:repeat(6,1fr)}.modern-projects{grid-template-columns:repeat(3,1fr);border:0;gap:20px;box-shadow:none}.modern-projects .project-card{border:1px solid var(--border);border-radius:22px;overflow:hidden;box-shadow:var(--shadow)}dl{display:grid;grid-template-columns:auto 1fr;gap:.35rem .75rem;margin:1rem 0}dt{font-weight:900;color:var(--text)}dd{color:var(--text-muted)}.page-hero{padding:clamp(4rem,8vw,7rem) 0;background:linear-gradient(135deg,var(--dark),var(--dark-2));color:#fff}.page-hero h1{color:#fff}.filter-bar{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:1.5rem}.filter-bar button{border:1px solid rgba(255,255,255,.35);background:rgba(255,255,255,.12);color:#fff;border-radius:999px;padding:.8rem 1rem;font-weight:800}.roi-panel,.rfq-layout{display:grid;grid-template-columns:.8fr 1.2fr;gap:2rem;align-items:start}.roi-form,.rfq-form{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;background:#fff;border:1px solid var(--border);border-radius:24px;padding:1.5rem;box-shadow:var(--shadow)}label{display:grid;gap:.4rem;font-weight:900}input,textarea{width:100%;border:1px solid var(--border);border-radius:12px;padding:.9rem;font:inherit}textarea{min-height:130px}.rfq-form label:has(textarea),.rfq-form button,.roi-form output{grid-column:1/-1}.timeline{display:grid;grid-template-columns:repeat(7,1fr);gap:1rem}.timeline article{background:#fff;border:1px solid var(--border);border-radius:18px;padding:1rem;box-shadow:0 10px 28px rgba(6,26,56,.06)}.timeline span{color:var(--blue);font-weight:900}.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:2rem;padding:3rem 0}.site-footer a{display:block;color:#dbeafe;text-decoration:none;margin:.45rem 0}.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin:1rem 0 2rem}@media(max-width:1040px){.deliverable-grid,.six-step,.modern-projects,.timeline,.footer-grid{grid-template-columns:repeat(2,1fr)}.roi-panel,.rfq-layout{grid-template-columns:1fr}}@media(max-width:700px){.deliverable-grid,.six-step,.modern-projects,.timeline,.footer-grid,.roi-form,.rfq-form,.gallery-grid{grid-template-columns:1fr}.placeholder-visual{padding:1rem}.page-hero{padding:3.5rem 0}.hero-shell{min-height:auto}.card{padding:24px}.nav-button,.mobile-header-contact{min-height:44px}}

/* Mobile optimization pass */
@media(max-width:880px){.container{width:min(94%,680px)}.header-inner{gap:12px}.mobile-header-contact{display:inline-flex;align-items:center;justify-content:center;border-radius:999px;background:var(--blue);color:#fff;text-decoration:none;font-weight:900;padding:.75rem 1rem}.hero-copy{padding-block:4rem}.hero-text{font-size:1.05rem}.section-heading{text-align:left}.button{min-height:48px}.cards{gap:1rem}.process-step{background:#fff;border:1px solid var(--border);border-radius:18px;padding:1rem}}@media(max-width:480px){h1{font-size:2.35rem}.section{padding-block:3.5rem}.logo small{display:none}.logo strong{font-size:1.05rem}.footer-grid{padding:2rem 0}.image-placeholder{min-height:140px}}

/* Final polish */
:focus-visible{outline:3px solid var(--industrial-orange);outline-offset:3px}.card,.project-card,.timeline article,.rfq-form,.roi-form{backdrop-filter:saturate(120%)}.section-heading .eyebrow{margin-bottom:.35rem}.project-copy a,.card a{color:var(--blue);font-weight:900;text-decoration:none}.project-copy a:hover,.card a:hover{text-decoration:underline}.hero-visual strong{color:#fff;background:rgba(6,26,56,.72);padding:.6rem 1rem;border-radius:999px}.service-detail .image-placeholder{margin-bottom:1.25rem}.contact-band .button.primary{color:#111827}
