:root {
  --ink: #0f1720;
  --muted: #506173;
  --paper: #ffffff;
  --soft: #f3f9fd;
  --soft-blue: #dff5ff;
  --blue-50: #edfaff;
  --blue-100: #c7effc;
  --blue-400: #36b8e6;
  --blue-600: #098bc5;
  --blue-700: #0574ad;
  --blue-900: #063f68;
  --line: #d8e9f1;
  --shadow: 0 18px 50px rgba(7, 66, 102, 0.14);
  --radius: 8px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 110%;
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.wrap {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
  min-width: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 233, 241, 0.86);
  backdrop-filter: blur(18px);
  transition: transform 240ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(10, 78, 119, 0.12);
}

.site-header.is-hidden {
  transform: translateY(-100%);
  box-shadow: none;
}

.contact-strip {
  background: var(--blue-900);
  color: #e7f8ff;
  font-size: 0.72rem;
}

.contact-strip__inner {
  min-height: 27px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.contact-strip a {
  text-decoration: none;
}

.contact-strip a:hover,
.contact-strip a:focus {
  color: #fff;
}

.nav-shell {
  min-height: 57px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 126px;
  text-decoration: none;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand img {
  width: 126px;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.primary-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  width: max-content;
  margin-left: auto;
}

.primary-nav a,
.header-cta,
.button,
.product-card__body a {
  text-decoration: none;
}

.primary-nav a {
  color: #264152;
  font-weight: 700;
  font-size: 0.82rem;
}

.primary-nav a:hover,
.primary-nav a:focus {
  color: var(--blue-700);
}

.header-cta {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue-600);
  color: #fff;
  padding: 0 14px;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(9, 139, 197, 0.24);
}

.header-cta:hover,
.header-cta:focus,
.button--primary:hover,
.button--primary:focus {
  background: var(--blue-700);
}

.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(96px, 13svh, 116px) 0 clamp(18px, 3svh, 30px);
  color: #fff;
  background: var(--blue-900);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  opacity: 0.9;
  transform: scale(1.02);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fff;
  filter: saturate(0.95);
}

.hero__image--wide {
  grid-row: 1 / 3;
}

.hero__wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 63, 104, 0.96) 0%, rgba(6, 63, 104, 0.88) 34%, rgba(6, 63, 104, 0.46) 65%, rgba(6, 63, 104, 0.18) 100%),
    rgba(4, 26, 39, 0.18);
}

.hero__content {
  width: min(calc(100% - 32px), 760px);
  max-width: min(760px, calc(100vw - 32px));
  margin-left: max(16px, calc((100vw - var(--max)) / 2));
  margin-right: auto;
  align-self: center;
  text-align: left;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--blue-100);
}

.hero .eyebrow {
  color: var(--blue-100);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 10px;
  font-size: clamp(2.1rem, 3.8vw, 3.25rem);
  line-height: 1.02;
}

h2 {
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.06;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.hero__lead {
  margin-bottom: 8px;
  max-width: 720px;
  color: #f1fbff;
  font-size: clamp(1.08rem, 1.75vw, 1.42rem);
  font-weight: 800;
  line-height: 1.18;
}

.hero__copy {
  max-width: 680px;
  color: #e5f6fc;
  font-size: 0.96rem;
}

.hero__note {
  max-width: 650px;
  margin: 10px 0 0;
  color: #cfeaf5;
  font-size: 0.86rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 16px;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
}

.button--primary {
  background: var(--blue-600);
  color: #fff;
  box-shadow: 0 14px 34px rgba(9, 139, 197, 0.28);
}

.button--light {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue-900);
}

.button--ghost {
  border-color: var(--line);
  background: #fff;
  color: var(--blue-900);
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 16px;
}

.hero__proof div {
  min-height: 76px;
  padding: 12px;
  border: 1px solid rgba(199, 239, 252, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(10px);
}

.hero__proof strong {
  display: block;
  color: #fff;
  font-size: 1.24rem;
  line-height: 1.1;
}

.hero__proof span {
  display: block;
  margin-top: 4px;
  color: #d7eff8;
  font-size: 0.8rem;
}

.section {
  min-height: auto;
  display: grid;
  align-items: center;
  padding: clamp(68px, 9svh, 100px) 0;
  overflow-x: clip;
}

section[id] {
  scroll-margin-top: 112px;
}

.section--intro {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.intro-grid,
.built-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.about-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
  align-items: stretch;
}

.intro-grid p:last-child,
.section-heading p:not(.eyebrow),
.built-copy p,
.contact-copy {
  color: var(--muted);
  font-size: 0.96rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading--row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-heading--row > div {
  min-width: 0;
}

#products .section-heading--row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(288px, 360px);
  align-items: end;
}

#products .section-heading--row > div:first-child {
  max-width: 920px;
}

#products .filter-group {
  justify-self: end;
}

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

.solution-card,
.seo-card,
.about-card,
.credential-panel,
.contact-form,
.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 42px rgba(7, 66, 102, 0.08);
}

.solution-card {
  min-height: 188px;
  padding: 18px;
}

