:root {
  --navy-950: #061326;
  --navy-900: #081a31;
  --navy-800: #102c50;
  --burgundy-700: #7d123a;
  --burgundy-600: #961b49;
  --burgundy-500: #ad2c59;
  --ink: #101820;
  --slate: #56616d;
  --silver: #d8dde1;
  --line: #dfe3e6;
  --mist: #f1f3f3;
  --paper: #f8f8f5;
  --white: #fff;
  --font-latin: "Inter", Arial, sans-serif;
  --font-fa: "Vazirmatn", Tahoma, sans-serif;
  --container: min(1240px, calc(100vw - 64px));
  --ease: cubic-bezier(.16, 1, .3, 1);
  --header-height: 84px;
  --z-header: 30;
  --z-menu: 40;
  --z-dialog: 60;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-latin);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

body.menu-open,
body.dialog-open { overflow: hidden; }

button,
input,
textarea { font: inherit; }

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

button { color: inherit; }

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

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

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

h1,
h2,
h3 { line-height: 1.08; letter-spacing: -.035em; }

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3 { letter-spacing: 0; }

h2 { font-size: clamp(2.25rem, 4.4vw, 4.75rem); font-weight: 600; }

h3 { font-size: clamp(1.3rem, 2vw, 2rem); font-weight: 600; }

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

:focus-visible { outline: 3px solid #e9a8bd; outline-offset: 4px; }

.container { width: var(--container); margin-inline: auto; }

.skip-link {
  position: fixed;
  inset-inline-start: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--white);
  color: var(--navy-950);
  border-radius: 4px;
  transition: top .2s ease;
}

.skip-link:focus { top: 16px; }

.eyebrow {
  margin-bottom: 22px;
  color: var(--burgundy-600);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

html[dir="rtl"] .eyebrow { letter-spacing: 0; }

.site-header {
  position: fixed;
  z-index: var(--z-header);
  top: 0;
  inset-inline: 0;
  height: var(--header-height);
  color: var(--white);
  transition: color .35s ease, background .35s ease, box-shadow .35s ease, height .35s var(--ease);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255,255,255,.18);
  content: "";
  transition: background .35s ease;
}

.site-header.scrolled {
  height: 70px;
  background: rgba(248,248,245,.94);
  box-shadow: 0 10px 30px rgba(5,18,37,.06);
  color: var(--navy-950);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.site-header.scrolled::after { background: var(--burgundy-600); }

.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }

.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-mark img { width: 58px; max-width: none; }

.brand-copy { display: flex; flex-direction: column; line-height: 1; }

.brand-copy strong { font-size: 1.08rem; letter-spacing: .16em; }

.brand-copy small { margin-top: 5px; font-size: .52rem; font-weight: 600; letter-spacing: .19em; opacity: .72; }

.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.4vw, 38px); }

.desktop-nav a {
  position: relative;
  padding: 30px 0;
  font-size: .79rem;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .25s var(--ease);
}

html[dir="rtl"] .desktop-nav a::after { transform-origin: left center; }

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

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

.language-toggle {
  min-width: 44px;
  min-height: 44px;
  padding: 0 10px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  transition: background .2s ease;
}

.language-toggle:hover { background: rgba(255,255,255,.12); }
.site-header.scrolled .language-toggle:hover { background: var(--mist); }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.2;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s var(--ease);
}

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

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

.button-header { background: var(--white); color: var(--navy-950); }
.site-header.scrolled .button-header { background: var(--burgundy-600); color: var(--white); }

.button-primary { background: var(--burgundy-600); color: var(--white); }
.button-primary:hover { background: var(--burgundy-700); }

.button-ghost { border-color: rgba(255,255,255,.45); color: var(--white); }
.button-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.button-light { background: var(--white); color: var(--navy-950); }
.button-outline-light { border-color: rgba(255,255,255,.5); color: var(--white); }
.button-outline-light:hover { background: var(--white); color: var(--burgundy-700); }

