:root {
  --ink: #111317;
  --charcoal: #242833;
  --muted: #626a75;
  --line: #e7e9ee;
  --soft: #f6f7f9;
  --white: #ffffff;
  --accent: #0f766e;
  --accent-dark: #0b4f4a;
  --steel: #415166;
  --shadow: 0 24px 70px rgba(17, 19, 23, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 50;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(231, 233, 238, 0.82);
  backdrop-filter: blur(18px);
}
.nav-shell,
.footer-inner,
.section,
.trust-bar {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}
.nav-shell {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  letter-spacing: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--steel));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--charcoal);
  font-size: 0.94rem;
}
.nav-links a:hover { color: var(--accent-dark); }
.nav-cta {
  padding: 10px 16px;
  color: var(--white) !important;
  background: var(--ink);
  border-radius: 8px;
}
.nav-toggle { display: none; }

.hero {
  width: min(1260px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  align-items: start;
  gap: 32px;
  padding: 58px 0 66px;
}
.hero-copy { min-width: 0; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1,
h2,
h3,
p { margin-top: 0; }
h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}
.hero-subhead {
  max-width: 680px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
}
.hero-note {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--ink);
  font-size: 1.02rem;
}
.hero-proof {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--ink);
}
.hero-pain {
  max-width: 650px;
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 4px solid var(--accent);
  color: var(--ink);
  font-weight: 720;
}
.hero-proof strong,
.hero-proof span {
  display: block;
}
.hero-proof span {
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 760;
  cursor: pointer;
}
.button.primary {
  background: var(--ink);
  color: var(--white);
}
.button.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}
.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(17, 19, 23, 0.12);
}
.hero-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--soft);
}
.hero-media img {
  width: 100%;
  aspect-ratio: 1717 / 916;
  object-fit: cover;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}
.trust-bar span {
  padding: 18px 14px;
  background: var(--white);
  text-align: center;
  font-weight: 760;
  color: var(--charcoal);
}
.proof-strip {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.proof-strip div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}
.proof-strip strong,
.proof-strip span {
  display: block;
}
.proof-strip strong {
  margin-bottom: 7px;
  font-size: 1.02rem;
}
.proof-strip span {
  color: #c7ccd5;
  font-size: 0.9rem;
}
.device-strip {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(230px, 1.2fr) repeat(5, minmax(100px, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}
.device-strip span,
.device-strip strong {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 14px 16px;
  background: var(--white);
  text-align: center;
}
.device-strip span {
  justify-items: start;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.device-strip strong {
  color: var(--charcoal);
  font-size: 1.02rem;
}

.section { padding: 82px 0; }
.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-heading.split {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 44px;
  max-width: none;
  align-items: end;
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 1.03;
  letter-spacing: 0;
}
h3 {
  margin-bottom: 9px;
  font-size: 1.08rem;
  letter-spacing: 0;
}
.section-heading p,
article p,
.why-list span,
.process-list p,
.lead-copy p,
.site-footer p {
  color: var(--muted);
}

.problem-section,
.why-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1160px) / 2));
  padding-right: max(20px, calc((100vw - 1160px) / 2));
  background: var(--soft);
}
.expertise-section {
  padding-top: 54px;
}
.service-area,
.account-callout {
  margin-top: -10px;
  padding: 16px 18px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: var(--radius);
  background: rgba(15, 118, 110, 0.06);
  color: var(--accent-dark);
  font-weight: 760;
}
.problem-grid,
.service-grid,
.benefits-grid,
.industry-grid,
.why-list,
.process-list,
.sense-grid {
  display: grid;
  gap: 14px;
}
.problem-grid,
.service-grid,
.benefits-grid {
  grid-template-columns: repeat(3, 1fr);
}
.problem-grid article,
.service-grid article,
.benefits-grid article,
.industry-grid a,
.process-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.problem-grid article,
.service-grid article,
.benefits-grid article {
  min-height: 176px;
  padding: 24px;
}
.problem-grid article span {
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 24px;
  border-radius: 99px;
  background: var(--accent);
}
.service-grid article {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
}
.account-section {
  padding-top: 96px;
}
.benefits-grid article {
  min-height: 150px;
  background: var(--ink);
  color: var(--white);
}
.benefits-grid p {
  color: #c7ccd5;
}

