:root {
  --orange: #f26a21;
  --orange-dark: #bd4612;
  --amber: #f6a332;
  --ink: #182027;
  --steel: #465564;
  --mist: #f6f7f8;
  --line: #dde2e6;
  --teal: #0f766e;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(24, 32, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--white);
  line-height: 1.55;
}

body[dir="rtl"] {
  direction: rtl;
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(24, 32, 39, 0.12);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
}

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

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  opacity: 0.78;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.92rem;
  font-weight: 650;
}

.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 60;
  display: grid;
  min-width: 230px;
  padding: 10px 0;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(24, 32, 39, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown a {
  padding: 13px 18px;
  font-weight: 620;
}

.nav-dropdown a:hover {
  color: var(--orange-dark);
  background: #f7f4f1;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-nav a {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid currentColor;
  border-radius: 8px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 82vh;
  overflow: hidden;
  color: var(--white);
  background: #111820;
}

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

.hero-media {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 16, 20, 0.86), rgba(12, 16, 20, 0.52) 50%, rgba(12, 16, 20, 0.18)),
    linear-gradient(0deg, rgba(12, 16, 20, 0.76), transparent 44%);
}

.hero-content {
  position: relative;
  width: min(900px, calc(100% - 36px));
  padding: 150px 0 72px clamp(18px, 5vw, 74px);
}

body[dir="rtl"] .hero-content {
  padding-right: clamp(18px, 5vw, 74px);
  padding-left: 0;
}

.language-switcher {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(15, 18, 22, 0.34);
  backdrop-filter: blur(10px);
}

.lang-button {
  min-width: 44px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  cursor: pointer;
}

.lang-button.active {
  color: var(--white);
  background: var(--orange);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 840px;
  font-size: clamp(2.5rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

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

.button.primary:hover {
  background: var(--orange-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.12);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-band div {
  padding: 26px clamp(18px, 3vw, 34px);
  background: var(--white);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  color: var(--orange-dark);
  font-size: 1.05rem;
}

.trust-band span {
  margin-top: 6px;
  color: var(--steel);
  font-size: 0.92rem;
}

.section {
  padding: clamp(68px, 9vw, 126px) clamp(18px, 5vw, 74px);
}

.section-head {
  width: min(980px, 100%);
  margin-bottom: 34px;
}

.section-copy {
  width: min(620px, 100%);
}

.section-copy p,
.contact-copy p,
.capability p,
.application-grid p,
.product-card p,
.logistics-list span {
  color: var(--steel);
}

.intro,
.quality,
.video-section,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}

.intro-panel,
.quality-image {
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.intro-panel {
  background: var(--ink);
  color: var(--white);
}

.intro-panel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.intro-panel dl {
  margin: 0;
  padding: 24px;
}

.intro-panel div {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.intro-panel div:last-child {
  border-bottom: 0;
}

.intro-panel dt {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-panel dd {
  margin: 0;
}

.products,
.logistics {
  background: var(--mist);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-button {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.filter-button.active {
  color: var(--white);
  border-color: var(--orange);
  background: var(--orange);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.product-card[hidden] {
  display: none;
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.product-card > div {
  padding: 20px 22px 22px;
}

.product-tag {
  margin-bottom: 8px;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--steel);
  font-size: 0.9rem;
}

.product-card li:nth-child(n+3) {
  display: none;
}

.product-card li + li {
  margin-top: 7px;
}

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

.capability {
  padding: 28px 24px;
  border-top: 4px solid var(--orange);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(24, 32, 39, 0.08);
}

.capability span {
  display: block;
  margin-bottom: 44px;
  color: var(--teal);
  font-weight: 900;
}

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

.application-grid div {
  min-height: 230px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(24, 32, 39, 0.07);
}

.application-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 8px;
  color: var(--white);
  background: var(--orange);
  font-weight: 900;
}

.video-section {
  background: #121a21;
}

.video-section h2,
.video-section .section-copy p {
  color: var(--white);
}

.video-section .section-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.video-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #000;
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-placeholder {
  position: relative;
}

.video-placeholder img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 26, 33, 0.46), transparent 55%);
  pointer-events: none;
}

.video-placeholder .button {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
}

.visual-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: clamp(220px, 34vw, 430px);
}

.visual-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--orange-dark);
  font-weight: 850;
}

.quality-image {
  width: 100%;
  background: var(--white);
}

.logistics-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.logistics-layout img,
.google-map,
.location-card {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.google-map {
  display: block;
  border: 0;
  background: var(--line);
}

.map-panel {
  position: relative;
  min-height: 440px;
}

.location-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(22px, 4vw, 44px);
  color: var(--white);
  background:
    radial-gradient(circle at 62% 38%, rgba(242, 106, 33, 0.12), transparent 18%),
    linear-gradient(135deg, rgba(24, 32, 39, 0.46), rgba(49, 58, 66, 0.22)),
    url("assets/brand-logistics.jpg") center / cover;
}

.location-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 32, 39, 0.28), transparent 58%),
    linear-gradient(0deg, rgba(24, 32, 39, 0.14), transparent 50%);
}

