:root {
  --ink: #111827;
  --muted: #5c6675;
  --paper: #f4f7fa;
  --panel: #ffffff;
  --line: #d8e0ea;
  --steel: #2f3a47;
  --steel-2: #1f2937;
  --blue: #214c7a;
  --teal: #0f766e;
  --rust: #b84527;
  --rust-dark: #8f2f18;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 36px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: var(--steel-2);
  border: 3px solid var(--rust);
  border-radius: 6px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.08rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.25;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--steel);
  font-size: 0.94rem;
  font-weight: 700;
}

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

.language-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--steel);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.language-control select {
  min-width: 132px;
  height: 38px;
  padding: 0 30px 0 10px;
  color: var(--steel-2);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.language-control select:focus {
  outline: 2px solid rgba(15, 118, 110, 0.26);
  border-color: var(--teal);
}

.site-nav a {
  padding: 24px 0 22px;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--rust);
  border-bottom-color: var(--rust);
}

html[dir="rtl"] .hero-overlay {
  background:
    linear-gradient(270deg, rgba(8, 13, 23, 0.88) 0%, rgba(8, 13, 23, 0.7) 42%, rgba(8, 13, 23, 0.1) 100%),
    linear-gradient(0deg, rgba(8, 13, 23, 0.54), rgba(8, 13, 23, 0.08));
}

html[dir="rtl"] .hero-content,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .split-layout,
html[dir="rtl"] .market-layout,
html[dir="rtl"] .contact-layout,
html[dir="rtl"] .site-footer {
  text-align: right;
}

html[dir="rtl"] .hero-points div {
  padding: 0 16px 0 0;
  border-left: 0;
  border-right: 3px solid var(--rust);
}

html[dir="rtl"] .hero-panel {
  text-align: right;
}

html[dir="rtl"] .check-list li {
  padding-right: 30px;
  padding-left: 0;
}

html[dir="rtl"] .check-list li::before {
  right: 0;
  left: auto;
}

html[dir="rtl"] .capability-table th,
html[dir="rtl"] .capability-table td {
  text-align: right;
}

html[dir="rtl"] .readiness-grid article {
  border-right: 4px solid var(--teal);
  border-left: 1px solid var(--line);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--steel-2);
}

.hero {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
  color: #ffffff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("../img/hero-automation.jpg") center right / cover no-repeat;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 13, 23, 0.88) 0%, rgba(8, 13, 23, 0.7) 42%, rgba(8, 13, 23, 0.1) 100%),
    linear-gradient(0deg, rgba(8, 13, 23, 0.54), rgba(8, 13, 23, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 54px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rust);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2b39f;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 4rem;
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.35rem;
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: #e9eef6;
  font-size: 1.18rem;
}

.hero-actions,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: #ffffff;
  background: var(--rust);
  border-color: var(--rust);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--rust-dark);
  border-color: var(--rust-dark);
}

.button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.48);
}

.button.tertiary {
  color: #ffffff;
  background: rgba(15, 118, 110, 0.82);
  border-color: rgba(15, 118, 110, 0.92);
}

.button.tertiary:hover,
.button.tertiary:focus-visible {
  background: var(--teal);
  border-color: var(--teal);
}

.button.full-width {
  width: 100%;
}

.hero-panel {
  max-width: 960px;
  margin-top: 34px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.hero-panel p {
  margin: 0 0 14px;
  color: #f2b39f;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-panel-grid div {
  min-height: 86px;
  padding: 15px;
  background: rgba(9, 14, 23, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.hero-panel-grid span,
.hero-panel-grid strong {
  display: block;
}

.hero-panel-grid span {
  margin-bottom: 8px;
  color: #bfc9d7;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-panel-grid strong {
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.28;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 960px;
  margin: 28px 0 0;
}

.hero-points div {
  padding: 0 0 0 16px;
  border-left: 3px solid var(--rust);
}

.hero-points dt {
  margin-bottom: 4px;
  color: #ffffff;
  font-weight: 800;
}

.hero-points dd {
  margin: 0;
  color: #d8e1ec;
  font-size: 0.95rem;
}

.section {
  scroll-margin-top: 84px;
  padding: 84px 0;
}

.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-heading p,
.split-layout p,
.market-layout p,
.contact-layout p {
  color: var(--muted);
}

.section-heading.compact {
  margin-bottom: 28px;
}

.intro-section,
.projects-section,
.contact-section,
.application-section {
  background: var(--panel);
}

.core-areas-section {
  background: #eef3f7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.core-area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.core-area-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.82fr) minmax(0, 1.18fr);
  min-width: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.core-area-card:hover,
.core-area-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(184, 69, 39, 0.5);
  box-shadow: var(--shadow);
}

.core-area-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  background: #dfe5ec;
}

.core-area-card > div {
  min-width: 0;
  padding: 26px;
}

.core-area-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 22px;
  color: var(--rust);
  border: 1px solid rgba(184, 69, 39, 0.26);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 900;
}

.core-area-card p {
  color: var(--muted);
}

.core-area-card strong {
  color: var(--teal);
  font-size: 0.9rem;
}

.solution-grid,
.project-grid,
.industry-grid {
  display: grid;
  gap: 18px;
}

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

.solution-card {
  min-height: 260px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.solution-card p {
  color: var(--muted);
}

.solution-icon {
  position: relative;
  display: block;
  width: 54px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--blue);
}

.conveyor-icon::before,
.conveyor-icon::after,
.food-icon::before,
.food-icon::after,
.cell-icon::before,
.cell-icon::after {
  content: "";
  position: absolute;
}

.conveyor-icon::before {
  left: 0;
  right: 0;
  bottom: 8px;
  height: 10px;
  border-top: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
}

.conveyor-icon::after {
  inset: auto 6px 0 6px;
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--blue) 0 4px, transparent 4px 13px);
}

