@font-face {
  font-family: "Prototype";
  src: url("../fonts/prototype.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

:root {
  color-scheme: dark;
  --font-title: "Prototype", "Aptos", system-ui, sans-serif;
  --font-body: "Aptos", "Segoe UI Variable Text", "Segoe UI", Roboto, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --bg: #070b12;
  --bg-soft: #0d1420;
  --bg-muted: #121b2a;
  --surface: rgba(13, 20, 32, .78);
  --surface-solid: #101827;
  --surface-2: #151f31;
  --text: #f4f7fb;
  --text-muted: #aab6c8;
  --text-soft: #7f8da3;
  --border: rgba(255, 255, 255, .11);
  --border-strong: rgba(255, 255, 255, .18);
  --brand: #e21b2d;
  --brand-2: #1b66ff;
  --brand-text: #f44355;
  --link-text: #3b82ff;
  --warning: #f4b740;
  --warning-text: #f4b740;
  --success: #19c37d;
  --shadow: 0 22px 70px rgba(0, 0, 0, .35);
  --shadow-soft: 0 16px 45px rgba(0, 0, 0, .24);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --button-radius: 9px;
  --container: 1180px;
  --desktop-frame: 88vw;
  --header-height: clamp(60px, 8.8svh, 60px);
  /* Landing hero is the source of truth for public presentation heroes. */
  --hero-title-size: clamp(44px, 3.04vw, 64px);
  --hero-copy-offset: 6.4svh;
  --hero-text-on-media: #ffffff;
  --hero-muted-on-media: rgb(255 255 255 / 84%);
  --hero-soft-on-media: rgb(255 255 255 / 72%);
  --hero-separator-on-media: rgb(255 255 255 / 48%);

  /* Shared content typography: one hierarchy across public pages */
  --type-kicker: clamp(.625rem, .59375rem + .125vw, .6875rem);
  --type-section-title: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  --type-subsection-title: clamp(1.25rem, 1.125rem + .5vw, 1.5rem);
  --type-card-title: clamp(.90625rem, .87rem + .15vw, 1.0625rem);
  --type-section-lead: clamp(.875rem, .8125rem + .25vw, 1rem);
  --type-section-title-line: 1.08;
  --type-subsection-title-line: 1.12;
  --type-section-wrap: balance;
  --type-subsection-wrap: balance;
  --space-title-copy: clamp(10px, .8vw, 14px);
  --space-section-head: clamp(28px, 3vw, 40px);
}

@media (max-width: 720px) {
  :root {
    /* Mobile headings use the full line before wrapping instead of balancing into extra rows. */
    --hero-title-size: clamp(28px, 8.2vw, 36px);
    --type-section-wrap: wrap;
    --type-subsection-wrap: wrap;
  }
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f6f8fb;
  --bg-soft: #eef3f8;
  --bg-muted: #e9eff7;
  --surface: rgba(255, 255, 255, .82);
  --surface-solid: #ffffff;
  --surface-2: #f4f7fb;
  --text: #101827;
  --text-muted: #4f5f75;
  --text-soft: #5b6b80;
  --brand: #c81426;
  --brand-2: #1559d6;
  --brand-text: var(--brand);
  --link-text: var(--brand-2);
  --warning-text: #805400;
  --border: rgba(12, 24, 43, .11);
  --border-strong: rgba(12, 24, 43, .18);
  --shadow: 0 22px 70px rgba(16, 24, 39, .12);
  --shadow-soft: 0 16px 45px rgba(16, 24, 39, .10);
}

* { box-sizing: border-box; }

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    var(--bg-soft);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

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

button { cursor: pointer; }

::selection { background: color-mix(in oklab, var(--brand) 55%, transparent); color: #fff; }

.site-main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overflow-y: visible;
}

@supports not (overflow: clip) {
  html,
  body,
  .site-main {
    overflow-x: hidden;
  }
}


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

.section {
  padding: 96px 0;
  position: relative;
}

.section--tight { padding: 72px 0; }

.kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin: 0 auto 16px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: color-mix(in oklab, var(--text-muted) 78%, transparent);
  font-family: var(--font-title);
  font-size: var(--type-kicker);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: .32em;
  text-transform: uppercase;
  box-shadow: none;
}

.kicker::before { content: none; }

.section-title,
.typo-title,
h1,
h2,
h3 {
  font-family: var(--font-title);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 400;
  color: var(--text);
}

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

.lead {
  color: var(--text-muted);
  font-size: var(--type-section-lead);
  line-height: 1.68;
  white-space: normal;
}

.muted { color: var(--text-muted); }

.btn {
  --btn-bg: var(--surface-solid);
  --btn-text: var(--text);
  --btn-border: var(--border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--btn-border);
  border-radius: var(--button-radius);
  background: var(--btn-bg);
  color: var(--btn-text);
  font-weight: 800;
  letter-spacing: -.01em;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: color-mix(in oklab, var(--brand-2) 45%, var(--btn-border));
  box-shadow: 0 16px 30px rgba(0, 0, 0, .16);
}

.btn--solid {
  --btn-bg: var(--brand);
  --btn-text: #fff;
  --btn-border: rgba(255, 255, 255, .12);
}

.btn--blue {
  --btn-bg: var(--brand-2);
  --btn-text: #fff;
  --btn-border: rgba(255, 255, 255, .12);
}

.btn--ghost {
  --btn-bg: color-mix(in oklab, var(--surface-solid) 74%, transparent);
}

.grid {
  display: grid;
  gap: 24px;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: color-mix(in oklab, var(--surface-solid) 94%, transparent);
  box-shadow: var(--shadow-soft);
}

.cv-auto {
  content-visibility: auto;
  contain-intrinsic-size: auto 360px;
  background: color-mix(in oklab, var(--bg-soft) 95%, transparent);
}

.section-head {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto var(--space-section-head);
}

.section-head > div {
  max-width: 820px;
  margin-inline: auto;
}

.section-head .lead {
  max-width: 760px;
  margin: 0 auto;
}

.section-title {
  margin: 0 auto var(--space-title-copy);
  font-size: var(--type-section-title);
  line-height: var(--type-section-title-line);
  text-wrap: var(--type-section-wrap);
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

/* Field problems: second landing section after company overview */
.section--field-problems {
  padding: 84px 0 92px;
  background: var(--surface-solid);
}

.section--field-problems .container {
  width: min(100% - 48px, 1280px);
}

.section--field-problems .section-head {
  max-width: 1180px;
  margin: 0 auto 42px;
  gap: 12px;
}

.section--field-problems .section-head > div {
  max-width: 1180px;
}

.section--field-problems .kicker {
  margin-bottom: 14px;
}

.section--field-problems .section-title {
  max-width: none;
  margin-bottom: var(--space-title-copy);
  font-size: var(--type-section-title);
  line-height: var(--type-section-title-line);
  white-space: normal;
  text-wrap: var(--type-section-wrap);
}

.section--field-problems .lead {
  max-width: 890px;
  font-size: var(--type-section-lead);
  line-height: 1.52;
}

.field-problems-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.field-problem-card {
  position: relative;
  display: grid;
  grid-template-rows: 154px 1fr;
  overflow: hidden;
  min-height: 398px;
  border-radius: 18px;
  background: var(--surface-solid);
  border-color: color-mix(in oklab, var(--border) 82%, transparent);
  box-shadow: 0 12px 34px rgba(16, 24, 39, .12);
  backdrop-filter: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.field-problem-card__media {
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: color-mix(in oklab, var(--bg-soft) 95%, transparent);
}

.field-problem-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.98) contrast(1.02);
  transition: transform .45s ease, filter .22s ease;
}

.field-problem-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 22px 26px;
}

