
:root {
  --navy-950: #000000;
  --navy-900: #071112;
  --navy-800: #102527;
  --steel-700: #3b5052;
  --steel-600: #607173;
  --steel-300: #b8c5c6;
  --steel-200: #d7e1e1;
  --steel-100: #f0f5f5;
  --white: #ffffff;
  --amber: #00fff1;
  --amber-dark: #00aaa2;
  --ink: #132122;
  --muted: #5b6b6d;
  --success: #1c7c54;
  --shadow: 0 18px 45px rgba(6, 19, 31, 0.12);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 9px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -100px;
  z-index: 9999;
  background: var(--amber);
  color: var(--navy-950);
  padding: .75rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 800;
}
.skip-link:focus { top: 0; }

.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 860px); margin-inline: auto; }
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-dark { background: var(--navy-950); color: var(--white); }
.section-tint { background: var(--steel-100); }
.section-grid {
  background-image:
    linear-gradient(rgba(10,29,45,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,29,45,.035) 1px, transparent 1px);
  background-size: 34px 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--amber-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.eyebrow::before { content: ""; width: 30px; height: 3px; background: var(--amber); border-radius: 999px; }
.section-dark .eyebrow { color: #7afff7; }

h1, h2, h3, h4 {
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  line-height: 1.06;
  margin: 0 0 1rem;
  color: var(--navy-950);
  letter-spacing: -.015em;
}
h1 { font-size: clamp(2.75rem, 7vw, 5.65rem); max-width: 950px; }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.55rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.9rem); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--muted); max-width: 780px; }
.section-dark .lead, .section-dark p { color: #c8d4dc; }

.topbar { background: var(--navy-950); color: #dce6ec; font-size: .86rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar-links { display: flex; gap: 1.25rem; align-items: center; }
.topbar a:hover { color: var(--amber); }


.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,255,241,.22);
}
.navbar { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; min-width: 310px; }
.brand-logo { width: min(310px, 34vw); height: auto; max-height: 80px; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: 1.25rem; list-style: none; padding: 0; margin: 0; }
.nav-links a { font-size: .93rem; font-weight: 750; color: #f4f7f7; padding: .7rem .2rem; position: relative; }
.nav-links a:not(.btn)::after { content: ""; position: absolute; left: .2rem; right: .2rem; bottom: .45rem; height: 2px; background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; }
.menu-toggle span { display: block; height: 2px; background: var(--white); margin: 5px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .8rem 1.2rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 850;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(6,19,31,.17); }
.btn-primary { background: var(--amber); color: var(--navy-950); }
.btn-primary:hover { background: #ffb72e; }
.btn-dark { background: var(--navy-900); color: var(--white); }
.btn-outline { border-color: rgba(255,255,255,.55); color: var(--white); background: transparent; }
.btn-outline-dark { border-color: var(--navy-900); color: var(--navy-900); background: transparent; }
.btn-small { min-height: 42px; padding: .68rem 1rem; font-size: .9rem; }
.button-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.6rem; }

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,19,31,.98) 0%, rgba(6,19,31,.92) 42%, rgba(6,19,31,.55) 72%, rgba(6,19,31,.25) 100%),
    url('../images/hero-industrial.svg') center right / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--amber) 0 32%, transparent 32% 100%);
}
.hero-content { position: relative; z-index: 2; padding: 6rem 0 7rem; }
.hero h1 { color: var(--white); }
.hero .lead { color: #d5e0e7; max-width: 720px; }
.hero-kicker { display: inline-flex; align-items: center; gap: .65rem; font-weight: 850; color: #7afff7; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; margin-bottom: 1rem; }
.hero-kicker::before { content: ""; width: 45px; height: 3px; background: var(--amber); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2.25rem; }
.hero-meta-item { display: flex; align-items: center; gap: .75rem; max-width: 250px; color: #d5e0e7; font-size: .92rem; }
.hero-meta-icon { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 10px; color: var(--amber); }

.credential-strip { background: var(--white); border-bottom: 1px solid var(--steel-200); }
.credential-list { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; list-style: none; padding: 0; margin: 0; }
.credential-list li { padding: 1.15rem .75rem; text-align: center; font-weight: 900; color: var(--navy-900); border-right: 1px solid var(--steel-200); }
.credential-list li:last-child { border-right: 0; }
.credential-list small { display: block; font-size: .68rem; color: var(--steel-600); font-weight: 700; margin-top: .15rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 2.2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.35rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.2rem; }
.align-center { align-items: center; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2.3rem; }
.section-heading > div:first-child { max-width: 780px; }

.card {
  background: var(--white);
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(6,19,31,.045);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(0,255,241,.65); }
.card-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 12px; color: var(--amber-dark); background: #e5fffd; margin-bottom: 1.1rem; }
.card-icon svg { width: 27px; height: 27px; }
.card h3 { margin-bottom: .65rem; }
.card p { color: var(--muted); }
.card-link { display: inline-flex; align-items: center; gap: .45rem; margin-top: .4rem; font-weight: 850; color: var(--navy-900); }
.card-link span { color: var(--amber-dark); font-size: 1.25rem; }

.stat-band { background: var(--navy-900); color: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat { padding: 2rem 1.5rem; border-right: 1px solid rgba(255,255,255,.14); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--amber); font-family: "Arial Narrow", Impact, sans-serif; font-size: 2rem; line-height: 1; margin-bottom: .45rem; }
.stat span { color: #c7d5de; font-size: .9rem; }

.split-panel { display: grid; grid-template-columns: 1.08fr .92fr; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--navy-950); color: var(--white); }
.split-panel-copy { padding: clamp(2rem,5vw,4.2rem); }
.split-panel-copy h2 { color: var(--white); }
.split-panel-copy p { color: #c9d5dd; }
.split-panel-art { min-height: 430px; background-color: var(--navy-800); background-image: url('../images/inspection-blueprint.svg'); background-position: center; background-size: contain; background-repeat: no-repeat; }

.check-list { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .75rem; }
.check-list li { position: relative; padding-left: 1.9rem; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--amber-dark); font-weight: 1000; }
.section-dark .check-list li { color: #d5e0e7; }

.industry-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.industry-card { position: relative; min-height: 260px; padding: 1.5rem; border-radius: var(--radius-md); overflow: hidden; background: var(--navy-900); color: var(--white); display: flex; flex-direction: column; justify-content: end; border: 1px solid rgba(255,255,255,.08); }
.industry-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, rgba(6,19,31,.1) 30%, rgba(6,19,31,.96) 92%), var(--industry-image) center / cover no-repeat; opacity: .9; }
.industry-card > * { position: relative; z-index: 1; }
.industry-card h3 { color: var(--white); margin-bottom: .4rem; }
.industry-card p { color: #c9d5dd; font-size: .9rem; margin: 0; }
.industry-card:nth-child(1) { --industry-image: url('../images/industry-lng.svg'); }
.industry-card:nth-child(2) { --industry-image: url('../images/industry-pipe.svg'); }
.industry-card:nth-child(3) { --industry-image: url('../images/industry-tank.svg'); }
.industry-card:nth-child(4) { --industry-image: url('../images/industry-power.svg'); }
.industry-card:nth-child(5) { --industry-image: url('../images/industry-fab.svg'); }
.industry-card:nth-child(6) { --industry-image: url('../images/industry-construction.svg'); }

.process { counter-reset: process; display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.process-step { position: relative; padding: 1.45rem 1.3rem 1.4rem; border-top: 4px solid var(--amber); background: var(--white); box-shadow: 0 8px 24px rgba(6,19,31,.06); }
.process-step::before { counter-increment: process; content: "0" counter(process); display: block; color: var(--steel-300); font-family: "Arial Narrow", Impact, sans-serif; font-size: 2.2rem; line-height: 1; margin-bottom: 1rem; }
.process-step p { color: var(--muted); font-size: .92rem; }

.cta { background: linear-gradient(125deg, var(--navy-950), var(--navy-800)); color: var(--white); padding: clamp(2rem,5vw,3.75rem); border-radius: var(--radius-lg); position: relative; overflow: hidden; }
.cta::after { content: ""; position: absolute; width: 300px; height: 300px; right: -80px; bottom: -170px; border: 42px solid rgba(0,255,241,.16); border-radius: 50%; }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta h2 { color: var(--white); max-width: 760px; margin-bottom: .6rem; }
.cta p { color: #c9d5dd; margin: 0; }

.page-hero { background: var(--navy-950); color: var(--white); padding: 5.6rem 0 4.5rem; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 35%, rgba(0,255,241,.17), transparent 24%), linear-gradient(110deg, transparent 0 55%, rgba(255,255,255,.035) 55% 56%, transparent 56% 100%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(2.65rem,6vw,4.7rem); }
.page-hero .lead { color: #d0dce3; }
.breadcrumbs { color: #9eb0bc; font-size: .86rem; margin-bottom: 1rem; }
.breadcrumbs a { color: #d8e2e8; }

.service-section { scroll-margin-top: 130px; }
.service-row { display: grid; grid-template-columns: 150px 1fr; gap: 1.7rem; padding: 2.2rem 0; border-bottom: 1px solid var(--steel-200); }
.service-number { color: var(--steel-300); font-family: "Arial Narrow", Impact, sans-serif; font-size: 4.4rem; line-height: .9; }
.service-content p { color: var(--muted); }
.service-tags { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1rem; }
.tag { display: inline-flex; padding: .42rem .68rem; background: var(--steel-100); border: 1px solid var(--steel-200); border-radius: 999px; color: var(--navy-900); font-size: .82rem; font-weight: 750; }

.profile-panel { display: grid; grid-template-columns: 360px 1fr; gap: 2rem; align-items: stretch; }
.profile-card { background: var(--navy-950); color: var(--white); border-radius: var(--radius-lg); padding: 2rem; position: relative; overflow: hidden; }
.profile-card::after { content: "KP"; position: absolute; right: -16px; bottom: -35px; color: rgba(255,255,255,.06); font-family: Impact, sans-serif; font-size: 10rem; }
.profile-card h3 { color: var(--white); }
.profile-card p { color: #c9d5dd; }
.profile-credentials { display: grid; grid-template-columns: repeat(2,1fr); gap: .8rem; margin-top: 1.2rem; }
.profile-credentials span { display: block; padding: .75rem; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-sm); font-weight: 800; font-size: .86rem; position: relative; z-index: 2; }

.form-shell { background: var(--white); border: 1px solid var(--steel-200); border-radius: var(--radius-lg); padding: clamp(1.4rem,4vw,2.5rem); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.form-group { display: grid; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
label { font-weight: 800; color: var(--navy-900); font-size: .9rem; }
input, select, textarea { width: 100%; border: 1px solid #bac8d1; border-radius: var(--radius-sm); padding: .82rem .9rem; background: #fbfefe; color: var(--ink); }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(0,255,241,.22); border-color: var(--amber-dark); }
textarea { min-height: 150px; resize: vertical; }
.form-note { color: var(--muted); font-size: .82rem; margin-top: .85rem; }
.contact-stack { display: grid; gap: 1rem; }
.contact-box { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 0; border-bottom: 1px solid var(--steel-200); }
.contact-box:last-child { border-bottom: 0; }
.contact-box-icon { flex: 0 0 auto; width: 44px; height: 44px; display: grid; place-items: center; background: #e5fffd; color: var(--amber-dark); border-radius: 11px; }
.contact-box strong { display: block; color: var(--navy-950); }
.contact-box span, .contact-box p { color: var(--muted); margin: 0; }

.notice { padding: 1rem 1.1rem; border-left: 4px solid var(--amber); background: #e9fffd; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: #164b48; }

.site-footer { background: var(--navy-950); color: #b8c8d2; padding-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr .8fr 1.1fr; gap: 2rem; padding-bottom: 3rem; }
.footer-brand { max-width: 400px; }
.footer-brand .brand-copy strong { color: var(--white); }
.footer-brand .brand-copy span { color: #9db0bc; }
.footer-brand p { margin-top: 1rem; color: #b8c8d2; }
.site-footer h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 1rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-links a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.11); padding: 1.2rem 0; font-size: .82rem; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 1rem; align-items: center; }

.mobile-actions { display: none; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .topbar { display: none; }
  .navbar { min-height: 72px; }
  .menu-toggle { display: block; }
  .nav-links { position: absolute; inset: 72px 0 auto; background: var(--white); border-bottom: 1px solid var(--steel-200); padding: 1rem; flex-direction: column; align-items: stretch; gap: .2rem; box-shadow: 0 16px 24px rgba(6,19,31,.12); display: none; }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: .85rem 1rem; }
  .nav-links a:not(.btn)::after { display: none; }
  .hero { min-height: 650px; }
  .credential-list { grid-template-columns: repeat(3,1fr); }
  .credential-list li:nth-child(3) { border-right: 0; }
  .credential-list li:nth-child(-n+3) { border-bottom: 1px solid var(--steel-200); }
  .grid-4, .process { grid-template-columns: repeat(2,1fr); }
  .grid-3, .industry-grid { grid-template-columns: repeat(2,1fr); }
  .split-panel, .profile-panel { grid-template-columns: 1fr; }
  .split-panel-art { min-height: 320px; }
  .profile-panel { gap: 1.3rem; }
  .profile-card { min-height: 330px; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 700px) {
  body { padding-bottom: 67px; }
  .container, .narrow { width: min(calc(100% - 1.25rem), var(--container)); }
  .section { padding: 4.3rem 0; }
  .brand { min-width: 0; }
  .hero { min-height: 610px; }
  .hero::before { background: linear-gradient(90deg, rgba(6,19,31,.98), rgba(6,19,31,.8)), url('../images/hero-industrial.svg') center / cover no-repeat; }
  .hero-content { padding: 4.6rem 0 5.5rem; }
  .hero-meta { gap: 1rem; }
  .hero-meta-item { flex: 1 1 100%; max-width: none; }
  .credential-list { grid-template-columns: repeat(2,1fr); }
  .credential-list li:nth-child(odd) { border-right: 1px solid var(--steel-200); }
  .credential-list li:nth-child(even) { border-right: 0; }
  .credential-list li:nth-child(-n+4) { border-bottom: 1px solid var(--steel-200); }
  .grid-2, .grid-3, .grid-4, .industry-grid, .process, .stat-grid, .form-grid { grid-template-columns: 1fr; }
  .section-heading, .cta-inner { align-items: flex-start; flex-direction: column; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .stat:last-child { border-bottom: 0; }
  .service-row { grid-template-columns: 1fr; gap: .8rem; }
  .service-number { font-size: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { align-items: flex-start; flex-direction: column; }
  .mobile-actions { position: fixed; z-index: 1200; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1fr; box-shadow: 0 -10px 28px rgba(6,19,31,.18); }
  .mobile-actions a { min-height: 67px; display: grid; place-items: center; font-weight: 900; }
  .mobile-actions a:first-child { background: var(--white); color: var(--navy-950); border-top: 1px solid var(--steel-200); }
  .mobile-actions a:last-child { background: var(--amber); color: var(--navy-950); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


.footer-brand .brand-logo {
  width: min(330px, 100%);
  max-height: none;
}

@media (max-width: 980px) {
  .navbar { min-height: 84px; }
  .nav-links {
    inset: 84px 0 auto;
    background: #050505;
    border-bottom: 1px solid rgba(0,255,241,.22);
  }
  .nav-links a { color: #f4f7f7; }
}

@media (max-width: 700px) {
  .brand { min-width: 0; }
  .brand-logo { width: 205px; max-height: 65px; }
}


html {
  scroll-behavior: smooth;
}

.service-section,
#project-form,
[id] {
  scroll-margin-top: 132px;
}

.service-jump-nav {
  position: sticky;
  top: 96px;
  z-index: 50;
  background: rgba(7,17,18,.97);
  border-bottom: 1px solid rgba(0,255,241,.22);
  box-shadow: 0 8px 22px rgba(0,0,0,.16);
}

.service-jump-links {
  display: flex;
  gap: .55rem;
  padding: .85rem 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.service-jump-links a {
  flex: 0 0 auto;
  padding: .6rem .82rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #ffffff;
  font-size: .82rem;
  font-weight: 800;
  white-space: nowrap;
}

.service-jump-links a:hover,
.service-jump-links a:focus-visible {
  border-color: #00fff1;
  color: #00fff1;
}

@media (max-width: 980px) {
  .service-jump-nav {
    top: 84px;
  }

  .service-section,
  #project-form,
  [id] {
    scroll-margin-top: 126px;
  }
}
