:root {
  --ink: #10232d;
  --navy: #0a3448;
  --navy-deep: #062634;
  --green: #1d7a58;
  --green-dark: #135d43;
  --gold: #c99a45;
  --gold-light: #f3e6c9;
  --surface: #f5f7f7;
  --surface-strong: #e9efee;
  --line: #d5dfdd;
  --muted: #62727b;
  --white: #ffffff;
  --danger: #b42318;
  --success: #087443;
  --shadow: 0 18px 50px rgba(6, 38, 52, 0.12);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "IBM Plex Sans Arabic", "Segoe UI", Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
  font-family: inherit;
}

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

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

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

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

svg {
  width: 1.2em;
  height: 1.2em;
  flex: 0 0 auto;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  border-bottom: 1px solid rgba(10, 52, 72, 0.1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-left: auto;
  min-width: 236px;
}

.brand img {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  object-fit: cover;
}

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

.brand-copy strong {
  color: var(--navy);
  font-family: "Alexandria", inherit;
  font-size: 18px;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.main-nav a {
  position: relative;
  color: #344c58;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 9px;
  padding: 10px 19px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button:focus-visible,
.icon-button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(201, 154, 69, 0.48);
  outline-offset: 3px;
}

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

.button-primary:hover {
  background: var(--navy-deep);
}

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

.button-accent:hover {
  background: #d9aa55;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

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

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(720px, calc(100svh - 76px));
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

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

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center 48%;
}

.hero-overlay {
  z-index: -2;
  background: linear-gradient(90deg, rgba(4, 27, 38, 0.48) 0%, rgba(4, 27, 38, 0.84) 58%, rgba(4, 27, 38, 0.94) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 18%;
  background: linear-gradient(to top, rgba(4, 27, 38, 0.46), transparent);
}

.hero-content {
  padding-block: 80px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Alexandria", inherit;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.9;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 44px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-points svg {
  color: var(--gold);
}

.signal-band {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.signal-grid > div {
  display: grid;
  gap: 3px;
  padding: 23px 24px;
  border-left: 1px solid var(--line);
}

.signal-grid > div:last-child {
  border-left: 0;
}

.signal-grid strong {
  color: var(--navy);
  font-size: 15px;
}

.signal-grid span {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding-block: 94px;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--green);
}

.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Alexandria", inherit;
  font-size: clamp(29px, 3.4vw, 44px);
  line-height: 1.35;
  letter-spacing: 0;
}

.section-copy h2 span,
.section-heading h2 span {
  color: var(--green);
}

.section-copy > p:not(.section-kicker),
.section-heading > p,
.contact-copy > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 76px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  color: var(--green-dark);
  font-weight: 700;
}

.about-media {
  position: relative;
  margin: 0;
}

.about-media::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  width: 92px;
  height: 92px;
  border-top: 4px solid var(--gold);
  border-right: 4px solid var(--gold);
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-media figcaption {
  position: absolute;
  right: 24px;
  bottom: -32px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(360px, calc(100% - 48px));
  padding: 18px 20px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.about-media figcaption svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.about-media figcaption span {
  display: grid;
  line-height: 1.45;
}

.about-media figcaption small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
}

.products-section {
  background: var(--surface);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 42px;
}

.section-heading > p {
  margin: 0 0 4px;
}

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

.product-card {
  position: relative;
  min-height: 370px;
  padding: 30px 25px 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(29, 122, 88, 0.45);
  box-shadow: 0 18px 34px rgba(10, 52, 72, 0.1);
}

.featured-product {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.product-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 38px;
  color: var(--green);
  border: 1px solid rgba(29, 122, 88, 0.22);
  background: #edf6f2;
}

.featured-product .product-icon {
  color: var(--gold);
  border-color: rgba(201, 154, 69, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.product-icon svg {
  width: 27px;
  height: 27px;
}

.product-number {
  position: absolute;
  top: 25px;
  left: 22px;
  color: #a5b0b5;
  font-family: "Alexandria", inherit;
  font-size: 13px;
  font-weight: 700;
}

.product-card h3 {
  margin: 0 0 11px;
  color: var(--navy);
  font-family: "Alexandria", inherit;
  font-size: 20px;
}

.featured-product h3 {
  color: var(--white);
}

.product-card p {
  min-height: 96px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.featured-product p {
  color: rgba(255, 255, 255, 0.72);
}

.product-card ul {
  display: grid;
  gap: 7px;
  margin: 20px 0 0;
  padding: 17px 0 0;
  border-top: 1px solid var(--line);
  color: #52626b;
  font-size: 12px;
  list-style: none;
}

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

.product-card li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  background: var(--gold);
}

.capability-section {
  position: relative;
  isolation: isolate;
  padding-block: 100px;
  color: var(--white);
  overflow: hidden;
}

.capability-image,
.capability-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.capability-image {
  object-fit: cover;
  object-position: center;
}

.capability-overlay {
  z-index: -1;
  background: rgba(6, 38, 52, 0.9);
}

.capability-content {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
  align-items: center;
}

.light-copy h2 {
  color: var(--white);
}

.light-copy > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.7);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.process-list li {
  display: flex;
  min-height: 154px;
  gap: 15px;
  padding: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list > li > span {
  color: var(--gold);
  font-family: "Alexandria", inherit;
  font-size: 12px;
  font-weight: 700;
}

.process-list div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.process-list strong {
  font-size: 16px;
}

.process-list small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.7;
}

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

.sectors-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 80px;
}

.sector-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.sector-list > div {
  display: flex;
  align-items: center;
  min-height: 126px;
  gap: 15px;
  padding: 20px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sector-list svg {
  width: 31px;
  height: 31px;
  color: var(--green);
}

.sector-list span,
.quality-points span {
  display: grid;
  gap: 4px;
}

.sector-list strong,
.quality-points strong {
  color: var(--navy);
  font-size: 15px;
}

.sector-list small,
.quality-points small {
  color: var(--muted);
  font-size: 12px;
}

.quality-section {
  background: var(--surface);
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 78px;
}

.quality-media {
  position: relative;
  margin: 0;
}

.quality-media::after {
  content: "جودة تبدأ من الخامة";
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 14px 22px;
  color: var(--navy-deep);
  background: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.quality-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.quality-points {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.quality-points > div {
  display: flex;
  align-items: center;
  min-height: 85px;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.quality-points svg {
  width: 26px;
  height: 26px;
  color: var(--green);
}

.contact-section {
  padding-block: 88px;
  color: var(--white);
  background: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 78px;
  align-items: start;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.68);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-details > * {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-details > [hidden] {
  display: none;
}

.contact-details svg {
  color: var(--gold);
}

.contact-details span {
  display: grid;
}

.contact-details small {
  color: rgba(255, 255, 255, 0.55);
}

.quote-form {
  padding: 30px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-heading > div {
  display: grid;
  gap: 2px;
}

.form-heading span {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.form-heading strong {
  color: var(--navy);
  font-family: "Alexandria", inherit;
  font-size: 20px;
}

.form-heading svg {
  width: 30px;
  height: 30px;
  color: var(--green);
}

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

.quote-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: #334b57;
  font-size: 12px;
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #cbd8d6;
  border-radius: 3px;
  color: var(--ink);
  background: #fbfcfc;
  font-size: 14px;
  font-weight: 400;
}

.quote-form input {
  min-height: 47px;
  padding: 9px 12px;
}

.quote-form select {
  min-height: 47px;
  padding: 9px 12px;
}

.quote-form textarea {
  resize: vertical;
  min-height: 112px;
  padding: 12px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--green);
  background: var(--white);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-submit {
  width: 100%;
  margin-top: 3px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  font-size: 13px;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-deep);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding-block: 38px;
}

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

.footer-brand img {
  width: 62px;
  height: 62px;
  object-fit: cover;
}

.footer-brand div {
  display: grid;
  gap: 3px;
}

.footer-brand strong {
  color: var(--white);
  font-family: "Alexandria", inherit;
}

.footer-brand p {
  margin: 0;
  font-size: 12px;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  font-size: 13px;
}

.footer-main nav a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 12px;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.floating-contact {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  background: #1f9d61;
  box-shadow: 0 12px 26px rgba(6, 38, 52, 0.2);
}

.floating-contact[hidden] {
  display: none;
}

.floating-contact svg {
  width: 25px;
  height: 25px;
}

@media (max-width: 1040px) {
  .header-cta {
    display: none;
  }

  .brand {
    min-width: 220px;
  }

  .main-nav {
    gap: 17px;
  }

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

  .product-card p {
    min-height: 76px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy small {
    display: none;
  }

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

  .main-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 14px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 36px rgba(6, 38, 52, 0.12);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--surface-strong);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: 690px;
  }

  .hero-overlay {
    background: rgba(4, 27, 38, 0.82);
  }

  .hero h1 {
    font-size: clamp(34px, 9vw, 50px);
  }

  .hero-lead {
    font-size: 16px;
  }

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

  .signal-grid > div:nth-child(2) {
    border-left: 0;
  }

  .signal-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding-block: 72px;
  }

  .about-grid,
  .section-heading,
  .capability-content,
  .sectors-grid,
  .quality-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-media {
    margin-top: 18px;
  }

  .section-heading {
    align-items: start;
    margin-bottom: 30px;
  }

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

  .quality-media {
    order: 2;
  }

  .contact-section {
    padding-block: 72px;
  }

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

@media (max-width: 560px) {
  .hero {
    min-height: 660px;
  }

  .hero-content {
    padding-block: 62px;
  }

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

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

  .hero-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
  }

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

  .signal-grid > div {
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .signal-grid > div:last-child {
    border-bottom: 0;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2 {
    font-size: 29px;
  }

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

  .product-card {
    min-height: 0;
  }

  .product-card p {
    min-height: 0;
  }

  .about-media::before {
    display: none;
  }

  .about-media figcaption {
    position: static;
    width: 100%;
  }

  .process-list li,
  .sector-list > div {
    min-height: 112px;
  }

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

  .quote-form {
    padding: 22px 18px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-main nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

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

.not-found {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
  padding: 32px;
  text-align: center;
  background: var(--surface);
}

.not-found img {
  width: 82px;
  height: 82px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.not-found > strong {
  color: var(--gold);
  font-family: "Alexandria", inherit;
  font-size: 54px;
}

.not-found h1 {
  margin: 0;
  color: var(--navy);
  font-family: "Alexandria", inherit;
}

.not-found p {
  margin: 12px 0 24px;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Global product, quality and export pages */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.inner-page .site-header {
  position: relative;
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 410px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

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

.page-hero > img {
  object-fit: cover;
  object-position: center;
}

.page-hero-shade {
  background: linear-gradient(90deg, rgba(6, 38, 52, 0.32), rgba(6, 38, 52, 0.94));
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding-block: 82px 72px;
}

.page-hero h1 {
  width: min(780px, 100%);
  margin: 0 0 18px;
  font-family: "Alexandria", inherit;
  font-size: 46px;
  line-height: 1.28;
}

.page-hero p {
  width: min(700px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.9;
}

.catalog-grid {
  display: grid;
  gap: 22px;
}

.catalog-item {
  display: grid;
  grid-template-columns: minmax(300px, 38%) 1fr;
  min-height: 280px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.catalog-item:hover,
.catalog-item:focus-visible {
  border-color: rgba(29, 122, 88, 0.55);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.catalog-item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-item > span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 44px;
}

.catalog-item small {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.catalog-item strong {
  margin-top: 8px;
  color: var(--navy);
  font-family: "Alexandria", inherit;
  font-size: 28px;
}

.catalog-item p {
  max-width: 720px;
  margin: 14px 0 22px;
  color: var(--muted);
}

.catalog-item b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 14px;
}

.product-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  align-items: start;
  gap: 72px;
}

.product-facts {
  border-top: 3px solid var(--green);
  background: var(--surface);
}

.product-facts > div {
  display: grid;
  gap: 4px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}

.product-facts span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.product-facts strong {
  color: var(--navy);
  font-size: 15px;
}

.technical-section {
  background: var(--surface);
}

.technical-grid,
.export-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
}

.technical-grid > div,
.export-steps > div {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 30px;
  border-inline-start: 1px solid var(--line);
}

.technical-grid > div:first-child,
.export-steps > div:first-child {
  border-inline-start: 0;
}

.technical-grid svg,
.export-steps svg {
  width: 30px;
  height: 30px;
  margin-bottom: auto;
  color: var(--green);
}

.technical-grid strong,
.export-steps strong {
  margin-top: 22px;
  color: var(--navy);
  font-family: "Alexandria", inherit;
  font-size: 16px;
}

.technical-grid span,
.export-steps p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.document-strip {
  color: var(--white);
  background: var(--green-dark);
}

.document-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 28px;
}

.document-strip .container > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.document-strip svg {
  width: 34px;
  height: 34px;
  color: var(--gold-light);
}

.document-strip span {
  display: grid;
}

.document-strip small {
  color: rgba(255, 255, 255, 0.7);
}

.quote-band {
  padding-block: 86px;
  background: var(--navy-deep);
}

.quote-band-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  align-items: start;
  gap: 64px;
}

.quote-band-grid > div {
  position: sticky;
  top: 28px;
  color: var(--white);
}

.quote-band h2 {
  margin: 0 0 16px;
  font-family: "Alexandria", inherit;
  font-size: 34px;
  line-height: 1.45;
}

.quote-band-grid > div p {
  color: rgba(255, 255, 255, 0.66);
}

.compact-form {
  box-shadow: none;
}

.quality-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quality-timeline > div {
  min-height: 235px;
  padding: 30px 24px;
  border-inline-start: 1px solid var(--line);
}

.quality-timeline > div:first-child {
  border-inline-start: 0;
}

.quality-timeline span,
.export-steps > div > span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-family: "Alexandria", inherit;
  font-size: 22px;
  font-weight: 700;
}

.quality-timeline strong {
  color: var(--navy);
  font-family: "Alexandria", inherit;
  font-size: 16px;
}

.quality-timeline p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.quality-note {
  background: var(--surface);
}

.inline-quality-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.export-steps > div > span {
  margin-bottom: 16px;
}

.export-band {
  padding-block: 62px;
  color: var(--white);
  text-align: center;
  background: var(--green-dark);
}

.export-band h2 {
  margin: 0;
  font-family: "Alexandria", inherit;
  font-size: 30px;
}

.incoterms {
  display: flex;
  justify-content: center;
  gap: 1px;
  margin: 28px auto 20px;
}

.incoterms span {
  min-width: 100px;
  padding: 11px 20px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  font-family: "Alexandria", inherit;
  font-weight: 700;
}

.export-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1040px) {
  .technical-grid,
  .export-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .technical-grid > div:nth-child(3),
  .export-steps > div:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .technical-grid > div:nth-child(3),
  .export-steps > div:nth-child(3) {
    border-inline-start: 0;
  }

  .technical-grid > div:nth-child(4),
  .export-steps > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .quality-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .header-actions {
    margin-inline-start: auto;
  }

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

  .page-hero .container {
    padding-block: 64px 52px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .catalog-item,
  .product-overview-grid,
  .quote-band-grid {
    grid-template-columns: 1fr;
  }

  .catalog-item > img {
    height: 250px;
  }

  .quote-band-grid > div {
    position: static;
  }

  .quality-timeline {
    grid-template-columns: 1fr;
  }

  .quality-timeline > div {
    min-height: auto;
    border-inline-start: 0;
    border-top: 1px solid var(--line);
  }

  .quality-timeline > div:first-child {
    border-top: 0;
  }

  .quality-timeline span {
    margin-bottom: 16px;
  }
}

@media (max-width: 560px) {
  .page-hero {
    min-height: 310px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .catalog-item > span {
    padding: 26px 22px;
  }

  .catalog-item strong {
    font-size: 22px;
  }

  .technical-grid,
  .export-steps {
    grid-template-columns: 1fr;
  }

  .technical-grid > div,
  .export-steps > div {
    min-height: 180px;
    border-inline-start: 0;
    border-top: 1px solid var(--line);
  }

  .technical-grid > div:first-child,
  .export-steps > div:first-child {
    border-top: 0;
  }

  .document-strip .container {
    align-items: stretch;
    flex-direction: column;
  }

  .quote-band {
    padding-block: 58px;
  }

  .quote-band h2,
  .export-band h2 {
    font-size: 26px;
  }

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