:root {
  --red: #ff2d20;
  --red-dark: #d9231b;
  --red-soft: #ffe4e1;
  --ink: #0b1721;
  --navy: #0b2033;
  --navy-2: #11334a;
  --navy-3: #1b4863;
  --steel: #607786;
  --muted: #667986;
  --mist: #f2f6f8;
  --mist-2: #e8eff2;
  --line: #dce5e9;
  --white: #ffffff;
  --shadow-sm: 0 12px 30px rgba(11, 32, 51, 0.08);
  --shadow-md: 0 24px 60px rgba(7, 24, 38, 0.14);
  --shadow-lg: 0 38px 100px rgba(3, 15, 25, 0.28);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1220px;
  --header-height: 82px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1,
h2 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  color: #fff;
  background: var(--red);
}

:focus-visible {
  outline: 3px solid rgba(255, 45, 32, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--red);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

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

.section {
  padding: 116px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--red-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: #ff6f64;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 999px;
  box-shadow: 0 13px 32px rgba(255, 45, 32, 0.22);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.button:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 16px 36px rgba(255, 45, 32, 0.3);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 11px 19px;
  font-size: 0.84rem;
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: none;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.6);
}

.button-dark {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 13px 32px rgba(11, 32, 51, 0.18);
}

.button-dark:hover {
  background: #061725;
  border-color: #061725;
  box-shadow: 0 16px 36px rgba(11, 32, 51, 0.25);
}

.button-light {
  color: var(--navy);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.button-light:hover {
  color: var(--navy);
  background: #eef4f6;
  border-color: #eef4f6;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  transition: color 0.2s ease, gap 0.2s ease;
}

.text-link span {
  color: var(--red);
  font-size: 1.1em;
}

.text-link:hover {
  color: var(--red-dark);
  gap: 11px;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(11, 32, 51, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 32px rgba(7, 25, 39, 0.08);
}

.nav-wrap {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 30px;
}

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

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

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

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  color: #243642;
  font-size: 0.84rem;
  font-weight: 750;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
}

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

.header-cta {
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 999;
  inset: var(--header-height) 0 0;
  padding: 28px 0;
  background: rgba(255, 255, 255, 0.99);
  border-top: 1px solid var(--line);
  overflow: auto;
}

.mobile-menu nav {
  display: grid;
  gap: 4px;
}

.mobile-menu nav > a:not(.button) {
  padding: 15px 4px;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  font-weight: 750;
}

.mobile-menu .button {
  margin-top: 22px;
}

/* Hero */
.hero {
  position: relative;
  padding: 90px 0 0;
  color: #fff;
  background:
    radial-gradient(circle at 81% 24%, rgba(42, 99, 132, 0.38), transparent 35%),
    linear-gradient(132deg, #061522 0%, #0b2338 55%, #123c57 100%);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: -145px;
  right: 8%;
  width: 520px;
  height: 260px;
  border: 5px solid rgba(255, 45, 32, 0.5);
  border-bottom: 0;
  border-radius: 55% 55% 0 0 / 100% 100% 0 0;
  content: "";
  transform: rotate(-7deg);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
  pointer-events: none;
}

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

.hero-orbit-one {
  top: 180px;
  left: -280px;
  width: 700px;
  height: 700px;
}

.hero-orbit-two {
  top: 340px;
  left: -120px;
  width: 410px;
  height: 410px;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, 0.97fr);
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 72px;
}

.hero-copy h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 5.2vw, 5.1rem);
  font-weight: 780;
  letter-spacing: -0.055em;
}

.hero-copy h1::after {
  display: inline-block;
  width: 0.23em;
  height: 0.23em;
  margin-left: 0.06em;
  background: var(--red);
  border-radius: 50%;
  content: "";
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: #cad8e0;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 42px;
}

.hero-route {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  color: #dae5ea;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  list-style: none;
  text-transform: uppercase;
}

.hero-route li {
  position: relative;
  padding-left: 15px;
}