.industries-section { padding-top: 96px; }
.industry-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.industry-grid a {
  min-height: 174px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-weight: 820;
  color: var(--ink);
}
.industry-grid a:hover {
  border-color: rgba(15, 118, 110, 0.5);
  box-shadow: 0 18px 40px rgba(17, 19, 23, 0.08);
  transform: translateY(-2px);
}
.industry-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 520;
}

.why-list {
  grid-template-columns: repeat(2, 1fr);
}
.why-list div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid #dfe2e8;
}
.why-list strong { font-size: 1.02rem; }

.sense-section {
  padding-top: 96px;
}
.sense-grid {
  grid-template-columns: repeat(4, 1fr);
}
.sense-grid div {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.sense-grid strong,
.sense-grid span {
  display: block;
}
.sense-grid strong {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.05rem;
}
.sense-grid span {
  color: var(--muted);
}

.process-list {
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  list-style: none;
}
.process-list li {
  padding: 22px;
}
.process-list span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 34px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

.local-support-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 44px;
  align-items: center;
  padding-top: 36px;
}
.local-support-media {
  width: 280px;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: 0 18px 42px rgba(17, 19, 23, 0.12);
}
.local-support-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 34%;
  transform: scale(1.16);
}
.local-support-copy h2 {
  max-width: 760px;
}
.local-support-copy p {
  max-width: 720px;
  color: var(--muted);
}
.contact-card-inline {
  max-width: 520px;
  background: var(--white);
}
.contact-card-inline strong {
  color: var(--ink);
}
.contact-card-inline span {
  color: var(--muted);
  font-weight: 720;
}

.lead-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 52px;
  align-items: start;
  padding-bottom: 96px;
}
.contact-card {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.contact-card a {
  color: var(--charcoal);
  font-weight: 720;
}
.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 760;
}
input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d8dce4;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}
textarea { resize: vertical; }
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 118, 110, 0.18);
  border-color: var(--accent);
}
.full { grid-column: 1 / -1; }
.form-note {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
}
.footer-inner nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  color: #d8dce4;
  font-size: 0.92rem;
}
.footer-inner p {
  max-width: 330px;
  margin-bottom: 0;
  color: #c7ccd5;
  font-size: 0.88rem;
}

.industry-hero {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0 62px;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 54px;
  align-items: end;
}
.industry-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.6rem);
}
.industry-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.industry-panel ul,
.detail-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.industry-panel li,
.detail-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--charcoal);
}
.industry-panel li:first-child,
.detail-list li:first-child { border-top: 0; }
.industry-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

@media (max-width: 1020px) {
  .hero,
  .lead-section,
  .local-support-section,
  .industry-hero,
  .industry-detail,
  .section-heading.split {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    max-height: none;
  }
  .hero-media { order: -1; }
  .problem-grid,
  .service-grid,
  .benefits-grid,
  .proof-strip,
  .sense-grid,
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .device-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .device-strip span {
    grid-column: 1 / -1;
    justify-items: center;
  }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner nav { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .nav-shell,
  .footer-inner,
  .section,
  .trust-bar,
  .hero,
  .industry-hero {
    width: min(100% - 28px, 1160px);
  }
  .nav-toggle {
    display: inline-grid;
    gap: 4px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
  }
  .nav-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: var(--ink);
  }
  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a {
    padding: 13px;
    border-radius: 8px;
  }
  .hero { padding-top: 26px; }
  .local-support-section {
    padding-top: 24px;
  }
  .local-support-media {
    width: min(240px, 72vw);
  }
  .hero-actions,
  .button { width: 100%; }
  .trust-bar,
  .proof-strip,
  .device-strip,
  .problem-grid,
  .service-grid,
  .benefits-grid,
  .industry-grid,
  .why-list,
  .sense-grid,
  .process-list,
  .lead-form {
    grid-template-columns: 1fr;
  }
  .device-strip span {
    grid-column: auto;
  }
  .proof-strip {
    width: min(100% - 28px, 1160px);
    margin-top: 0;
  }
  .why-list div { grid-template-columns: 1fr; gap: 6px; }
  .section { padding: 62px 0; }
  .problem-section,
  .why-section {
    padding-left: 14px;
    padding-right: 14px;
  }
}