.location-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 54px 54px;
}

.location-pin {
  position: absolute;
  top: 35%;
  left: 58%;
  z-index: 2;
  width: 30px;
  height: 30px;
  border: 7px solid var(--orange);
  border-radius: 50% 50% 50% 0;
  background: var(--white);
  transform: rotate(-45deg);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.location-pin::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.location-content {
  position: relative;
  z-index: 3;
  max-width: 420px;
  padding: 26px 28px 28px;
  background: rgba(18, 26, 33, 0.28);
  backdrop-filter: blur(2px);
}

.location-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location-content strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.location-content p {
  max-width: 32ch;
  margin: 14px 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.map-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--orange);
  font-weight: 800;
}

.logistics-list {
  display: grid;
  gap: 12px;
}

.logistics-list div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  padding: 22px;
  border-left: 4px solid var(--orange);
  background: var(--white);
}

.logistics-list strong,
.logistics-list span {
  display: block;
}

.logistics-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  grid-row: span 2;
  color: var(--white);
  background: var(--orange);
}

.logistics-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.logistics-list strong {
  margin-bottom: 8px;
}

.contact {
  align-items: start;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(24, 32, 39, 0.96), rgba(24, 32, 39, 0.9)),
    url("assets/brand-gallery-coil.jpg") center / cover;
}

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

.contact .eyebrow {
  color: var(--amber);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

address {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  font-style: normal;
}

address span {
  display: block;
  color: rgba(255, 255, 255, 0.86);
}

address strong {
  display: block;
  color: var(--amber);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.social-links a:hover {
  border-color: var(--orange);
  background: var(--orange);
  transform: translateY(-1px);
}

.social-links svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

body[dir="rtl"] .site-nav,
body[dir="rtl"] .hero-actions,
body[dir="rtl"] .filter-bar,
body[dir="rtl"] .brand {
  direction: rtl;
}

body[dir="rtl"] .logistics-list div {
  grid-template-columns: minmax(0, 1fr) 44px;
  border-left: 0;
  border-right: 4px solid var(--orange);
}

body[dir="rtl"] .logistics-icon {
  grid-column: 2;
}

body[dir="rtl"] .product-card ul {
  padding-right: 18px;
  padding-left: 0;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 32px);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 0.86rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(242, 106, 33, 0.22);
  border-color: var(--orange);
}

.form-note {
  margin: 0;
  color: var(--steel);
  font-size: 0.86rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 74px);
  color: rgba(255, 255, 255, 0.78);
  background: #111820;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 0;
  max-width: 580px;
  text-align: right;
}

@media (max-width: 1060px) {
  .product-grid,
  .capability-grid,
  .application-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .intro,
  .quality,
  .video-section,
  .contact,
  .logistics-layout {
    grid-template-columns: 1fr;
  }

  .logistics-layout img {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

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

  .nav-cta {
    border-color: var(--orange);
    color: var(--orange-dark);
  }

  .menu-toggle {
    display: block;
  }

  .site-header.scrolled .menu-toggle,
  .site-header.menu-open .menu-toggle {
    background: var(--mist);
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    width: 100%;
    padding: 120px 18px 48px;
  }

  body[dir="rtl"] .hero-content {
    padding: 120px 18px 48px;
  }

  h1 {
    font-size: clamp(2.3rem, 13vw, 4rem);
  }

  .trust-band,
  .product-grid,
  .capability-grid,
  .application-grid,
  .visual-strip {
    grid-template-columns: 1fr;
  }

  .visual-strip {
    height: auto;
  }

  .visual-strip img {
    height: 220px;
  }

  .section {
    padding: 62px 18px;
  }

  .site-footer {
    display: grid;
  }

  .site-footer p {
    text-align: left;
  }
}

/* Header regrouping */
.site-header {
  grid-template-columns: 210px 1fr auto;
  align-items: center;
}

.brand {
  display: inline-flex;
  min-width: 0;
}

.brand strong {
  position: relative;
  padding-left: 18px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.05rem;
  font-weight: 520;
  letter-spacing: 0.04em;
}

.brand strong::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 8%;
  width: 5px;
  background: var(--orange);
}