.food-icon::before {
  left: 8px;
  top: 9px;
  width: 28px;
  height: 24px;
  border: 3px solid var(--teal);
  border-radius: 50% 50% 46% 46%;
  transform: rotate(-10deg);
}

.food-icon::after {
  left: 32px;
  top: 3px;
  width: 15px;
  height: 12px;
  border-top: 3px solid var(--teal);
  border-right: 3px solid var(--teal);
  border-radius: 0 8px 0 0;
  transform: rotate(-24deg);
}

.cell-icon::before {
  left: 4px;
  top: 4px;
  width: 28px;
  height: 28px;
  border: 3px solid var(--rust);
  border-radius: 50%;
}

.cell-icon::after {
  left: 30px;
  top: 22px;
  width: 22px;
  height: 12px;
  border-top: 4px solid var(--rust);
  transform: rotate(-18deg);
}

.media-section,
.process-section,
.markets-section,
.readiness-section {
  background: var(--paper);
}

.split-layout,
.contact-layout,
.market-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 48px;
  align-items: center;
}

.feature-figure {
  margin: 0;
}

.feature-figure img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-figure figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--steel);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  transform: rotate(-45deg);
}

.application-section {
  border-top: 1px solid var(--line);
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.application-card {
  min-height: 300px;
  padding: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fa 100%);
}

.application-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 58px;
  color: var(--rust);
  border: 1px solid rgba(184, 69, 39, 0.26);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 900;
}

.application-card h3 {
  margin-bottom: 12px;
}

.application-card p {
  color: var(--muted);
}

.industries-section {
  background: #eef3f7;
}

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

.industry-item {
  min-height: 142px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.industry-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--steel-2);
  font-size: 1.02rem;
}

.industry-item span {
  color: var(--muted);
}

.capability-section {
  background: #17202c;
  color: #ffffff;
}

.capability-section .eyebrow {
  color: #f2b39f;
}

.matrix-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.capability-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.capability-table th,
.capability-table td {
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  vertical-align: top;
}

.capability-table th {
  color: #f2b39f;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.capability-table td {
  color: #d7e0eb;
}

.capability-table td:first-child {
  color: #ffffff;
  font-weight: 900;
}

.capability-table tr:last-child td {
  border-bottom: 0;
}

.project-experience-section {
  background: #eef3f7;
  border-bottom: 1px solid var(--line);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.experience-card {
  position: relative;
  min-width: 0;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.experience-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 24px;
  color: var(--rust);
  border: 1px solid rgba(184, 69, 39, 0.26);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 900;
}

.experience-card h3 {
  margin-bottom: 24px;
  color: var(--steel-2);
}

.experience-card dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.experience-card dl div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.experience-card dt {
  margin-bottom: 6px;
  color: var(--steel-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.experience-card dd {
  margin: 0;
  color: var(--muted);
}

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

.process-list li {
  position: relative;
  min-height: 250px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-list span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--rust);
  font-size: 0.88rem;
  font-weight: 900;
}

.process-list p {
  color: var(--muted);
}

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

.project-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  background: #dfe5ec;
}

.project-card div {
  padding: 20px;
}

.project-card p {
  color: var(--muted);
}

.sector-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: #ffffff;
}

.sector-hero-media,
.sector-hero-overlay {
  position: absolute;
  inset: 0;
}

