/* Climate Bridge: original palette, typography, dimensions and responsive layouts.
   Self-hosted original Open Sans variable fonts. See THIRD-PARTY-NOTICES.txt. */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("assets/fonts/open-sans-latin-ext-variable.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("assets/fonts/open-sans-latin-variable.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

:root {
  --blue: #00558c;
  --navy: #0b1d3a;
  --blue-hover: #014a79;
  --blue-active: #013a61;
  --blue-light: #8fbcd8;
  --blue-100: #d7e7f2;
  --blue-50: #eef5fa;
  --surface: #f2f4f7;
  --white: #fff;
  --text-secondary: #5a6675;
  --border: #d7dde3;
  --divider: #e4e8ed;
  --success: #1f8a5b;
  --success-bg: #e7f3ec;
  --danger: #c0392b;
  --danger-bg: #fbeae8;
  --font:
    "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 1px 2px rgb(11 29 58 / 5%), 0 6px 18px rgb(11 29 58 / 7%);
  --shadow-hover:
    0 4px 10px rgb(11 29 58 / 8%), 0 12px 28px rgb(11 29 58 / 10%);
  --ease: cubic-bezier(0.2, 0, 0, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font: 400 16px/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* Hidden product cards and form states must also override grid/flex display. */
[hidden] {
  display: none !important;
}
section[id],
main[id],
article[id] {
  scroll-margin-top: 96px;
}
h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
dd {
  margin: 0;
}
a {
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
address {
  font-style: normal;
}
ul,
ol {
  list-style: none;
  padding: 0;
}
.container {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 32px;
}
.section-pad {
  padding-block: 88px;
}
.section-intro {
  max-width: 640px;
}
.eyebrow {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
h2 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.section-lead {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  flex: none;
  vertical-align: middle;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
/* Opaque blue/white focus rings remain visible on both light and dark sections. */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  box-shadow: 0 0 0 3px var(--white);
}
.site-footer a:focus-visible {
  outline-color: var(--white);
  box-shadow: none;
}

/* Header: the same navigation is used for desktop, mobile and no-JS access. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--divider);
}
.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  flex: none;
}
.header-logo {
  width: auto;
  height: 45px;
}
.primary-navigation {
  margin-left: 8px;
}
.primary-navigation ul {
  display: flex;
  gap: 26px;
}
.primary-navigation ul a {
  display: block;
  padding-block: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  white-space: nowrap;
}
.primary-navigation ul a:hover {
  color: var(--blue);
}
.header-cta {
  flex: none;
  margin-left: auto;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--navy);
  padding: 10px;
  border-radius: 8px;
}
.menu-toggle .icon {
  width: 26px;
  height: 26px;
}
.menu-close-icon,
.menu-toggle[aria-expanded="true"] .menu-open-icon {
  display: none;
}
.menu-toggle[aria-expanded="true"] .menu-close-icon {
  display: inline-block;
}

/* Controls and cards retain their original sizes and quiet hover effects. */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 20px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  font: 600 15px/1 var(--font);
  letter-spacing: 0.005em;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 180ms var(--ease),
    border-color 180ms var(--ease),
    color 180ms var(--ease);
}
.button-primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}
.button-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
}
.button-primary:active {
  background: var(--blue-active);
  border-color: var(--blue-active);
}
.button-secondary {
  background: var(--white);
  color: var(--blue);
  border-color: var(--blue);
}
.button-secondary:hover,
.button-ghost:hover {
  background: var(--blue-50);
}
.button-secondary:active,
.button-ghost:active {
  background: var(--blue-100);
}
.button-ghost {
  background: transparent;
  color: var(--blue);
  padding-inline: 0;
}
.button-sm {
  min-height: 34px;
  padding-inline: 14px;
  font-size: 13px;
}
.button-lg {
  min-height: 50px;
  padding-inline: 28px;
  font-size: 16px;
}
.button-full {
  width: 100%;
}
.button:disabled {
  opacity: 0.6;
  cursor: wait;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.product-card,
.team-card {
  transition:
    box-shadow 180ms var(--ease),
    transform 180ms var(--ease);
}
@media (hover: hover) {
  .product-card:hover,
  .team-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
  }
}
.card:focus-within {
  box-shadow: var(--shadow-hover);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  white-space: nowrap;
}
.badge-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.badge-soft {
  background: var(--blue-50);
  color: var(--blue);
  border-color: var(--blue-100);
}

/* Hero. The map deliberately overlaps within a clipped section, as supplied. */
.hero {
  border-bottom: 1px solid var(--divider);
  overflow-x: clip;
}
.hero-inner {
  padding-top: 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.35fr);
  gap: 40px;
  align-items: center;
}
.hero-text {
  position: relative;
  z-index: 1;
  padding: 28px 32px 28px 0;
  background: radial-gradient(
    ellipse at 40% 50%,
    rgb(255 255 255 / 92%) 55%,
    rgb(255 255 255 / 65%) 78%,
    rgb(255 255 255 / 0%) 100%
  );
  border-radius: 24px;
}
.hero .eyebrow {
  margin-bottom: 18px;
}
h1 {
  font-size: clamp(33px, 5.2vw, 48px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero-lead {
  margin-top: 22px;
  max-width: 480px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero-map {
  align-self: center;
}
.hero-map img {
  width: 135%;
  max-width: none;
  height: auto;
  margin-left: -18.5%;
  margin-right: -16.5%;
}
.hero-spacer {
  height: 150px;
}

/* Capability strip. */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--divider);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  padding-block: 32px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.trust-item > .icon {
  color: var(--blue);
  width: 26px;
  height: 26px;
  margin-top: 1px;
}
.trust-item h3 {
  font-size: 15px;
  font-weight: 700;
}
.trust-item p {
  margin-top: 3px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-secondary);
}

/* Product content always lives in HTML; filters only toggle visibility. */
.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
}
.filter-button {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  font: 600 13px var(--font);
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  transition:
    background 120ms var(--ease),
    color 120ms var(--ease);
}
.filter-button:hover {
  background: var(--blue-50);
}
.filter-button[aria-pressed="true"] {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 24px;
  margin-top: 32px;
}
.product-filters:not([hidden]) ~ .product-grid {
  margin-top: 0;
}
.product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--blue);
}
.product-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-coming-soon .product-content {
  filter: blur(4px);
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}
.product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  padding: 8px 12px 4px;
}
.product-image img {
  width: auto;
  height: auto;
  max-height: 172px;
  max-width: 100%;
  object-fit: contain;
}
.product-details {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 20px 22px;
}
.product-details .badge {
  align-self: flex-start;
  margin-bottom: 10px;
}
.product-details h3 {
  font-size: 18px;
  font-weight: 700;
}
.product-blurb {
  margin: 6px 0 14px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}
