:root {
  --ink: #020814;
  --ink-soft: #04101f;
  --surface: #071525;
  --surface-2: #0a1b2f;
  --line: rgba(180, 213, 236, 0.16);
  --line-strong: rgba(180, 213, 236, 0.3);
  --text: #eef6fb;
  --muted: #9bb0c2;
  --cyan: #15b8ff;
  --cyan-soft: #74d5ff;
  --warm: #d5a15e;
  --page: min(92vw, 1320px);
  --radius: 18px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

:focus-visible {
  outline: 3px solid var(--cyan-soft);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: #00101d;
  background: var(--cyan-soft);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }
.page-shell { width: var(--page); margin-inline: auto; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(2, 8, 20, .96);
  border-color: var(--line);
}

.nav-shell {
  width: var(--page);
  min-height: 82px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; }
.brand img { width: 155px; height: auto; }

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.3vw, 24px);
}

.primary-nav a {
  position: relative;
  padding: 29px 0 25px;
  color: #c6d5e0;
  font-size: 12px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: #fff;
  border-bottom-color: var(--cyan);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

.language-switcher {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(3, 15, 29, .82);
}

.language-switcher a { color: var(--muted); font-size: 11px; }
.language-switcher a[aria-current="page"] { color: var(--cyan-soft); }
.language-switcher span { width: 1px; height: 14px; background: var(--line-strong); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: #00101b; background: var(--cyan); }
.button-primary:hover { background: #61d0ff; }
.button-secondary { color: var(--text); border-color: var(--line-strong); background: rgba(4, 16, 31, .72); }
.button-secondary:hover { border-color: var(--cyan-soft); }
.button-small { min-height: 36px; padding-inline: 15px; font-size: 11px; border-radius: 999px; }

.hero {
  position: relative;
  min-height: 680px;
  height: min(72vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-picture {
  position: absolute;
  inset: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(56%, 820px);
  background: rgba(2, 8, 20, .68);
  border-right: 1px solid rgba(2, 8, 20, .18);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 40px;
}

.eyebrow {
  margin: 0 0 20px;
  padding-inline-start: 13px;
  color: var(--cyan-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
  border-inline-start: 2px solid var(--cyan);
}

.eyebrow span { display: none; }

.hero h1,
.section-heading h2,
.case-copy h2,
.about h2,
.clients h2,
.contact h2 {
  margin: 0;
  font-family: "Space Grotesk", Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: -.045em;
  line-height: .98;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 650;
}

.hero h1 em { color: var(--cyan); font-style: normal; }

.hero-lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: #c4d2dc;
  font-size: clamp(16px, 1.5vw, 21px);
}

.hero-actions { display: flex; gap: 12px; margin-top: 34px; }

.purpose-panel {
  position: absolute;
  z-index: 3;
  right: max(4vw, calc((100vw - 1320px) / 2));
  bottom: 30px;
  width: min(690px, 52vw);
  padding: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(4, 16, 31, .92);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .36);
}

.purpose-tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }

.purpose-tabs button {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 78px;
  padding: 14px 16px;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.purpose-tabs button > span { min-width: 0; }
.purpose-tabs small { overflow-wrap: anywhere; }

.purpose-tabs button + button { border-left: 1px solid var(--line); }
.purpose-tabs button[aria-selected="true"] { color: var(--text); border-bottom-color: var(--cyan); }
.purpose-tabs i { margin-top: 4px; color: var(--cyan); font-size: 18px; }
.purpose-tabs strong, .purpose-tabs small { display: block; }
.purpose-tabs strong { font-size: 14px; }
.purpose-tabs small { margin-top: 3px; color: var(--muted); font-size: 10px; line-height: 1.3; }
#purpose-copy { margin: 12px 16px 4px; color: #c6d4de; font-size: 13px; }

.journey {
  padding: 24px 0 42px;
  background: #03101e;
  border-bottom: 1px solid var(--line);
}

.compact-heading { display: flex; align-items: end; justify-content: space-between; gap: 36px; margin-bottom: 28px; }
.compact-heading .eyebrow { margin: 0; }
.compact-heading h2 { max-width: 640px; font-size: clamp(30px, 3vw, 46px); text-align: right; }

.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.journey-card {
  min-width: 0;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  min-height: 230px;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}

.journey-copy { padding: 25px 18px 22px 24px; }
.step-number { display: block; margin-bottom: 26px; color: var(--cyan); font-size: 20px; font-weight: 800; }
.journey-card h3 { margin: 0; font-size: 21px; }
.journey-card p { margin: 8px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.journey-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.05); transition: transform .7s var(--ease); }
.journey-card:hover img { transform: scale(1.035); }

.section-space { padding: clamp(86px, 10vw, 150px) 0; }

.section-heading { margin-bottom: 58px; }
.section-heading h2, .case-copy h2, .about h2, .clients h2, .contact h2 { font-size: clamp(40px, 5vw, 72px); font-weight: 620; }

.split-heading { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(290px, .65fr); gap: clamp(42px, 8vw, 120px); align-items: end; }
.split-heading > p { margin: 0 0 4px; color: var(--muted); font-size: 17px; line-height: 1.75; }

.solutions { background: var(--ink); }

.solution-groups {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.solution-group {
  grid-column: span 4;
  position: relative;
  min-height: 540px;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.solution-group.featured-group { background: #09213a; border-color: rgba(21, 184, 255, .34); }
.solution-group.service-group { grid-column: span 12; min-height: 0; display: grid; grid-template-columns: 80px .6fr 1fr; gap: 30px; align-items: start; }
.solution-group.service-group .solution-links { margin-top: 0; }

.group-index { color: var(--cyan); font-size: 14px; font-weight: 800; }
.group-kicker { margin: 55px 0 10px; color: var(--cyan-soft); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.solution-group h3 { margin: 0; font-size: clamp(24px, 2.4vw, 36px); line-height: 1.18; letter-spacing: -.035em; }
.solution-links { margin-top: 42px; border-top: 1px solid var(--line); }
.solution-links a { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 15px 0; color: #cbd9e3; font-size: 13px; border-bottom: 1px solid var(--line); }
.solution-links a i { color: var(--cyan); font-size: 11px; transition: transform .2s ease; }
.solution-links a:hover { color: #fff; }
.solution-links a:hover i { transform: translateX(4px); }

.industries { background: var(--ink-soft); border-block: 1px solid var(--line); }
.industry-rail { display: grid; grid-template-columns: repeat(5, minmax(220px, 1fr)); border: 1px solid var(--line); overflow-x: auto; }
.industry-rail article { min-height: 280px; padding: 30px 25px; background: var(--surface); }
.industry-rail article + article { border-left: 1px solid var(--line); }
.industry-rail span { color: var(--cyan); font-size: 12px; }
.industry-rail h3 { margin: 80px 0 12px; font-size: 20px; line-height: 1.25; }
.industry-rail p { margin: 0; color: var(--muted); font-size: 13px; }

.case-feature { background: var(--ink); }
.case-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 10vw, 150px); align-items: start; }
.case-copy p:not(.eyebrow) { max-width: 560px; margin: 28px 0 34px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.case-list { border-top: 1px solid var(--line); }
.case-list a { display: grid; grid-template-columns: 110px 1fr auto; gap: 22px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--line); }
.case-list span { color: var(--cyan); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.case-list strong { font-size: 19px; font-weight: 550; }
.case-list i { color: var(--cyan); }

.trust { background: #03101e; border-block: 1px solid var(--line); }
.partner-marquee { overflow: hidden; border-block: 1px solid var(--line); }
.partner-track { display: flex; width: max-content; animation: partner-scroll 34s linear infinite; }
.partner-track span { min-width: 190px; padding: 25px 32px; color: #c9d7e1; font-size: 18px; font-weight: 700; text-align: center; border-right: 1px solid var(--line); }
.partner-marquee:hover .partner-track { animation-play-state: paused; }
@keyframes partner-scroll { to { transform: translateX(-50%); } }

.proof { background: var(--ink); }
.standards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.standard-card { display: grid; grid-template-columns: 54px 1fr; gap: 22px; min-height: 150px; padding: 28px; border: 1px solid var(--line); background: var(--surface); }
.standard-card > span { color: var(--cyan); font-size: 13px; font-weight: 800; }
.standard-card strong, .standard-card p, .standard-card small { display: block; }
.standard-card strong { color: var(--text); font-size: 22px; }
.standard-card p { margin: 6px 0 8px; color: #c8d6df; }
.standard-card small { color: var(--muted); }
.recognition-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.recognition-card { position: relative; min-height: 360px; margin: 0; overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.recognition-card img { width: 100%; height: 360px; object-fit: cover; object-position: center; filter: saturate(.82) contrast(1.04); }
.recognition-card::after { content: ""; position: absolute; inset: 38% 0 0; background: linear-gradient(180deg, transparent, rgba(2, 8, 20, .96)); pointer-events: none; }
.recognition-card figcaption { position: absolute; z-index: 1; inset: auto 24px 22px; }
.recognition-card strong, .recognition-card span { display: block; }
.recognition-card strong { color: var(--cyan-soft); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
.recognition-card span { margin-top: 6px; color: var(--text); font-size: 18px; font-weight: 650; }
.proof-note { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 22px; padding: 24px 28px; border: 1px solid var(--line); background: #04101f; }
.proof-note p { max-width: 780px; margin: 0; color: var(--muted); }

.about { background: var(--ink); }
.about-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 10vw, 160px); }
.about-copy > p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.about-copy .large-copy { margin-bottom: 26px; color: var(--text); font-size: clamp(24px, 2.7vw, 38px); line-height: 1.35; letter-spacing: -.02em; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 50px; border-top: 1px solid var(--line); }
.about-values div { padding: 24px 20px 0 0; }
.about-values div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.about-values strong, .about-values span { display: block; }
.about-values strong { color: var(--cyan-soft); font-size: 14px; }
.about-values span { margin-top: 7px; color: var(--muted); font-size: 12px; }

.clients { padding-top: 0; background: var(--ink); }
.clients .page-shell { padding: 55px; border: 1px solid var(--line); background: var(--surface); }
.clients h2 { max-width: 950px; }
.clients-note { max-width: 760px; margin: 28px 0 0; color: var(--muted); }

.locations { background: #03101e; border-top: 1px solid var(--line); }
.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.location-grid article { min-height: 300px; padding: 32px; background: var(--surface); }
.location-grid article + article { border-inline-start: 1px solid var(--line); }
.location-grid span { color: var(--cyan); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.location-grid h3 { margin: 58px 0 12px; font-size: 28px; }
.location-grid p { min-height: 66px; margin: 0 0 24px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.location-grid a { display: block; width: max-content; max-width: 100%; margin-top: 10px; color: #d6e6ef; font-size: 13px; }
.location-grid a:last-child { color: var(--cyan-soft); }

.contact { background: #06162a; border-top: 1px solid var(--line); }
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 10vw, 150px); }
.contact-copy > p:not(.eyebrow) { max-width: 560px; margin: 28px 0; color: var(--muted); font-size: 17px; }
.contact-details { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 20px; }
.contact-email-stack { display: grid; gap: 8px; }
.contact-details a { color: #d7e5ee; font-size: 14px; }
.contact-details i { margin-right: 8px; color: var(--cyan); }

.contact-form { padding: 34px; border: 1px solid var(--line-strong); background: var(--surface); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: block; margin-bottom: 18px; color: #cbd8e1; font-size: 12px; font-weight: 650; }
.contact-form input, .contact-form textarea { width: 100%; margin-top: 8px; padding: 13px 14px; border: 1px solid var(--line-strong); border-radius: 5px; color: var(--text); background: #030d1a; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--cyan); outline: 0; box-shadow: 0 0 0 3px rgba(21, 184, 255, .15); }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: 11px; }

.site-footer { border-top: 1px solid var(--line); background: #01050c; }
.footer-main { display: grid; grid-template-columns: 200px 1fr auto; gap: 40px; align-items: center; padding-block: 54px; }
.footer-main > p { margin: 0; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer-links a { color: #b6c6d2; font-size: 12px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 20px; color: #8095a6; font-size: 11px; border-top: 1px solid var(--line); }

[dir="rtl"] .primary-nav,
[dir="rtl"] .purpose-tabs button { text-align: right; }
[dir="rtl"] .purpose-tabs button + button { border-left: 0; border-right: 1px solid var(--line); }
[dir="rtl"] .hero-shade { left: auto; right: 0; border-right: 0; border-left: 1px solid rgba(2, 8, 20, .18); }
[dir="rtl"] .purpose-panel { right: auto; left: max(4vw, calc((100vw - 1320px) / 2)); }
[dir="rtl"] .compact-heading h2 { text-align: left; }
[dir="rtl"] .solution-links a:hover i { transform: translateX(-4px); }
[dir="rtl"] .industry-rail article + article { border-left: 0; border-right: 1px solid var(--line); }
[dir="rtl"] .about-values div { padding: 24px 0 0 20px; }
[dir="rtl"] .about-values div + div { padding-left: 20px; padding-right: 20px; border-left: 0; border-right: 1px solid var(--line); }
[dir="rtl"] .contact-details i { margin-right: 0; margin-left: 8px; }

@media (max-width: 1180px) {
  .nav-shell { grid-template-columns: 150px 1fr auto; gap: 14px; }
  .primary-nav { gap: 12px; }
  .primary-nav a { font-size: 10px; }
  .button-small { display: none; }
  .purpose-panel { width: 60vw; }
  .journey-card { grid-template-columns: 1fr; }
  .journey-card img { height: 190px; order: -1; }
  .solution-group { grid-column: span 6; }
  .solution-group.service-group { grid-column: span 6; display: block; min-height: 540px; }
  .solution-group.service-group .group-kicker { margin-top: 55px; }
  .solution-group.service-group .solution-links { margin-top: 42px; }
}

@media (max-width: 900px) {
  .site-header { background: rgba(2, 8, 20, .94); border-color: var(--line); }
  .nav-shell { min-height: 72px; grid-template-columns: 1fr auto auto; }
  .brand img { width: 135px; }
  .menu-toggle { display: inline-grid; place-items: center; order: 3; }
  .nav-actions { order: 2; }
  .language-switcher { display: flex; }
  .primary-nav {
    position: fixed;
    inset: 72px 0 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 28px 5vw 60px;
    overflow-y: auto;
    background: #020814;
  }
  .site-header.is-open .primary-nav { display: flex; }
  .primary-nav a { padding: 17px 0; font-size: 15px; border-bottom: 1px solid var(--line); }
  .hero { height: auto; min-height: 860px; align-items: flex-start; padding-top: 190px; }
  .hero-media { object-position: 58% center; opacity: .72; }
  .hero-shade { width: 100%; background: rgba(2, 8, 20, .55); border: 0; }
  .hero-content { padding-top: 0; }
  .hero h1 { max-width: 580px; }
  .purpose-panel { right: 4vw; bottom: 34px; width: 92vw; }
  [dir="rtl"] .purpose-panel { left: 4vw; }
  .compact-heading { display: block; }
  .compact-heading .eyebrow { margin-bottom: 18px; }
  .compact-heading h2 { text-align: left; }
  [dir="rtl"] .compact-heading h2 { text-align: right; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-card { grid-template-columns: .8fr 1.2fr; min-height: 240px; }
  .journey-card img { height: 100%; order: initial; }
  .split-heading, .case-layout, .about-layout, .contact-layout { grid-template-columns: 1fr; }
  .split-heading { gap: 28px; }
  .solution-group, .solution-group.service-group { grid-column: span 12; min-height: 0; }
  .recognition-grid, .location-grid { grid-template-columns: 1fr; }
  .location-grid article + article { border-inline-start: 0; border-top: 1px solid var(--line); }
  .industry-rail { grid-template-columns: repeat(5, 280px); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 620px) {
  :root { --page: min(90vw, 1320px); }
  .nav-actions { display: flex; }
  .nav-actions .button-small { display: none; }
  .language-switcher { display: flex; padding: 4px 7px; gap: 6px; }
  .language-switcher a { font-size: 10px; }
  .nav-shell { grid-template-columns: 1fr auto auto; gap: 9px; }
  .menu-toggle { order: initial; }
  .hero { min-height: 920px; padding-top: 160px; }
  .hero-media { object-position: 68% center; }
  .hero h1 { font-size: clamp(46px, 15vw, 68px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 300px; }
  .purpose-panel { bottom: 26px; padding: 10px; }
  .purpose-tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: visible; }
  .purpose-tabs button {
    min-width: 0;
    padding: 12px 6px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
  }
  .purpose-tabs button > span { text-align: center; }
  .purpose-tabs small { display: none; }
  .purpose-tabs button + button { border-left: 1px solid var(--line); }
  [dir="rtl"] .purpose-tabs button + button { border-left: 0; border-right: 1px solid var(--line); }
  .journey-card { grid-template-columns: 1fr; }
  .journey-card img { height: 210px; order: -1; }
  .journey-copy { padding: 22px; }
  .step-number { margin-bottom: 12px; }
  .section-space { padding: 78px 0; }
  .section-heading h2, .case-copy h2, .about h2, .clients h2, .contact h2 { font-size: 42px; }
  .solution-group { padding: 26px; }
  .group-kicker { margin-top: 35px; }
  .case-list a { grid-template-columns: 1fr auto; }
  .case-list span { grid-column: 1 / -1; }
  .about-values { grid-template-columns: 1fr; }
  .about-values div, [dir="rtl"] .about-values div { padding: 20px 0; border-bottom: 1px solid var(--line); }
  .about-values div + div, [dir="rtl"] .about-values div + div { padding: 20px 0; border-left: 0; border-right: 0; }
  .clients .page-shell { padding: 30px 24px; }
  .standards-grid { grid-template-columns: 1fr; }
  .standard-card { grid-template-columns: 38px 1fr; padding: 24px 20px; }
  .recognition-card, .recognition-card img { min-height: 320px; height: 320px; }
  .proof-note { align-items: stretch; flex-direction: column; padding: 24px; }
  .location-grid article { min-height: 270px; padding: 26px; }
  .location-grid h3 { margin-top: 42px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .partner-track { transform: none !important; }
}
