:root {
  --bg: #f5f7fa;
  --surface: #ffffff;
  --ink: #092345;
  --muted: #647386;
  --line: #dbe4ef;
  --accent: #d3222f;
  --accent-dark: #ad1823;
  --blue: #092f5f;
  --soft-blue: #eef5fb;
  --max: 1160px;
  --shadow: 0 16px 42px rgba(9, 35, 69, 0.1);
  font-family: Inter, "Segoe UI", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
}

body[dir="rtl"] {
  font-family: "Noto Naskh Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(260px, auto) 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  padding: 0 clamp(22px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 228, 239, 0.9);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  position: relative;
  display: grid;
  width: 48px;
  height: 42px;
  place-items: end center;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  bottom: 17px;
  width: 17px;
  height: 24px;
  background: var(--accent);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.brand-mark::before {
  left: 6px;
}

.brand-mark::after {
  right: 6px;
  transform: scale(0.82);
}

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

.brand strong {
  color: var(--blue);
  font-size: 19px;
  line-height: 1.15;
  white-space: nowrap;
}

.brand small {
  margin-top: 4px;
  color: #253d5f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 24px);
  color: #172f50;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  padding: 28px 0 25px;
  border-bottom: 3px solid transparent;
}

.site-nav a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #263d5e;
  font-size: 13px;
}

.language-switcher button {
  padding: 0;
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.language-switcher button:not(:last-child)::after {
  content: "|";
  margin-inline-start: 8px;
  color: #9aa8b8;
}

.language-switcher button.active {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #eaf2f8;
}

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

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 38%, rgba(255, 255, 255, 0.24) 66%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(237, 246, 252, 0.45), rgba(255, 255, 255, 0.12));
}

.hero-panel {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px 20px 74px;
}

.overline,
.section-label {
  margin: 0 0 18px;
  color: #264d78;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 650px;
  margin-bottom: 8px;
  color: #071f3d;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h2 {
  margin-bottom: 34px;
  color: var(--accent);
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(96px, 142px));
  max-width: 680px;
  margin-bottom: 34px;
}

.hero-feature {
  min-height: 108px;
  padding: 4px 18px 0;
  text-align: center;
  border-inline-end: 1px solid rgba(9, 47, 95, 0.22);
}

.hero-feature:first-child {
  padding-inline-start: 0;
}

.hero-feature:last-child {
  border-inline-end: 0;
}

.hero-feature svg,
.metric svg,
.process-item svg {
  width: 34px;
  height: 34px;
  margin: 0 auto 11px;
  color: var(--blue);
  stroke-width: 1.8;
}

.hero-feature strong {
  display: block;
  color: var(--blue);
  font-size: 18px;
  line-height: 1.25;
}

.hero-feature p {
  margin: 5px 0 0;
  color: #425a75;
  font-size: 12px;
  line-height: 1.45;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: #fff;
  font-weight: 800;
  background: var(--accent);
  border: 0;
  border-radius: 3px;
  box-shadow: 0 12px 24px rgba(211, 34, 47, 0.2);
  transition: background 150ms ease, transform 150ms ease;
}

.button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.metrics-strip {
  padding: 0;
  background: linear-gradient(90deg, #fff 0%, #f7fafc 100%);
  border-bottom: 1px solid var(--line);
}

#metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
}

.metric {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 106px;
  padding: 22px 26px;
  border-inline-end: 1px solid var(--line);
}

.metric:last-child {
  border-inline-end: 0;
}

.metric svg {
  margin: 0;
}

.metric small {
  display: block;
  color: #63758a;
  font-size: 13px;
  font-weight: 700;
}