.field-problem-card h3 {
  margin: 0 0 18px;
  min-height: 44px;
  font-size: var(--type-card-title);
  line-height: 1.12;
  letter-spacing: -.028em;
  color: var(--text);
}

.field-problem-card--danger h3 {
  color: var(--brand-text);
}

.field-problem-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.52;
}

.field-problem-card .link-arrow {
  align-self: center;
  margin-top: auto;
  padding-top: 30px;
  color: var(--text);
  font-size: 15px;
  font-weight: 850;
}

.field-problem-card .link-arrow::after {
  content: "↓";
}

.field-problem-card .link-arrow:hover::after {
  transform: translateY(4px);
}

.field-problem-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklab, var(--brand) 24%, var(--border));
  box-shadow: 0 18px 42px rgba(16, 24, 39, .16);
}

.field-problem-card:hover .field-problem-card__media img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.04);
}

@media (max-width: 1200px) {
  .section--field-problems .section-title {
    max-width: 900px;
    white-space: normal;
    text-wrap: var(--type-section-wrap);
  }

  .field-problems-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .section--field-problems {
    padding: 72px 0 78px;
  }

  .section--field-problems .container {
    width: min(100% - 32px, 1280px);
  }

  .section--field-problems .section-head {
    margin-bottom: 32px;
  }

  .section--field-problems .section-title {
    font-size: var(--type-section-title);
  }

  .field-problems-grid {
    grid-template-columns: 1fr;
  }

  .field-problem-card {
    grid-template-rows: 180px 1fr;
    min-height: 430px;
  }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-text);
  font-weight: 850;
}

.link-arrow::after {
  content: "→";
  transition: transform .2s ease;
}

.link-arrow:hover::after { transform: translateX(4px); }


/* Services: compact assurance list and installation gallery */
.section--services {
  padding: 88px 0 96px;
  background:
    transparent;
}

.section--services .container {
  width: min(100% - 48px, 1280px);
}

.services-head {
  max-width: 1040px;
  margin-bottom: 38px;
}

.services-head > div {
  max-width: 1000px;
}

.services-head .section-title {
  max-width: 820px;
}

.services-head .lead {
  max-width: 900px;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  gap: 28px;
  align-items: stretch;
}

.service-assurance {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: clamp(30px, 2.6vw, 40px);
  border-radius: 22px;
  background: color-mix(in oklab, var(--surface-solid) 96%, transparent);
}

.service-assurance h3 {
  max-width: 680px;
  margin: 0 0 18px;
  font-size: var(--type-subsection-title);
  line-height: var(--type-subsection-title-line);
  text-wrap: balance;
}

.service-assurance__list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-body);
}

.service-assurance__item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  padding: 11px 0;
  border-top: 1px dashed var(--border);
  font-family: var(--font-body);
}

.service-assurance__item:first-child {
  border-top: 0;
}

.service-assurance__check {
  display: block;
  padding-top: 1px;
  color: color-mix(in oklab, var(--brand-2) 88%, #6da4ff);
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
}

.service-assurance__copy {
  min-width: 0;
}

.service-assurance__item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.12vw, 17px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}

.service-assurance__item small {
  display: block;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: clamp(13px, .98vw, 15px);
  font-weight: 400;
  line-height: 1.45;
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(300px, 1.9fr) minmax(150px, 1fr);
  gap: 14px;
  min-width: 0;
  min-height: 100%;
}

.service-gallery__item {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  content-visibility: auto;
  contain-intrinsic-size: auto 260px;
}

.service-gallery__item--wide {
  grid-column: 1 / -1;
}

.service-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1080px) {
  .services-layout {
    grid-template-columns: 1fr;
  }

  .service-gallery {
    grid-template-rows: minmax(320px, 1.8fr) minmax(170px, 1fr);
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  .section--services {
    padding: 72px 0 78px;
  }

  .section--services .container {
    width: min(100% - 32px, 1280px);
  }

  .service-assurance {
    padding: 26px 22px;
    border-radius: 18px;
  }

  .service-gallery {
    grid-template-rows: 230px 140px;
    gap: 10px;
    min-height: 380px;
  }

  .service-gallery__item {
    border-radius: 16px;
  }
}

@media (max-width: 520px) {
  .service-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 220px 128px;
    gap: 9px;
    min-height: 357px;
  }

  .service-gallery__item {
    grid-column: auto;
    height: 100%;
  }

  .service-gallery__item--wide {
    grid-column: 1 / -1;
    height: 100%;
  }
}

.section--industries-showcase {
  padding: 92px 0 96px;
  background:
    var(--bg-soft);
}

.industries-showcase-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.industry-showcase {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  min-height: 0;
  padding: 0;
  border-radius: 22px;
  background: color-mix(in oklab, var(--surface-solid) 92%, transparent);
  transition: transform .28s ease, border-color .28s ease;
}

.industry-showcase__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}

.industry-showcase__media {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  border-radius: inherit;
}

.industry-showcase__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .58s ease;
}

.industry-showcase__default {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 16px 13px;
  background: rgba(255, 255, 255, .94);
  color: #121826;
  text-align: center;
  box-shadow: 0 -14px 28px rgba(7, 11, 18, .07);
  transition: opacity .24s ease, transform .28s ease;
}

.industry-showcase__default-title,
.industry-showcase__overlay-title {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(15px, .98vw, 17px);
  line-height: 1.1;
  letter-spacing: -.02em;
}