.hero-route li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  content: "";
}

.hero-visual {
  position: relative;
  z-index: 2;
  align-self: stretch;
  min-height: 620px;
}

.hero-image-shell {
  position: absolute;
  top: 0;
  right: -36px;
  bottom: 0;
  left: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 190px 34px 34px 34px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-image-shell::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 165px;
  height: 165px;
  background: var(--red);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  content: "";
  opacity: 0.9;
}

.hero-image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% 50%;
}

.visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 21, 34, 0.28), transparent 44%),
    linear-gradient(0deg, rgba(6, 21, 34, 0.28), transparent 45%);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  max-width: 330px;
  align-items: center;
  gap: 13px;
  padding: 14px 17px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.floating-card-top {
  top: 64px;
  left: -34px;
}

.floating-card-bottom {
  right: -8px;
  bottom: 54px;
}

.floating-card span:last-child {
  display: grid;
  gap: 2px;
}

.floating-card strong {
  font-size: 0.82rem;
  line-height: 1.25;
}

.floating-card small {
  color: var(--muted);
  font-size: 0.69rem;
  line-height: 1.35;
}

.floating-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 12px;
}

.floating-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-service-bar {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 4px;
  color: var(--ink);
  background: #fff;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -18px 55px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.hero-service-bar article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  min-height: 174px;
  padding: 34px 27px 30px;
  border-right: 1px solid var(--line);
}

.hero-service-bar article:last-child {
  border-right: 0;
}

.service-number {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-service-bar h2 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.hero-service-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.55;
}

/* Shared headings */
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 68px;
  margin-bottom: 52px;
}

.section-heading h2,
.service-copy h2,
.sourcing-copy h2,
.why-copy h2,
.faq-intro h2,
.contact-copy h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(2.35rem, 4vw, 4.05rem);
  font-weight: 760;
  letter-spacing: -0.052em;
}

.section-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

/* Capabilities */
.capabilities {
  background: #fff;
}

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

.capability-card {
  position: relative;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 26px rgba(11, 32, 51, 0.045);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.capability-card:hover {
  border-color: rgba(255, 45, 32, 0.32);
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.capability-media {
  position: relative;
  aspect-ratio: 1.52 / 1;
  background: var(--navy);
  overflow: hidden;
}

.capability-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(to top, rgba(5, 22, 35, 0.4), transparent);
  content: "";
  pointer-events: none;
}

.capability-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.capability-card:hover .capability-media img {
  transform: scale(1.035);
}

.capability-content {
  position: relative;
  padding: 27px 27px 29px;
}

.card-index {
  position: absolute;
  top: 28px;
  right: 25px;
  color: #a8b5bd;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.capability-content h3 {
  max-width: calc(100% - 50px);
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.28rem;
  font-weight: 770;
}

.capability-content > p {
  min-height: 78px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.65;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 6px 10px;
  color: #395061;
  background: var(--mist);
  border: 1px solid #e4ecef;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1.25;
}

.capability-card-wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
}

.capability-card-wide .capability-media {
  height: 100%;
  aspect-ratio: auto;
}

.capability-card-wide .capability-content {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: center;
  padding: 40px 46px;
}

.capability-card-wide .capability-content > p {
  min-height: auto;
  max-width: 680px;
}

/* Service section */
.service-section {
  background: var(--mist);
  border-top: 1px solid #e7eef1;
  border-bottom: 1px solid #e7eef1;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(50px, 7vw, 96px);
}

.service-image {
  position: relative;
  min-height: 690px;
}

.service-image::before {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 62%;
  height: 58%;
  background: var(--red);
  border-radius: 28px;
  content: "";
  opacity: 0.98;
}

.service-image::after {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 48%;
  height: 44%;
  border: 1px solid rgba(11, 32, 51, 0.14);
  border-radius: 28px;
  content: "";
}

.service-image > img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
}