.sector-hero-media {
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.sector-conveyor .sector-hero-media {
  background-image: url("../img/hero-conveyor-systems.jpg");
}

.sector-robot .sector-hero-media {
  background-image: url("../img/hero-robot-inspection-testing.jpg");
}

.sector-food .sector-hero-media {
  background-image: url("../img/hero-food-processing-lines.jpg");
}

.sector-hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 13, 23, 0.88) 0%, rgba(8, 13, 23, 0.7) 42%, rgba(8, 13, 23, 0.1) 100%),
    linear-gradient(0deg, rgba(8, 13, 23, 0.54), rgba(8, 13, 23, 0.08));
}

.sector-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 108px 0 86px;
}

.sector-hero h1 {
  max-width: 860px;
  font-size: 3.65rem;
}

.sector-hero-copy {
  max-width: 720px;
  margin-bottom: 30px;
  color: #e9eef6;
  font-size: 1.16rem;
}

.sector-scope-section,
.sector-role-section,
.sector-contact-section {
  background: var(--panel);
}

.scope-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  list-style: none;
}

.scope-list li {
  position: relative;
  min-height: 120px;
  padding: 24px 24px 24px 48px;
  background: var(--panel);
  color: var(--steel-2);
  font-weight: 800;
}

.scope-list li::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 24px;
  width: 10px;
  height: 10px;
  border: 3px solid var(--teal);
  border-radius: 50%;
}

.sector-applications-section {
  background: #eef3f7;
}

.sector-application-grid,
.sector-check-grid,
.role-points,
.related-area-grid {
  display: grid;
  gap: 18px;
}

.sector-application-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sector-application-card {
  min-height: 230px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sector-application-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--rust);
  font-size: 0.86rem;
  font-weight: 900;
}

.sector-application-card p {
  color: var(--muted);
}

.sector-checks-section {
  background: #17202c;
  color: #ffffff;
}

.sector-checks-section .eyebrow {
  color: #f2b39f;
}

.sector-checks-section .section-heading p {
  color: #cbd5e1;
}

.sector-check-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sector-check-card {
  min-height: 150px;
  padding: 24px;
  color: #d7e0eb;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.sector-check-card span {
  display: block;
  margin-bottom: 18px;
  color: #f2b39f;
  font-weight: 900;
}

.sector-role-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 54px;
  align-items: start;
}

.sector-role-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.role-points {
  grid-template-columns: 1fr;
}

.role-point {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
}

.role-point p {
  margin: 0;
  color: var(--muted);
}

.related-areas-section {
  background: #eef3f7;
  border-top: 1px solid var(--line);
}

.related-area-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.related-area-card {
  min-height: 180px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 150ms ease, transform 150ms ease;
}

.related-area-card:hover,
.related-area-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(184, 69, 39, 0.5);
}

.related-area-card[aria-current="page"] {
  border-top: 4px solid var(--rust);
}

.related-area-card span {
  display: block;
  margin-top: 22px;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 900;
}

.sector-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: start;
}

.sector-contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sector-contact-links a {
  min-width: 0;
  padding: 15px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--steel-2);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.sector-contact-links a:hover,
.sector-contact-links a:focus-visible {
  color: var(--rust);
  border-color: rgba(184, 69, 39, 0.5);
}

.sector-contact-identity {
  margin-top: 24px;
}

.sector-contact-identity strong,
.sector-contact-identity span {
  display: block;
}

.sector-contact-identity strong {
  font-size: 1.16rem;
}

.sector-contact-identity span {
  color: var(--muted);
}

.markets-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.market-tags span {
  padding: 10px 12px;
  color: var(--steel-2);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 700;
}

.readiness-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.readiness-layout > div > p:not(.eyebrow) {
  color: var(--muted);
}

.readiness-grid {
  display: grid;
  gap: 14px;
}

.readiness-grid article {
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
}

.readiness-grid h3 {
  margin-bottom: 6px;
}

.readiness-grid p {
  color: var(--muted);
}

.contact-layout {
  align-items: start;
}

.contact-methods {
  margin-top: 28px;
}

.contact-identity {
  display: grid;
  gap: 3px;
  margin-top: 28px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--rust);
  border-radius: 8px;
}

.contact-identity strong {
  color: var(--steel-2);
  font-size: 1.15rem;
}

.contact-identity span {
  color: var(--muted);
  font-weight: 800;
}

html[dir="rtl"] .contact-identity {
  border-right: 4px solid var(--rust);
  border-left: 1px solid var(--line);
}