.brand-mark {
  display: none;
}

.site-nav {
  justify-content: center;
}

.site-nav > a,
.nav-item > a {
  padding: 42px 0;
}

.site-nav a:not(.nav-cta)::after {
  bottom: 32px;
}

.language-menu {
  position: relative;
  align-self: start;
  justify-self: end;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.language-trigger:hover,
.language-trigger[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.08);
}

.chevron {
  color: var(--orange);
  font-size: 1.1rem;
  line-height: 1;
}

.language-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 70;
  display: none;
  min-width: 172px;
  padding: 8px 0;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(24, 32, 39, 0.18);
}

.language-panel.open {
  display: grid;
}

.language-panel .lang-button {
  display: block;
  width: 100%;
  min-height: 40px;
  padding: 0 16px;
  color: var(--ink);
  text-align: left;
  background: transparent;
}

.language-panel .lang-button.active {
  color: var(--orange-dark);
  background: #f7f4f1;
}

body[dir="rtl"] .language-panel {
  right: auto;
  left: 0;
}

body[dir="rtl"] .brand strong {
  padding-right: 18px;
  padding-left: 0;
}

body[dir="rtl"] .brand strong::before {
  right: 0;
  left: auto;
}

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

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .language-menu {
    grid-column: 2;
    grid-row: 1;
    margin-right: 50px;
  }

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

  .site-nav a:not(.nav-cta)::after {
    bottom: 4px;
  }
}