.product-specs {
  margin-top: auto;
}
.spec-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-block: 10px;
  border-bottom: 1px solid var(--divider);
  font-size: 14px;
}
.spec-row:last-child {
  border-bottom: 0;
}
.spec-row dt {
  flex: 1;
  color: var(--text-secondary);
}
.spec-row dd {
  font-weight: 600;
  text-align: right;
  overflow-wrap: anywhere;
}
.product-action {
  margin-top: 16px;
}
.product-action .button {
  padding-inline: 0;
}
.unavailable-action {
  cursor: default;
}
.coming-soon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 14px 8px;
  background: rgb(0 85 140 / 92%);
  color: var(--white);
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 6px 22px rgb(11 29 58 / 35%);
  pointer-events: none;
}

/* Process and partnership. */
.process-section,
.site-footer {
  background: var(--navy);
  color: var(--white);
}
.process-section .eyebrow {
  color: var(--blue-light);
}
.process-section .section-lead {
  color: rgb(255 255 255 / 72%);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.process-card {
  padding: 24px 22px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 4%);
}
.process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  background: rgb(143 188 216 / 16%);
  color: var(--blue-light);
}
.process-icon .icon {
  width: 34px;
  height: 34px;
}
.process-card h3 {
  font-size: 17px;
  font-weight: 700;
}
.process-card p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.55;
  color: rgb(255 255 255 / 66%);
}
.partners-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.partners-photo {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.partners-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.partners-grid h2 {
  font-size: 32px;
}
.partners-grid .section-lead {
  margin-bottom: 22px;
}
.partner-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}
.partner-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.partner-benefits .icon {
  width: 20px;
  height: 20px;
  color: var(--success);
}
.certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}
.certifications .icon {
  width: 13px;
  height: 13px;
}