.contact-methods a,
.contact-methods span {
  display: inline-flex;
  align-items: center;
  padding: 12px 14px;
  color: var(--steel-2);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.contact-methods a:hover,
.contact-methods a:focus-visible {
  color: var(--rust);
  border-color: var(--rust);
}

.contact-methods .contact-pending {
  color: var(--muted);
  border-style: dashed;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--steel-2);
  font-size: 0.92rem;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #c8d2de;
  border-radius: 6px;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: 2px solid rgba(15, 118, 110, 0.26);
  border-color: var(--teal);
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 36px;
  color: #d6dde8;
  background: var(--steel-2);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ffffff;
  font-weight: 800;
}

@media (max-width: 1020px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .solution-grid,
  .industry-grid,
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .core-area-card {
    grid-template-columns: 1fr;
  }

  .core-area-card img {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

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

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

  .split-layout,
  .contact-layout,
  .market-layout,
  .readiness-layout,
  .sector-role-layout,
  .sector-contact-layout {
    grid-template-columns: 1fr;
  }

  .scope-list,
  .sector-application-grid,
  .related-area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 1020px) {
  .site-header {
    min-height: 66px;
    padding: 0 20px;
  }

  .header-actions {
    margin-left: auto;
    gap: 12px;
  }

  .language-control span {
    display: none;
  }

  .language-control select {
    min-width: 118px;
    height: 36px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 66px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 18px;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 28px rgba(17, 24, 39, 0.12);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
  }

  .sector-hero {
    min-height: auto;
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero-overlay {
    background: rgba(8, 13, 23, 0.72);
  }

  .hero-content {
    width: min(100% - 32px, 1180px);
    padding: 58px 0 46px;
  }

  .sector-hero-content {
    width: min(100% - 32px, 1180px);
    padding: 72px 0 64px;
  }

  h1 {
    font-size: 2.3rem;
  }

  .sector-hero h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.74rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-points,
  .hero-panel-grid,
  .solution-grid,
  .industry-grid,
  .process-list,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .application-grid {
    grid-template-columns: 1fr;
  }

  .core-area-grid {
    grid-template-columns: 1fr;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .scope-list,
  .sector-application-grid,
  .sector-check-grid,
  .related-area-grid,
  .sector-contact-links {
    grid-template-columns: 1fr;
  }

  .scope-list li {
    min-height: auto;
  }

  .application-card {
    min-height: auto;
  }

  .application-card span {
    margin-bottom: 28px;
  }

  .section {
    padding: 58px 0;
  }

  .section-inner {
    width: min(100% - 32px, 1180px);
  }

  .solution-card,
  .application-card,
  .process-list li,
  .industry-item,
  .inquiry-form {
    padding: 22px;
  }

  .site-footer {
    flex-direction: column;
    padding: 22px 20px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2rem;
  }

  .hero-actions .button,
  .contact-methods a {
    width: 100%;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }
}

/* Homepage redesign: scoped so sector pages retain their current presentation. */
.home-redesign {
  background: #ffffff;
}

.home-redesign .site-header {
  min-height: 76px;
  padding-inline: clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.04);
}

.home-redesign .brand {
  min-width: 250px;
}

.home-redesign .brand-mark {
  width: 44px;
  height: 44px;
  border-width: 2px;
}

.home-redesign .brand strong {
  font-size: 1.12rem;
}

.home-redesign .brand small {
  margin-top: 3px;
  font-size: 0.75rem;
}

.home-redesign .site-nav {
  gap: clamp(18px, 2vw, 30px);
  font-size: 0.9rem;
}

.home-redesign .site-nav a {
  padding-block: 26px 24px;
}

.home-redesign .language-control select {
  height: 40px;
}

.home-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  color: #ffffff;
  background: #0d1621;
}

.home-hero-media,
.home-hero-overlay {
  position: absolute;
  inset: 0;
}

.home-hero-media {
  z-index: -2;
  background: url("../img/hero-automation.jpg") center 48% / cover no-repeat;
  transform: scale(1.01);
}

.home-hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 15, 25, 0.94) 0%, rgba(8, 15, 25, 0.82) 42%, rgba(8, 15, 25, 0.3) 72%, rgba(8, 15, 25, 0.16) 100%),
    linear-gradient(0deg, rgba(8, 15, 25, 0.4), transparent 52%);
}

.home-hero-inner,
.home-container {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

.home-hero-inner {
  display: flex;
  align-items: center;
  min-height: calc(100svh - 250px);
  padding: 88px 0 72px;
}

.home-hero-copy-block {
  max-width: 790px;
}

.home-hero .eyebrow {
  margin-bottom: 18px;
  color: #f2a98f;
}

.home-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.25rem, 5.6vw, 5.35rem);
  line-height: 1.01;
}

.home-hero-copy {
  max-width: 700px;
  margin: 26px 0 0;
  color: #d7e0e9;
  font-size: 1.16rem;
  line-height: 1.75;
}