@media (max-width: 760px) {
  .brand strong {
    font-size: 1.45rem;
  }

  .language-menu {
    margin: 0 46px 0 auto;
  }

  .language-trigger {
    padding: 0 8px;
  }

  .site-nav .nav-item {
    display: grid;
  }

  .nav-dropdown {
    position: static;
    display: none;
    min-width: 0;
    padding: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav.open .nav-dropdown {
    display: grid;
  }

  .nav-dropdown a {
    padding: 11px 20px;
    color: var(--steel);
    background: var(--mist);
  }
}

@media (max-width: 430px) {
  .brand strong {
    max-width: 120px;
  }

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

/* Hydro-inspired layout refinement */
.site-header {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 28px;
  align-items: end;
  min-height: 112px;
  padding: 22px clamp(22px, 5vw, 80px);
  color: var(--white);
  background: #3f4a52;
  box-shadow: none;
}

.site-header.scrolled,
.site-header.menu-open {
  color: var(--white);
  background: #3f4a52;
  box-shadow: 0 8px 28px rgba(24, 32, 39, 0.18);
}

.brand {
  align-self: center;
  min-width: 0;
  gap: 14px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 0;
  background: var(--orange);
  font-size: 1rem;
}

.brand strong {
  font-size: 1.34rem;
  font-weight: 760;
}

.brand small {
  opacity: 0.72;
}

.site-nav {
  justify-content: flex-end;
  gap: clamp(18px, 2.6vw, 34px);
  font-size: 0.96rem;
  font-weight: 650;
}

.nav-cta {
  border-color: rgba(255, 255, 255, 0.45);
  border-radius: 0;
}

.language-switcher {
  align-self: start;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.lang-button {
  min-width: 38px;
  min-height: 34px;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.lang-button.active {
  background: var(--orange);
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 33vw) 1fr;
  align-items: stretch;
  min-height: 540px;
  margin-top: 112px;
  color: var(--ink);
  background: #f3f3f2;
}

.hero-media {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.hero-shade {
  display: none;
}

.hero-content {
  grid-column: 1;
  grid-row: 1;
  width: auto;
  padding: clamp(52px, 8vw, 86px) clamp(28px, 5.5vw, 80px);
  align-self: center;
}

body[dir="rtl"] .hero-content {
  padding: clamp(52px, 8vw, 86px) clamp(28px, 5.5vw, 80px);
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 420;
}

h1 {
  max-width: 420px;
  margin-bottom: 26px;
  font-size: clamp(2.55rem, 4vw, 4.25rem);
  line-height: 0.98;
  color: var(--ink);
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.02;
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.56rem;
  font-weight: 420;
}

.hero-copy {
  max-width: 390px;
  color: var(--ink);
  font-size: 1.16rem;
}

.hero-actions {
  gap: 16px;
}

.button,
.filter-button {
  border-radius: 0;
}

.button.primary,
.filter-button.active {
  background: var(--orange);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--orange);
  background: transparent;
}

.eyebrow {
  color: var(--orange-dark);
  letter-spacing: 0.08em;
}

.insight-nav {
  display: flex;
  align-items: baseline;
  gap: 34px;
  padding: 54px clamp(22px, 5.5vw, 80px) 28px;
  background: var(--white);
}

.insight-nav h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3.5vw, 3.4rem);
}

.insight-nav div {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.insight-nav a {
  padding: 0 14px;
  border-right: 1px solid var(--line);
  font-size: 1.08rem;
}

.insight-nav a:first-child {
  padding-left: 0;
}

.insight-nav a:last-child {
  border-right: 0;
}

.trust-band {
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band div {
  padding: 24px clamp(22px, 3vw, 42px);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(22px, 5.5vw, 80px);
}

.products,
.logistics {
  background: #f4f4f3;
}

.section-head {
  width: min(920px, 100%);
  margin-bottom: 38px;
}

.section-copy {
  width: min(660px, 100%);
}

.intro,
.quality,
.video-section,
.contact {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
}

.intro-panel,
.quality-image,
.video-frame,
.logistics-layout img,
.product-card,
.application-grid div,
.capability {
  border-radius: 0;
  box-shadow: none;
}

.intro-panel {
  background: #313a42;
}

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

.product-card {
  border: 0;
  background: var(--white);
}

.product-card img {
  aspect-ratio: 1.48 / 1;
}

.product-card > div {
  padding: 24px 28px 30px;
}

.product-tag {
  color: var(--orange-dark);
  letter-spacing: 0.08em;
}

.product-card ul {
  margin-top: 16px;
}

.video-section {
  color: var(--white);
  background: #121a21;
}

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

.application-grid div {
  border: 0;
  background: #f5f5f4;
}

.application-grid span {
  border-radius: 0;
}

.visual-strip {
  height: clamp(240px, 24vw, 340px);
  border-bottom: 6px solid var(--orange);
}

.logistics-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
}

.logistics-list div {
  border-left-width: 3px;
}

.contact {
  background:
    linear-gradient(90deg, rgba(24, 32, 39, 0.98), rgba(24, 32, 39, 0.86)),
    url("assets/brand-gallery-coil.jpg") center / cover;
}

.inquiry-form,
input,
select,
textarea {
  border-radius: 0;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 84px;
    align-items: center;
  }

  .language-switcher {
    grid-column: 2;
    grid-row: 1;
    margin-right: 50px;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    margin-top: 150px;
  }

  .hero-content,
  .hero-media {
    grid-column: 1;
  }

  .hero-content {
    grid-row: 1;
    z-index: 1;
    color: var(--white);
    background: linear-gradient(90deg, rgba(18, 26, 33, 0.9), rgba(18, 26, 33, 0.44));
  }

  .hero-content h1,
  .hero-copy {
    color: var(--white);
  }

  .hero-media {
    grid-row: 1;
  }

  .button.secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.65);
  }

  .intro,
  .quality,
  .video-section,
  .contact,
  .logistics-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    display: flex;
    min-height: 70px;
    padding: 12px 16px;
  }

  .language-switcher {
    margin: 0 48px 0 auto;
    max-width: 155px;
    overflow-x: auto;
  }

  .lang-button {
    min-width: 34px;
  }

  .hero {
    margin-top: 70px;
    min-height: 580px;
  }

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

  .hero-content {
    padding: 96px 20px 48px;
  }

  .insight-nav {
    display: grid;
    gap: 16px;
    padding: 42px 20px 22px;
  }

  .insight-nav div {
    display: grid;
    gap: 12px;
  }

  .insight-nav a {
    padding: 0;
    border-right: 0;
  }

  .trust-band,
  .product-grid,
  .application-grid,
  .visual-strip {
    grid-template-columns: 1fr;
  }
}