.industry-showcase__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  align-items: stretch;
  padding: 17px 16px 14px;
  background: rgba(255, 255, 255, .72);
  color: #111827;
  opacity: 0;
  transform: translateY(101%);
  transition: transform .38s cubic-bezier(.22, 1, .36, 1), opacity .28s ease;
}

.industry-showcase__overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .28);
  pointer-events: none;
}

.industry-showcase__glass {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translateY(24px);
  opacity: 0;
  transition: transform .42s cubic-bezier(.22, 1, .36, 1), opacity .34s cubic-bezier(.22, 1, .36, 1);
}

.industry-showcase__overlay-title {
  color: #111827;
  text-align: center;
}

.industry-showcase__desc {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(17, 24, 39, .82);
  font-size: 13.5px;
  line-height: 1.36;
  text-align: center;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.industry-showcase__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  align-self: end;
  gap: 8px;
  width: 100%;
  margin-top: 0;
  padding-top: 12px;
  color: var(--brand);
  border-top: 1px solid rgba(17, 24, 39, .08);
  font-family: var(--font-title);
  font-size: 14px;
  line-height: 1;
  letter-spacing: -.02em;
  transition: transform .22s ease, color .22s ease;
}

.industry-showcase__cta span {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 900;
  transition: transform .22s ease;
}

.industry-showcase:hover,
.industry-showcase:focus-within {
  transform: translateY(-6px);
  border-color: color-mix(in oklab, var(--brand) 26%, var(--border));
}

.industry-showcase:hover .industry-showcase__media img,
.industry-showcase:focus-within .industry-showcase__media img {
  transform: scale(1.07);
}

.industry-showcase:hover .industry-showcase__default,
.industry-showcase:focus-within .industry-showcase__default {
  opacity: 0;
  transform: translateY(18px);
}

.industry-showcase:hover .industry-showcase__overlay,
.industry-showcase:focus-within .industry-showcase__overlay {
  opacity: 1;
  transform: translateY(0);
}

.industry-showcase:hover .industry-showcase__glass,
.industry-showcase:focus-within .industry-showcase__glass {
  transform: translateY(0);
  opacity: 1;
}

.industry-showcase:hover .industry-showcase__cta,
.industry-showcase:focus-within .industry-showcase__cta {
  transform: translateX(5px);
}

.industry-showcase:hover .industry-showcase__cta span,
.industry-showcase:focus-within .industry-showcase__cta span {
  transform: translateX(3px);
}

@media (max-width: 1180px) {
  .industries-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .industries-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .section--industries-showcase {
    padding: 72px 0 78px;
  }

  .industries-showcase-grid {
    grid-template-columns: 1fr;
  }

  .industry-showcase {
    aspect-ratio: 16 / 10;
  }
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 286px));
  justify-content: center;
  gap: clamp(18px, 1.55vw, 28px);
}

.portfolio-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--border-strong) 72%, transparent);
  border-radius: 14px;
  background: #0b1018;
  box-shadow: 0 14px 30px rgba(5, 12, 22, .18);
  isolation: isolate;
  transition: transform .28s cubic-bezier(.22, 1, .36, 1), box-shadow .28s ease, border-color .28s ease;
}

.portfolio-card:hover,
.portfolio-card:focus-within {
  transform: translateY(-5px);
  border-color: color-mix(in oklab, var(--portfolio-accent, var(--brand)) 54%, var(--border-strong));
  box-shadow: 0 22px 42px rgba(5, 12, 22, .24);
}

.portfolio-card__link {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  color: #fff;
}

.portfolio-card__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 46%,
    rgba(0, 0, 0, .14) 62%,
    rgba(0, 0, 0, .58) 82%,
    rgba(0, 0, 0, .82) 100%
  );
}

.portfolio-card__link:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--portfolio-accent, var(--brand)) 72%, #fff);
  outline-offset: -4px;
}

.portfolio-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: auto 420px;
}

.portfolio-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .46s cubic-bezier(.22, 1, .36, 1);
}

.portfolio-card:hover .portfolio-card__media img,
.portfolio-card:focus-within .portfolio-card__media img {
  transform: scale(1.045);
}

.portfolio-card__date {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  min-width: 126px;
  padding: 8px 20px 9px;
  border-radius: 0 0 11px 0;
  background: #ffc400;
  color: #111722;
  font-family: var(--font-body);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}

.portfolio-card--lubrication,
.portfolio-card--safety,
.portfolio-card--mixed {
  --portfolio-accent: #ffc400;
  --portfolio-label-color: #111722;
}

.portfolio-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  gap: 7px;
  padding: 24px 18px 18px;
}

.portfolio-card__title,
.portfolio-card__client {
  display: block;
}

.portfolio-card__title {
  margin: 0;
  color: #fff !important;
  font-family: var(--font-title);
  font-size: clamp(18px, 1.16vw, 22px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.025em;
  text-wrap: balance;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .78);
}

.portfolio-card__client {
  color: rgba(255, 255, 255, .94) !important;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .78);
}

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

  .portfolio-card__title {
    font-size: clamp(21px, 2.55vw, 27px);
  }
}