.home-hero .hero-actions {
  align-items: center;
  margin-top: 34px;
}

.home-email-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  color: #ffffff;
  background: rgba(15, 118, 110, 0.9);
  border: 1px solid rgba(43, 177, 165, 0.92);
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(4, 47, 44, 0.2);
  font-weight: 800;
  transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.home-email-link:hover,
.home-email-link:focus-visible {
  color: #ffffff;
  background: var(--teal);
  border-color: #45c2b6;
  transform: translateY(-1px);
}

.home-trust-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.home-trust-strip > div {
  position: relative;
  min-width: 0;
  padding: 26px 32px 30px 52px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.home-trust-strip > div:first-child {
  padding-left: 28px;
}

.home-trust-strip > div:last-child {
  border-right: 0;
}

.home-trust-strip span {
  position: absolute;
  top: 28px;
  left: 18px;
  color: #f2a98f;
  font-size: 0.72rem;
  font-weight: 900;
}

.home-trust-strip > div:first-child span {
  left: 0;
}

.home-trust-strip strong {
  display: block;
  margin-bottom: 7px;
  font-size: 0.98rem;
}

.home-trust-strip p {
  margin: 0;
  color: #aebdca;
  font-size: 0.86rem;
  line-height: 1.55;
}

.home-section {
  padding: 104px 0;
}

.home-section .eyebrow {
  margin: 0 0 13px;
}

.home-section h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 3.7rem);
  line-height: 1.08;
}

.home-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.72fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 48px;
}

.home-section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1.02rem;
}

.home-areas {
  background: #f2f5f7;
}

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

.home-area-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d9e0e6;
  border-radius: 7px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-area-card:hover,
.home-area-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(184, 69, 39, 0.5);
  box-shadow: 0 20px 44px rgba(17, 24, 39, 0.11);
}

.home-area-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-area-copy {
  display: flex;
  min-height: 290px;
  flex: 1;
  flex-direction: column;
  padding: 30px;
}

.home-area-copy > span,
.home-evidence-grid article span {
  color: var(--rust);
  font-size: 0.77rem;
  font-weight: 900;
}

.home-area-copy h3 {
  margin: 18px 0 12px;
  font-size: 1.35rem;
  line-height: 1.25;
}

.home-area-copy p {
  margin: 0;
  color: var(--muted);
}

.home-area-copy strong {
  margin-top: auto;
  padding-top: 28px;
  color: var(--teal);
  font-size: 0.9rem;
}

.home-positioning {
  padding: 0;
  color: #ffffff;
  background: #182330;
}

.home-positioning-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  width: 100%;
  max-width: none;
}

.home-positioning-media {
  position: relative;
  min-height: 720px;
  margin: 0;
  overflow: hidden;
}

.home-positioning-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(8, 15, 25, 0.72), transparent 48%);
}

.home-positioning-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-positioning-media figcaption {
  position: absolute;
  z-index: 1;
  right: 42px;
  bottom: 34px;
  left: 42px;
  color: #d7e0e9;
  font-size: 0.88rem;
}

.home-positioning-copy {
  max-width: 660px;
  padding: 92px clamp(36px, 7vw, 112px);
}

.home-positioning-copy .eyebrow {
  color: #f2a98f;
}

.home-positioning-copy h2 {
  color: #ffffff;
}

.home-support-list {
  display: grid;
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.home-support-list li {
  display: grid;
  gap: 7px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.home-support-list strong {
  color: #ffffff;
}

.home-support-list span {
  color: #aebdca;
  font-size: 0.94rem;
}

.home-process {
  background: #ffffff;
}

.compact-heading {
  margin-bottom: 44px;
}

.home-process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-process-list li {
  min-width: 0;
  padding: 32px 28px 34px;
  border-right: 1px solid var(--line);
}

.home-process-list li:first-child {
  padding-left: 0;
}

.home-process-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.home-process-list span {
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 900;
}

.home-process-list h3 {
  margin: 35px 0 10px;
  font-size: 1.2rem;
}

.home-process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.home-evidence {
  background: #eef3f5;
}

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

.home-evidence-grid article {
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d9e0e6;
  border-radius: 7px;
}

.home-evidence-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-evidence-grid article > div {
  padding: 26px 28px 30px;
}

.home-evidence-grid h3 {
  margin: 14px 0 9px;
  font-size: 1.18rem;
}

.home-evidence-grid p {
  margin: 0;
  color: var(--muted);
}

.home-industries {
  padding: 76px 0;
  color: #ffffff;
  background: #25313d;
}

.home-industries-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 72px;
  align-items: center;
}

.home-industries .eyebrow {
  color: #f2a98f;
}

.home-industries h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.home-industry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.home-industry-list span {
  padding: 17px 8px 17px 0;
  color: #d9e2e9;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 700;
}

.home-contact {
  background: #ffffff;
}

.home-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.8fr);
  gap: 82px;
  align-items: start;
}