.image-caption {
  position: absolute;
  z-index: 2;
  right: -26px;
  bottom: 36px;
  display: grid;
  gap: 2px;
  min-width: 285px;
  padding: 20px 23px;
  color: #fff;
  background: var(--navy);
  border-left: 5px solid var(--red);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

.image-caption strong {
  font-size: 0.93rem;
}

.image-caption span {
  color: #aebfca;
  font-size: 0.75rem;
}

.service-copy h2 {
  margin-bottom: 26px;
}

.lead-copy {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.78;
}

.service-list {
  display: grid;
  gap: 9px;
  margin: 34px 0 36px;
}

.service-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid #d9e3e7;
}

.service-list article:first-child {
  border-top: 1px solid #d9e3e7;
}

.check-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 0.77rem;
  font-weight: 900;
}

.service-list h3 {
  margin: 2px 0 5px;
  color: var(--navy);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.service-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.6;
}

/* Sourcing */
.sourcing-section {
  position: relative;
  color: #fff;
  background: var(--navy);
  overflow: hidden;
}

.sourcing-section::before {
  position: absolute;
  top: -220px;
  left: -130px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(255, 45, 32, 0.2), transparent 65%);
  content: "";
}

.sourcing-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 62px;
}

.sourcing-copy h2 {
  margin-bottom: 27px;
  color: #fff;
}

.sourcing-copy > p:not(.eyebrow) {
  color: #bdcbd4;
  font-size: 1rem;
  line-height: 1.8;
}

.origin-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 34px;
}

.origin-list span {
  padding: 7px 12px;
  color: #dce7ec;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 750;
}

.map-wrap {
  position: relative;
  min-width: 0;
}

.map-wrap img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
}

.map-label {
  position: absolute;
  padding: 6px 9px;
  color: #d8e4ea;
  background: rgba(5, 20, 33, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: clamp(0.55rem, 0.75vw, 0.7rem);
  font-weight: 750;
  line-height: 1.15;
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
}

.map-label-na { top: 30%; left: 18%; }
.map-label-sa { top: 70%; left: 28%; }
.map-label-eu { top: 25%; left: 49%; }
.map-label-asia { top: 42%; left: 84%; }
.map-label-sea { top: 76%; left: 77%; }
.map-label-kz {
  top: 38%;
  left: 65.5%;
  display: grid;
  min-width: 108px;
  gap: 2px;
  color: var(--navy);
  background: #fff;
  border-color: #fff;
  text-align: center;
}

.map-label-kz b {
  color: var(--red-dark);
  font-size: 0.78rem;
}

.map-label-kz small {
  color: var(--muted);
  font-size: 0.57rem;
}

/* Process */
.process-section {
  background: #fff;
}

.process-heading {
  margin-bottom: 62px;
}

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

.process-grid li {
  position: relative;
  min-height: 310px;
  padding: 34px 31px 36px;
  background: #fff;
  transition: background 0.25s ease;
}

.process-grid li:hover {
  background: var(--mist);
}

.process-grid li::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  background: var(--red);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  content: "";
  opacity: 0;
  transition: opacity 0.25s ease;
}

.process-grid li:hover::after {
  opacity: 1;
}

.process-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #a8b6be;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.process-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 37px;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border-radius: 17px;
  box-shadow: 0 11px 25px rgba(11, 32, 51, 0.16);
}

.process-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.process-grid h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.14rem;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.67;
}

/* Industry feature */
.industry-feature {
  position: relative;
  min-height: 760px;
  color: #fff;
  background: #071b2d;
  overflow: hidden;
}

.industry-photo {
  position: absolute;
  inset: 0;
  background-image: url("assets/images/oil-gas-refinery.webp");
  background-position: center;
  background-size: cover;
}

.industry-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 18, 30, 0.97) 0%, rgba(4, 18, 30, 0.88) 38%, rgba(4, 18, 30, 0.26) 72%, rgba(4, 18, 30, 0.2) 100%),
    linear-gradient(0deg, rgba(4, 18, 30, 0.45), transparent 55%);
  content: "";
}