@media (max-width: 720px) {

  .portfolio-grid {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 0 14px;
    scroll-padding-inline: 0 16px;
    scroll-snap-type: x proximity;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .portfolio-grid::-webkit-scrollbar {
    display: none;
  }

  .portfolio-card {
    flex: 0 0 46%;
    width: auto;
    margin: 0;
    border-radius: 12px;
    scroll-snap-align: start;
  }

  .portfolio-card__date {
    min-width: 0;
    padding: 6px 10px 7px;
    border-radius: 0 0 9px 0;
    font-size: clamp(8px, 2.4vw, 10px);
  }

  .portfolio-card__content {
    gap: 4px;
    padding: 22px 10px 10px;
  }

  .portfolio-card__title {
    font-size: clamp(13px, 4vw, 16px);
    line-height: 1.05;
  }

  .portfolio-card__client {
    font-size: clamp(8px, 2.35vw, 10px);
    line-height: 1.25;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-card,
  .portfolio-card__media img,
  .portfolio-actions__link {
    transition: none;
  }
}

/* Landing FAQ */
.section--faq {
  padding: 88px 0 80px;
  background:
    var(--bg-soft);
}

.section--faq .section-head {
  margin-bottom: 42px;
}

.section--faq .section-title {
  max-width: 980px;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  gap: clamp(44px, 6vw, 76px);
  align-items: center;
}

.faq-shell__content {
  min-width: 0;
}

.faq-list {
  display: grid;
  border-top: 1px solid var(--border);
}

.faq-item {
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.faq-item.is-open {
  background: transparent;
  box-shadow: none;
}

.faq-item__trigger {
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 18px;
  align-items: center;
  padding: 0 6px;
  border: 0;
  color: var(--text);
  background: transparent;
  text-align: left;
  font-family: var(--font-title);
  font-size: clamp(20px, 1.48vw, 27px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.028em;
}

.faq-item__trigger span:first-child {
  line-height: 1.12;
}

.faq-item__icon {
  position: relative;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  transition: transform .22s ease, color .22s ease;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity .2s ease, transform .2s ease;
}

.faq-item.is-open .faq-item__icon {
  color: var(--brand-text);
}

.faq-item.is-open .faq-item__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .32s ease, opacity .24s ease;
}

.faq-item.is-open .faq-item__panel {
  max-height: 180px;
  opacity: 1;
}

.faq-item__panel p {
  max-width: 680px;
  margin: 0;
  padding: 0 56px 24px 6px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.72;
}

.faq-shell__visual {
  position: relative;
  align-self: center;
  display: grid;
  place-items: center;
  min-height: 360px;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: auto 380px;
}

.faq-shell__visual img {
  width: min(100%, 470px);
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .12));
}

:root[data-theme="dark"] .faq-shell__visual img {
  filter: saturate(.92) drop-shadow(0 24px 46px rgba(0, 0, 0, .32));
}

@media (max-width: 980px) {
  .faq-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .faq-shell__visual {
    min-height: auto;
    order: -1;
  }

  .faq-shell__visual img {
    width: min(82%, 420px);
  }
}

@media (max-width: 720px) {
  .section--faq {
    padding: 72px 0;
  }

  .faq-item__trigger {
    min-height: 66px;
    grid-template-columns: 1fr 28px;
    font-size: clamp(19px, 6vw, 24px);
  }

  .faq-item__icon {
    width: 28px;
    height: 28px;
  }

  .faq-item__icon::before,
  .faq-item__icon::after {
    width: 20px;
  }

  .faq-item__panel p {
    padding-right: 34px;
  }
}

.breadcrumb-lite {
  color: var(--text-soft);
  font-size: 14px;
  margin-bottom: 22px;
}

/* Footer CTA + compact footer */
.footer-cta-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg-soft) 92%, transparent);
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  width: var(--desktop-frame);
  max-width: none;
  padding: clamp(28px, 3.2vw, 44px) 0;
}

.footer-cta__copy h2 {
  margin: 0 0 8px;
  font-size: var(--type-subsection-title);
  line-height: var(--type-subsection-title-line);
  letter-spacing: -.018em;
}

.footer-cta__copy p {
  max-width: 770px;
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(16px, 1.16vw, 20px);
  line-height: 1.55;
}

.footer-cta__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.footer-cta__actions .btn {
  min-width: 208px;
  min-height: 54px;
  border-radius: var(--button-radius);
  font-family: var(--font-title);
  font-size: clamp(13px, .88vw, 16px);
  font-weight: 400;
  white-space: nowrap;
  box-shadow: none;
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    #edf5fb;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.site-footer::before {
  inset: 0;
  opacity: .24;
  background-image: url("../img/page_bg/Hexagon.svg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  mask-image: none;
}

.site-footer::after {
  inset: auto -10vw -18vw -12vw;
  height: clamp(220px, 30vw, 460px);
  opacity: .62;
  background:
    transparent;
  filter: blur(.2px);
  transform: rotate(-3deg);
}

:root[data-theme="dark"] .site-footer {
  background:
    #07111f;
}

:root[data-theme="dark"] .site-footer::before {
  opacity: .38;
  mix-blend-mode: screen;
  filter: saturate(1.25) brightness(1.06);
}

:root[data-theme="dark"] .site-footer::after {
  opacity: .18;
}

.site-footer__container {
  position: relative;
  z-index: 1;
  width: var(--desktop-frame);
  max-width: none;
  padding: clamp(32px, 4vw, 56px) 0 24px;
}

.footer-brandline {
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr) auto;
  gap: clamp(34px, 4.8vw, 66px);
  align-items: start;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--border);
}

.footer-brandline__logo {
  width: 178px;
  display: inline-flex;
  align-items: center;
  content-visibility: auto;
  contain-intrinsic-size: auto 46px;
}

.footer-logo {
  display: block;
  width: 100%;
  height: auto;
  color: var(--text);
}

.footer-brandline__copy {
  max-width: 790px;
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(16px, 1.18vw, 20px);
  line-height: 1.7;
}

.footer-backtop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: var(--button-radius);
  color: #fff;
  background: color-mix(in oklab, var(--brand) 82%, #ff5b66);
  font-family: var(--font-title);
  font-size: clamp(13px, .9vw, 16px);
  font-weight: 400;
  white-space: nowrap;
  transition: transform .22s ease, filter .22s ease;
}

.footer-backtop:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.footer-main-grid {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(340px, 1.05fr) minmax(410px, 1.3fr);
  gap: clamp(30px, 3.2vw, 48px);
  padding: 18px 0 14px;
  border-bottom: 1px solid var(--border);
}

.footer-office,
.footer-contact,
.footer-nav {
  min-width: 0;
}

.footer-office__tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  margin-bottom: 14px;
}

.footer-office__tab {
  min-height: 46px;
  border: 1px solid var(--border);
  color: var(--text);
  background: color-mix(in oklab, var(--surface-solid) 74%, transparent);
  font-family: var(--font-title);
  font-size: clamp(13px, .88vw, 16px);
  font-weight: 400;
  line-height: 1.05;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.footer-office__tab:first-child {
  border-radius: var(--button-radius) 0 0 var(--button-radius);
}

.footer-office__tab:last-child {
  border-left: 0;
  border-radius: 0 var(--button-radius) var(--button-radius) 0;
}

.footer-office__tab.is-active {
  color: #fff;
  border-color: color-mix(in oklab, var(--brand) 85%, transparent);
  background: color-mix(in oklab, var(--brand) 82%, #ff5b66);
}

.footer-office__tab:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid color-mix(in oklab, var(--brand-2) 72%, #fff);
  outline-offset: 3px;
}

.footer-office__maps {
  min-height: clamp(238px, 17.6vw, 318px);
}

.footer-office__map {
  overflow: hidden;
  height: clamp(238px, 17.6vw, 318px);
  border: 1px solid color-mix(in oklab, var(--border-strong) 72%, transparent);
  border-radius: 22px;
  background: color-mix(in oklab, var(--surface-solid) 70%, transparent);
  box-shadow:
    inset 0 0 0 1px color-mix(in oklab, #fff 10%, transparent),
    0 16px 36px color-mix(in oklab, #000 12%, transparent);
}

.footer-office__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  filter: saturate(.9) contrast(.98) brightness(1.02);
}

:root[data-theme="dark"] .footer-office__map iframe {
  filter: saturate(.88) contrast(.98) brightness(.94);
}

.footer-contact {
  padding-top: 4px;
}

.footer-office-panel {
  min-width: 0;
}

.footer-contact h3,
.footer-nav h3,
.footer-social-block h3,
.footer-operational h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(15px, 1vw, 19px);
  line-height: 1.15;
  letter-spacing: -.015em;
  text-transform: uppercase;
}

.footer-contact p {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.6;
}

.footer-office-panel__ops {
  display: none;
}

.footer-contact__block {
  margin-top: 24px;
}

.footer-contact__list {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 22px;
  row-gap: 10px;
  max-width: 470px;
}

.footer-contact__list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--text-muted);
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.45;
  transform: translateX(0);
  transition: color .2s ease, transform .2s ease;
}