.metric strong {
  display: block;
  margin-top: 2px;
  color: var(--blue);
  font-size: 24px;
  line-height: 1.15;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 66px 20px 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-head h2,
.quality-copy h2,
.supply-content h2,
.news h2,
.scale-copy h2 {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.18;
  letter-spacing: 0;
}

.section-head h2::after,
.supply-content h2::after,
.quality-copy h2::after {
  display: block;
  width: 36px;
  height: 3px;
  margin: 16px auto 0;
  background: var(--accent);
  content: "";
}

.supply-content h2::after,
.quality-copy h2::after {
  margin-inline: 0;
}

.section-head p,
.supply-content p,
.news p,
.scale-copy p {
  color: var(--muted);
  font-size: 16px;
}

.about-detail {
  padding-top: 62px;
}

.about-grid,
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.info-card,
.cert-card,
.scale-card,
.workflow-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 10px 26px rgba(9, 35, 69, 0.06);
}

.info-card {
  min-height: 220px;
  padding: 24px;
}

.info-icon,
.cert-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--blue);
  background: var(--soft-blue);
  border-radius: 50%;
}

.info-icon svg,
.cert-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.info-card h3,
.cert-card h3,
.workflow-card strong {
  display: block;
  margin: 18px 0 8px;
  color: var(--blue);
  font-size: 18px;
  line-height: 1.25;
}

.info-card p,
.cert-card p,
.scale-card p,
.workflow-card p,
.faq-list p {
  margin: 0;
  color: #52657b;
  font-size: 14px;
}

.scale-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(520px, 1.22fr);
  gap: 34px;
  align-items: start;
  padding-top: 70px;
}

.scale-copy {
  position: sticky;
  top: 104px;
}

