@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Inter:wght@400;500;600;700&family=Cairo:wght@400;500;600;700&display=swap');

:root {
  --navy-950: #04101f;
  --navy-900: #071a33;
  --navy-800: #002350;
  --navy-700: #103762;
  --gold: #ef7e02;
  --gold-light: #ff9d2e;
  --paper: #f3f0e9;
  --paper-warm: #e9e3d7;
  --white: #ffffff;
  --ink: #07111e;
  --muted: #66717f;
  --steel-blue: #4a6b8a;
  --signal-green: #2d7a4f;
  --line: rgba(7, 26, 51, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 30px 80px rgba(0, 21, 50, 0.18);
  --radius: 2px;
  --max: 1240px;
  --header-height: 82px;
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'SF Mono', Consolas, monospace;
  --font-arabic: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

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

html[dir="rtl"] body {
  font-family: var(--font-arabic);
}

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

button {
  color: inherit;
}

::selection {
  color: var(--white);
  background: var(--gold);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  color: var(--white);
  background: rgba(4, 16, 31, 0.93);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(calc(100% - 40px), var(--max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-accent-bar {
  height: 3px;
  background: var(--gold);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 270px;
  min-width: 270px;
  height: 68px;
  padding: 6px 12px;
  background: var(--white);
  border-left: 4px solid var(--gold);
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 32px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.79rem;
  font-weight: 650;
  letter-spacing: 0.05em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-toggle,
.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-light);
  cursor: pointer;
}

.language-toggle {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.language-toggle:hover,
.menu-toggle:hover {
  border-color: var(--gold);
}

.menu-toggle {
  display: none;
  align-content: center;
  gap: 4px;
}

.menu-toggle > span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.76rem;
}

.button-gold {
  color: var(--navy-950);
  background: var(--gold);
}

.button-gold:hover {
  background: var(--gold-light);
}

.button-dark {
  color: var(--white);
  background: var(--navy-900);
}

.button-dark:hover {
  background: var(--navy-800);
}

.button-outline {
  min-height: 42px;
  color: var(--navy-900);
  background: transparent;
  border-color: rgba(7, 26, 51, 0.3);
}

.button-outline:hover {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.button-full {
  width: 100%;
  justify-content: space-between;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 65%, rgba(239, 126, 2, 0.12), transparent 27%),
    radial-gradient(circle at 84% 10%, rgba(38, 93, 142, 0.3), transparent 30%),
    var(--navy-950);
}

.hero-grid,
.closing-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, black, transparent 70%);
}

.hero::before {
  content: "PMG / INDUSTRIAL REQUIREMENT DESK";
  position: absolute;
  right: -74px;
  bottom: 132px;
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.07em;
  white-space: nowrap;
  transform: rotate(-90deg);
  transform-origin: bottom right;
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--gold);
}

.hero-orbit-one {
  top: -290px;
  right: -140px;
  width: 720px;
  height: 720px;
  animation: orbit-spin 26s linear infinite;
}

.hero-orbit-two {
  top: -190px;
  right: -40px;
  width: 520px;
  height: 520px;
  animation: orbit-spin 20s linear infinite reverse;
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

.hero-layout {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  min-height: calc(100vh - var(--header-height));
  margin: 0 auto;
  padding: clamp(70px, 8vw, 128px) 0 clamp(70px, 8vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.78fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--navy-800);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.8vw, 6.2rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

html[dir="rtl"] .hero h1 {
  font-family: var(--font-arabic);
  text-transform: none;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.84rem;
  font-weight: 800;
}

.text-link {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.text-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.hero-proof {
  margin-top: clamp(54px, 7vw, 90px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}

.hero-proof > div {
  min-height: 78px;
  padding: 18px 16px 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  border-right: 1px solid var(--line-light);
  font-size: 0.78rem;
  font-weight: 650;
}

.proof-index {
  color: var(--gold);
  font-family: Consolas, monospace;
  font-size: 0.7rem;
}

.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-radius: 12px;
  overflow: hidden;
}

.hero-images img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
}

.proof-counters {
  background: var(--deep-navy);
  padding: clamp(40px, 5vw, 64px) 0;
}

.proof-grid {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 48px);
  text-align: center;
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.proof-number {
  display: block;
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 850;
  line-height: 1;
}

.proof-label {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.route-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  margin: -32px -32px 20px -32px;
  width: calc(100% + 64px);
}

.requirement-console {
  position: relative;
  color: var(--ink);
  background: var(--paper);
  border-top: 5px solid var(--gold);
  box-shadow: var(--shadow);
}

.requirement-console::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -18px;
  width: 54%;
  height: 52%;
  border: 1px solid rgba(239, 126, 2, 0.45);
}

.console-topline {
  padding: 25px 28px 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.console-kicker {
  margin: 0 0 5px;
  color: var(--gold);
  font-family: Consolas, monospace;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.console-topline h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.live-chip,
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  color: var(--navy-800);
  background: rgba(0, 35, 80, 0.06);
  font-family: Consolas, monospace;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.live-chip i {
  width: 7px;
  height: 7px;
  background: #2d9d68;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(45, 157, 104, 0.12);
}

.path-switcher {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.path-button {
  min-width: 0;
  padding: 16px 12px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
  transition: color 160ms ease, background-color 160ms ease;
}

.path-button:last-child {
  border-right: 0;
}

.path-button span,
.path-button b {
  display: block;
}

.path-button span {
  margin-bottom: 5px;
  color: var(--gold);
  font-family: Consolas, monospace;
  font-size: 0.62rem;
}

.path-button b {
  overflow: hidden;
  font-size: 0.7rem;
  line-height: 1.25;
  text-overflow: ellipsis;
}

.path-button.is-active {
  color: var(--white);
  background: var(--navy-800);
}

.path-button.is-active span {
  color: var(--gold-light);
}

.requirement-form {
  padding: 24px 28px 28px;
}

.requirement-form label {
  display: block;
  color: var(--navy-900);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.requirement-form input {
  width: 100%;
  height: 46px;
  margin-top: 6px;
  padding: 0 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(7, 26, 51, 0.21);
  border-radius: 0;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.requirement-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(239, 126, 2, 0.13);
}

.field-row {
  margin-top: 17px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.completeness-block {
  margin: 22px 0;
}

.completeness-label {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--navy-900);
  font-size: 0.7rem;
  font-weight: 800;
}

.completeness-label output {
  color: var(--gold);
  font-family: Consolas, monospace;
}

.progress-track {
  height: 4px;
  margin: 7px 0 8px;
  overflow: hidden;
  background: rgba(0, 35, 80, 0.12);
}

.progress-track span {
  display: block;
  height: 100%;
  background: var(--gold);
  transition: width 240ms ease;
}

.completeness-block p {
  margin: 0;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.45;
}

.brief-output {
  margin: 0 28px 28px;
  padding: 18px;
  background: var(--white);
  border-left: 3px solid var(--gold);
}

.brief-output p {
  margin: 0 0 7px;
  font-size: 0.76rem;
  line-height: 1.5;
}

.brief-output .brief-label {
  color: var(--gold);
  font-family: Consolas, monospace;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brief-output small {
  color: var(--muted);
  font-size: 0.62rem;
}

.signal-strip {
  min-height: 64px;
  padding: 14px max(20px, calc((100% - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-800);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-strip p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: Consolas, monospace;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-strip i {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.signal-strip p:last-child i {
  display: none;
}

.section {
  position: relative;
  padding: clamp(86px, 10vw, 150px) max(20px, calc((100% - var(--max)) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(40px, 8vw, 110px);
}

.section-heading h2,
.process-heading h2,
.spec-copy h2,
.closing-content h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.8vw, 5rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

html[dir="rtl"] .section-heading h2,
html[dir="rtl"] .process-heading h2,
html[dir="rtl"] .spec-copy h2,
html[dir="rtl"] .closing-content h2 {
  font-family: var(--font-arabic);
  text-transform: none;
  letter-spacing: 0;
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.route-grid {
  margin-top: clamp(50px, 7vw, 86px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.route-card {
  position: relative;
  min-height: 420px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.24);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 200ms ease, background-color 200ms ease, transform 200ms ease;
}

.route-card:hover {
  z-index: 2;
  color: var(--white);
  background: var(--navy-800);
  transform: translateY(-8px);
}

.route-card-featured {
  border-top: 4px solid var(--gold);
}

.route-number {
  color: var(--gold);
  font-family: Consolas, monospace;
  font-size: 0.68rem;
}

.route-icon {
  width: 76px;
  height: 76px;
  margin: 58px 0 34px;
  display: grid;
  place-items: center;
  color: var(--navy-800);
  background: rgba(0, 35, 80, 0.06);
}

.route-icon svg {
  width: 44px;
  height: 44px;
  fill: currentColor;
}

.route-card:hover .route-icon {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.route-card h3 {
  margin: 0 0 13px;
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.route-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.route-card:hover p {
  color: rgba(255, 255, 255, 0.67);
}

.card-link {
  width: 100%;
  margin-top: auto;
  padding: 19px 0 0;
  color: var(--navy-800);
  background: none;
  border: 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
}

.route-card:hover .card-link {
  color: var(--gold-light);
  border-color: var(--line-light);
}

.solutions-section {
  overflow: hidden;
  background: var(--paper-warm);
}

.section-index {
  position: absolute;
  top: 38px;
  right: max(20px, calc((100% - var(--max)) / 2));
  color: rgba(7, 26, 51, 0.23);
  font-family: Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.solution-list {
  margin-top: clamp(50px, 7vw, 86px);
  border-top: 1px solid rgba(7, 26, 51, 0.28);
}

.solution-row {
  min-height: 142px;
  display: grid;
  grid-template-columns: 70px 176px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(7, 26, 51, 0.28);
  transition: padding 180ms ease, color 180ms ease, background-color 180ms ease;
}

.solution-row:hover {
  padding-right: 18px;
  padding-left: 18px;
  color: var(--white);
  background: var(--navy-800);
}

.solution-code {
  color: var(--gold);
  font-family: Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 700;
}

.solution-visual {
  position: relative;
  height: 88px;
  overflow: hidden;
  background: var(--navy-900);
}

.solution-visual::before,
.solution-visual::after,
.solution-visual i,
.solution-visual i::before,
.solution-visual i::after {
  content: "";
  position: absolute;
  display: block;
}

.visual-light::before {
  top: 11px;
  left: 82px;
  width: 12px;
  height: 64px;
  background: #7890aa;
}

.visual-light::after {
  top: 17px;
  left: 75px;
  width: 26px;
  height: 14px;
  background: var(--gold);
  border-radius: 50% 50% 20% 20%;
  box-shadow: 0 0 25px var(--gold);
}

.visual-light i {
  inset: 0;
  background-image: linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.14) 50%, transparent 51%);
  transform: rotate(24deg) scale(1.7);
}

.visual-crane::before {
  top: 17px;
  left: 38px;
  width: 100px;
  height: 7px;
  background: #7890aa;
  box-shadow: 0 50px 0 #7890aa;
}

.visual-crane::after {
  top: 22px;
  left: 43px;
  width: 7px;
  height: 50px;
  background: #7890aa;
  box-shadow: 83px 0 0 #7890aa;
}

.visual-crane i {
  top: 21px;
  left: 92px;
  width: 2px;
  height: 36px;
  background: var(--gold);
}

.visual-crane i::after {
  top: 31px;
  left: -4px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--gold);
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.visual-steel::before {
  top: 22px;
  left: 27px;
  width: 122px;
  height: 15px;
  border: 3px solid #7890aa;
  box-shadow: 0 22px 0 -3px var(--navy-900), 0 22px 0 0 #7890aa, 0 44px 0 -3px var(--navy-900), 0 44px 0 0 #7890aa;
  transform: skewX(-18deg);
}

.visual-steel::after {
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}

.solution-copy strong,
.solution-copy small {
  display: block;
}

.solution-copy strong {
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.solution-copy small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.8rem;
}

.solution-row:hover .solution-copy small {
  color: rgba(255, 255, 255, 0.65);
}

.solution-arrow {
  color: var(--gold);
  font-size: 1.5rem;
  text-align: right;
}

.process-section {
  color: var(--white);
  background: var(--navy-800);
}

.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  opacity: 0.08;
  background-image: repeating-linear-gradient(135deg, white 0, white 1px, transparent 1px, transparent 22px);
}

.process-heading {
  position: relative;
  max-width: 780px;
}

.process-track {
  position: relative;
  margin: clamp(60px, 8vw, 100px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.process-track li {
  position: relative;
  min-width: 0;
  padding: 0 18px;
  text-align: center;
}

.process-track li > span {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  margin: 0 auto 25px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold);
  border: 7px solid var(--navy-800);
  box-sizing: content-box;
  font-family: Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 800;
  border-radius: 50%;
}

.process-track strong,
.process-track small {
  display: block;
}

.process-track strong {
  font-size: 0.92rem;
}

.process-track small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  line-height: 1.45;
}

.spec-section {
  overflow: hidden;
  background: var(--white);
}

.spec-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -160px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(0, 35, 80, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(0, 35, 80, 0.025), 0 0 0 140px rgba(0, 35, 80, 0.02);
}

.spec-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(470px, 1fr);
  align-items: center;
  gap: clamp(60px, 9vw, 120px);
}

.spec-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 0.86rem;
  font-weight: 650;
}

.check-list li > span:first-child {
  width: 23px;
  height: 23px;
  min-width: 23px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy-800);
  font-size: 0.72rem;
}

.document-desk {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 22px 22px 0 rgba(0, 35, 80, 0.06);
}

.document-desk::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -17px;
  right: -17px;
  width: 72px;
  height: 72px;
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
}

.desk-toolbar {
  min-height: 50px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.64);
  background: var(--navy-900);
}

.desk-toolbar > span {
  display: flex;
  gap: 6px;
}

.desk-toolbar i {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.26);
  border-radius: 50%;
}

.desk-toolbar i:first-child {
  background: var(--gold);
}

.desk-toolbar small {
  font-family: Consolas, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.07em;
}

.drop-zone {
  margin: 22px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px dashed rgba(0, 35, 80, 0.32);
  text-align: center;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.drop-zone:hover,
.drop-zone.is-dragging {
  background: rgba(239, 126, 2, 0.06);
  border-color: var(--gold);
}

.drop-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy-800);
  font-size: 1.4rem;
}

.drop-zone strong {
  font-size: 0.9rem;
}

.drop-zone small {
  margin-bottom: 13px;
  color: var(--muted);
  font-family: Consolas, monospace;
  font-size: 0.62rem;
}

.analysis-preview {
  margin: 0 22px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
}

.analysis-head,
.analysis-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.analysis-head {
  padding-bottom: 13px;
  color: var(--navy-900);
  font-size: 0.73rem;
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

.status-chip {
  color: #8c5a00;
  background: rgba(239, 126, 2, 0.12);
}

.status-chip.is-ready {
  color: #156442;
  background: rgba(45, 157, 104, 0.12);
}

.analysis-row {
  padding: 10px 0;
  font-size: 0.7rem;
  border-bottom: 1px solid rgba(7, 26, 51, 0.08);
}

.analysis-row:last-child {
  border-bottom: 0;
}

.analysis-row span {
  color: var(--muted);
}

.analysis-row b {
  font-size: 0.68rem;
}

.prototype-note {
  margin: 14px 22px 22px;
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.5;
}

.evidence-section {
  background: var(--paper);
}

.evidence-grid {
  margin-top: clamp(50px, 7vw, 82px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.evidence-grid article {
  min-height: 235px;
  padding: 27px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.evidence-grid article > span {
  color: var(--gold);
  font-family: Consolas, monospace;
  font-size: 0.63rem;
  font-weight: 800;
}

.evidence-grid h3 {
  margin: 60px 0 12px;
  font-size: 1.15rem;
}

.evidence-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.65;
}

.closing-section {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 9vw, 130px) max(20px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background: var(--navy-950);
}

.closing-grid {
  opacity: 0.11;
  mask-image: linear-gradient(to left, black, transparent 80%);
}

.closing-content {
  position: relative;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.closing-content > img {
  width: 220px;
  height: 220px;
  padding: 16px;
  object-fit: contain;
  background: var(--white);
}

.closing-content h2 {
  max-width: 760px;
}

.closing-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.contact-link {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: Consolas, monospace;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.site-footer {
  padding: 22px max(20px, calc((100% - var(--max)) / 2));
  display: grid;
  grid-template-columns: 165px minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.57);
  background: #020a14;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.7rem;
}

.site-footer img {
  width: 165px;
  padding: 5px 8px;
  background: var(--white);
  border-left: 3px solid var(--gold);
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  font-family: Consolas, monospace;
  white-space: nowrap;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html[dir="rtl"] .desktop-nav {
  margin-right: auto;
  margin-left: 0;
}

html[dir="rtl"] .brand,
html[dir="rtl"] .site-footer img {
  border-right: 4px solid var(--gold);
  border-left: 0;
}

html[dir="rtl"] .hero::before {
  right: auto;
  left: -74px;
  transform: rotate(90deg);
  transform-origin: bottom left;
}

html[dir="rtl"] .hero-proof > div {
  padding-right: 0;
  padding-left: 16px;
  border-right: 0;
  border-left: 1px solid var(--line-light);
}

html[dir="rtl"] .requirement-console::after {
  right: auto;
  left: -18px;
}

html[dir="rtl"] .path-button {
  text-align: right;
  border-right: 0;
  border-left: 1px solid var(--line);
}

html[dir="rtl"] .path-button:last-child {
  border-left: 0;
}

html[dir="rtl"] .brief-output {
  border-right: 3px solid var(--gold);
  border-left: 0;
}

html[dir="rtl"] .section-index {
  right: auto;
  left: max(20px, calc((100% - var(--max)) / 2));
}

html[dir="rtl"] .solution-arrow {
  text-align: left;
}

html[dir="rtl"] .document-desk::before {
  right: auto;
  left: -17px;
  border-right: 0;
  border-left: 3px solid var(--gold);
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

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

  .mobile-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    padding: 16px 20px 24px;
    color: var(--white);
    background: var(--navy-950);
    border-bottom: 1px solid var(--line-light);
  }

  .mobile-menu.is-open {
    display: grid;
  }

  .mobile-menu a {
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    font-size: 0.92rem;
    font-weight: 700;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
  }

  .requirement-console {
    width: min(100%, 680px);
  }

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

  .route-card:last-child {
    grid-column: 1 / -1;
    min-height: 340px;
  }

  .spec-layout {
    grid-template-columns: 1fr;
  }

  .document-desk {
    width: min(100%, 720px);
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 68px;
  }

  .header-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand {
    width: 200px;
    min-width: 200px;
    height: 52px;
  }

  .header-actions .button {
    display: none;
  }

  .hero-layout {
    width: min(calc(100% - 28px), var(--max));
    padding-top: 66px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }

  .hero-images {
    grid-template-columns: 1fr;
  }

  .hero-images img {
    height: 200px;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .route-photo {
    height: 160px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof > div {
    min-height: 58px;
    padding: 12px 0;
    flex-direction: row;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  html[dir="rtl"] .hero-proof > div {
    padding-left: 0;
    border-left: 0;
  }

  .signal-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .signal-strip p {
    width: 100%;
    justify-content: space-between;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .route-card,
  .route-card:last-child {
    min-height: 360px;
    grid-column: auto;
  }

  .solution-row {
    min-height: 128px;
    grid-template-columns: 46px 94px minmax(0, 1fr) 24px;
    gap: 12px;
  }

  .solution-visual {
    height: 68px;
  }

  .solution-copy strong {
    font-size: 1.12rem;
  }

  .solution-copy small {
    display: none;
  }

  .visual-light::before { left: 42px; }
  .visual-light::after { left: 35px; }
  .visual-crane::before { left: 12px; width: 70px; }
  .visual-crane::after { left: 15px; box-shadow: 61px 0 0 #7890aa; }
  .visual-crane i { left: 53px; }
  .visual-steel::before { left: 15px; width: 65px; }

  .process-track {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-track::before {
    top: 0;
    bottom: 0;
    left: 22px;
    width: 1px;
    height: auto;
  }

  html[dir="rtl"] .process-track::before {
    right: 22px;
    left: auto;
  }

  .process-track li {
    min-height: 94px;
    padding: 0 0 25px 76px;
    text-align: left;
  }

  html[dir="rtl"] .process-track li {
    padding: 0 76px 25px 0;
    text-align: right;
  }

  .process-track li > span {
    position: absolute;
    top: -5px;
    left: 0;
    margin: 0;
  }

  html[dir="rtl"] .process-track li > span {
    right: 0;
    left: auto;
  }

  .closing-content {
    grid-template-columns: 1fr;
  }

  .closing-content > img {
    width: 150px;
    height: 150px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 520px) {
  .header-actions {
    gap: 7px;
  }

  .language-toggle,
  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .brand {
    width: 164px;
    min-width: 164px;
    height: 46px;
  }

  .hero-actions,
  .closing-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .closing-actions .button {
    width: 100%;
  }

  .hero-actions .text-link,
  .closing-actions .contact-link {
    justify-content: center;
    text-align: center;
  }

  .console-topline {
    padding: 22px 20px 18px;
    flex-direction: column;
  }

  .path-switcher {
    grid-template-columns: 1fr;
  }

  .path-button,
  html[dir="rtl"] .path-button {
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .path-button span {
    margin: 0;
  }

  .requirement-form {
    padding: 22px 20px 24px;
  }

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

  .brief-output {
    margin: 0 20px 24px;
  }

  .section-heading h2,
  .process-heading h2,
  .spec-copy h2,
  .closing-content h2 {
    font-size: clamp(2.25rem, 12vw, 3.6rem);
  }

  .solution-row {
    grid-template-columns: 42px minmax(0, 1fr) 22px;
  }

  .solution-visual {
    display: none;
  }

  .drop-zone {
    margin: 14px;
    padding: 34px 15px;
  }

  .analysis-preview {
    margin: 0 14px;
  }

  .analysis-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .prototype-note {
    margin-right: 14px;
    margin-left: 14px;
  }
}

/* ── V3 Homepage Sections ── */

.v3-hero {
  position: relative;
  min-height: calc(100vh - var(--header-height) - 3px);
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.v3-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 70%, rgba(239, 126, 2, 0.12), transparent 40%),
    linear-gradient(rgba(4, 16, 31, 0.92), rgba(4, 16, 31, 0.78)),
    url("/images/steel-production.webp") center / cover no-repeat;
}

.v3-hero-layout {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  min-height: calc(100vh - var(--header-height) - 3px);
  margin: 0 auto;
  padding: clamp(60px, 7vw, 110px) 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
}

.v3-hero-copy {
  max-width: 720px;
}

.v3-hero-copy h1 {
  max-width: 680px;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

html[dir="rtl"] .v3-hero-copy h1 {
  font-family: var(--font-arabic);
  text-transform: none;
  letter-spacing: 0;
}

.v3-hero-image {
  position: relative;
  align-self: stretch;
  overflow: hidden;
}

.v3-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v3-featured-card {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 280px;
  padding: 20px 24px;
  background: rgba(245, 242, 235, 0.95);
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.v3-featured-card span {
  display: block;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.v3-featured-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

html[dir="rtl"] .v3-featured-card strong {
  font-family: var(--font-arabic);
  text-transform: none;
}

.v3-hero-meta {
  position: absolute;
  bottom: 28px;
  left: 0;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}

.v3-proof {
  background: var(--navy-900);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.v3-proof-grid {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(36px, 5vw, 56px) 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
}

.v3-proof-item {
  text-align: left;
}

html[dir="rtl"] .v3-proof-item {
  text-align: right;
}

.v3-proof-number {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
}

.v3-proof-label {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v3-divisions {
  background: var(--paper);
  padding: clamp(80px, 9vw, 130px) 0;
}

.v3-divisions-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.v3-divisions-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.v3-divisions-header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

html[dir="rtl"] .v3-divisions-header h2 {
  font-family: var(--font-arabic);
  text-transform: none;
}

.v3-division-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.v3-division-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.v3-division-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.v3-division-card:hover img {
  transform: scale(1.04);
}

.v3-division-card-content {
  position: relative;
  z-index: 2;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(4, 16, 31, 0.92) 60%, transparent);
  color: var(--white);
}

.v3-division-card-content .card-num {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background: var(--gold);
  color: var(--navy-950);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 10px;
}

.v3-division-card-content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

html[dir="rtl"] .v3-division-card-content h3 {
  font-family: var(--font-arabic);
  text-transform: none;
}

.v3-featured {
  background: var(--white);
  padding: clamp(80px, 9vw, 130px) 0;
}

.v3-featured-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.v3-featured-grid {
  margin-top: clamp(40px, 6vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.v3-featured-product {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.v3-featured-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 21, 50, 0.1);
}

.v3-featured-product img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
}

.v3-featured-product h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

html[dir="rtl"] .v3-featured-product h3 {
  font-family: var(--font-arabic);
  text-transform: none;
}

.v3-featured-product p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.v3-featured-product .tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.v3-featured-product .tag {
  padding: 4px 8px;
  background: rgba(0, 35, 80, 0.06);
  color: var(--steel-blue);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.v3-why {
  background: var(--navy-900);
  color: var(--white);
  padding: clamp(80px, 9vw, 130px) 0;
}

.v3-why-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.v3-why-grid {
  margin-top: clamp(40px, 6vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.v3-why-item {
  padding: 28px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.v3-why-item span {
  display: block;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.v3-why-item h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
}

.v3-why-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  line-height: 1.65;
}

.v3-industries {
  background: var(--paper-warm);
  padding: clamp(80px, 9vw, 130px) 0;
}

.v3-industries-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.v3-industry-tags {
  margin-top: clamp(40px, 6vw, 56px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.v3-industry-tag {
  padding: 14px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-800);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.v3-industry-tag:hover {
  color: var(--white);
  background: var(--navy-800);
  border-color: var(--navy-800);
}

.v3-process-strip {
  background: var(--navy-800);
  color: var(--white);
  padding: clamp(80px, 9vw, 130px) 0;
}

.v3-process-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.v3-process-steps {
  margin-top: clamp(40px, 6vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-light);
}

.v3-step {
  padding: 24px 20px;
  border-right: 1px solid var(--line-light);
}

.v3-step:last-child {
  border-right: 0;
}

.v3-step-num {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: var(--gold);
  color: var(--navy-950);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 20px;
}

.v3-step h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 700;
}

.v3-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.6;
}

.v3-techdesk {
  background: var(--white);
  padding: clamp(80px, 9vw, 130px) 0;
}

.v3-techdesk-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

.v3-techdesk-fields {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.v3-techdesk-field {
  padding: 14px 16px;
  background: var(--paper);
  border-left: 3px solid var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
}

html[dir="rtl"] .v3-techdesk-field {
  border-left: 0;
  border-right: 3px solid var(--gold);
}

.v3-faq {
  background: var(--paper);
  padding: clamp(80px, 9vw, 130px) 0;
}

.v3-faq-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.v3-faq-grid {
  margin-top: clamp(40px, 6vw, 56px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.v3-faq-item {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.v3-faq-item h3 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 700;
}

.v3-faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

.v3-cta-close {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 9vw, 120px) 0;
  color: var(--white);
  background: var(--navy-950);
}

.v3-cta-close-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  text-align: center;
}

.v3-cta-close h2 {
  margin: 0 auto;
  max-width: 800px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

html[dir="rtl"] .v3-cta-close h2 {
  font-family: var(--font-arabic);
  text-transform: none;
}

.v3-cta-close p {
  max-width: 600px;
  margin: 20px auto 32px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.7;
}

.v3-cta-close .button-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* V3 footer */
.v3-footer {
  padding: 40px max(20px, calc((100% - var(--max)) / 2)) 24px;
  color: var(--white);
  background: #020a14;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.v3-footer-grid {
  display: grid;
  grid-template-columns: 240px 1fr 1fr auto;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v3-footer-brand img {
  width: 200px;
  padding: 6px 10px;
  background: var(--white);
  border-left: 3px solid var(--gold);
}

html[dir="rtl"] .v3-footer-brand img {
  border-left: 0;
  border-right: 3px solid var(--gold);
}

.v3-footer-brand p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  line-height: 1.6;
}

.v3-footer h4 {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.v3-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v3-footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  transition: color 180ms ease;
}

.v3-footer-links a:hover {
  color: var(--gold-light);
}

.v3-footer-contact a {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.v3-footer-bottom {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.7rem;
}

.v3-footer-bottom span {
  font-family: var(--font-mono);
}

/* V3 404 page */
.v3-404 {
  min-height: calc(100vh - var(--header-height) - 3px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  color: var(--white);
  background: var(--navy-950);
}

.v3-404 h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin: 0;
}

.v3-404 p {
  margin: 16px 0 32px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

/* V3 responsive overrides */
@media (max-width: 1080px) {
  .v3-hero-layout {
    grid-template-columns: 1fr;
  }

  .v3-hero-image {
    max-height: 400px;
  }

  .v3-division-cards {
    grid-template-columns: 1fr 1fr;
  }

  .v3-division-cards .v3-division-card:last-child {
    grid-column: 1 / -1;
  }

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

  .v3-techdesk-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .v3-proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .v3-featured-grid,
  .v3-why-grid {
    grid-template-columns: 1fr;
  }

  .v3-division-cards {
    grid-template-columns: 1fr;
  }

  .v3-division-cards .v3-division-card:last-child {
    grid-column: auto;
  }

  .v3-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .v3-step {
    border-bottom: 1px solid var(--line-light);
  }

  .v3-step:nth-child(2) {
    border-right: 0;
  }

  .v3-step:last-child {
    border-right: 0;
  }

  .v3-faq-grid {
    grid-template-columns: 1fr;
  }

  .v3-techdesk-fields {
    grid-template-columns: 1fr;
  }

  .v3-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .v3-cta-close .button-group {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .v3-proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .v3-process-steps {
    grid-template-columns: 1fr;
  }

  .v3-step {
    border-right: 0;
  }

  .v3-hero-meta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Multi-page extension */

.desktop-nav a.is-current {
  color: var(--white);
}

.desktop-nav a.is-current::after {
  transform: scaleX(1);
}

.brief-continue {
  display: inline-block;
  margin-top: 10px;
  color: var(--navy-800);
  font-size: 0.7rem;
  font-weight: 850;
  border-bottom: 1px solid var(--gold);
}

.page-links-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--white);
  background: var(--navy-800);
}

.page-links-band a {
  min-height: 118px;
  padding: 28px max(22px, 3vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-right: 1px solid var(--line-light);
  font-size: 0.88rem;
  font-weight: 800;
  transition: color 180ms ease, background-color 180ms ease;
}

.page-links-band a:last-child {
  border-right: 0;
}

.page-links-band a:hover {
  color: var(--navy-950);
  background: var(--gold);
}

.page-links-band b {
  color: var(--gold-light);
  font-size: 1.2rem;
}

.page-links-band a:hover b {
  color: var(--navy-950);
}

.hero-compact .hero-layout {
  min-height: auto;
  padding-bottom: clamp(48px, 5vw, 80px);
}

.hero-layout-single {
  grid-template-columns: 1fr;
}

.hero-layout-single .hero-copy {
  max-width: 820px;
}

.product-grid {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card h3 {
  margin: 16px 20px 8px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
}

.product-card p {
  margin: 0 20px 20px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

.cta-band {
  padding: clamp(48px, 6vw, 80px) 0;
  text-align: center;
  color: var(--white);
  background: var(--deep-navy);
}

.cta-inner {
  width: min(calc(100% - 40px), 680px);
  margin: 0 auto;
}

.cta-band h2 {
  margin: 16px 0 28px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.page-main {
  min-height: calc(100vh - var(--header-height));
}

.page-shell {
  width: min(calc(100% - 40px), var(--max));
  margin-right: auto;
  margin-left: auto;
}

.page-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 25%, rgba(41, 96, 146, 0.34), transparent 32%),
    linear-gradient(125deg, var(--navy-950), var(--navy-800));
}

.page-hero::after {
  content: "PMG / TECHNICAL ROUTE";
  position: absolute;
  right: -30px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(4.5rem, 10vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.8;
  white-space: nowrap;
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(72px, 9vw, 110px);
}

.page-hero-copy h1 {
  max-width: 950px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 6.3rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

html[dir="rtl"] .page-hero-copy h1 {
  font-family: var(--font-arabic);
  text-transform: none;
  letter-spacing: 0;
}

.page-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.75;
}

.page-hero-copy > .button {
  margin-top: 34px;
}

.breadcrumbs {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-family: Consolas, monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--gold-light);
}

.page-section {
  background: var(--paper);
}

.solution-catalog {
  margin-top: clamp(50px, 7vw, 86px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.catalog-card {
  position: relative;
  min-height: 445px;
  padding: clamp(24px, 3.4vw, 42px);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.28);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalog-card-featured {
  color: var(--white);
  background: var(--navy-800);
  border-top: 5px solid var(--gold);
}

.catalog-top,
.catalog-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.catalog-top > span:first-child {
  color: var(--gold);
  font-family: Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 800;
}

.catalog-tag {
  padding: 6px 8px;
  color: var(--navy-800);
  background: rgba(0, 35, 80, 0.07);
  font-family: Consolas, monospace;
  font-size: 0.57rem;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-card-featured .catalog-tag {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.09);
}

.catalog-symbol {
  position: relative;
  width: 108px;
  height: 78px;
  margin: 56px 0 32px;
  overflow: hidden;
  background: rgba(0, 35, 80, 0.07);
}

.catalog-card-featured .catalog-symbol {
  background: rgba(255, 255, 255, 0.08);
}

.catalog-symbol::before,
.catalog-symbol::after,
.catalog-symbol i,
.catalog-symbol i::before,
.catalog-symbol i::after {
  content: "";
  position: absolute;
  display: block;
}

.symbol-cnc::before {
  top: 17px;
  left: 16px;
  width: 76px;
  height: 7px;
  background: #8ea2ba;
  box-shadow: 0 38px 0 #8ea2ba;
}

.symbol-cnc::after {
  top: 21px;
  left: 22px;
  width: 6px;
  height: 39px;
  background: #8ea2ba;
  box-shadow: 58px 0 0 #8ea2ba;
}

.symbol-cnc i {
  top: 22px;
  left: 51px;
  width: 8px;
  height: 25px;
  background: var(--gold);
}

.symbol-cnc i::after {
  left: -6px;
  bottom: -8px;
  width: 20px;
  height: 3px;
  background: var(--gold-light);
  box-shadow: 0 0 12px var(--gold);
}

.symbol-steel::before {
  top: 18px;
  left: 17px;
  width: 72px;
  height: 12px;
  border: 3px solid var(--navy-700);
  box-shadow: 0 20px 0 -3px var(--paper), 0 20px 0 0 var(--navy-700), 0 40px 0 -3px var(--paper), 0 40px 0 0 var(--navy-700);
  transform: skewX(-16deg);
}

.symbol-lift::before {
  top: 16px;
  left: 16px;
  width: 76px;
  height: 6px;
  background: var(--navy-700);
  box-shadow: 0 43px 0 var(--navy-700);
}

.symbol-lift::after {
  top: 20px;
  left: 20px;
  width: 6px;
  height: 44px;
  background: var(--navy-700);
  box-shadow: 62px 0 0 var(--navy-700);
}

.symbol-lift i {
  top: 21px;
  left: 54px;
  width: 2px;
  height: 28px;
  background: var(--gold);
}

.symbol-light::before {
  top: 14px;
  left: 50px;
  width: 9px;
  height: 50px;
  background: var(--navy-700);
}

.symbol-light::after {
  top: 15px;
  left: 42px;
  width: 25px;
  height: 15px;
  background: var(--gold);
  border-radius: 50% 50% 15% 15%;
  box-shadow: 0 0 20px rgba(239, 126, 2, 0.75);
}

.catalog-card h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.catalog-card > p {
  max-width: 540px;
  margin: 18px 0 36px;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.75;
}

.catalog-card-featured > p {
  color: rgba(255, 255, 255, 0.68);
}

.catalog-link {
  margin-top: auto;
  padding-top: 18px;
  color: var(--navy-800);
  border-top: 1px solid var(--line);
  font-size: 0.77rem;
  font-weight: 850;
}

.catalog-card-featured .catalog-link {
  color: var(--gold-light);
  border-color: var(--line-light);
}

.catalog-link:hover {
  color: var(--gold);
}

.page-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 110px) 0;
  color: var(--white);
  background: var(--navy-950);
}

.page-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: repeating-linear-gradient(135deg, white 0, white 1px, transparent 1px, transparent 28px);
}

.page-cta .page-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 50px;
}

.page-cta h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.page-hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.72fr);
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.machine-diagram {
  position: relative;
  height: 310px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.17);
}

.machine-diagram::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(white 1px, transparent 1px),
    linear-gradient(90deg, white 1px, transparent 1px);
  background-size: 24px 24px;
}

.machine-axis {
  position: absolute;
  z-index: 2;
  color: var(--gold-light);
  font-family: Consolas, monospace;
  font-size: 0.65rem;
}

.axis-x { right: 18px; bottom: 38px; }
.axis-y { top: 18px; left: 22px; }

.machine-gantry {
  position: absolute;
  top: 58px;
  right: 48px;
  left: 48px;
  height: 22px;
  background: #71869e;
  border-top: 4px solid #a8b8c8;
}

.machine-gantry::before,
.machine-gantry::after {
  content: "";
  position: absolute;
  top: 18px;
  width: 18px;
  height: 150px;
  background: #71869e;
}

.machine-gantry::before { left: 10px; }
.machine-gantry::after { right: 10px; }

.machine-bed {
  position: absolute;
  right: 40px;
  bottom: 73px;
  left: 40px;
  height: 24px;
  background: #455e78;
  border-top: 5px solid #9daebe;
}

.machine-head {
  position: absolute;
  z-index: 3;
  top: 75px;
  left: 50%;
  width: 42px;
  height: 78px;
  background: var(--gold);
  transform: translateX(-50%);
}

.machine-head::after {
  content: "";
  position: absolute;
  bottom: -34px;
  left: 18px;
  width: 6px;
  height: 34px;
  background: var(--gold-light);
  box-shadow: 0 10px 18px var(--gold);
}

.machine-diagram p {
  position: absolute;
  right: 18px;
  bottom: 12px;
  left: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: Consolas, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.equipment-families {
  margin-top: clamp(50px, 7vw, 86px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.equipment-families article {
  min-height: 275px;
  padding: clamp(24px, 3vw, 38px);
  background: rgba(255, 255, 255, 0.28);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.equipment-families article > span {
  color: var(--gold);
  font-family: Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 800;
}

.equipment-families h3 {
  margin: 60px 0 14px;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  letter-spacing: -0.04em;
}

.equipment-families p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.qualification-section {
  background: var(--white);
}

.qualification-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(480px, 1fr);
  gap: clamp(60px, 9vw, 120px);
}

.qualification-layout h2,
.contact-form-wrap h2,
.contact-panel h2,
.process-heading-dark h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.7vw, 4.8rem);
  line-height: 0.99;
  letter-spacing: -0.065em;
}

.qualification-layout > div > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.qualification-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.qualification-list li {
  min-height: 90px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.qualification-list li > span {
  color: var(--gold);
  font-family: Consolas, monospace;
  font-size: 0.65rem;
  font-weight: 800;
}

.qualification-list strong,
.qualification-list small {
  display: block;
}

.qualification-list strong {
  font-size: 0.88rem;
}

.qualification-list small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.7rem;
}

.process-page-section {
  background: var(--paper);
}

.process-heading-dark {
  max-width: 780px;
}

.process-detail-list {
  margin: clamp(54px, 7vw, 90px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-detail-list li {
  min-height: 150px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) minmax(180px, 0.35fr);
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}

.process-detail-list li > span {
  color: var(--gold);
  font-family: Consolas, monospace;
  font-size: 0.76rem;
  font-weight: 800;
}

.process-detail-list h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  letter-spacing: -0.04em;
}

.process-detail-list p {
  max-width: 700px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.process-detail-list b {
  padding: 12px 14px;
  color: var(--navy-800);
  background: rgba(0, 35, 80, 0.06);
  font-family: Consolas, monospace;
  font-size: 0.65rem;
  text-align: center;
}

.spec-page-section {
  background: var(--white);
}

.text-link-dark {
  margin-top: 30px;
  color: var(--navy-800);
  border-color: rgba(0, 35, 80, 0.3);
}

.text-link-light {
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.25);
}

.text-link-light:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.67fr) minmax(0, 1.15fr);
  align-items: stretch;
  box-shadow: var(--shadow);
}

.contact-panel {
  padding: clamp(34px, 5vw, 62px);
  color: var(--white);
  background: var(--navy-800);
}

.contact-panel h2 {
  margin-bottom: 54px;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
}

.contact-panel > a {
  padding: 20px 0;
  display: block;
  border-top: 1px solid var(--line-light);
}

.contact-panel > a span,
.contact-panel > a b {
  display: block;
}

.contact-panel > a span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
}

.contact-panel > a b {
  margin-top: 6px;
  color: var(--gold-light);
  font-family: Consolas, monospace;
  font-size: 0.8rem;
}

.contact-note {
  margin-top: 40px;
  padding: 18px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-note span {
  color: var(--gold);
  font-family: Consolas, monospace;
  font-size: 0.65rem;
}

.contact-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.68rem;
  line-height: 1.55;
}

.contact-form-wrap {
  padding: clamp(34px, 5vw, 62px);
  background: var(--white);
}

.contact-form-wrap h2 {
  max-width: 720px;
  margin-bottom: 42px;
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy-900);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(7, 26, 51, 0.22);
  border-radius: 0;
  outline: 0;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(239, 126, 2, 0.13);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #156442;
  font-size: 0.72rem;
  font-weight: 700;
}

.form-status.is-error {
  color: #a33b28;
}

.form-step {
  border: 0;
  padding: 0;
  margin: 0 0 24px;
}

.form-step-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-step-label span:first-child {
  color: var(--gold);
  font-family: Consolas, monospace;
}

.conditional-fields {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 35, 80, 0.02);
}

.conditional-fields .eyebrow {
  margin-bottom: 14px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--muted);
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.file-upload-label small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
}

.contact-form input[type="file"] {
  font-size: 0.78rem;
  padding: 8px 0;
  border: 0;
  background: transparent;
}

.contact-form input[type="date"] {
  color-scheme: light;
}

html[dir="rtl"] .page-hero::after {
  right: auto;
  left: -30px;
}

html[dir="rtl"] .page-links-band a {
  border-right: 0;
  border-left: 1px solid var(--line-light);
}

html[dir="rtl"] .page-links-band a:last-child {
  border-left: 0;
}

html[dir="rtl"] .catalog-symbol,
html[dir="rtl"] .equipment-families h3 {
  direction: ltr;
}

html[dir="rtl"] .machine-diagram p {
  direction: rtl;
}

@media (max-width: 1000px) {
  .page-hero-split,
  .qualification-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .machine-diagram {
    width: min(100%, 620px);
    margin-bottom: 70px;
  }

  .page-hero-split .page-hero-copy {
    padding-bottom: 45px;
  }

  .qualification-layout > div:first-child {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .page-hero {
    min-height: 440px;
  }

  .page-hero-copy h1 {
    font-size: clamp(2.8rem, 12vw, 4.8rem);
  }

  .page-links-band,
  .solution-catalog,
  .equipment-families {
    grid-template-columns: 1fr;
  }

  .page-links-band a {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  html[dir="rtl"] .page-links-band a {
    border-left: 0;
  }

  .page-cta .page-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .page-cta .button {
    width: 100%;
  }

  .catalog-card {
    min-height: 390px;
  }

  .process-detail-list li {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 18px;
  }

  .process-detail-list b {
    grid-column: 2;
    justify-self: start;
  }

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

@media (max-width: 480px) {
  .machine-diagram {
    height: 260px;
  }

  .machine-gantry {
    right: 28px;
    left: 28px;
  }

  .machine-bed {
    right: 22px;
    left: 22px;
  }

  .catalog-card {
    min-height: 360px;
  }

  .qualification-list li {
    grid-template-columns: 38px minmax(0, 1fr);
  }
}

/* ============================================================
   COMPANY PROFILE (/about/) + SOLUTION ENGINE (/solution-engine/)
   ============================================================ */

.profile-section {
  padding: clamp(48px, 6vw, 84px) 0;
}

.profile-section-alt {
  background: var(--paper-warm);
}

.profile-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.profile-narrow {
  max-width: 780px;
}

.profile-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

html[dir="rtl"] .profile-section h2 {
  font-family: var(--font-arabic);
  text-transform: none;
  letter-spacing: 0;
}

.profile-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.profile-body p {
  line-height: 1.85;
  margin-bottom: 16px;
}

/* Key-facts grid */
.profile-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 8px;
}

.profile-fact {
  background: var(--white);
  padding: 20px 22px;
}

.profile-fact dt {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

html[dir="rtl"] .profile-fact dt {
  font-family: var(--font-arabic);
  letter-spacing: 0;
}

.profile-fact dd {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
}

/* Two-column card grid */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.profile-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: 26px 24px;
}

.profile-section-alt .profile-card {
  background: var(--white);
}

.profile-card h3 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}

html[dir="rtl"] .profile-card h3 {
  font-family: var(--font-arabic);
  text-transform: none;
}

.profile-card > p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.profile-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 3px 10px;
  background: var(--paper);
  color: var(--navy-800);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

html[dir="rtl"] .profile-tag {
  font-family: var(--font-arabic);
  letter-spacing: 0;
}

/* Spec lists */
.profile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.profile-list li {
  position: relative;
  padding: 8px 0 8px 20px;
  border-top: 1px solid var(--line);
  line-height: 1.6;
  font-size: 0.94rem;
}

.profile-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 7px;
  height: 7px;
  background: var(--gold);
}

html[dir="rtl"] .profile-list li {
  padding: 8px 20px 8px 0;
}

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

.profile-list li:first-child {
  border-top: none;
}

.profile-list b {
  color: var(--ink);
}

/* Manufacturer chips */
.profile-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.profile-brands span {
  padding: 8px 15px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-800);
}

/* Numbered process steps */
.profile-steps {
  counter-reset: pstep;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.profile-step {
  counter-increment: pstep;
  position: relative;
  padding: 24px 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.profile-step::before {
  content: counter(pstep, decimal-leading-zero);
  display: block;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.profile-step h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

html[dir="rtl"] .profile-step h3 {
  font-family: var(--font-arabic);
  text-transform: none;
}

.profile-step p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

/* Dark note block */
.profile-note {
  margin-top: 30px;
  padding: 24px 26px;
  background: var(--navy-900);
  color: var(--white);
  border-left: 4px solid var(--gold);
}

html[dir="rtl"] .profile-note {
  border-left: none;
  border-right: 4px solid var(--gold);
}

.profile-note p {
  margin: 0;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.86);
}

.profile-note b {
  color: var(--white);
}

@media (max-width: 780px) {
  .profile-shell {
    width: calc(100% - 28px);
  }

  .profile-facts {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .profile-card,
  .profile-step {
    padding: 20px 18px;
  }
}
