* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #142019;
  background: #f3efe5;
  font-family: "Alexandria", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

html[lang="en"] body {
  font-family: "Manrope", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  inset-block-start: 10px;
  inset-inline-start: 10px;
  z-index: 100;
  padding: 10px 16px;
  color: #ffffff;
  background: #006c35;
  transform: translateY(-160%);
}

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

.page-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px max(24px, calc((100vw - 1180px) / 2));
  color: #043d23;
  background: rgba(252, 251, 246, 0.94);
  border-bottom: 1px solid rgba(0, 75, 42, 0.15);
  box-shadow: 0 8px 35px rgba(0, 62, 34, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  width: 48px;
  height: 60px;
  display: block;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.25;
}

.brand-copy strong {
  color: #004b2a;
  font-size: 1rem;
  font-weight: 700;
}

.brand-copy small {
  margin-top: 4px;
  color: #547063;
  font-size: 0.69rem;
  font-weight: 500;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-inline-start: auto;
}

.desktop-nav a {
  position: relative;
  color: #315644;
  font-size: 0.88rem;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: -9px;
  height: 3px;
  background: #84ce26;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #006c35;
}

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

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

.header-contact {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  color: #006c35;
  border: 1px solid rgba(0, 108, 53, 0.28);
  border-radius: 22px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

.header-contact:hover,
.header-contact:focus-visible {
  color: #ffffff;
  background: #006c35;
  border-color: #006c35;
  outline: none;
}

.header-contact svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.header-phone > span {
  display: grid;
  gap: 1px;
}

.header-phone small {
  font-size: 0.62rem;
  font-weight: 600;
}

.header-phone strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.73rem;
}

.language-button,
.menu-button {
  color: #006c35;
  background: transparent;
  border: 1px solid rgba(0, 108, 53, 0.28);
  cursor: pointer;
}

.language-button {
  min-width: 50px;
  height: 42px;
  border-radius: 22px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.language-button:hover,
.language-button:focus-visible,
.menu-button:hover,
.menu-button:focus-visible {
  color: #ffffff;
  background: #006c35;
  border-color: #006c35;
  outline: none;
}

.menu-button {
  width: 44px;
  height: 42px;
  display: none;
  border-radius: 22px;
}

.menu-button span {
  width: 17px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 88px 0 0;
  z-index: 49;
  padding: 40px 24px;
  background: #fdfbf4;
}

.mobile-nav:not([hidden]) {
  display: grid;
  align-content: start;
  gap: 8px;
}

.mobile-nav a {
  padding: 17px 4px;
  color: #064628;
  border-bottom: 1px solid rgba(0, 75, 42, 0.15);
  font-size: 1.25rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 780px;
  height: 96vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: #003f24;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.04);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 47, 26, 0.12), rgba(0, 55, 30, 0.38) 45%, rgba(0, 48, 27, 0.95) 100%),
    linear-gradient(0deg, rgba(0, 43, 24, 0.76), transparent 48%);
}

html[dir="ltr"] .hero-shade {
  background:
    linear-gradient(270deg, rgba(0, 47, 26, 0.12), rgba(0, 55, 30, 0.38) 45%, rgba(0, 48, 27, 0.95) 100%),
    linear-gradient(0deg, rgba(0, 43, 24, 0.76), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 105px;
}

.eyebrow,
.section-kicker,
.product-type {
  margin: 0 0 18px;
  color: #06733b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.065em;
}

.eyebrow {
  color: #dff240;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.6rem, 7.4vw, 7rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

html[dir="rtl"] .hero h1 {
  line-height: 1.28;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 630px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: #003b21;
  background: #e5ed2a;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f6fb62;
}

.button-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.75);
}

.hero-proof {
  width: min(390px, 100%);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
  padding: 12px 16px 12px 12px;
  color: #003f24;
  background: rgba(255, 255, 255, 0.94);
  border-inline-start: 5px solid #84ce26;
  border-radius: 6px;
  box-shadow: 0 14px 45px rgba(0, 28, 15, 0.22);
}

.hero-proof img {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  object-fit: contain;
}

.hero-proof div {
  display: grid;
}

.hero-proof strong {
  font-size: 0.93rem;
}

.hero-proof span {
  color: #527061;
  font-size: 0.74rem;
  line-height: 1.6;
}

.hero-categories {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  background: #006c35;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-categories span {
  position: relative;
  padding: 20px 16px;
  color: rgba(255, 255, 255, 0.9);
  border-inline-start: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-categories span::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-inline-end: 9px;
  background: #dff240;
  border-radius: 50%;
}

.hero-categories span:last-child {
  border-inline-end: 1px solid rgba(255, 255, 255, 0.16);
}

.section-pad {
  padding-block: 112px;
}

.statement {
  position: relative;
  overflow: hidden;
  background: #e7ed2c;
}

.statement::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background: repeating-linear-gradient(135deg, transparent 0 34px, #08763d 34px 36px);
  pointer-events: none;
}

.statement-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 180px 0.85fr;
  gap: 58px;
  align-items: center;
}