/* Team portraits preserve the source crops. */
.team-section {
  background: var(--blue-50);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 24px;
  margin-top: 40px;
}
.team-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.team-photo {
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(150deg, var(--blue-100), var(--blue-50));
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-photo .teun-brand {
  object-position: center 0%;
}
.team-photo .christiaan-huisman {
  object-position: center 12%;
}
.team-photo .fee-yan {
  object-position: center 26%;
}
.team-photo .jason-xie {
  object-position: center 14%;
}
.team-details {
  padding: 18px 20px 22px;
}
.team-details h3 {
  font-size: 18px;
  font-weight: 700;
}
.team-details p {
  margin: 4px 0 12px;
  font-size: 14px;
  color: var(--text-secondary);
}
.icon-link,
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  color: var(--blue);
  text-decoration: none;
}
.icon-link .icon {
  width: 18px;
  height: 18px;
}
.icon-link:hover {
  background: var(--blue-100);
}

/* Contact and progressively enhanced native form. */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}
.contact-grid .section-lead {
  margin-bottom: 30px;
}
.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  margin-bottom: 36px;
}
.contact-methods li {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}
.contact-methods a {
  font-size: 15px;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.contact-methods a:hover {
  text-decoration: underline;
}
.contact-icon .icon {
  width: 19px;
  height: 19px;
}
.offices {
  padding-top: 28px;
  border-top: 1px solid var(--divider);
}
.offices h3 {
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.office-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.office {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.office h4 {
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.office address {
  font-size: 15px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.office address span {
  color: var(--text-secondary);
}
.contact-card {
  min-width: 0;
  padding: 32px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.form-field label {
  font-size: 13px;
  font-weight: 600;
}
.required-mark {
  color: var(--danger);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  padding: 0 14px;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--text-secondary);
  border-radius: var(--radius-sm);
  font-size: 15px;
  transition:
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease);
}
.form-field input,
.form-field select {
  height: 42px;
}
.form-field textarea {
  padding: 12px 14px;
  resize: vertical;
  min-height: 120px;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-secondary);
  opacity: 1;
}
.form-field :is(input, select, textarea):focus {
  border-color: var(--blue);
}
.form-row {
  margin-bottom: 16px;
}
.select-wrap {
  position: relative;
}
.select-wrap select {
  padding-right: 38px;
  appearance: none;
  cursor: pointer;
}
.select-wrap > .icon {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-secondary);
}
.checkbox-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 15px;
}
.checkbox-label input {
  position: absolute;
  width: 20px;
  height: 20px;
  margin: 0;
  opacity: 0;
}
.checkbox-visual {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: none;
  border: 1.5px solid var(--text-secondary);
  border-radius: 3px;
  background: var(--white);
}
.checkbox-visual .icon {
  width: 13px;
  height: 13px;
  stroke-width: 3.5;
  opacity: 0;
  color: var(--white);
}
.checkbox-label input:checked + .checkbox-visual {
  background: var(--blue);
  border-color: var(--blue);
}
.checkbox-label input:checked + .checkbox-visual .icon {
  opacity: 1;
}
.checkbox-label input:focus-visible + .checkbox-visual {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
.form-error {
  margin-bottom: 16px;
  padding: 11px 13px;
  border-radius: var(--radius-sm);
  background: var(--danger-bg);
  color: var(--danger);
  font-size: 14px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.form-success {
  padding: 40px 20px;
  text-align: center;
}
.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--success-bg);
  color: var(--success);
}
.success-icon .icon {
  width: 30px;
  height: 30px;
}
.form-success h3 {
  margin-bottom: 8px;
  font-size: 22px;
}
.form-success p {
  margin-bottom: 22px;
  color: var(--text-secondary);
}

/* Footer. */
.footer-inner {
  padding-block: 56px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(2, minmax(0, 1fr));
  gap: 56px;
}
.footer-logo {
  width: auto;
  height: 56px;
  margin-bottom: 16px;
}
.footer-brand p {
  max-width: 280px;
  font-size: 14px;
  line-height: 1.6;
  color: rgb(255 255 255 / 66%);
}
.site-footer h2 {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-light);
}
.site-footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer a {
  display: inline-block;
  font-size: 14px;
  color: rgb(255 255 255 / 78%);
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  font-size: 13px;
  color: rgb(255 255 255 / 64%);
}