.footer-contact__list a:nth-child(2n) {
  position: relative;
  padding-left: 22px;
}

.footer-contact__list a:nth-child(2n)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 20px;
  background: var(--border);
  transform: translateY(-50%);
}

.footer-contact__list a::after {
  content: "→";
  color: currentColor;
  opacity: 0;
  transform: translateX(-7px);
  transition: opacity .2s ease, transform .2s ease;
}

.footer-contact__list a:hover {
  color: var(--brand-text);
  transform: translateX(7px);
}

.footer-contact__list a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.footer-operational {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 0;
  border: 0;
  background: transparent;
}

.footer-operational strong {
  color: var(--text-muted);
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 400;
  line-height: 1.45;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-left: clamp(26px, 3vw, 44px);
  border-left: 1px solid var(--border);
}

.footer-nav ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(24px, 4vw, 70px);
  row-gap: 12px;
  margin: 0;
  padding: 0;
}

.footer-nav__group a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--text);
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.35;
  transform: translateX(0);
  transition: color .2s ease, transform .2s ease;
}

.footer-nav__group a::after {
  content: "→";
  color: currentColor;
  opacity: 0;
  transform: translateX(-7px);
  transition: opacity .2s ease, transform .2s ease;
}

.footer-nav__group a:hover {
  color: var(--brand-text);
  transform: translateX(7px);
}

.footer-nav__group a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.footer-social-block {
  text-align: center;
}

.footer-social-block h3 {
  margin-bottom: 14px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 26px);
}

.footer-social a {
  width: clamp(32px, 2.35vw, 42px);
  height: clamp(32px, 2.35vw, 42px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transform: translateY(0) scale(1);
  transition: color .2s ease, transform .2s ease, filter .2s ease, opacity .2s ease;
}

.footer-social a:hover {
  color: var(--brand-text);
  transform: translateY(2px) scale(.94);
  filter: brightness(.92);
  opacity: .88;
}

.footer-social svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(340px, 1.05fr) minmax(410px, 1.3fr);
  align-items: center;
  gap: clamp(30px, 3.2vw, 48px);
  padding: 18px 0 0;
  color: var(--text-muted);
  font-family: var(--font-title);
  font-size: clamp(12px, .86vw, 15px);
  line-height: 1.35;
}

.footer-bottom p {
  grid-column: 1 / 3;
  margin: 0;
}

.footer-bottom nav {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.35vw, 20px);
  flex-wrap: wrap;
}

.footer-bottom a {
  display: inline-flex;
  color: var(--text);
  transform: translateY(0);
  transition: color .2s ease, transform .2s ease;
}

.footer-bottom a:hover {
  color: var(--brand-text);
  transform: translateY(-2px);
}

@media (max-width: 1180px) {
  .footer-cta,
  .site-footer__container {
    width: min(100% - 48px, var(--container));
  }

  .footer-cta {
    grid-template-columns: 1fr;
  }

  .footer-cta__actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-brandline,
  .footer-main-grid {
    grid-template-columns: 1fr;
  }

  .footer-backtop {
    justify-self: start;
  }

  .footer-nav {
    padding-left: 0;
    border-left: 0;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

  .footer-bottom p,
  .footer-bottom nav {
    grid-column: 1;
  }

  .footer-bottom nav {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .footer-cta,
  .site-footer__container {
    width: min(100% - 32px, var(--container));
  }

  .footer-cta__actions,
  .footer-cta__actions .btn {
    width: 100%;
  }

  .footer-contact__list,
  .footer-nav ul {
    grid-template-columns: 1fr;
  }

  .footer-contact__list a:nth-child(2n) {
    padding-left: 0;
  }

  .footer-contact__list a:nth-child(2n)::before {
    display: none;
  }
}

.company-video {
  position: relative;
  overflow: hidden;
  align-self: end;
  aspect-ratio: 16 / 9;
  min-height: 360px;
  border-radius: 18px;
  background: color-mix(in oklab, var(--brand-2) 52%, var(--surface-solid));
  box-shadow: 0 26px 70px color-mix(in oklab, var(--brand-2) 18%, transparent);
  content-visibility: auto;
  contain-intrinsic-size: auto 420px;
}

.company-video__button,
.company-video__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.company-video__button {
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  color: #fff;
  background: color-mix(in oklab, var(--brand-2) 62%, #0a1020);
  overflow: hidden;
}

.company-video__button img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.05) brightness(.72);
  transform: scale(1.02);
  transition: transform .55s ease, filter .28s ease;
}

.company-video__scrim {
  position: absolute;
  inset: 0;
  background:
    rgba(2, 8, 20, .42);
}

.company-video__play {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  box-shadow: 0 22px 52px rgba(0, 0, 0, .28);
  backdrop-filter: blur(12px);
  transition: transform .24s ease, background .24s ease, border-color .24s ease;
}

.company-video__play span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid #fff;
}

.company-video__caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 1;
  color: #fff;
  font-family: var(--font-title);
  font-size: clamp(18px, 1.75vw, 28px);
  line-height: 1.12;
  text-align: center;
  text-shadow: 0 12px 28px rgba(0, 0, 0, .46);
}

.company-video__button:hover img,
.company-video__button:focus-visible img {
  transform: scale(1.07);
  filter: saturate(1.02) contrast(1.08) brightness(.66);
}

.company-video__button:hover .company-video__play,
.company-video__button:focus-visible .company-video__play {
  transform: scale(1.06);
  border-color: rgba(255, 255, 255, .56);
  background: color-mix(in oklab, var(--brand) 72%, rgba(255, 255, 255, .18));
}