.statement .section-kicker {
  color: #00552c;
}

.statement h2,
.section-heading h2,
.quality h2,
.about h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.6vw, 4.35rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

html[dir="rtl"] .statement h2,
html[dir="rtl"] .section-heading h2,
html[dir="rtl"] .quality h2,
html[dir="rtl"] .about h2,
html[dir="rtl"] .contact h2 {
  line-height: 1.35;
  letter-spacing: 0;
}

.statement-logo {
  width: 170px;
  height: 205px;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(0, 66, 35, 0.16));
}

.statement-copy {
  margin: 0;
  color: #22432f;
  font-size: 1.02rem;
  line-height: 2;
}

.products {
  position: relative;
  background: #f3efe5;
}

.products::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, #004b2a 0 32%, #84ce26 32% 68%, #f1db24 68% 100%);
}

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

.section-heading p:last-child {
  margin: 20px 0 0;
  color: #607067;
}

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

.product-card {
  position: relative;
  min-height: 480px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 36px;
  overflow: hidden;
  padding: 38px;
  background: #ffffff;
  border: 1px solid #d9dfd6;
  border-radius: 10px;
  box-shadow: 0 18px 60px rgba(0, 72, 38, 0.07);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: #84ce26;
}

.product-card:nth-child(3)::before {
  background: #e7d71c;
}

.product-card:nth-child(4)::before {
  background: #29a254;
}

.product-card-featured {
  color: #ffffff;
  background: #00592f;
  border-color: #00592f;
  box-shadow: 0 22px 65px rgba(0, 77, 41, 0.2);
}

.product-card-featured::before {
  background: #e7ed2c;
}

.product-index {
  color: rgba(0, 87, 46, 0.16);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.06em;
}

.product-card-featured .product-index {
  color: rgba(255, 255, 255, 0.16);
}

.product-card h3 {
  max-width: 470px;
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.3;
}

.product-card p:not(.product-type) {
  max-width: 500px;
  margin: 14px 0 0;
  color: #647168;
}

.product-card-featured p:not(.product-type) {
  color: rgba(255, 255, 255, 0.7);
}

.product-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #d7ddd7;
}

.product-card-featured ul {
  border-color: rgba(255, 255, 255, 0.2);
}

.product-card li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 0;
  color: #45584d;
  border-bottom: 1px solid #d7ddd7;
  font-size: 0.9rem;
}

.product-card-featured li {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
}

.product-card li b {
  color: #00713a;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1rem;
}

.product-card-featured li b {
  color: #f0f536;
}

.product-note {
  max-width: 840px;
  margin: 28px 0 0;
  color: #647068;
  font-size: 0.86rem;
}

.quality {
  position: relative;
  overflow: hidden;
  color: #f5f7ef;
  background: #003e23;
}