.industry-content-wrap {
  position: relative;
  display: flex;
  min-height: 760px;
  align-items: center;
}

.industry-content {
  max-width: 650px;
  padding: 90px 0;
}

.industry-content h2 {
  margin-bottom: 26px;
  font-size: clamp(2.45rem, 4.2vw, 4.25rem);
  font-weight: 760;
  letter-spacing: -0.052em;
}

.industry-content > p:not(.eyebrow) {
  color: #c6d4dc;
  font-size: 1.02rem;
  line-height: 1.8;
}

.industry-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin: 32px 0 38px;
}

.industry-points span {
  position: relative;
  padding: 13px 0 13px 20px;
  color: #e1e9ed;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.84rem;
  font-weight: 750;
}

.industry-points span::before {
  position: absolute;
  top: 50%;
  left: 1px;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

/* Why */
.why-section {
  background: var(--mist);
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.why-copy h2 {
  margin-bottom: 25px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 40px;
  background: #d8e2e7;
  border: 1px solid #d8e2e7;
  border-radius: 20px;
  overflow: hidden;
}

.why-grid article {
  position: relative;
  min-height: 190px;
  padding: 26px 25px;
  background: #fff;
}

.why-grid article > span {
  display: block;
  margin-bottom: 24px;
  color: var(--red);
  font-size: 0.71rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.why-grid h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.98rem;
}

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

.why-image {
  position: relative;
  padding: 24px 0 44px 24px;
}

.why-image::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 47%;
  height: 66%;
  background: var(--red);
  border-radius: 28px;
  content: "";
}

.why-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: center;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
}