/* Final international/Hydro-style polish */
.site-header {
  min-height: 96px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand strong {
  font-size: 1.42rem;
  letter-spacing: 0;
}

.site-nav {
  gap: clamp(22px, 3vw, 42px);
}

.site-nav a,
.language-trigger {
  font-size: 0.98rem;
}

.hero {
  min-height: 500px;
  margin-top: 96px;
  grid-template-columns: minmax(340px, 33.5vw) minmax(0, 1fr);
  border-bottom: 5px solid var(--orange);
}

.hero-content {
  padding: clamp(48px, 6vw, 76px) clamp(28px, 5vw, 72px);
}

.hero-media {
  min-height: 500px;
  object-position: center;
}

h1 {
  max-width: 390px;
  font-size: clamp(2.8rem, 4.15vw, 4.6rem);
}

h2 {
  max-width: 680px;
  font-size: clamp(2.05rem, 3.1vw, 3.25rem);
}

h3 {
  font-size: 1.42rem;
}

.hero-copy {
  max-width: 380px;
  font-size: 1.08rem;
}

.button {
  min-height: 52px;
  padding: 13px 22px;
  font-weight: 820;
}

.insight-nav {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) 1fr;
  align-items: end;
  gap: clamp(28px, 5vw, 80px);
  padding: clamp(42px, 5vw, 66px) clamp(22px, 5.5vw, 80px) 30px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.insight-nav h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.15rem);
}

.insight-nav div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0;
}

.insight-nav a {
  padding: 0 18px;
  border-right: 1px solid var(--line);
  color: var(--steel);
  font-size: 1rem;
  font-weight: 720;
}

.insight-nav a:hover {
  color: var(--orange-dark);
}

.insight-nav a:first-child {
  padding-left: 0;
}

.insight-nav a:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #f7f7f6;
}