.home-contact-copy > h2 {
  font-size: clamp(2.25rem, 3.8vw, 3.45rem);
}

.home-contact-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.02rem;
}

.home-readiness {
  margin-top: 32px;
  padding: 24px 26px;
  background: #eef3f5;
  border-left: 4px solid var(--teal);
}

.home-readiness > strong {
  display: block;
  margin-bottom: 12px;
}

.home-readiness ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.home-redesign .contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.home-redesign .contact-methods a {
  justify-content: flex-start;
  overflow-wrap: anywhere;
}

.home-redesign .inquiry-form {
  gap: 17px;
  padding: 34px;
  background: #182330;
  border: 0;
  box-shadow: 0 24px 54px rgba(17, 24, 39, 0.16);
}

.home-redesign .inquiry-form label {
  color: #e4eaf0;
}

.home-redesign .inquiry-form input,
.home-redesign .inquiry-form select,
.home-redesign .inquiry-form textarea {
  background: #ffffff;
  border-color: transparent;
}

.home-form-heading {
  margin-bottom: 5px;
}

.home-form-heading span {
  color: #f2a98f;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-form-heading h3 {
  margin: 5px 0 0;
  color: #ffffff;
  font-size: 1.45rem;
}

.home-redesign .form-note {
  color: #aebdca;
}

.home-redesign .site-footer {
  padding-inline: clamp(20px, 4vw, 56px);
  background: #111a24;
}

@media (min-width: 1800px) {
  .home-redesign .site-header {
    min-height: 84px;
  }

  .home-redesign .brand {
    min-width: 290px;
  }

  .home-redesign .brand-mark {
    width: 50px;
    height: 50px;
  }

  .home-redesign .brand strong {
    font-size: 1.28rem;
  }

  .home-redesign .brand small {
    font-size: 0.84rem;
  }

  .home-redesign .site-nav {
    font-size: 1rem;
  }

  .home-redesign .language-control {
    font-size: 0.9rem;
  }

  .home-redesign .language-control select {
    min-width: 150px;
    height: 44px;
  }

  .home-hero {
    min-height: calc(100svh - 84px);
  }

  .home-hero-inner,
  .home-container,
  .home-trust-strip {
    width: min(88vw, 1560px);
  }

  .home-hero-inner {
    min-height: calc(100svh - 280px);
    padding-block: 104px 82px;
  }

  .home-hero-copy-block,
  .home-hero h1 {
    max-width: 940px;
  }

  .home-hero h1 {
    font-size: 6rem;
  }

  .home-hero-copy {
    max-width: 820px;
    font-size: 1.28rem;
  }

  .home-trust-strip strong {
    font-size: 1.08rem;
  }

  .home-trust-strip p {
    font-size: 0.94rem;
  }

  .home-section {
    padding-block: 122px;
  }

  .home-section h2 {
    max-width: 940px;
    font-size: 4rem;
  }

  .home-section-heading {
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.68fr);
    gap: 96px;
  }

  .home-section-heading > p {
    font-size: 1.12rem;
  }

  .home-area-grid,
  .home-evidence-grid {
    gap: 28px;
  }

  .home-area-copy {
    min-height: 330px;
    padding: 36px;
  }

  .home-area-copy h3 {
    font-size: 1.55rem;
  }

  .home-area-copy p,
  .home-evidence-grid p,
  .home-process-list p {
    font-size: 1.02rem;
  }

  .home-positioning-copy {
    max-width: 760px;
  }

  .home-support-list span {
    font-size: 1rem;
  }

  .home-process-list h3,
  .home-evidence-grid h3 {
    font-size: 1.35rem;
  }

  .home-industries h2 {
    font-size: 3.35rem;
  }

  .home-industry-list span {
    font-size: 1.04rem;
  }

  .home-contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(480px, 0.75fr);
    gap: 110px;
  }
}

@media (min-width: 2600px) {
  .home-hero-inner,
  .home-container,
  .home-trust-strip {
    width: min(82vw, 2100px);
  }

  .home-hero-copy-block,
  .home-hero h1 {
    max-width: 1120px;
  }

  .home-hero h1 {
    font-size: 7rem;
  }

  .home-hero-copy {
    max-width: 960px;
    font-size: 1.42rem;
  }

  .home-section h2 {
    max-width: 1120px;
    font-size: 4.6rem;
  }

  .home-section-heading > p {
    font-size: 1.24rem;
  }

  .home-area-copy {
    min-height: 370px;
    padding: 44px;
  }

  .home-area-copy h3 {
    font-size: 1.8rem;
  }

  .home-area-copy p,
  .home-evidence-grid p,
  .home-process-list p {
    font-size: 1.12rem;
  }
}