.button-whatsapp { border-color: #147a55; color: #106443; }
.button-whatsapp:hover { background: #106443; color: var(--white); }

.arrow { font-size: 1rem; transition: transform .25s var(--ease); }
.button:hover .arrow,
.text-link:hover span:last-child,
.card-link:hover span:last-child { transform: translate(3px, -3px); }
html[dir="rtl"] .button:hover .arrow,
html[dir="rtl"] .text-link:hover span:last-child,
html[dir="rtl"] .card-link:hover span:last-child { transform: translate(-3px, -3px) scaleX(-1); }

.menu-toggle { width: 46px; height: 46px; display: none; place-items: center; border: 0; background: transparent; color: inherit; cursor: pointer; }
.menu-toggle span { position: absolute; width: 22px; height: 1px; background: currentColor; transition: transform .25s ease; }
.menu-toggle span:first-child { transform: translateY(-4px); }
.menu-toggle span:last-child { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

.mobile-menu { position: fixed; z-index: var(--z-menu); top: 70px; inset-inline: 0; bottom: 0; padding: 24px 32px 40px; background: var(--paper); color: var(--navy-950); }
.mobile-menu[hidden] { display: none; }
.mobile-menu a { display: block; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 1.45rem; font-weight: 600; }
.mobile-menu .button { width: 100%; margin-top: 28px; background: var(--burgundy-600); color: var(--white); }

.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; background: var(--navy-950); color: var(--white); }

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,13,25,.88) 0%, rgba(4,13,25,.63) 42%, rgba(4,13,25,.16) 72%, rgba(4,13,25,.32) 100%),
    linear-gradient(0deg, rgba(4,13,25,.58) 0%, transparent 46%, rgba(4,13,25,.2) 100%);
}

html[dir="rtl"] .hero-overlay {
  background:
    linear-gradient(-90deg, rgba(4,13,25,.88) 0%, rgba(4,13,25,.63) 42%, rgba(4,13,25,.16) 72%, rgba(4,13,25,.32) 100%),
    linear-gradient(0deg, rgba(4,13,25,.58) 0%, transparent 46%, rgba(4,13,25,.2) 100%);
}

.hero-content { position: relative; z-index: 2; padding-top: var(--header-height); }