.trust-band div {
  min-height: 128px;
  padding: 28px clamp(20px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.trust-band div:last-child {
  border-right: 0;
}

.trust-band strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 420;
}

.trust-band span {
  display: block;
  color: var(--steel);
  font-size: 0.94rem;
}

.section {
  padding-top: clamp(62px, 7vw, 96px);
  padding-bottom: clamp(62px, 7vw, 96px);
}

.intro,
.quality,
.video-section,
.contact {
  gap: clamp(34px, 6vw, 86px);
}

.section-copy p:not(.eyebrow),
.section-head p:not(.eyebrow) {
  max-width: 760px;
  font-size: 1rem;
}

.intro-panel img,
.quality-image,
.video-frame video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.product-grid {
  gap: 22px;
}

.product-card {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(24, 32, 39, 0.10);
}

.product-card h3 {
  min-height: 2.8em;
}

.application-grid div {
  min-height: 200px;
  padding: 26px 24px;
}

.application-grid span {
  width: auto;
  height: auto;
  margin-bottom: 34px;
  color: var(--orange-dark);
  background: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 420;
}

.visual-strip {
  height: clamp(260px, 26vw, 380px);
}

.location-card,
.logistics-list div,
.inquiry-form {
  border-radius: 0;
}

@media (max-width: 1060px) {
  .site-header {
    min-height: 84px;
  }

  .hero {
    margin-top: 84px;
    grid-template-columns: 1fr;
  }

  .insight-nav,
  .trust-band {
    grid-template-columns: 1fr 1fr;
  }

  .insight-nav div {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
  }

  .hero {
    margin-top: 70px;
    min-height: 560px;
  }

  .hero-media {
    min-height: 560px;
  }

  .hero-content {
    padding: 92px 20px 44px;
  }

  .insight-nav,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .insight-nav {
    padding: 40px 20px 24px;
  }

  .insight-nav div {
    display: grid;
    gap: 12px;
  }

  .insight-nav a {
    padding: 0;
    border-right: 0;
  }

  .trust-band div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-band div:last-child {
    border-bottom: 0;
  }
}

/* Cleanup after removing duplicate section navigation */
.insight-nav {
  display: none;
}

.trust-band {
  border-top: 0;
}

.trust-band div {
  min-height: 118px;
}

.intro {
  padding-top: clamp(58px, 7vw, 92px);
}

.logistics-list div {
  grid-template-columns: 56px minmax(0, 1fr);
  column-gap: 18px;
  padding: 24px 26px;
  border-left: 0;
}

.logistics-icon {
  width: 56px;
  height: 56px;
}

.logistics-icon svg {
  width: 70%;
  height: 70%;
  display: block;
  margin: 0;
}

body[dir="rtl"] .logistics-list div {
  grid-template-columns: minmax(0, 1fr) 56px;
  border-right: 0;
}

/* Smaller location overlay so the map pin and address remain visible */
.map-panel {
  min-height: 380px;
}

.location-card {
  min-height: 380px;
  padding: 14px;
}

.location-card::after {
  background:
    linear-gradient(90deg, rgba(24, 32, 39, 0.10), transparent 40%),
    linear-gradient(0deg, rgba(24, 32, 39, 0.06), transparent 38%);
}

.location-content {
  position: absolute;
  top: 18px;
  left: 18px;
  width: min(230px, 34%);
  max-width: 230px;
  padding: 12px 14px 14px;
  background: rgba(18, 26, 33, 0.16);
  backdrop-filter: none;
}

.location-kicker {
  margin-bottom: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.location-content strong {
  font-size: clamp(1.12rem, 1.55vw, 1.45rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.location-content p {
  margin: 7px 0 10px;
  font-size: 0.82rem;
}

.map-link {
  min-height: 32px;
  padding: 7px 10px;
  font-size: 0.76rem;
  max-width: 100%;
  text-align: center;
  line-height: 1.1;
}

.location-pin {
  top: 44%;
  left: 67%;
  width: 26px;
  height: 26px;
  border-width: 6px;
}

@media (max-width: 760px) {
  .location-content {
    width: min(220px, 66%);
    max-width: 220px;
    top: 14px;
    left: 14px;
  }
}

/* Launch-ready buyer support additions */
.document-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.document-list span {
  display: block;
  padding: 12px 14px;
  border-left: 3px solid var(--orange);
  color: var(--ink);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 750;
  box-shadow: 0 10px 24px rgba(24, 32, 39, 0.08);
}

.support {
  background: var(--ink);
  color: var(--white);
}

.support .section-head h2,
.support .section-head p {
  color: var(--white);
}

.support .section-head .eyebrow {
  color: var(--amber);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.support-grid article {
  min-height: 230px;
  padding: clamp(20px, 2.5vw, 30px);
  background: #1f2932;
}

.support-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--orange);
  font-weight: 900;
}

.support-grid h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1.05rem;
}

.support-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
}

.faq {
  background: var(--mist);
}

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

.faq-grid details {
  padding: 20px 22px;
  border-top: 3px solid var(--orange);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(24, 32, 39, 0.08);
}

.faq-grid summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.faq-grid p {
  margin: 12px 0 0;
  color: var(--steel);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1.2fr) auto;
  align-items: start;
}

.footer-links {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--amber);
}

.quick-contact {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: 18px;
  z-index: 45;
  display: flex;
  gap: 8px;
}

.quick-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 34px rgba(24, 32, 39, 0.2);
  font-size: 0.86rem;
  font-weight: 850;
}

.quick-contact a:first-child {
  background: #128c7e;
}

.landing-page {
  padding-top: 0;
}

.product-landing {
  min-height: 68vh;
}

.legal-page {
  display: block;
  max-width: 920px;
  margin: 0 auto;
  padding-top: 140px;
}

.legal-page h1 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.96;
}

.legal-page p {
  color: var(--steel);
  font-size: 1.02rem;
}

.legal-page a {
  color: var(--orange-dark);
  font-weight: 800;
}

@media (max-width: 1060px) {
  .support-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .document-list,
  .support-grid,
  .faq-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer p {
    text-align: left;
  }

  .quick-contact {
    left: 12px;
    right: 12px;
  }

  .quick-contact a {
    flex: 1;
    justify-content: center;
  }
}