/* Responsive fixes keep the supplied breakpoints, while allowing narrow content to shrink. */
@media (max-width: 1100px) {
  .header-inner {
    gap: 20px;
  }
  .primary-navigation {
    margin-left: 0;
  }
  .primary-navigation ul {
    gap: 18px;
  }
  .contact-methods {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .trust-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .hero-text {
    padding: 0;
    background: none;
  }
  .hero-map {
    max-width: 560px;
    width: 100%;
    margin-inline: auto;
  }
  .hero-map img {
    width: 100%;
    margin: 0;
  }
  .hero-spacer {
    height: 56px;
  }
  .partners-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }
  .contact-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .site-header {
    position: static;
  }
  .header-inner {
    min-height: 72px;
    height: auto;
    flex-wrap: wrap;
    padding-block: 13px;
    gap: 16px;
  }
  .primary-navigation {
    order: 4;
    width: 100%;
  }
  .primary-navigation ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .primary-navigation ul a {
    padding: 13px 2px;
    font-size: 16px;
    color: var(--navy);
    border-bottom: 1px solid var(--divider);
  }
  .navigation-enhanced {
    position: sticky;
  }
  .navigation-enhanced .primary-navigation {
    display: none;
    padding-block: 8px 7px;
    border-top: 1px solid var(--divider);
    max-height: 70vh;
    overflow-y: auto;
  }
  .navigation-enhanced .primary-navigation.is-open {
    display: block;
  }
  .navigation-enhanced .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: -10px -6px -10px 0;
  }
}
@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 720px) {
  .container {
    padding-inline: 20px;
  }
  .section-pad {
    padding-block: 56px;
  }
  .hero-inner {
    padding-top: 40px;
  }
  .trust-grid {
    padding-block: 28px;
  }
  .footer-inner {
    padding-block: 44px 24px;
  }
}
@media (max-width: 620px) {
  .trust-grid,
  .process-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 560px) {
  .form-grid,
  .office-grid,
  .contact-methods {
    grid-template-columns: minmax(0, 1fr);
  }
  /* 16px prevents input-triggered zoom in mobile Safari. */
  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .header-cta {
    display: none;
  }
  .navigation-enhanced .menu-toggle {
    margin-left: auto;
  }
  .brand {
    max-width: calc(100% - 60px);
  }
  .header-logo {
    width: 211px;
    height: auto;
  }
  .contact-card {
    padding: 24px 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .product-card:hover,
  .team-card:hover {
    transform: none;
  }
}
@media (forced-colors: active) {
  .checkbox-visual {
    forced-color-adjust: none;
    border-color: ButtonText;
    background: Canvas;
  }
  .checkbox-label input:checked + .checkbox-visual {
    background: Highlight;
    border-color: Highlight;
  }
  .checkbox-visual .icon {
    color: HighlightText;
  }
  .filter-button[aria-pressed="true"] {
    outline: 2px solid Highlight;
    outline-offset: -4px;
  }
}

/* Retain the original full-width call to action inside the mobile menu. */
.mobile-nav-cta {
  display: none;
}
@media (max-width: 900px) {
  .mobile-nav-cta {
    display: flex;
    margin-top: 16px;
  }
}