.why-image-note {
  position: absolute;
  z-index: 2;
  right: -22px;
  bottom: 0;
  display: flex;
  min-width: 320px;
  align-items: center;
  gap: 14px;
  padding: 21px 23px;
  color: #fff;
  background: var(--navy);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

.why-image-note svg {
  width: 35px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.why-image-note div {
  display: grid;
  gap: 2px;
}

.why-image-note strong {
  font-size: 0.9rem;
}

.why-image-note span {
  color: #aebfca;
  font-size: 0.72rem;
}

/* FAQ */
.faq-section {
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(52px, 8vw, 110px);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.faq-intro h2 {
  margin-bottom: 24px;
}

.faq-intro > p:not(.eyebrow) {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.75;
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 27px 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.faq-item button > span:first-child {
  font-size: 1.05rem;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.faq-plus {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.faq-plus::before,
.faq-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] .faq-plus {
  background: var(--red);
  border-color: var(--red);
}

.faq-item button[aria-expanded="true"] .faq-plus::before,
.faq-item button[aria-expanded="true"] .faq-plus::after {
  background: #fff;
}

.faq-item button[aria-expanded="true"] .faq-plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 56px 27px 0;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.75;
}

/* Contact */
.contact-section {
  position: relative;
  padding: 116px 0;
  color: #fff;
  background: var(--navy);
  overflow: hidden;
}

.contact-background {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(6, 22, 36, 0.86), rgba(6, 22, 36, 0.52)), url("assets/images/contact-route.webp");
  background-position: center;
  background-size: cover;
  opacity: 0.88;
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(480px, 1.22fr);
  align-items: center;
  gap: clamp(54px, 8vw, 112px);
}

.contact-copy h2 {
  margin-bottom: 26px;
  color: #fff;
}

.contact-copy > p:not(.eyebrow) {
  color: #c0ced6;
  font-size: 1rem;
  line-height: 1.8;
}

.contact-details {
  display: grid;
  gap: 13px;
  margin-top: 38px;
}

.contact-details > a,
.contact-details > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-details > a:hover strong {
  color: #ff7268;
}

.contact-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--red);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
}

.contact-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-details span:last-child {
  display: grid;
  gap: 2px;
}

.contact-details small {
  color: #8fa5b3;
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details strong {
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.quote-form {
  padding: 38px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.form-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 27px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  color: var(--navy);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.69rem;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid label > span {
  color: #435866;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  color: var(--ink);
  background: #f8fafb;
  border: 1px solid #dce5e9;
  border-radius: 11px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-grid input,
.form-grid select {
  height: 52px;
  padding: 0 15px;
}

.form-grid textarea {
  min-height: 145px;
  padding: 13px 15px;
  resize: vertical;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #9ba9b2;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  background: #fff;
  border-color: rgba(255, 45, 32, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 45, 32, 0.09);
}

.form-grid [aria-invalid="true"] {
  border-color: #d91e18;
  box-shadow: 0 0 0 4px rgba(217, 30, 24, 0.08);
}

.form-submit {
  width: 100%;
  margin-top: 22px;
  border-radius: 12px;
}

.form-note,
.form-status {
  margin: 13px 0 0;
  color: #7b8d98;
  font-size: 0.68rem;
  line-height: 1.55;
  text-align: center;
}

.form-status {
  min-height: 1.1em;
  color: var(--red-dark);
  font-weight: 750;
}

/* Footer */
.site-footer {
  padding: 76px 0 24px;
  color: #c0ced6;
  background: #061522;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.72fr);
  gap: 50px;
  padding-bottom: 55px;
}

.footer-brand .brand {
  width: 165px;
  padding: 10px;
  background: #fff;
  border-radius: 12px;
}

.footer-brand p {
  max-width: 330px;
  margin: 22px 0 0;
  color: #94a9b6;
  font-size: 0.84rem;
}

.footer-grid h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-grid a,
.footer-grid > div:not(.footer-brand) p {
  margin: 0 0 9px;
  color: #94a9b6;
  font-size: 0.79rem;
  line-height: 1.55;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: #718997;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.73rem;
}

.footer-bottom a:hover {
  color: #fff;
}

/* Reveal animation */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal-delay-1 {
  transition-delay: 0.11s;
}

.js .reveal-delay-2 {
  transition-delay: 0.2s;
}

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

/* Responsive */
@media (max-width: 1120px) {
  :root { --header-height: 76px; }

  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 0.78rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.86fr);
    gap: 42px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 5vw, 4.4rem);
  }

  .floating-card-top {
    left: -18px;
  }

  .hero-service-bar article {
    padding: 30px 20px;
  }

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

  .capability-card-wide {
    grid-column: 1 / -1;
  }

  .service-layout,
  .why-layout {
    gap: 56px;
  }

  .service-image {
    min-height: 620px;
  }

  .why-image img {
    min-height: 520px;
  }
}

@media (max-width: 960px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .brand {
    width: 148px;
  }

  .section {
    padding: 92px 0;
  }

  .hero {
    padding-top: 70px;
  }

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

  .hero-copy {
    max-width: 760px;
    padding-bottom: 18px;
  }

  .hero-visual {
    min-height: 580px;
  }

  .hero-image-shell {
    right: 0;
  }

  .floating-card-top {
    left: 24px;
  }

  .floating-card-bottom {
    right: 25px;
  }

  .hero-service-bar {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 58px;
  }

  .hero-service-bar article {
    min-height: 150px;
    border-bottom: 1px solid var(--line);
  }

  .hero-service-bar article:nth-child(2) {
    border-right: 0;
  }

  .hero-service-bar article:nth-child(3),
  .hero-service-bar article:nth-child(4) {
    border-bottom: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading > p {
    max-width: 720px;
  }

  .service-layout,
  .sourcing-layout,
  .why-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-image {
    min-height: 600px;
    order: 2;
  }

  .service-copy {
    order: 1;
  }

  .sourcing-layout {
    gap: 50px;
  }

  .sourcing-copy {
    max-width: 760px;
  }

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

  .industry-feature,
  .industry-content-wrap {
    min-height: 690px;
  }

  .industry-photo::after {
    background: linear-gradient(90deg, rgba(4, 18, 30, 0.96), rgba(4, 18, 30, 0.7) 70%, rgba(4, 18, 30, 0.4));
  }

  .why-image {
    max-width: 720px;
    margin-inline: auto;
  }

  .why-image img {
    min-height: 500px;
  }

  .faq-intro {
    position: static;
    max-width: 720px;
  }

  .contact-layout {
    gap: 48px;
  }

  .contact-copy {
    max-width: 760px;
  }

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

  .contact-details > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.25fr repeat(2, 0.8fr);
  }

  .footer-grid > div:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 12vw, 3.65rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

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

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

  .hero-visual {
    min-height: 470px;
  }

  .hero-image-shell {
    border-radius: 120px 24px 24px 24px;
  }

  .hero-image-shell::after {
    width: 105px;
    height: 105px;
  }

  .floating-card {
    max-width: calc(100% - 32px);
  }

  .floating-card-top {
    top: 25px;
    left: 16px;
  }

  .floating-card-bottom {
    right: 16px;
    bottom: 24px;
  }

  .hero-service-bar {
    grid-template-columns: 1fr;
    border-radius: 22px 22px 0 0;
  }

  .hero-service-bar article,
  .hero-service-bar article:nth-child(2),
  .hero-service-bar article:nth-child(3) {
    min-height: auto;
    padding: 25px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-service-bar article:last-child {
    border-bottom: 0;
  }

  .section-heading h2,
  .service-copy h2,
  .sourcing-copy h2,
  .why-copy h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

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

  .capability-card-wide {
    display: block;
    grid-column: auto;
  }

  .capability-card-wide .capability-media {
    aspect-ratio: 1.52 / 1;
  }

  .capability-card-wide .capability-content {
    min-height: auto;
    padding: 27px;
  }

  .capability-content > p {
    min-height: auto;
  }

  .service-image {
    min-height: 480px;
    margin: 0 12px;
  }

  .service-image::before {
    top: -14px;
    right: -14px;
  }

  .service-image::after {
    bottom: -16px;
    left: -14px;
  }

  .image-caption {
    right: -13px;
    bottom: 22px;
    min-width: 250px;
  }

  .map-label:not(.map-label-kz) {
    display: none;
  }

  .map-label-kz {
    min-width: 94px;
  }

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

  .process-grid li {
    min-height: auto;
  }

  .industry-feature,
  .industry-content-wrap {
    min-height: 690px;
  }

  .industry-photo {
    background-position: 62% center;
  }

  .industry-photo::after {
    background: rgba(4, 18, 30, 0.82);
  }

  .industry-content h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

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

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

  .why-grid article {
    min-height: auto;
  }

  .why-image {
    padding: 15px 0 54px 15px;
  }

  .why-image img {
    min-height: 400px;
  }

  .why-image-note {
    right: -5px;
    min-width: min(310px, calc(100% - 25px));
  }

  .faq-item button {
    padding: 23px 0;
  }

  .faq-answer {
    padding-right: 0;
  }

  .contact-section {
    padding: 80px 0;
  }

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

  .contact-details > div:last-child {
    grid-column: auto;
  }

  .quote-form {
    padding: 27px 20px;
    border-radius: 22px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

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

  .form-wide {
    grid-column: auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .brand {
    width: 135px;
  }

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

  .hero-visual {
    min-height: 430px;
  }

  .floating-card {
    padding: 11px 12px;
  }

  .floating-card small {
    display: none;
  }

  .floating-icon {
    width: 36px;
    height: 36px;
  }

  .capability-content,
  .capability-card-wide .capability-content {
    padding: 24px 21px 26px;
  }

  .card-index {
    top: 25px;
    right: 20px;
  }

  .service-image {
    min-height: 405px;
  }

  .image-caption {
    right: -8px;
    min-width: 220px;
    padding: 16px 18px;
  }

  .why-image img {
    min-height: 340px;
  }

  .why-image-note {
    min-width: calc(100% - 18px);
    padding: 16px;
  }

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

  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