.hero-eyebrow { color: #f0b7ca; opacity: 0; animation: hero-in .8s .15s var(--ease) forwards; }

.hero h1 { max-width: 850px; margin-bottom: 28px; font-size: clamp(3rem, 6.8vw, 7.2rem); font-weight: 600; letter-spacing: -.065em; }
html[dir="rtl"] .hero h1 { max-width: 780px; letter-spacing: 0; }
.hero h1 span { display: block; opacity: 0; transform: translateY(44px); animation: hero-in .9s .25s var(--ease) forwards; }
.hero h1 .hero-title-accent { color: rgba(255,255,255,.69); animation-delay: .36s; }

.hero-summary { max-width: 665px; margin-bottom: 36px; color: rgba(255,255,255,.75); font-size: clamp(1rem, 1.5vw, 1.22rem); line-height: 1.65; opacity: 0; animation: hero-in .9s .5s var(--ease) forwards; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; opacity: 0; animation: hero-in .9s .62s var(--ease) forwards; }

.hero-meta { position: absolute; z-index: 2; right: 0; bottom: 28px; left: 0; display: flex; align-items: flex-end; justify-content: space-between; color: rgba(255,255,255,.56); font-size: .62rem; font-weight: 600; letter-spacing: .12em; }
.scroll-cue { display: flex; align-items: center; gap: 12px; }
.scroll-cue i { position: relative; width: 1px; height: 35px; background: rgba(255,255,255,.32); overflow: hidden; }
.scroll-cue i::after { position: absolute; top: -100%; right: 0; left: 0; height: 100%; background: var(--white); content: ""; animation: scroll-cue 2s ease-in-out infinite; }
.scroll-cue b { font-weight: 600; }

@keyframes hero-in { to { opacity: 1; transform: translateY(0); } }
@keyframes scroll-cue { 0% { transform: translateY(0); } 55%, 100% { transform: translateY(200%); } }

.proof { position: relative; z-index: 3; margin-top: -1px; background: var(--navy-900); color: var(--white); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { min-height: 155px; display: flex; flex-direction: column; justify-content: center; padding: 26px 34px; border-inline-start: 1px solid rgba(255,255,255,.13); }
.proof-item:last-child { border-inline-end: 1px solid rgba(255,255,255,.13); }
.proof-item strong { color: #d896ad; font-size: 1.45rem; font-weight: 500; letter-spacing: -.03em; }
.proof-item span { margin-top: 7px; color: rgba(255,255,255,.65); font-size: .73rem; }

.section { padding: clamp(90px, 11vw, 170px) 0; }

.section-intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1fr 5fr 3fr; gap: 50px; align-items: start; }
.section-index { color: var(--burgundy-600); font-size: .72rem; font-weight: 700; }
.intro-heading h2 { max-width: 770px; margin: 0; }
.intro-copy { padding-top: 46px; }
.intro-copy p { margin-bottom: 30px; color: var(--slate); font-size: 1.05rem; }

.text-link,
.card-link { display: inline-flex; align-items: center; gap: 18px; padding: 0; border: 0; background: transparent; cursor: pointer; color: var(--navy-900); font-size: .75rem; font-weight: 700; }
.text-link span:last-child,
.card-link span:last-child { display: inline-block; transition: transform .25s var(--ease); }

.gateway-section { background: #e9ecec; }
.section-heading { display: grid; grid-template-columns: minmax(0, 2fr) minmax(260px, .75fr); gap: 80px; align-items: end; margin-bottom: 64px; }
.section-heading h2 { max-width: 800px; margin-bottom: 0; }
.section-heading > p { margin: 0; color: var(--slate); }

.gateway-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gateway-card { position: relative; min-height: 570px; display: flex; flex-direction: column; justify-content: space-between; padding: 32px; overflow: hidden; background: var(--navy-900); color: var(--white); }
.gateway-card::before { position: absolute; inset: 0; background-image: linear-gradient(0deg, rgba(5,16,30,.93), rgba(5,16,30,.08) 78%), var(--card-image); background-position: center; background-size: cover; content: ""; transform: scale(1.001); transition: transform 1s var(--ease), filter .6s ease; }
.gateway-card::after { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.15); content: ""; }
.gateway-card:hover::before { transform: scale(1.055); filter: saturate(.78); }
.gateway-card > * { position: relative; z-index: 1; }
.gateway-card .card-number { font-size: .72rem; font-weight: 700; }
.gateway-card h3 { max-width: 300px; margin-bottom: 15px; font-size: 2rem; }
.gateway-card p { min-height: 52px; margin-bottom: 28px; color: rgba(255,255,255,.68); font-size: .82rem; }
.gateway-card .card-link { color: var(--white); }

.journey-section { background: var(--navy-950); color: var(--white); }
.journey-layout { display: grid; grid-template-columns: minmax(270px, .7fr) minmax(0, 1.5fr); gap: clamp(50px, 7vw, 110px); align-items: center; }
.journey-copy > p:not(.eyebrow) { color: rgba(255,255,255,.57); }
.journey-detail { margin-top: 60px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.17); }
.journey-detail-number { color: #d896ad; font-size: .72rem; font-weight: 700; }
.journey-detail h3 { margin: 16px 0 10px; }
.journey-detail p { max-width: 380px; margin: 0; color: rgba(255,255,255,.59); font-size: .86rem; }
.journey-image-wrap { height: min(57vw, 600px); min-height: 420px; overflow: hidden; }
.journey-image { width: 100%; height: 100%; object-fit: cover; transition: opacity .28s ease, transform 1.1s var(--ease); }
.journey-image.is-changing { opacity: .15; transform: scale(1.03); }
.journey-progress { height: 1px; margin: 34px 0 24px; background: rgba(255,255,255,.18); }
.journey-progress i { display: block; width: var(--journey-progress, 0%); height: 2px; background: var(--burgundy-500); transition: width .55s var(--ease); }
.journey-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.journey-step { padding: 0; border: 0; background: transparent; color: rgba(255,255,255,.36); cursor: pointer; text-align: start; transition: color .3s ease; }
.journey-step span { display: block; margin-bottom: 6px; font-size: .6rem; }
.journey-step b { display: block; font-size: .65rem; font-weight: 600; line-height: 1.3; }
.journey-step.active { color: var(--white); }

.products-section { background: var(--paper); }
.product-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
.product-card { position: relative; min-height: 470px; grid-column: span 3; display: flex; align-items: flex-end; overflow: hidden; background: #ddd; }
.product-card-wide { grid-column: span 6; }
.product-card:nth-child(4) { grid-column: span 4; }
.product-card-dark { grid-column: span 8; color: var(--white); }
.product-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .85s var(--ease); }
.product-card::after { position: absolute; inset: 30% 0 0; background: linear-gradient(0deg, rgba(4,12,22,.9), transparent); content: ""; }
.product-card:hover img { transform: scale(1.045); }
.product-card > div { position: relative; z-index: 1; width: 100%; padding: 28px 30px; color: var(--white); }
.product-card > div > span { font-size: .62rem; }
.product-card h3 { margin: 10px 0 8px; font-size: 1.65rem; }
.product-card p { margin: 0; color: rgba(255,255,255,.67); font-size: .75rem; }
.product-card .card-link { margin-top: 22px; color: var(--white); }

.why-section { background: #e9ecec; }
.why-layout { display: grid; grid-template-columns: 1fr 1.18fr; gap: clamp(60px, 9vw, 150px); }
.why-title { position: sticky; top: 120px; align-self: start; }
.why-title h2 { font-size: clamp(2.5rem, 4vw, 4.3rem); }
.why-title > p:last-child { max-width: 540px; color: var(--slate); }
.why-list { border-top: 1px solid #c6cccf; }
.why-item { display: grid; grid-template-columns: 70px 1fr; gap: 24px; padding: 34px 0; border-bottom: 1px solid #c6cccf; }
.why-item > span { color: var(--burgundy-600); font-size: .7rem; font-weight: 700; }
.why-item h3 { margin: 0 0 9px; font-size: 1.35rem; }
.why-item p { margin: 0; color: var(--slate); font-size: .82rem; }

.industries-section { padding: 0; background: var(--navy-900); color: var(--white); }
.industries-layout { width: 100%; display: grid; grid-template-columns: 1.1fr .9fr; }
.industries-image { position: relative; min-height: 820px; overflow: hidden; }
.industries-image img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s ease, transform 1s var(--ease); }
.industries-image img.is-changing { opacity: .18; transform: scale(1.025); }
.image-caption { position: absolute; right: 32px; bottom: 30px; left: 32px; display: flex; justify-content: space-between; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.4); font-size: .67rem; }
.industries-content { align-self: center; padding: 90px clamp(34px, 7vw, 110px); }
.industries-content h2 { max-width: 650px; margin-bottom: 60px; }
.industry-list { border-top: 1px solid rgba(255,255,255,.2); }
.industry-item { width: 100%; min-height: 72px; display: grid; grid-template-columns: 55px 1fr 30px; align-items: center; padding: 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.2); background: transparent; color: rgba(255,255,255,.48); cursor: pointer; text-align: start; transition: color .25s ease, padding .3s var(--ease); }
.industry-item:hover,
.industry-item.active { padding-inline: 10px; color: var(--white); }
.industry-item span { color: #d896ad; font-size: .65rem; }
.industry-item b { font-size: clamp(1.25rem, 2vw, 1.8rem); font-weight: 500; }
.industry-item i { font-style: normal; }

.process-section { background: var(--paper); }
.process-section .section-heading { grid-template-columns: 1fr; }
.process-track { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.process-line { position: absolute; top: 20px; inset-inline: 0; height: 1px; background: var(--line); }
.process-line i { display: block; width: 0; height: 2px; background: var(--burgundy-600); transition: width 1.7s var(--ease); }
.process-section.in-view .process-line i { width: 100%; }
.process-step { position: relative; padding-top: 64px; }
.process-step::before { position: absolute; top: 14px; inset-inline-start: 0; width: 13px; height: 13px; border: 4px solid var(--paper); border-radius: 50%; background: var(--burgundy-600); box-shadow: 0 0 0 1px var(--burgundy-600); content: ""; }
.process-step > span { color: var(--burgundy-600); font-size: .68rem; font-weight: 700; }
.process-step h3 { margin: 20px 0 12px; font-size: 1.35rem; }
.process-step p { max-width: 220px; color: var(--slate); font-size: .82rem; }

.markets-section { background: #e9ecec; overflow: hidden; }
.markets-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.markets-copy p:not(.eyebrow) { max-width: 490px; color: var(--slate); }
.markets-copy .text-link { margin-top: 18px; }
.reach-visual { position: relative; min-height: 650px; border: 1px solid #cbd0d3; border-radius: 50%; }
.reach-orbit { position: absolute; border: 1px solid #c4c9cc; border-radius: 50%; }
.reach-orbit-one { inset: 11%; }
.reach-orbit-two { inset: 27%; }
.reach-core { position: absolute; top: 50%; left: 50%; width: 120px; height: 120px; display: grid; place-items: center; border-radius: 50%; background: var(--navy-900); color: var(--white); transform: translate(-50%, -50%); }
.reach-core img { position: absolute; width: 75px; opacity: .18; }
.reach-core span { position: relative; z-index: 1; font-weight: 700; letter-spacing: .18em; }
.market-node { position: absolute; display: flex; flex-direction: column; padding-inline-start: 20px; }
.market-node i { position: absolute; top: 8px; inset-inline-start: 0; width: 8px; height: 8px; border: 2px solid var(--paper); border-radius: 50%; background: var(--burgundy-600); box-shadow: 0 0 0 1px var(--burgundy-600); }
.market-node strong { font-size: .88rem; }
.market-node small { color: var(--slate); font-size: .65rem; }
.node-iran { top: 19%; left: 21%; }
.node-me { top: 37%; right: 9%; }
.node-asia { right: 19%; bottom: 17%; }
.node-europe { bottom: 21%; left: 8%; }
.reach-visual.in-view .reach-orbit { animation: orbit-reveal 1.2s var(--ease) both; }
.reach-visual.in-view .reach-orbit-two { animation-delay: .15s; }
.reach-visual.in-view .market-node { animation: node-reveal .7s var(--ease) both; }
.reach-visual.in-view .market-node:nth-of-type(4) { animation-delay: .2s; }
.reach-visual.in-view .market-node:nth-of-type(5) { animation-delay: .32s; }
.reach-visual.in-view .market-node:nth-of-type(6) { animation-delay: .44s; }
@keyframes orbit-reveal { from { opacity: 0; transform: scale(.75); } to { opacity: 1; transform: scale(1); } }
@keyframes node-reveal { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.split-cta { display: grid; grid-template-columns: 1fr 1fr; color: var(--white); }
.split-panel { min-height: 500px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(50px, 7vw, 110px); transition: flex-grow .5s var(--ease); }
.split-panel .eyebrow { color: rgba(255,255,255,.64); }
.split-panel h2 { max-width: 650px; margin-bottom: 36px; font-size: clamp(2.2rem, 3.8vw, 4.5rem); }
.split-panel.buyer { background: var(--navy-900); }
.split-panel.supplier { background: var(--burgundy-700); }

.site-footer { padding: 80px 0 30px; background: var(--navy-950); color: var(--white); }
.footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1.4fr 1fr; gap: 60px; }
.brand-footer { margin-bottom: 22px; }
.footer-brand p { max-width: 330px; color: rgba(255,255,255,.48); font-size: .76rem; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-column h3 { margin-bottom: 18px; color: #d896ad; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-column a,
.footer-column span { color: rgba(255,255,255,.58); font-size: .73rem; transition: color .2s ease; }
.footer-column a:hover { color: var(--white); }
.footer-bottom { position: relative; display: flex; align-items: center; justify-content: space-between; margin-top: 70px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.42); font-size: .65rem; }
.footer-language { color: var(--white); }

.rfq-dialog { width: min(760px, calc(100vw - 32px)); max-height: calc(100svh - 32px); padding: 0; border: 0; background: transparent; color: var(--ink); }
.rfq-dialog::backdrop { background: rgba(4,13,25,.76); -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px); }
.dialog-shell { position: relative; padding: clamp(30px, 5vw, 62px); background: var(--paper); }
.dialog-close { position: absolute; top: 18px; inset-inline-end: 18px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--mist); cursor: pointer; font-size: 1.4rem; }
.dialog-header h2 { margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.5rem); }
.dialog-header > p:last-child { max-width: 600px; color: var(--slate); font-size: .84rem; }
.rfq-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 35px; }
.rfq-form label { display: flex; flex-direction: column; gap: 7px; font-size: .72rem; font-weight: 600; }
.rfq-form input,
.rfq-form textarea { width: 100%; border: 1px solid #c9cfd2; border-radius: 2px; background: var(--white); color: var(--ink); }
.rfq-form input { height: 48px; padding: 0 14px; }
.rfq-form textarea { resize: vertical; padding: 12px 14px; }
.field-wide { grid-column: 1 / -1; }
.form-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 5px; }
.form-note { margin: -5px 0 0; color: var(--slate); font-size: .68rem; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .75s ease, transform .8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

html[dir="rtl"] .arrow,
html[dir="rtl"] .industry-item i,
html[dir="rtl"] .text-link span:last-child,
html[dir="rtl"] .card-link span:last-child { transform: scaleX(-1); }

@media (max-width: 1050px) {
  :root { --container: min(100% - 40px, 940px); }
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .button-header { display: none; }
  .intro-grid { grid-template-columns: 60px 1fr; }
  .intro-copy { grid-column: 2; padding-top: 0; }
  .gateway-card { min-height: 500px; }
  .journey-layout { grid-template-columns: 1fr; }
  .journey-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 50px; }
  .journey-copy .eyebrow { grid-column: 1 / -1; }
  .journey-copy h2 { margin-bottom: 0; }
  .journey-detail { grid-column: 1 / -1; margin-top: 20px; }
  .why-layout { grid-template-columns: 1fr; }
  .product-card { grid-column: span 6; }
  .product-card-wide,
  .product-card-dark { grid-column: span 12; }
  .product-card:nth-child(4) { grid-column: span 6; }
  .why-title { position: static; }
  .industries-layout { grid-template-columns: 1fr; }
  .industries-image { min-height: 560px; }
  .markets-layout { grid-template-columns: 1fr; }
  .markets-copy { max-width: 700px; }
  .reach-visual { width: min(100%, 650px); min-height: auto; aspect-ratio: 1; margin-inline: auto; }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  :root { --container: calc(100% - 32px); --header-height: 70px; }
  h2 { font-size: clamp(2.15rem, 11vw, 3.5rem); }
  .site-header { height: 70px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-mark img { width: 51px; }
  .brand-copy strong { font-size: .95rem; }
  .language-toggle { min-width: 40px; min-height: 40px; }
  .hero { min-height: 760px; }
  .hero-video { object-position: 58% center; }
  .hero-overlay,
  html[dir="rtl"] .hero-overlay { background: linear-gradient(0deg, rgba(4,13,25,.9) 0%, rgba(4,13,25,.59) 60%, rgba(4,13,25,.28) 100%); }
  .hero-content { align-self: flex-end; padding-bottom: 150px; }
  .hero h1 { font-size: clamp(3rem, 14.7vw, 5rem); }
  .hero-summary { font-size: .95rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-meta { bottom: 22px; }
  .hero-meta > span:first-child { display: none; }
  .hero-meta { justify-content: flex-end; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item { min-height: 130px; padding: 24px 18px; border-bottom: 1px solid rgba(255,255,255,.13); }
  .section { padding: 90px 0; }
  .intro-grid { grid-template-columns: 1fr; gap: 25px; }
  .intro-copy { grid-column: 1; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; margin-bottom: 45px; }
  .gateway-grid { grid-template-columns: 1fr; }
  .gateway-card { min-height: 440px; }
  .journey-copy { display: block; }
  .journey-image-wrap { min-height: 340px; height: 68vw; }
  .journey-steps { grid-template-columns: 1fr 1fr; gap: 0; }
  .journey-step { min-height: 58px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .product-grid { display: grid; grid-template-columns: 1fr; }
  .product-card,
  .product-card-wide,
  .product-card-dark { min-height: 430px; grid-column: auto; }
  .why-item { grid-template-columns: 45px 1fr; }
  .industries-image { min-height: 440px; }
  .industries-content { padding: 80px 24px; }
  .process-track { grid-template-columns: 1fr; gap: 0; }
  .process-line { top: 0; bottom: 0; inset-inline-start: 7px; width: 1px; height: auto; }
  .process-line i { width: 2px; height: 0; transition: height 1.7s var(--ease); }
  .process-section.in-view .process-line i { width: 2px; height: 100%; }
  .process-step { padding: 0 0 50px 50px; }
  html[dir="rtl"] .process-step { padding: 0 50px 50px 0; }
  .process-step::before { top: 0; }
  .process-step h3 { margin-top: 10px; }
  .process-step p { max-width: 100%; }
  .reach-visual { margin-top: 30px; }
  .market-node { padding-inline-start: 14px; }
  .market-node strong { font-size: .68rem; }
  .market-node small { display: none; }
  .reach-core { width: 86px; height: 86px; }
  .reach-core img { width: 55px; }
  .split-cta { grid-template-columns: 1fr; }
  .split-panel { min-height: 420px; padding: 70px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 50px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
  .footer-language { position: absolute; inset-inline-end: 16px; }
  .rfq-form { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .form-actions { flex-direction: column; }
  .form-actions .button { width: 100%; }
}

@media (max-width: 430px) {
  .brand-copy small { display: none; }
  .hero h1 { font-size: 3.15rem; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { min-height: 110px; }
  .gateway-card { min-height: 400px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand,
  .footer-column:last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-video { display: none; }
  .hero { background: linear-gradient(90deg, rgba(4,13,25,.84), rgba(4,13,25,.32)), url("images/hero-poster.jpg") center/cover no-repeat; }
}