.company-video__button:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--brand-2) 72%, #fff);
  outline-offset: -6px;
}

.company-video.is-loaded {
  background: #000;
}

.company-video__iframe {
  border: 0;
}

.company-video__fallback {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: inline-flex;
  justify-content: center;
  color: #fff;
  font-weight: 800;
}

@media (max-width: 1100px) {

  .company-video {
    align-self: stretch;
  }
}

@media (max-width: 720px) {

  .company-video {
    order: 1;
    width: 100%;
    min-height: 0;
    border-radius: 16px;
  }

  .company-video__play {
    width: 66px;
    height: 66px;
  }
}


/* Lightweight scroll reveal motion */
.reveal-motion {
  --reveal-distance-x: 0px;
  --reveal-distance-y: 26px;
  --reveal-scale: 1;
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translate(var(--reveal-distance-x), var(--reveal-distance-y)) scale(var(--reveal-scale));
  transition:
    opacity .72s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay),
    transform .72s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay);
}

.reveal-motion--left {
  --reveal-distance-x: -28px;
  --reveal-distance-y: 10px;
}

.reveal-motion--right {
  --reveal-distance-x: 28px;
  --reveal-distance-y: 10px;
}

.reveal-motion--scale {
  --reveal-distance-y: 18px;
  --reveal-scale: .982;
}

.reveal-motion.is-revealed {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-motion,
  .reveal-motion.is-revealed,
  .hero__controls {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Mobile homepage polish: compact hero, swipe cards, 2-column industries, CTA, and footer */
.footer-cta__eyebrow {
  display: block;
  width: max-content;
  margin: 0 0 10px;
  color: color-mix(in oklab, var(--brand) 88%, var(--text));
  font-family: var(--font-title);
  font-size: clamp(11px, .82vw, 14px);
  line-height: 1.1;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer-brandline__content {
  min-width: 0;
}

@media (max-width: 720px) {

  .section--field-problems {
    padding: 58px 0 62px;
  }

  .section--field-problems .container {
    width: min(100% - 28px, 1280px);
  }

  .section--field-problems .section-head {
    margin-bottom: 24px;
  }

  .section--field-problems .section-title {
    font-size: var(--type-section-title);
    line-height: 1.08;
  }

  .section--field-problems .lead {
    font-size: var(--type-section-lead);
    line-height: 1.62;
  }

  .field-problems-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 12px) / 2);
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 3px 2px 14px;
    margin-inline: -2px;
    scroll-padding-inline: 2px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .field-problems-grid::-webkit-scrollbar {
    display: none;
  }

  .field-problem-card {
    grid-template-rows: 104px minmax(164px, auto);
    min-height: 0;
    border-radius: 16px;
    scroll-snap-align: start;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
  }

  .field-problem-card__media {
    border-radius: 16px 16px 0 0;
  }

  .field-problem-card__body {
    min-height: 0;
    padding: 14px 14px 16px;
  }

  .field-problem-card h3 {
    min-height: 0;
    margin-bottom: 14px;
    font-size: var(--type-card-title);
    line-height: 1.12;
    letter-spacing: -.02em;
  }

  .field-problem-card p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.5;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }

  .field-problem-card .link-arrow {
    align-self: flex-start;
    padding-top: 16px;
    font-size: 11.5px;
  }

  .section--industries-showcase {
    padding: 58px 0 64px;
  }

  .section--industries-showcase .container {
    width: min(100% - 28px, 1280px);
  }

  .section--industries-showcase .section-head {
    margin-bottom: 26px;
  }

  .section--industries-showcase .section-title {
    font-size: var(--type-section-title);
    line-height: 1.08;
  }

  .section--industries-showcase .lead {
    font-size: 13.5px;
    line-height: 1.62;
  }

  .industries-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .industry-showcase {
    aspect-ratio: 1.1 / 1;
    border-radius: 15px;
    min-height: 0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
  }

  .industry-showcase:hover,
  .industry-showcase:focus-within {
    transform: none;
  }

  .industry-showcase__media img,
  .industry-showcase:hover .industry-showcase__media img,
  .industry-showcase:focus-within .industry-showcase__media img {
    transform: none;
  }

  .industry-showcase__default {
    min-height: 38px;
    padding: 9px 10px 10px;
    background: color-mix(in oklab, var(--surface-solid) 94%, transparent);
    color: var(--text);
    box-shadow: 0 -10px 22px rgba(0, 0, 0, .12);
    opacity: 1;
    transform: none;
  }

  .industry-showcase__default-title {
    font-size: clamp(11px, 3.1vw, 13px);
    line-height: 1.1;
  }

  .industry-showcase__overlay {
    display: none;
  }

  .section--services,
  .section--faq {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .footer-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    width: min(100% - 32px, var(--container));
    padding: 32px 0;
    text-align: center;
  }

  .footer-cta__copy {
    display: grid;
    justify-items: center;
  }

  .footer-cta__eyebrow {
    margin-inline: auto;
    margin-bottom: 11px;
    font-size: 10px;
    letter-spacing: .20em;
  }

  .footer-cta__copy h2 {
    max-width: 25ch;
    margin-bottom: 12px;
    font-size: var(--type-subsection-title);
    line-height: var(--type-subsection-title-line);
  }

  .footer-cta__copy p {
    max-width: 36ch;
    font-size: 13.5px;
    line-height: 1.62;
  }

  .footer-cta__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    justify-content: stretch;
  }

  .footer-cta__actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding-inline: 12px;
    border-radius: var(--button-radius);
    font-size: 11.5px;
    line-height: 1.12;
    white-space: normal;
  }

  .site-footer {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
    background:
      var(--bg-soft);
  }

  .site-footer__container {
    width: min(100% - 32px, var(--container));
    padding-top: 34px;
  }

  .footer-brandline {
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: start;
    padding-bottom: 24px;
  }

  .footer-brandline__logo {
    grid-column: 1 / -1;
    width: 158px;
  }

  .footer-brandline__content {
    min-width: 0;
  }

  .footer-brandline__copy {
    max-width: 34ch;
    font-size: 14px;
    line-height: 1.68;
  }

  .footer-backtop {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    border-radius: var(--button-radius);
    box-shadow: 0 14px 30px color-mix(in oklab, var(--brand) 28%, transparent);
  }

  .footer-backtop span:first-child {
    display: none;
  }

  .footer-backtop span:last-child {
    font-size: 22px;
  }

  .footer-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 0 20px;
  }

  .footer-office {
    order: 1;
  }

  .footer-contact {
    order: 2;
    padding-top: 0;
  }

  .footer-nav {
    order: 3;
    gap: 22px;
    padding-left: 0;
    border-left: 0;
  }

  .footer-office__tabs {
    gap: 8px;
    margin-bottom: 12px;
  }

  .footer-office__tab,
  .footer-office__tab:first-child,
  .footer-office__tab:last-child {
    min-height: 42px;
    border: 1px solid var(--border);
    border-radius: var(--button-radius);
    font-size: 12px;
  }

  .footer-office__maps {
    min-height: 205px;
    margin-top: 0;
  }

  .footer-office__map {
    height: 205px;
    border-radius: 18px;
  }

  .footer-office-panel {
    margin-bottom: 12px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: color-mix(in oklab, var(--surface-solid) 74%, transparent);
  }

  .footer-contact h3,
  .footer-nav h3,
  .footer-social-block h3,
  .footer-operational h3 {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .footer-contact p,
  .footer-operational strong {
    font-size: 13.5px;
    line-height: 1.64;
  }

  .footer-contact__block {
    margin-top: 0;
    padding-top: 18px;
    border-top: 1px solid var(--border);
  }

  .footer-operational {
    margin-top: 18px;
  }

  .footer-contact__list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 9px;
    max-width: none;
  }

  .footer-contact__list a,
  .footer-nav__group a {
    font-size: 13.5px;
    line-height: 1.45;
  }

  .footer-nav__group {
    padding-top: 18px;
    border-top: 1px solid var(--border);
  }

  .footer-nav ul {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .footer-social-block {
    padding-top: 22px;
    border-top: 1px solid var(--border);
  }

  .footer-social {
    gap: 18px;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
  }

  .footer-bottom {
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    text-align: center;
    font-size: 11.5px;
  }

  .footer-bottom p,
  .footer-bottom nav {
    justify-self: center;
  }

  .footer-bottom nav {
    justify-content: center;
    gap: 12px 16px;
  }
}