.section--seo {
  background: #fff;
  border-top: 1px solid var(--line);
}

.seo-card {
  min-height: 162px;
  padding: 18px;
  box-shadow: none;
}

.solution-card__mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 14px;
  color: var(--blue-900);
  background: var(--blue-100);
  font-weight: 900;
}

.solution-card p,
.seo-card p,
.product-card p,
.about-card p,
.credential-panel li,
.process-list span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.42;
}

.leadership-profile {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 0.52fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 42px rgba(7, 66, 102, 0.08);
}

.leadership-photo {
  min-height: 100%;
  overflow: hidden;
  background: var(--blue-50);
}

.leadership-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
}

.leadership-profile .about-card {
  display: grid;
  align-content: center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.section-cta {
  margin-top: 20px;
}

.section--blue {
  background: var(--blue-900);
  color: #fff;
}

.section--blue h2,
.section--blue p {
  color: #fff;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.benefit-list span {
  border: 1px solid rgba(199, 239, 252, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #effbff;
  padding: 7px 11px;
  font-weight: 800;
  font-size: 0.82rem;
}

.filter-group {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(96px, 1fr));
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  padding: 6px;
  width: min(100%, 360px);
  max-width: 100%;
}

.filter-button {
  min-height: 36px;
  min-width: 0;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--blue-900);
  padding: 0 12px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.filter-button.is-active {
  border-color: var(--blue-600);
  background: var(--blue-600);
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 100%;
  min-width: 0;
}

.product-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.product-card.is-hidden {
  display: none;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card__media {
  height: 190px;
  background: var(--blue-50);
  border-bottom: 1px solid var(--line);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

.product-card__body {
  padding: 22px;
}

.product-card__body span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card__body a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue-700);
  font-size: 0.92rem;
  font-weight: 900;
}

.product-card p {
  margin-bottom: 0;
}

.section--process {
  background: linear-gradient(180deg, var(--soft) 0%, #fff 100%);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  min-height: 164px;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: var(--radius);
  background: #fff;
  padding: 64px 18px 18px;
  box-shadow: 0 14px 42px rgba(7, 66, 102, 0.08);
  counter-increment: process;
}

.process-list li::before {
  content: "0" counter(process);
  position: absolute;
  left: 0;
  top: 0;
  width: 82px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius) 0 0 0;
  background: var(--blue-600);
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1;
}

.process-list li:last-child::before {
  width: 70px;
  border-radius: var(--radius) 0 var(--radius) 0;
  clip-path: none;
}

.process-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.about-card,
.credential-panel {
  padding: 24px;
}

.credential-panel h3 {
  margin-bottom: 10px;
}

.credential-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.section--contact {
  background: var(--soft);
}

.contact-grid {
  align-items: stretch;
}

.contact-info-panel {
  display: grid;
  align-content: start;
}

.contact-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 18px;
}

.contact-quick-links a {
  text-decoration: none;
}

.location-panel {
  overflow: hidden;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 42px rgba(7, 66, 102, 0.06);
}

.contact-details {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 18px;
  font-style: normal;
  color: var(--muted);
}

.contact-details a,
.contact-quick-links a {
  color: var(--blue-700);
  font-weight: 900;
  text-decoration: none;
}

.contact-form {
  position: relative;
  align-self: start;
  display: grid;
  gap: 9px;
  border-top: 4px solid var(--blue-600);
  padding: 24px;
  box-shadow: 0 22px 60px rgba(7, 66, 102, 0.13);
}

.contact-form label {
  font-weight: 900;
  font-size: 0.88rem;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #c7dce8;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 8px 10px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 76px;
  max-height: 118px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.filter-button:focus,
.button:focus,
.menu-toggle:focus,
.header-cta:focus,
.primary-nav a:focus,
.product-card__body a:focus {
  outline: 3px solid rgba(54, 184, 230, 0.34);
  outline-offset: 3px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue-700);
  font-weight: 800;
}

.map-wrap {
  margin: 0;
}

.map-wrap iframe {
  width: 100%;
  height: 280px;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
}

.site-footer {
  background: #071a28;
  color: #dceef6;
  padding: 38px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.footer-brand {
  display: block;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
}

.site-footer p {
  margin: 10px 0 0;
  color: #b9d9e8;
}

.site-footer nav,
.footer-contact {
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: #dceef6;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #fff;
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(199, 239, 252, 0.2);
  color: #a7c8d9;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 460ms ease, transform 460ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 821px) {
  .nav-shell {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
  }

  .brand {
    transform: translateX(-12px);
  }

  .primary-nav {
    justify-self: end;
    width: max-content;
    margin-left: auto;
    justify-content: flex-end;
  }

  .header-cta {
    transform: translateX(12px);
  }
}

@media (min-width: 821px) and (max-height: 760px) {
  .hero {
    padding: 86px 0 14px;
  }

  h1 {
    max-width: 720px;
    font-size: clamp(2rem, 3.3vw, 2.8rem);
  }

  h2 {
    font-size: clamp(1.42rem, 2.3vw, 2.05rem);
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 14px;
  }

  #products {
    padding: 46px 0;
  }

  #products .section-heading {
    margin-bottom: 10px;
  }

  #products .section-heading p {
    display: block;
    overflow: visible;
  }

  .hero__lead {
    max-width: 650px;
    font-size: clamp(1rem, 1.55vw, 1.26rem);
  }

  .hero__copy {
    max-width: 620px;
    font-size: 0.88rem;
  }

  .hero__note {
    display: none;
  }

  .hero__proof {
    display: none;
  }

  .solution-card {
    min-height: 156px;
    padding: 14px;
  }

  .seo-card {
    min-height: 136px;
    padding: 14px;
  }

  .product-card__media {
    height: 170px;
  }

  .product-card__body {
    padding: 18px;
  }

  .process-list li {
    min-height: 138px;
    padding: 58px 14px 14px;
  }

  .about-card,
  .credential-panel,
  .contact-form {
    padding: 18px;
  }

  .map-wrap iframe {
    height: 220px;
  }
}