@media (min-width: 4000px) {
  .home-hero-inner,
  .home-container,
  .home-trust-strip {
    width: min(76vw, 2600px);
  }

  .home-hero-copy-block,
  .home-hero h1 {
    max-width: 1320px;
  }

  .home-hero h1 {
    font-size: 8rem;
  }

  .home-hero-copy {
    max-width: 1120px;
    font-size: 1.58rem;
  }

  .home-section h2 {
    max-width: 1320px;
    font-size: 5.2rem;
  }

  .home-area-copy h3 {
    font-size: 2rem;
  }
}

@media (max-width: 1020px) {
  .home-redesign .site-header {
    min-height: 68px;
  }

  .home-redesign .brand {
    min-width: 0;
  }

  .home-redesign .site-nav {
    top: 68px;
  }

  .home-redesign .site-nav a {
    padding: 14px 0;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero-inner {
    min-height: 590px;
    padding: 74px 0 60px;
  }

  .home-hero h1 {
    font-size: clamp(2.75rem, 7vw, 4.4rem);
  }

  .home-area-grid,
  .home-evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-area-card:last-child,
  .home-evidence-grid article:last-child {
    grid-column: 1 / -1;
  }

  .home-area-card:last-child {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .home-area-card:last-child img {
    height: 100%;
  }

  .home-positioning-grid,
  .home-industries-grid,
  .home-contact-grid {
    grid-template-columns: 1fr;
  }

  .home-positioning-media {
    min-height: 520px;
  }

  .home-positioning-copy {
    max-width: 760px;
    padding: 72px 32px;
  }

  .home-process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-process-list li:nth-child(2) {
    border-right: 0;
  }

  .home-process-list li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .home-process-list li:first-child,
  .home-process-list li:last-child {
    padding-inline: 28px;
  }

  .home-evidence-grid article:last-child {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .home-evidence-grid article:last-child img {
    height: 100%;
  }

  .home-contact-grid {
    gap: 50px;
  }
}

@media (max-width: 720px) {
  .home-hero-inner,
  .home-container,
  .home-trust-strip {
    width: min(100% - 32px, 1180px);
  }

  .home-hero-media {
    background-position: 62% center;
  }

  .home-hero-overlay {
    background: rgba(8, 15, 25, 0.75);
  }

  .home-hero-inner {
    min-height: auto;
    padding: 70px 0 58px;
  }

  .home-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .home-hero-copy {
    font-size: 1rem;
    line-height: 1.65;
  }

  .home-hero .hero-actions {
    align-items: stretch;
  }

  .home-hero .button {
    width: 100%;
  }

  .home-email-link {
    justify-content: center;
  }

  .home-trust-strip {
    grid-template-columns: 1fr;
    padding: 8px 0;
  }

  .home-trust-strip > div,
  .home-trust-strip > div:first-child {
    padding: 18px 0 18px 36px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .home-trust-strip > div:last-child {
    border-bottom: 0;
  }

  .home-trust-strip span,
  .home-trust-strip > div:first-child span {
    top: 20px;
    left: 0;
  }

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

  .home-section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 34px;
  }

  .home-section h2,
  .home-contact-copy > h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .home-area-grid,
  .home-evidence-grid {
    grid-template-columns: 1fr;
  }

  .home-area-card:last-child,
  .home-evidence-grid article:last-child {
    display: flex;
    grid-column: auto;
    grid-template-columns: none;
  }

  .home-area-card:last-child img,
  .home-evidence-grid article:last-child img {
    height: auto;
  }

  .home-area-copy {
    min-height: 0;
    padding: 25px;
  }

  .home-area-copy strong {
    margin-top: 22px;
    padding-top: 0;
  }

  .home-positioning-media {
    min-height: 360px;
  }

  .home-positioning-media figcaption {
    right: 24px;
    bottom: 22px;
    left: 24px;
  }

  .home-positioning-copy {
    padding: 62px 24px;
  }

  .home-process-list {
    grid-template-columns: 1fr;
  }

  .home-process-list li,
  .home-process-list li:first-child,
  .home-process-list li:last-child {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-process-list li:last-child {
    border-bottom: 0;
  }

  .home-process-list h3 {
    margin-top: 14px;
  }

  .home-industries {
    padding: 62px 0;
  }

  .home-industries-grid {
    gap: 38px;
  }

  .home-industry-list {
    grid-template-columns: 1fr;
  }

  .home-contact-grid {
    gap: 42px;
  }

  .home-redesign .inquiry-form {
    padding: 25px;
  }
}

@media (max-width: 420px) {
  .home-redesign .language-control select {
    min-width: 108px;
  }

  .home-redesign .header-actions {
    gap: 8px;
  }

  .home-hero h1 {
    font-size: 2.25rem;
  }
}

html[lang="ru"] .home-hero-copy-block,
html[lang="ru"] .home-hero h1 {
  max-width: 1040px;
}

html[lang="ru"] .home-hero h1 {
  font-size: clamp(3rem, 4.4vw, 4.6rem);
  line-height: 1.04;
  overflow-wrap: normal;
}

@media (min-width: 2600px) {
  html[lang="ru"] .home-hero-copy-block,
  html[lang="ru"] .home-hero h1 {
    max-width: 1320px;
  }

  html[lang="ru"] .home-hero h1 {
    font-size: 5.6rem;
  }
}

@media (min-width: 4000px) {
  html[lang="ru"] .home-hero-copy-block,
  html[lang="ru"] .home-hero h1 {
    max-width: 1500px;
  }

  html[lang="ru"] .home-hero h1 {
    font-size: 6.3rem;
  }
}

@media (max-width: 720px) {
  html[lang="ru"] .home-hero h1 {
    font-size: 2.05rem;
    line-height: 1.08;
  }
}

/* Directional project pathway replaces boxed process cards. */
@media (min-width: 901px) {
  .home-process-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
    border: 0;
  }

  .home-process-list li,
  .home-process-list li:first-child,
  .home-process-list li:last-child {
    position: relative;
    min-width: 0;
    padding: 78px 44px 18px 0;
    border: 0 !important;
  }

  .home-process-list li:not(:last-child)::before {
    position: absolute;
    top: 29px;
    right: 20px;
    left: 48px;
    height: 2px;
    background: #c7d2d9;
    content: "";
  }

  .home-process-list li:not(:last-child)::after {
    position: absolute;
    top: 23px;
    right: 20px;
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--rust);
    border-right: 2px solid var(--rust);
    content: "";
    transform: rotate(45deg);
  }

  .home-process-list span {
    position: absolute;
    top: 7px;
    left: 0;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: #ffffff;
    background: var(--rust);
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(184, 69, 39, 0.24), 0 8px 22px rgba(17, 24, 39, 0.12);
    font-size: 0.76rem;
  }

  .home-process-list li:last-child span {
    background: var(--teal);
    box-shadow: 0 0 0 1px rgba(15, 118, 110, 0.28), 0 8px 22px rgba(17, 24, 39, 0.12);
  }

  .home-process-list h3 {
    margin: 0 0 10px;
  }
}

@media (max-width: 900px) {
  .home-process-list {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    border: 0;
  }

  .home-process-list li,
  .home-process-list li:first-child,
  .home-process-list li:last-child {
    position: relative;
    min-height: 112px;
    padding: 2px 0 46px 66px;
    border: 0 !important;
  }

  .home-process-list li:last-child {
    min-height: 0;
    padding-bottom: 0;
  }

  .home-process-list li:not(:last-child)::before {
    position: absolute;
    top: 46px;
    bottom: 0;
    left: 22px;
    width: 2px;
    background: #c7d2d9;
    content: "";
  }

  .home-process-list li:not(:last-child)::after {
    position: absolute;
    bottom: 13px;
    left: 16px;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--rust);
    border-bottom: 2px solid var(--rust);
    content: "";
    transform: rotate(45deg);
  }

  .home-process-list span {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: #ffffff;
    background: var(--rust);
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(184, 69, 39, 0.24), 0 8px 22px rgba(17, 24, 39, 0.12);
    font-size: 0.76rem;
  }

  .home-process-list li:last-child span {
    background: var(--teal);
    box-shadow: 0 0 0 1px rgba(15, 118, 110, 0.28), 0 8px 22px rgba(17, 24, 39, 0.12);
  }

  .home-process-list h3 {
    margin: 0 0 8px;
  }
}

@media (min-width: 721px) and (max-width: 1020px) {
  .home-evidence-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-evidence-grid article:last-child {
    display: block;
    grid-column: auto;
  }

  .home-evidence-grid article:last-child img {
    height: auto;
  }
}

@media (max-width: 720px) {
  .home-evidence-grid article:last-child {
    display: block;
    grid-column: auto;
  }

  .home-evidence-grid article:last-child img {
    height: auto;
  }
}