@media (max-width: 380px) {
  :root {
    --hero-title-size: clamp(26px, 8.05vw, 31px);
  }

  .field-problems-grid {
    grid-auto-columns: min(78vw, 280px);
  }

  .footer-cta__actions {
    grid-template-columns: 1fr;
  }
}

/* Mobile homepage follow-up polish: centered hero, portfolio carousel, calmer FAQ, footer map order */
@media (max-width: 720px) {

  .portfolio-grid {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 0 14px;
    margin-inline: 0;
    scroll-padding-inline: 0 14px;
    scroll-snap-type: x proximity;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .portfolio-card {
    flex: 0 0 46%;
    width: auto;
    margin-inline: 0;
    border-radius: 12px;
    scroll-snap-align: start;
  }

  .portfolio-card__link {
    aspect-ratio: 4 / 5.05;
  }

  .section--faq .section-head {
    margin-bottom: 28px;
  }

  .faq-shell {
    gap: 24px;
  }

  .faq-shell__visual img {
    width: min(76%, 300px);
  }

  .faq-list {
    border-top-color: color-mix(in oklab, var(--border) 78%, transparent);
  }

  .faq-item {
    border-bottom-color: color-mix(in oklab, var(--border) 78%, transparent);
  }

  .faq-item__trigger {
    min-height: 50px;
    grid-template-columns: 1fr 24px;
    gap: 12px;
    padding: 0 2px;
    font-size: clamp(13.5px, 4vw, 16px);
    line-height: 1.22;
    letter-spacing: -.018em;
  }

  .faq-item__trigger span:first-child {
    line-height: 1.22;
  }

  .faq-item__icon {
    width: 24px;
    height: 24px;
  }

  .faq-item__icon::before,
  .faq-item__icon::after {
    width: 15px;
    height: 1.5px;
  }

  .faq-item__panel p {
    padding: 0 36px 16px 2px;
    font-size: 12.5px;
    line-height: 1.58;
  }
}

@media (max-width: 380px) {

  .portfolio-card {
    flex-basis: 46%;
  }

  .faq-item__trigger {
    font-size: 13.25px;
  }
}

/* Hero cover transition: presentation pages keep the hero as a backdrop while content scrolls over it. */
.hero-cover-page.hero-cover-page {
  overflow: visible !important;
  isolation: isolate;
}

.hero-cover-stage.hero-cover-stage {
  position: sticky;
  top: 0;
  z-index: 0;
}

.hero-cover-canvas.hero-cover-canvas {
  --hero-cover-overlap: 14px;
  --hero-cover-radius: 30px;
  position: relative;
  z-index: 4;
  min-height: 100svh;
  margin-top: calc(var(--hero-cover-overlap) * -1);
  /* Keep the corner visually broad, but finish the curve inside the overlap
     so the page background never peeks through under the hero edge. */
  border-radius:
    var(--hero-cover-radius) var(--hero-cover-radius) 0 0 /
    var(--hero-cover-overlap) var(--hero-cover-overlap) 0 0;
  background: var(--bg);
  box-shadow: 0 -1px 0 color-mix(in oklab, var(--text) 10%, transparent);
  isolation: isolate;
}

.home-content-canvas.hero-cover-canvas,
.hero-cover-canvas--soft {
  background: var(--bg-soft);
}

.hero-cover-canvas--nav {
  padding-top: 14px;
}

@media (max-width: 720px) {
  .hero-cover-canvas.hero-cover-canvas {
    --hero-cover-overlap: 12px;
    --hero-cover-radius: 24px;
  }

  .hero-cover-canvas--nav {
    padding-top: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cover-stage.hero-cover-stage {
    position: relative;
    top: auto;
  }

  .hero-cover-canvas.hero-cover-canvas {
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
  }
}

/* Final PageSpeed hardening: accessible light-theme tokens. */
:root[data-theme="light"] .kicker,
:root[data-theme="light"] .article-eyebrow {
  color: var(--text-muted);
}

:root[data-theme="light"] .als-overview-card__eyebrow,
:root[data-theme="light"] .als-compare-card__tag {
  color: var(--warning-text);
}

/* Privacy consent: compact banner + optional analytics */
.privacy-consent [hidden] {
  display: none !important;
}

.privacy-consent__banner {
  position: fixed;
  left: 50%;
  bottom: clamp(14px, 2vw, 24px);
  z-index: 1320;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  width: min(calc(100% - 28px), 980px);
  padding: 18px 50px 18px 22px;
  border: 1px solid color-mix(in oklab, var(--border-strong) 82%, transparent);
  border-radius: 14px;
  background: var(--surface-solid);
  color: var(--text);
  box-shadow: 0 18px 54px color-mix(in oklab, #000 28%, transparent);
  transform: translate(-50%, 0);
  animation: privacy-consent-enter .28s cubic-bezier(.22, 1, .36, 1) both;
}

.privacy-consent__banner-close {
  position: absolute;
  top: 8px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--text-soft);
  font-size: 20px;
  line-height: 1;
  transition: background .2s ease, color .2s ease;
}

.privacy-consent__banner-close:hover {
  background: color-mix(in oklab, var(--surface-2) 78%, transparent);
  color: var(--text);
}

.privacy-consent__copy {
  min-width: 0;
}

.privacy-consent__copy h2,
.privacy-consent__panel h2 {
  margin: 0;
  font-family: var(--font-title);
  letter-spacing: -.02em;
}

.privacy-consent__copy h2 {
  margin-bottom: 5px;
  font-size: 17px;
  line-height: 1.2;
}

.privacy-consent__copy p,
.privacy-consent__panel-copy,
.privacy-consent__category p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.52;
}

.privacy-consent__copy a {
  color: var(--link-text);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.privacy-consent__actions,
.privacy-consent__panel-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.privacy-consent__button {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: var(--button-radius);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.privacy-consent__button:hover {
  transform: translateY(-1px);
}

.privacy-consent__button:focus-visible,
.privacy-consent__banner-close:focus-visible,
.privacy-consent__close:focus-visible,
.privacy-consent__switch input:focus-visible + .privacy-consent__switch-track {
  outline: 3px solid color-mix(in oklab, var(--brand-2) 72%, #fff);
  outline-offset: 3px;
}

.privacy-consent__button--primary {
  border-color: color-mix(in oklab, var(--brand) 88%, transparent);
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 20px color-mix(in oklab, var(--brand) 22%, transparent);
}

.privacy-consent__button--primary:hover {
  background: color-mix(in oklab, var(--brand) 88%, #fff);
}

.privacy-consent__button--soft {
  border-color: var(--border-strong);
  background: transparent;
  color: var(--text);
}

.privacy-consent__button--soft:hover,
.privacy-consent__button--ghost:hover {
  border-color: color-mix(in oklab, var(--brand-2) 35%, var(--border-strong));
  background: color-mix(in oklab, var(--brand-2) 7%, var(--surface-solid));
}

.privacy-consent__button--ghost {
  border-color: var(--border);
  background: transparent;
  color: var(--text-muted);
}

.privacy-consent__dialog {
  position: fixed;
  inset: 0;
  z-index: 1520;
  display: grid;
  place-items: center;
  padding: 20px;
}

.privacy-consent__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: color-mix(in oklab, #02050a 62%, transparent);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.privacy-consent__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 580px);
  max-height: min(88svh, 680px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  background: var(--surface-solid);
  color: var(--text);
  box-shadow: 0 28px 80px color-mix(in oklab, #000 40%, transparent);
  animation: privacy-dialog-enter .26s cubic-bezier(.22, 1, .36, 1) both;
}

.privacy-consent__panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 20px;
}

.privacy-consent__panel h2 {
  margin-bottom: 7px;
  font-size: 22px;
  line-height: 1.15;
}

.privacy-consent__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  color: var(--text-muted);
  font-size: 22px;
  line-height: 1;
}

.privacy-consent__close:hover {
  border-color: var(--border-strong);
  background: color-mix(in oklab, var(--surface-2) 76%, transparent);
  color: var(--text);
}

.privacy-consent__categories {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.privacy-consent__category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 15px 16px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: color-mix(in oklab, var(--surface-2) 68%, transparent);
}

.privacy-consent__category-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 5px;
}

.privacy-consent__category h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 15px;
  line-height: 1.2;
}

.privacy-consent__category-title span,
.privacy-consent__locked {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--brand-2) 9%, var(--surface-solid));
  color: color-mix(in oklab, var(--brand-2) 72%, var(--text));
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.privacy-consent__locked {
  min-width: 52px;
  background: color-mix(in oklab, var(--success) 12%, var(--surface-solid));
  color: color-mix(in oklab, var(--success) 76%, var(--text));
}

.privacy-consent__switch {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.privacy-consent__switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.privacy-consent__switch-track {
  position: relative;
  display: block;
  width: 48px;
  height: 28px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: color-mix(in oklab, var(--text-soft) 24%, var(--surface-solid));
  transition: background .2s ease, border-color .2s ease;
}

.privacy-consent__switch-track::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 9px rgba(0, 0, 0, .22);
  transition: transform .22s cubic-bezier(.22, 1, .36, 1);
}

.privacy-consent__switch input:checked + .privacy-consent__switch-track {
  border-color: var(--brand);
  background: var(--brand);
}

.privacy-consent__switch input:checked + .privacy-consent__switch-track::after {
  transform: translateX(20px);
}

.privacy-consent__panel-actions {
  margin-top: 20px;
}

body.is-privacy-dialog-open {
  overflow: hidden;
}

@keyframes privacy-consent-enter {
  from { opacity: 0; transform: translate(-50%, 14px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes privacy-dialog-enter {
  from { opacity: 0; transform: translateY(14px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 860px) {
  .privacy-consent__banner {
    bottom: calc(var(--mobile-app-nav-total, 74px) + 10px);
    grid-template-columns: 1fr;
    gap: 14px;
    width: min(calc(100% - 22px), 680px);
    padding: 17px 44px 17px 18px;
  }

  .privacy-consent__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .privacy-consent__banner {
    width: calc(100% - 18px);
    max-height: calc(100svh - var(--mobile-app-nav-total, 74px) - 18px);
    overflow-y: auto;
    border-radius: 13px;
  }

  .privacy-consent__copy h2 {
    font-size: 16px;
  }

  .privacy-consent__copy p,
  .privacy-consent__panel-copy,
  .privacy-consent__category p {
    font-size: 12px;
  }

  .privacy-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .privacy-consent__button {
    width: 100%;
    min-height: 42px;
    padding-inline: 10px;
    white-space: normal;
  }

  .privacy-consent__dialog {
    align-items: end;
    padding: 10px;
  }

  .privacy-consent__panel {
    width: 100%;
    max-height: calc(100svh - 20px);
    padding: 19px 16px;
    border-radius: 17px 17px 12px 12px;
  }

  .privacy-consent__panel h2 {
    font-size: 20px;
  }

  .privacy-consent__category {
    gap: 12px;
    padding: 14px;
  }

  .privacy-consent__category-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .privacy-consent__panel-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .privacy-consent__banner,
  .privacy-consent__panel {
    animation: none;
  }
}