.quality::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  inset-inline-start: -360px;
  inset-block-start: -210px;
  border: 100px solid rgba(132, 206, 38, 0.08);
  border-radius: 50%;
}

.quality-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 110px;
}

.quality-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.quality .section-kicker {
  color: #dce935;
}

.quality-intro > p:not(.section-kicker) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  color: #e8ef36;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list > li > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #003e23;
  background: #dfe936;
  border-radius: 50%;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.process-list h3 {
  margin: 0;
  font-size: 1.4rem;
}

.process-list p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.about {
  background: #ede9de;
}

.about-grid {
  min-height: 850px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.saudi-visual {
  position: relative;
  min-height: 720px;
  margin: 0;
  overflow: hidden;
  background: #15482e;
}

.saudi-visual > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.saudi-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 58, 32, 0.74), transparent 50%);
}

.saudi-visual figcaption {
  position: absolute;
  inset-inline: 44px;
  inset-block-end: 42px;
  z-index: 2;
  display: grid;
  color: #ffffff;
}

.saudi-visual figcaption span {
  color: #dfe936;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.saudi-visual figcaption strong {
  margin-top: 4px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.2;
}

.about-content {
  display: grid;
  align-content: center;
  padding: 88px clamp(32px, 7vw, 110px);
  background: #ede9de;
}

.about-copy > p {
  margin: 24px 0 0;
  color: #53645a;
  font-size: 1.02rem;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  border-top: 1px solid #c8cec5;
  border-bottom: 1px solid #c8cec5;
}

.about-facts div {
  padding: 23px 14px;
  border-inline-start: 1px solid #c8cec5;
}

.about-facts div:last-child {
  border-inline-end: 1px solid #c8cec5;
}

.about-facts strong,
.about-facts span,
.saudi-made-panel strong,
.saudi-made-panel span {
  display: block;
}

.about-facts strong {
  color: #006c35;
  font-size: 0.98rem;
}

.about-facts span {
  margin-top: 5px;
  color: #6d786f;
  font-size: 0.72rem;
}

.saudi-made-panel {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  padding: 15px 18px;
  background: #ffffff;
  border: 1px solid #d7ded5;
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(0, 75, 42, 0.08);
}

.saudi-made-panel img {
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
  object-fit: contain;
}

.saudi-made-panel p {
  margin: 0;
}

.saudi-made-panel strong {
  color: #006c35;
  font-size: 0.94rem;
}

.saudi-made-panel span {
  margin-top: 4px;
  color: #68766d;
  font-size: 0.76rem;
  line-height: 1.7;
}

.contact {
  position: relative;
  overflow: hidden;
  background: #f3efe5;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background: repeating-linear-gradient(45deg, #006c35 0 2px, transparent 2px 42px);
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  padding: 70px;
  color: #ffffff;
  background: #006c35;
  border-radius: 12px;
  box-shadow: 0 24px 75px rgba(0, 74, 39, 0.18);
}

.contact-panel .section-kicker {
  color: #e7ed2c;
}

.contact-panel > div:first-child > p:last-child {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: padding 160ms ease, background 160ms ease;
}

html[dir="rtl"] .contact-row {
  grid-template-columns: 125px minmax(0, 1fr);
}

