:root {
  --ink: #0b1d2c;
  --muted: #566774;
  --teal: #007b79;
  --teal-dark: #00615f;
  --teal-soft: #dff2f1;
  --line: #dce7e8;
  --soft: #f4f8f8;
  --white: #fff;
  --shadow: 0 18px 55px rgba(11, 46, 54, .10);
  --radius: 18px;
  --shell: 1180px;
}

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

.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.section { padding: 82px 0; }
.section-soft { background: linear-gradient(135deg, #f6fafb, #eef6f6); }
.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;
}
.skip-link {
  position: fixed; left: 12px; top: -60px; z-index: 1000; padding: 10px 14px;
  color: #fff; background: var(--ink); border-radius: 6px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(220,231,232,.85);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--teal-dark); font-size: .9rem; font-weight: 800; letter-spacing: .055em; }
.brand img { width: 58px; height: 55px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 32px); font-size: .78rem; font-weight: 750; letter-spacing: .035em; text-transform: uppercase; }
.site-nav > a:not(.button) { position: relative; padding: 29px 0; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 21px; height: 2px; background: var(--teal); transition: right .2s ease; }
.site-nav > a:not(.button):hover::after, .site-nav > a:not(.button):focus-visible::after { right: 0; }
.menu-toggle { display: none; padding: 8px; border: 0; background: transparent; }
.menu-toggle > span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }

.button {
  display: inline-flex; min-height: 48px; align-items: center; justify-content: center;
  padding: 12px 24px; border: 1px solid var(--teal); border-radius: 6px;
  color: #fff; background: var(--teal); box-shadow: 0 9px 24px rgba(0,123,121,.18);
  font-size: .8rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover, .button:focus-visible { background: var(--teal-dark); box-shadow: 0 12px 30px rgba(0,123,121,.25); transform: translateY(-2px); }
.button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, .menu-toggle:focus-visible { outline: 3px solid rgba(0,123,121,.28); outline-offset: 3px; }
.button-small { min-height: 42px; padding: 10px 18px; font-size: .72rem; }
.button-outline { color: var(--teal-dark); background: transparent; box-shadow: none; }
.button-outline:hover, .button-outline:focus-visible { color: #fff; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 29px; }

.hero { position: relative; overflow: hidden; padding: 78px 0 62px; background: linear-gradient(120deg, #fff 0%, #fff 48%, #f3f8f8 100%); }
.hero::before { content: ""; position: absolute; width: 470px; height: 470px; right: -180px; top: -240px; border: 1px solid #d4e9e8; border-radius: 50%; box-shadow: 0 0 0 70px rgba(223,242,241,.25), 0 0 0 140px rgba(223,242,241,.13); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(390px, .78fr) minmax(520px, 1.22fr); align-items: center; gap: 34px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 13px; color: var(--teal-dark); font-size: .84rem; font-weight: 800; letter-spacing: .025em; }
.hero h1 { margin: 0; font-size: clamp(3.25rem, 5.4vw, 5.15rem); line-height: .99; letter-spacing: -.055em; }
.hero-lede { max-width: 580px; margin: 28px 0 0; color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.hero-visual { position: relative; margin-right: -50px; }
.hero-visual::after { content: ""; position: absolute; inset: auto 8% -15px 12%; height: 35px; border-radius: 50%; background: rgba(13,41,49,.16); filter: blur(20px); }
.hero-visual img { position: relative; z-index: 1; width: 100%; border-radius: 8px; mix-blend-mode: multiply; }

.stats { position: relative; z-index: 3; padding: 0 0 22px; }
.stat-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: -8px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.stat { position: relative; min-height: 160px; padding: 25px 15px 22px; text-align: center; }
.stat:not(:last-child)::after { content: ""; position: absolute; top: 26px; right: 0; bottom: 26px; width: 1px; background: var(--line); }
.stat-icon { display: block; height: 28px; color: var(--teal); font-size: 1.55rem; line-height: 1; }
.stat strong { display: block; color: var(--teal-dark); font-size: 2.05rem; line-height: 1.1; }
.stat b { display: block; margin-top: 6px; font-size: .71rem; letter-spacing: .04em; text-transform: uppercase; }
.stat small { display: block; margin-top: 7px; color: var(--muted); font-size: .7rem; }

.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2, .process-intro h2, .locations-intro h2, .contact-copy h2 { margin: 0; font-size: clamp(2rem, 3vw, 3.15rem); line-height: 1.08; letter-spacing: -.04em; }
.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 980px; margin-inline: auto; }
.capability { position: relative; min-height: 150px; padding: 15px 28px; text-align: center; }
.capability:not(:last-child)::after { content: ""; position: absolute; top: 28px; right: 0; bottom: 28px; width: 1px; background: var(--line); }
.capability > span { display: inline-grid; width: 50px; height: 50px; place-items: center; color: var(--teal); border: 1px solid #b8dcdb; border-radius: 14px; background: #f3fbfa; font-size: 1.65rem; }
.capability h3 { margin: 16px 0 0; font-size: .89rem; line-height: 1.45; }

.process-layout { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: center; }
.process-intro p:last-child { color: var(--muted); font-size: .95rem; }
.process-steps { display: grid; grid-template-columns: repeat(6, 1fr); padding: 0; margin: 0; list-style: none; counter-reset: steps; }
.process-steps li { position: relative; padding: 0 10px; text-align: center; }
.process-steps li::before { content: ""; position: absolute; top: 19px; left: 0; right: 0; height: 1px; background: #b7d7d6; }
.process-steps li:first-child::before { left: 50%; }
.process-steps li:last-child::before { right: 50%; }
.process-steps li > span { position: relative; z-index: 1; display: grid; width: 40px; height: 40px; margin: 0 auto 23px; place-items: center; color: var(--teal-dark); border-radius: 50%; background: #cce6e5; font-weight: 800; }
.process-steps b { display: block; margin-bottom: 8px; font-size: .76rem; letter-spacing: .04em; text-transform: uppercase; }
.process-steps small { display: block; color: var(--muted); font-size: .71rem; line-height: 1.5; }

.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.proof-card { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 10px 35px rgba(21,59,67,.07); transition: transform .22s ease, box-shadow .22s ease; }
.proof-card:hover { transform: translateY(-5px); box-shadow: 0 18px 42px rgba(21,59,67,.13); }
.proof-card img { width: 100%; height: 180px; object-fit: cover; }
.proof-card div { padding: 18px 19px 21px; }
.proof-card h3 { margin: 0 0 7px; color: var(--teal-dark); font-size: .83rem; letter-spacing: .025em; text-transform: uppercase; }
.proof-card p { margin: 0; color: var(--muted); font-size: .84rem; }

.locations { background: #f5f9f9; }
.locations-layout { display: grid; grid-template-columns: 260px 1fr; gap: 42px; align-items: stretch; }
.locations-intro p:last-child { color: var(--muted); }
.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.location-card { display: flex; overflow: hidden; min-height: 286px; flex-direction: column; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 10px 28px rgba(21,59,67,.06); transition: transform .22s ease, box-shadow .22s ease; }
.location-card:hover { transform: translateY(-4px); box-shadow: 0 17px 38px rgba(21,59,67,.12); }
.location-map { display: block; width: 100%; height: 210px; border: 0; border-bottom: 1px solid var(--line); background: #eaf2f2; filter: saturate(.78) contrast(.96); }
.location-details { display: flex; flex: 1; min-height: 86px; flex-direction: column; justify-content: center; padding: 17px 20px 19px; text-align: center; }
.location-card h3 { margin: 0; color: var(--teal-dark); font-size: .88rem; text-transform: uppercase; }
.location-card p { margin: 5px 0 0; color: var(--muted); font-size: .8rem; }

.contact-section { background: linear-gradient(145deg, #fff, #f0f8f7); }
.contact-layout { display: grid; grid-template-columns: 320px 1fr; gap: 48px; padding: 45px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); }
.contact-mark { display: grid; width: 58px; height: 58px; margin-bottom: 22px; place-items: center; color: var(--teal); border-radius: 50%; background: var(--teal-soft); font-size: 1.55rem; }
.contact-copy > p:not(.eyebrow) { color: var(--muted); }
.contact-promises { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; padding: 0; margin: 26px 0 0; list-style: none; }
.contact-promises li { position: relative; padding-left: 25px; }
.contact-promises li::before { content: "✓"; position: absolute; left: 0; top: 1px; display: grid; width: 17px; height: 17px; place-items: center; color: var(--teal); border: 1px solid var(--teal); border-radius: 50%; font-size: .65rem; font-weight: 900; }
.contact-promises b, .contact-promises span { display: block; }
.contact-promises b { font-size: .75rem; }
.contact-promises span { color: var(--muted); font-size: .67rem; }

.rfq-form { min-width: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-grid label { display: block; min-width: 0; }
.form-grid label > span:first-child { display: block; margin-bottom: 6px; color: #344b58; font-size: .74rem; font-weight: 700; }
.span-2 { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%; border: 1px solid #d3e0e2; border-radius: 6px; color: var(--ink); background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input, select { min-height: 47px; padding: 10px 12px; }
textarea { min-height: 125px; padding: 12px; resize: vertical; }
input:hover, select:hover, textarea:hover { border-color: #91bdba; }
input:focus, select:focus, textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,123,121,.09); }
.file-field { position: relative; padding: 12px 14px; border: 1px dashed #b3cecf; border-radius: 7px; background: #f8fbfb; }
.file-field input { min-height: 0; padding: 3px 0; border: 0; background: transparent; }
.file-field small { display: block; margin-top: 4px; color: var(--muted); font-size: .68rem; }
.consent { display: flex !important; align-items: flex-start; gap: 9px; padding-top: 3px; }
.consent input { width: 18px; min-height: 18px; margin: 2px 0 0; accent-color: var(--teal); }
.consent span { margin: 0 !important; color: var(--muted) !important; font-weight: 500 !important; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 17px; }
.form-security { margin: 0; color: var(--muted); font-size: .7rem; }
.submit-button { min-width: 190px; }
.submit-button[disabled] { opacity: .65; cursor: wait; transform: none; }
.form-status { display: none; margin-top: 14px; padding: 12px 14px; border-radius: 7px; font-size: .83rem; font-weight: 650; }
.form-status.is-visible { display: block; }
.form-status.success { color: #07594d; border: 1px solid #91d2c6; background: #e9faf6; }
.form-status.error { color: #832c2c; border: 1px solid #efb4b4; background: #fff1f1; }
.trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { padding: 52px 0 18px; color: #e7f4f3; background: linear-gradient(125deg, #006b69, #00504f); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr .8fr 1fr; gap: 45px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.footer-grid strong { margin-bottom: 5px; color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; }
.footer-grid a, .footer-grid span, .footer-grid p { margin: 0; color: #c6e2e0; font-size: .75rem; }
.footer-grid a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-brand { display: flex; gap: 16px; }
.footer-brand img { width: 62px; height: 59px; object-fit: contain; opacity: 1; }
.footer-brand strong { display: block; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 38px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.18); color: #b9d9d7; font-size: .68rem; }

@media (max-width: 1050px) {
  .site-nav { gap: 17px; }
  .hero-grid { grid-template-columns: .86fr 1.14fr; }
  .hero-visual { margin-right: -80px; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
  .capability:nth-child(2n)::after { display: none; }
  .process-layout { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-copy { max-width: 680px; }
}

@media (max-width: 840px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .header-inner { min-height: 70px; }
  .brand img { width: 50px; height: 48px; }
  .brand span { font-size: .76rem; }
  .menu-toggle { display: block; cursor: pointer; }
  .site-nav {
    position: absolute; top: calc(100% + 1px); left: 0; right: 0; display: none; align-items: stretch;
    padding: 14px 20px 22px; border-bottom: 1px solid var(--line); background: #fff; box-shadow: 0 20px 30px rgba(12,42,49,.10);
  }
  .site-nav.is-open { display: flex; flex-direction: column; }
  .site-nav > a:not(.button) { padding: 10px 5px; }
  .site-nav > a:not(.button)::after { display: none; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding: 54px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 660px; }
  .hero-visual { margin: 10px -50px 0 0; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:last-child { grid-column: 1 / -1; }
  .stat:nth-child(2)::after, .stat:nth-child(4)::after, .stat:last-child::after { display: none; }
  .stat { border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .process-steps { grid-template-columns: repeat(3, 1fr); row-gap: 38px; }
  .process-steps li:nth-child(3)::before, .process-steps li:nth-child(6)::before { right: 50%; }
  .process-steps li:nth-child(4)::before { left: 50%; }
  .locations-layout { grid-template-columns: 1fr; }
  .locations-intro { max-width: 620px; }
  .contact-layout { padding: 30px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 62px 0; }
  .hero h1 { font-size: clamp(2.75rem, 14vw, 4rem); }
  .hero-lede { font-size: .96rem; }
  .hero-visual { margin-right: -80px; min-width: 500px; transform: translateX(-38px); }
  .button-row .button { flex: 1; padding-inline: 12px; }
  .stat { min-height: 145px; }
  .stat strong { font-size: 1.8rem; }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .capability:nth-child(2n)::after { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps li:nth-child(3)::before { right: 0; }
  .process-steps li:nth-child(4)::before { left: 0; right: 50%; }
  .process-steps li:nth-child(2n)::before { right: 50%; }
  .process-steps li:nth-child(2n+1)::before { left: 50%; }
  .proof-grid, .location-grid, .form-grid, .contact-promises { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }
  .proof-card img { height: 190px; }
  .contact-layout { width: min(calc(100% - 18px), var(--shell)); padding: 25px 18px; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .submit-button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