.scale-media {
  grid-column: 1 / -1;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.scale-media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.scale-copy h2::after {
  display: block;
  width: 36px;
  height: 3px;
  margin: 16px 0 0;
  background: var(--accent);
  content: "";
}

body[dir="rtl"] .scale-copy h2::after {
  margin-inline-start: auto;
}

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

.scale-card {
  min-height: 162px;
  padding: 22px;
}

.scale-card small {
  display: block;
  color: #63758a;
  font-size: 13px;
  font-weight: 800;
}

.scale-card strong {
  display: block;
  margin: 8px 0 10px;
  color: var(--blue);
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.08;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 10px 26px rgba(9, 35, 69, 0.07);
}

.product-card figure {
  margin: 0;
  overflow: hidden;
  background: var(--soft-blue);
}

.product-card img {
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.product-card-body {
  position: relative;
  min-height: 146px;
  padding: 17px 46px 16px 18px;
}

body[dir="rtl"] .product-card-body {
  padding: 17px 18px 16px 46px;
}

.product-card h3 {
  margin-bottom: 2px;
  color: var(--blue);
  font-size: 18px;
  line-height: 1.2;
}

.product-card p {
  margin: 0;
  color: #52657b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-desc {
  display: block;
  margin-top: 12px;
  color: #52657b;
  font-size: 13px;
  line-height: 1.5;
}

.product-card .arrow {
  position: absolute;
  top: 23px;
  inset-inline-end: 18px;
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}

.supply {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(440px, 1.14fr);
  gap: 0;
  max-width: none;
  padding: 0;
  margin-top: 68px;
  background: #f4f7fa;
}

.supply figure {
  margin: 0;
}

.supply img {
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.supply-content {
  padding: clamp(44px, 5vw, 74px) max(24px, calc((100vw - var(--max)) / 2)) clamp(44px, 5vw, 74px) clamp(42px, 6vw, 76px);
}

body[dir="rtl"] .supply-content {
  padding: clamp(44px, 5vw, 74px) clamp(42px, 6vw, 76px) clamp(44px, 5vw, 74px) max(24px, calc((100vw - var(--max)) / 2));
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.process-item {
  padding: 24px 18px 0;
  text-align: center;
  border-inline-end: 1px solid var(--line);
}

.process-item figure {
  margin: -24px -18px 18px;
  overflow: hidden;
  background: var(--soft-blue);
}

.process-item figure img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.process-item:last-child {
  border-inline-end: 0;
}

.process-item h3 {
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 17px;
}

.process-item p {
  margin: 0;
  color: #52657b;
  font-size: 13px;
}

.quality {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr 1fr;
  gap: 34px;
  align-items: center;
  padding-top: 0;
  background: linear-gradient(90deg, #fff 0%, #fff 48%, #f4f8fb 48%, #f4f8fb 100%);
}

.quality-media {
  display: grid;
  gap: 14px;
  padding: 56px 0 56px 20px;
}

body[dir="rtl"] .quality-media {
  padding: 56px 20px 56px 0;
}

.quality-photo {
  position: relative;
  overflow: hidden;
  min-height: 138px;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(9, 35, 69, 0.08);
}

.quality-photo img {
  width: 100%;
  height: 100%;
  min-height: 138px;
  object-fit: cover;
}

.quality-photo div {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 28px 16px 14px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(6, 27, 53, 0.84));
}

.quality-photo strong,
.quality-photo span {
  display: block;
}

.quality-photo span {
  margin-top: 3px;
  color: #dbe6f2;
  font-size: 12px;
}

.quality-proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 64px 0 58px 20px;
}

body[dir="rtl"] .quality-proof {
  padding: 64px 20px 58px 0;
}

.proof-badge {
  display: grid;
  min-height: 104px;
  place-items: center;
  padding: 16px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  aspect-ratio: 1;
  box-shadow: 0 10px 24px rgba(9, 35, 69, 0.08);
}

.quality-copy {
  padding: 56px max(20px, calc((100vw - var(--max)) / 2)) 56px 0;
}

body[dir="rtl"] .quality-copy {
  padding: 56px 0 56px max(20px, calc((100vw - var(--max)) / 2));
}

.quality-copy ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.quality-copy li {
  position: relative;
  padding-inline-start: 30px;
  color: #324961;
  font-size: 16px;
}

.quality-copy li::before {
  position: absolute;
  inset-inline-start: 0;
  top: 2px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: #fff;
  font-size: 12px;
  background: var(--accent);
  border-radius: 50%;
  content: "✓";
}

.certification-section {
  padding-top: 66px;
}

.cert-media {
  max-width: 860px;
  margin: 0 auto 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.cert-media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.cert-card {
  min-height: 218px;
  padding: 22px;
}

.cert-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.cert-status {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: var(--blue);
  border-radius: 3px;
}

.cert-card:nth-child(n + 5) .cert-status {
  color: var(--blue);
  background: #eaf1f8;
}

.partners {
  padding-top: 62px;
}

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

.partner-card {
  overflow: hidden;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.partner-card .partner-image {
  display: grid;
  height: 120px;
  place-items: center;
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  background:
    linear-gradient(rgba(9, 47, 95, 0.18), rgba(9, 47, 95, 0.18)),
    var(--partner-bg);
  background-size: cover;
  background-position: center;
}

.partner-card strong {
  display: block;
  padding: 14px 10px 4px;
  color: var(--blue);
  font-size: 15px;
}

.partner-card p {
  display: block;
  min-height: 64px;
  padding: 0 12px 14px;
  margin: 0;
  color: #52657b;
  font-size: 12px;
  line-height: 1.45;
}

.workflow-section {
  padding-top: 66px;
}

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

.workflow-card {
  min-height: 178px;
  padding: 24px 20px;
  border: 0;
  border-inline-end: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.workflow-card:last-child {
  border-inline-end: 0;
}

.workflow-card strong {
  margin-top: 0;
}

.faq-section {
  padding-top: 0;
  padding-bottom: 66px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 900;
}

.faq-list p {
  padding: 0 20px 20px;
}

.global-trade {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(440px, 1.18fr);
  gap: 34px;
  align-items: center;
  padding-bottom: 0;
}

.global-trade figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.global-trade img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 60px;
}

.news p {
  margin-bottom: 0;
}

.news-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 26px;
}

.news-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 10px 26px rgba(9, 35, 69, 0.07);
}

.news-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-card div {
  padding: 18px;
}

.news-card strong {
  display: block;
  color: var(--blue);
  font-size: 17px;
  line-height: 1.3;
}

.news-card p {
  margin-top: 8px;
  color: #52657b;
  font-size: 13px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1.05fr);
  gap: 34px;
  align-items: center;
  max-width: none;
  padding: 38px max(20px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background: linear-gradient(120deg, #06264b 0%, #0a3d70 100%);
}

.contact h2 {
  margin-bottom: 4px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
}

.contact p {
  margin-bottom: 0;
  color: #c6d5e7;
}

.contact-lines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.contact-line {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #e8f1fb;
  font-size: 14px;
}

.contact-line svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
}

.inquiry-form label {
  display: grid;
  gap: 6px;
  color: #e8f1fb;
  font-size: 12px;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 3px;
}

.inquiry-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: #fff;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(20px, calc((100vw - var(--max)) / 2));
  color: #dbe6f2;
  background: #061b35;
}

.site-footer p {
  margin: 6px 0 0;
  color: #9fb0c5;
}

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

body[dir="rtl"] .brand {
  flex-direction: row-reverse;
}

body[dir="rtl"] .hero::before {
  background:
    linear-gradient(270deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 38%, rgba(255, 255, 255, 0.24) 66%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(237, 246, 252, 0.45), rgba(255, 255, 255, 0.12));
}

body[dir="rtl"] .hero-bg {
  object-position: 34% center;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    inset-inline: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px 0;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: auto;
    padding-block: 12px;
  }

  .language-switcher {
    grid-column: 1 / -1;
    justify-self: start;
  }

  body[dir="rtl"] .language-switcher {
    justify-self: end;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    padding-top: 54px;
  }

  .hero-features,
  #metrics-grid,
  .product-grid,
  .process-list,
	  .partner-grid,
	  .contact-lines,
	  .about-grid,
	  .cert-grid,
	  .workflow-grid,
	  .news-grid {
	    grid-template-columns: repeat(2, 1fr);
	  }

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

  .supply,
  .quality,
	  .news,
	  .contact,
	  .scale-section,
	  .global-trade {
	    grid-template-columns: 1fr;
	  }

  .scale-copy {
    position: static;
  }

  .workflow-card {
    border-bottom: 1px solid var(--line);
  }

  .workflow-card:nth-child(2n) {
    border-inline-end: 0;
  }

  .supply-content,
  body[dir="rtl"] .supply-content,
  .quality-copy,
  body[dir="rtl"] .quality-copy {
    padding: 44px 20px;
  }

  .quality {
    background: #fff;
  }

	  .quality-proof,
	  body[dir="rtl"] .quality-proof,
	  .quality-media,
	  body[dir="rtl"] .quality-media {
	    padding: 44px 20px 0;
	  }
}

@media (max-width: 620px) {
  .brand strong {
    font-size: 15px;
    white-space: normal;
  }

  .brand small {
    display: none;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero h2 {
    font-size: 26px;
  }

  .hero-features,
  #metrics-grid,
  .product-grid,
  .process-list,
  .quality-proof,
  .partner-grid,
  .contact-lines,
  .inquiry-form,
	  .about-grid,
	  .scale-grid,
	  .cert-grid,
	  .workflow-grid,
	  .news-grid {
	    grid-template-columns: 1fr;
	  }

  .hero-feature {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    min-height: 0;
    padding: 14px 0;
    text-align: start;
    border-inline-end: 0;
    border-bottom: 1px solid rgba(9, 47, 95, 0.18);
  }

  .hero-feature svg {
    margin: 0;
  }

  .metric {
    border-inline-end: 0;
  }

  .process-item {
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-card,
  .workflow-card:nth-child(2n) {
    border-inline-end: 0;
  }

  .partner-card .partner-image {
    height: 150px;
  }

  .site-footer {
    display: block;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 16px;
  }
}