@media (max-width: 1080px) {
  .solution-grid,
  .seo-grid,
  .process-list,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: 660px;
  }

  .product-card__media {
    height: 180px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 96px;
  }

  .contact-strip__inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 12px;
    min-height: 24px;
    padding-block: 4px;
  }

  .nav-shell {
    min-height: 54px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand,
  .brand img {
    width: 106px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    inset: 84px 16px auto;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav a {
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 96px 0 22px;
  }

  .hero__media {
    grid-template-columns: 1fr 1fr;
    opacity: 0.62;
  }

  .hero__image--wide {
    grid-row: auto;
  }

  .hero__wash {
    background: rgba(6, 63, 104, 0.84);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 8vw, 2.75rem);
  }

  .hero__content {
    width: min(calc(100% - 28px), 620px);
    max-width: min(calc(100vw - 28px), 620px);
    margin-left: 14px;
  }

  .hero__lead {
    font-size: clamp(1rem, 4.2vw, 1.28rem);
  }

  .hero__copy {
    font-size: 0.88rem;
  }

  .hero__note {
    font-size: 0.78rem;
  }

  .hero__proof,
  .intro-grid,
  .built-grid,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero__proof {
    display: none;
  }

  .intro-grid,
  .built-grid,
  .about-grid,
  .contact-grid {
    gap: 24px;
  }

  .leadership-profile {
    grid-template-columns: minmax(180px, 0.42fr) minmax(0, 0.58fr);
  }

  .leadership-photo img {
    min-height: 320px;
  }

  .section {
    min-height: auto;
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading--row {
    display: grid;
    align-items: start;
  }

  #products .section-heading--row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .filter-group {
    justify-self: start;
    width: 100%;
    border-radius: var(--radius);
  }

  .filter-button {
    padding-inline: 8px;
  }

  .solution-grid,
  .seo-grid,
  .process-list {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .solution-card,
  .seo-card,
  .process-list li {
    flex: 0 0 min(78vw, 320px);
    scroll-snap-align: start;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
    width: 100%;
  }

  .product-card {
    flex: none;
    scroll-snap-align: none;
  }

  .product-card__media {
    height: 176px;
  }

  .map-wrap iframe {
    height: 260px;
  }

  .location-panel {
    margin-top: 16px;
  }

  .contact-copy {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .contact-details {
    gap: 4px;
    padding: 14px;
    font-size: 0.86rem;
  }

  .contact-form {
    gap: 6px;
  }

  .contact-form label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    min-height: 34px;
    padding: 7px 9px;
  }

  .contact-form textarea {
    min-height: 62px;
    max-height: 72px;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(calc(100% - 24px), var(--max));
  }

  .contact-strip {
    font-size: 0.68rem;
  }

  .brand,
  .brand img {
    width: 92px;
  }

  .primary-nav {
    inset-inline: 12px;
  }

  .hero__actions,
  .form-actions {
    display: grid;
  }

  .hero {
    padding: 88px 0 20px;
  }

  h1 {
    font-size: clamp(1.75rem, 7.8vw, 2.35rem);
  }

  .hero__copy {
    line-height: 1.5;
  }

  .button {
    width: 100%;
  }

  .hero__proof,
  .solution-grid,
  .seo-grid,
  .process-list,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero__proof div {
    min-height: 0;
  }

  .product-card__media {
    height: 210px;
  }

  .product-card__body {
    padding: 20px;
  }

  .leadership-profile {
    grid-template-columns: 1fr;
  }

  .leadership-photo {
    aspect-ratio: 4 / 3;
  }

  .leadership-photo img {
    min-height: 0;
    object-position: center 12%;
  }

  .filter-group {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
  }

  .filter-button {
    min-width: 0;
    padding: 0 6px;
    font-size: 0.82rem;
  }

  .solution-card,
  .seo-card,
  .about-card,
  .credential-panel,
  .contact-form {
    padding: 14px;
  }

  #about {
    padding: 56px 0;
  }

  #about .about-grid {
    gap: 14px;
  }

  #about .about-card,
  #about .credential-panel {
    padding: 12px;
  }

  .solution-card,
  .seo-card,
  .process-list li {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