html[dir="rtl"] .contact-row strong {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .contact-row strong[dir="ltr"] {
  direction: ltr;
  text-align: right;
}

.contact-row:hover,
.contact-row:focus-visible {
  padding-inline: 14px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.contact-row span {
  color: #d7e7dd;
  font-size: 0.78rem;
}

.contact-row strong {
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.map-card {
  position: relative;
  height: 420px;
  margin-top: 28px;
  overflow: hidden;
  background: #dfe5dc;
  border-radius: 12px;
  box-shadow: 0 18px 55px rgba(0, 74, 39, 0.14);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.map-link {
  position: absolute;
  inset-inline-end: 18px;
  inset-block-end: 18px;
  padding: 12px 18px;
  color: #ffffff;
  background: #006c35;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 53, 30, 0.28);
  font-size: 0.82rem;
  font-weight: 700;
}

.site-footer {
  padding-block: 38px;
  color: #f6f3e8;
  background: #00351e;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
}

.brand-footer .brand-mark {
  width: 40px;
  height: 48px;
}

.brand-footer .brand-copy strong {
  color: #ffffff;
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.6);
}

.footer-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.73rem;
  text-align: center;
}

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

  .header-whatsapp span,
  .header-phone small {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .statement-grid {
    grid-template-columns: 1fr 145px;
  }

  .statement-copy {
    grid-column: 1 / -1;
    max-width: 760px;
  }

  .statement-logo {
    width: 140px;
    height: 170px;
  }

  .quality-grid,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .quality-intro {
    position: static;
  }

  .contact-panel {
    padding: 54px;
  }

  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .about-content {
    padding-inline: 42px;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-facts div,
  .about-facts div:last-child {
    border-inline: 0;
    border-bottom: 1px solid #c8cec5;
  }

  .about-facts div:last-child {
    border-bottom: 0;
  }

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

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

  .site-header {
    min-height: 76px;
    padding: 7px 16px;
  }

  .header-contact {
    width: 40px;
    min-height: 40px;
    justify-content: center;
    padding: 0;
  }

  .header-phone > span,
  .header-whatsapp span {
    display: none;
  }

  .brand-mark {
    width: 39px;
    height: 52px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy small {
    display: none;
  }

  .mobile-nav {
    inset-block-start: 76px;
  }

  .hero {
    min-height: 820px;
    height: 100svh;
    align-items: end;
  }

  .hero-image {
    object-position: 55% center;
  }

  .hero-shade,
  html[dir="ltr"] .hero-shade {
    background: linear-gradient(0deg, rgba(0, 47, 26, 0.98) 15%, rgba(0, 52, 29, 0.78) 58%, rgba(0, 51, 28, 0.34) 100%);
  }

  .hero-content {
    padding-block: 120px 145px;
  }

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

  .hero-lead {
    margin-top: 20px;
    font-size: 0.96rem;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .button {
    flex: 1 1 100%;
  }

  .hero-proof {
    margin-top: 24px;
    padding: 9px 12px;
  }

  .hero-proof img {
    width: 61px;
    height: 61px;
  }

  .hero-categories {
    grid-template-columns: repeat(2, 1fr);
    padding-inline: 0;
  }

  .hero-categories span {
    padding: 11px 7px;
    font-size: 0.69rem;
  }

  .hero-categories span:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .section-pad {
    padding-block: 78px;
  }

  .statement-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .statement-logo {
    grid-row: 1;
    width: 92px;
    height: 110px;
  }

  .statement h2,
  .section-heading h2,
  .quality h2,
  .about h2,
  .contact h2 {
    font-size: clamp(2.1rem, 9.6vw, 3.2rem);
  }

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

  .product-card {
    min-height: auto;
    gap: 28px;
    padding: 30px 24px;
  }

  .product-index {
    font-size: 3.8rem;
  }

  .process-list li {
    grid-template-columns: 54px 1fr;
    gap: 15px;
  }

  .process-list > li > span {
    width: 42px;
    height: 42px;
  }

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

  .saudi-visual {
    min-height: 520px;
  }

  .saudi-visual figcaption {
    inset-inline: 24px;
    inset-block-end: 26px;
  }

  .about-content {
    padding: 72px 24px;
  }

  .saudi-made-panel {
    align-items: flex-start;
  }

  .saudi-made-panel img {
    width: 74px;
    height: 74px;
  }

  .contact-panel {
    width: 100%;
    padding: 58px 24px;
    border-radius: 0;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  html[dir="rtl"] .contact-row {
    grid-template-columns: 1fr;
  }

  .map-card {
    width: calc(100% - 32px);
    height: 340px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
