:root {
  --green: #0b6f45;
  --green-deep: #073f32;
  --green-soft: #e8f3ed;
  --ink: #13231f;
  --muted: #5f6f6a;
  --line: #dfe8e3;
  --panel: #f6faf8;
  --white: #ffffff;
  --accent: #2c9b69;
  --shadow: 0 24px 70px rgba(10, 45, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
}

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

.brand strong {
  font-size: 15px;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
}

.main-nav > a,
.nav-more > button {
  min-height: 40px;
  padding: 10px 14px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.main-nav > a:hover,
.main-nav > a.is-active,
.nav-more:hover > button {
  color: var(--green);
  background: var(--green-soft);
}

.nav-more {
  position: relative;
}

.more-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  display: none;
  min-width: 168px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.nav-more:hover .more-menu,
.nav-more:focus-within .more-menu {
  display: grid;
}

.more-menu a {
  padding: 10px 12px;
  border-radius: 4px;
  color: var(--muted);
}

.more-menu a:hover {
  color: var(--green);
  background: var(--green-soft);
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(42px, auto));
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.language-switch a {
  display: grid;
  place-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.language-switch a.is-active,
.language-switch a:hover {
  color: var(--white);
  background: var(--green);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 72px) 126px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98), rgba(255,255,255,0.84)),
    radial-gradient(circle at 80% 30%, rgba(44, 155, 105, 0.18), transparent 32%),
    var(--panel);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: var(--green-deep);
  z-index: 0;
}

.hero-copy,
.hero-visual,
.stats-strip {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
}

.hero-text {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 4px;
  border: 1px solid var(--green);
  font-weight: 800;
}

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

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

.button-ghost {
  color: var(--green);
  background: var(--white);
}

.button-ghost:hover {
  background: var(--green-soft);
}

.hero-visual {
  padding: 22px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.stats-strip {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.stats-strip div {
  padding: 22px;
  color: var(--white);
  background: rgba(7, 63, 50, 0.92);
}

.stats-strip strong {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.stats-strip span {
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: clamp(56px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.wide {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  max-width: none;
}

.section-heading.wide p:last-child {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
}

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

.capability {
  padding: 28px;
  min-height: 240px;
  background: var(--panel);
  border-top: 4px solid var(--green);
}

.capability span {
  color: var(--accent);
  font-weight: 800;
}

.capability p,
.product-card p,
.page-hero p,
.about-split p,
.contact-panel p,
.inquiry-form p {
  color: var(--muted);
}

.product-band {
  background: var(--green-soft);
}

.product-grid {
  display: grid;
  gap: 18px;
}

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

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--panel);
}

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

.product-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.product-card h2,
.product-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.product-card a,
.text-link {
  color: var(--green);
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
}

.about-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 6vw, 88px);
  align-items: start;
}

.page-hero {
  padding: clamp(52px, 8vw, 104px) clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, var(--panel), #ffffff 58%, var(--green-soft));
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin-bottom: 18px;
}

.page-hero p {
  max-width: 720px;
  font-size: 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.contact-list a,
.contact-list div {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
}

.contact-list span,
.qr-box span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list strong {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.qr-box {
  display: grid;
  gap: 10px;
  justify-items: start;
  margin: 8px 0 22px;
}

.qr-box img {
  width: min(220px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.inquiry-form,
.contact-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.inquiry-form {
  display: grid;
  gap: 18px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--panel);
  font: inherit;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: 2px solid rgba(11, 111, 69, 0.24);
  border-color: var(--green);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--green-deep);
}

.site-footer p {
  margin-bottom: 0;
}

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

@media (max-width: 1040px) {
  .hero,
  .contact-layout,
  .about-split {
    grid-template-columns: 1fr;
  }

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

  .section-heading.wide {
    display: block;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand strong {
    white-space: normal;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .main-nav > a,
  .nav-more > button {
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding-bottom: 32px;
  }

  .hero::before {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  .stats-strip {
    position: static;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .product-grid.all-products,
  .product-grid.featured,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: block;
  }

  .site-footer a {
    display: inline-flex;
    margin-top: 18px;
  }
}


/* Codex banner update 2026-07-07 */
.hero-banner-section {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #e8edf1;
}

.hero-banner-section::before {
  display: none;
}

.hero-banner {
  display: block;
  width: 100%;
  height: auto;
}

.brand strong {
  white-space: normal;
}



/* Codex carousel banner update 2026-07-07 */
.hero.hero-carousel,
.hero-banner-section.hero-carousel {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  aspect-ratio: 8 / 3;
  min-height: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #e8edf1;
}

.hero.hero-carousel::before,
.hero-banner-section.hero-carousel::before {
  display: none !important;
}

.hero-carousel .hero-banner,
.hero-carousel .hero-slide {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  max-width: none !important;
  opacity: 0;
  animation: heroCarouselFade 12s infinite;
}

.hero-carousel .hero-slide.is-first { animation-delay: 0s; }
.hero-carousel .hero-slide.is-second { animation-delay: 6s; }

@keyframes heroCarouselFade {
  0%, 45% { opacity: 1; }
  50%, 95% { opacity: 0; }
  100% { opacity: 1; }
}

/* Codex service capability images 2026-07-25 */
.capability {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.capability-image {
  display: block;
  width: calc(100% + 56px);
  height: 165px;
  margin: auto -28px -28px;
  padding-top: 22px;
  object-fit: cover;
  border-top: 1px solid var(--line);
}

/* floating-contact-start */
.floating-contact {
  position: fixed;
  right: clamp(14px, 2.2vw, 28px);
  top: 50%;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateY(-50%);
}

.floating-contact__button {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(4, 26, 43, .24);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.floating-contact__button--whatsapp { background: #20c969; }
.floating-contact__button--zalo { background: #0787e8; }

.floating-contact__button:hover,
.floating-contact__button:focus-visible {
  color: #fff;
  filter: brightness(1.06);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 15px 30px rgba(4, 26, 43, .3);
}

@media (max-width: 720px) {
  .floating-contact {
    right: 12px;
    top: auto;
    bottom: 18px;
    gap: 10px;
    transform: none;
  }

  .floating-contact__button {
    width: 54px;
    height: 54px;
    font-size: 14px;
  }
}
/* floating-contact-end */

/* compact-page-hero-start */
.page-hero {
  padding-top: clamp(38px, 5vw, 64px);
  padding-bottom: clamp(38px, 5vw, 64px);
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 14px;
  font-size: clamp(44px, 5.1vw, 68px);
  line-height: 1.02;
}

.page-hero p {
  max-width: 660px;
  font-size: 17px;
}

@media (max-width: 720px) {
  .page-hero {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .page-hero h1 {
    font-size: clamp(36px, 11vw, 48px);
  }
}
/* compact-page-hero-end */

/* contact-qr-panel-start */
.contact-qr-panel {
  position: fixed;
  right: 22px;
  bottom: 20px;
  z-index: 999;
  display: flex;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(7, 27, 43, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 34px rgba(4, 26, 43, .2);
  backdrop-filter: blur(8px);
}

.contact-qr-card {
  display: grid;
  width: 112px;
  justify-items: center;
  gap: 3px;
  color: #071b2b;
  font-size: 11px;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.contact-qr-card img {
  display: block;
  width: 92px;
  height: 92px;
  margin-bottom: 3px;
  border: 4px solid #fff;
  border-radius: 6px;
  background: #fff;
}

.contact-qr-card strong { font-size: 13px; }
.contact-qr-card--whatsapp strong { color: #128c4b; }
.contact-qr-card--zalo strong { color: #0876c9; }

@media (max-width: 900px) {
  .contact-qr-panel { display: none; }
}
/* contact-qr-panel-end */

/* align-product-card-links-start */
.product-card {
  display: flex;
  flex-direction: column;
}

.product-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-card > div > a {
  margin-top: auto;
  padding-top: 14px;
}

.page-hero {
  width: min(calc(100% - 40px), 1400px);
  margin: 28px auto 0;
  border: 1px solid var(--line);
  border-radius: 12px;
}

@media (max-width: 720px) {
  .page-hero {
    width: calc(100% - 24px);
    margin-top: 12px;
    border-radius: 8px;
  }
}
/* align-product-card-links-end */

/* contact-panel-alignment-start */
.contact-panel h2 {
  max-width: 22em;
  margin-bottom: 22px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  text-wrap: balance;
}

.contact-panel .contact-list {
  gap: 10px;
  margin-top: 0;
}

.contact-panel .contact-list a,
.contact-panel .contact-list > div {
  grid-template-columns: minmax(116px, 0.26fr) minmax(0, 1fr);
  align-items: center;
  min-height: 76px;
  gap: 20px;
  padding: 16px 18px;
}

.contact-panel .contact-list span,
.contact-panel .contact-list strong {
  line-height: 1.35;
}

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

@media (max-width: 560px) {
  .contact-panel h2 {
    font-size: clamp(24px, 8vw, 30px);
  }

  .contact-panel .contact-list a,
  .contact-panel .contact-list > div {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 5px;
  }
}
/* contact-panel-alignment-end */

/* product-page-hero-redesign-start */
.product-page-hero {
  position: relative;
  display: grid;
  width: min(calc(100% - 48px), 1120px);
  grid-template-columns: 150px minmax(0, 1fr);
  column-gap: clamp(30px, 5vw, 72px);
  align-items: center;
  margin-top: 24px;
  padding: clamp(34px, 4vw, 52px) clamp(32px, 5vw, 64px);
  overflow: hidden;
  background: linear-gradient(110deg, #f8fbf9 0%, #ffffff 58%, #edf6f1 100%);
  box-shadow: 0 18px 50px rgba(10, 45, 34, 0.08);
}

.product-page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  background: var(--green);
}

.product-page-hero .eyebrow {
  grid-row: 1 / span 2;
  align-self: stretch;
  display: flex;
  align-items: center;
  margin: 0;
  padding-right: 24px;
  border-right: 1px solid var(--line);
  font-size: 14px;
  letter-spacing: 0.12em;
}

.product-page-hero h1 {
  grid-column: 2;
  margin: 0 0 10px;
  font-size: clamp(42px, 4.2vw, 58px);
  line-height: 1.05;
}

.product-page-hero > p:last-child {
  grid-column: 2;
  max-width: 680px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .product-page-hero {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 12px;
    padding: 28px 24px 30px;
  }

  .product-page-hero .eyebrow {
    grid-row: auto;
    display: block;
    padding: 0;
    border-right: 0;
  }

  .product-page-hero h1,
  .product-page-hero > p:last-child {
    grid-column: 1;
  }

  .product-page-hero h1 {
    font-size: clamp(36px, 11vw, 46px);
  }
}
/* product-page-hero-redesign-end */

/* unified-front-sections-start */
.hero.hero-carousel,
.hero-banner-section.hero-carousel {
  width: min(calc(100% - 48px), 1280px) !important;
  aspect-ratio: 3.2 / 1;
  margin: 24px auto 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 54px rgba(10, 45, 34, 0.11);
}

.page-hero,
.product-page-hero {
  position: relative;
  display: grid;
  width: min(calc(100% - 48px), 1120px);
  grid-template-columns: 148px minmax(0, 1fr);
  column-gap: clamp(30px, 5vw, 68px);
  align-items: center;
  margin: 24px auto 0;
  padding: clamp(34px, 4vw, 50px) clamp(32px, 5vw, 62px);
  overflow: hidden;
  border: 1px solid rgba(11, 111, 69, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(11, 111, 69, 0.035) 0, rgba(11, 111, 69, 0.035) 210px, transparent 210px),
    linear-gradient(115deg, #f9fbfa 0%, #ffffff 56%, #edf6f1 100%);
  box-shadow: 0 18px 48px rgba(10, 45, 34, 0.08);
}

.page-hero::before,
.product-page-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--green);
}

.page-hero .eyebrow,
.product-page-hero .eyebrow {
  grid-row: 1 / span 2;
  align-self: stretch;
  display: flex;
  align-items: center;
  margin: 0;
  padding-right: 24px;
  border-right: 1px solid rgba(11, 111, 69, 0.18);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.page-hero h1,
.product-page-hero h1 {
  grid-column: 2;
  max-width: 840px;
  margin: 0 0 10px;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1.08;
  text-wrap: balance;
}

.page-hero > p:last-child,
.product-page-hero > p:last-child {
  grid-column: 2;
  max-width: 680px;
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .hero.hero-carousel,
  .hero-banner-section.hero-carousel {
    width: calc(100% - 24px) !important;
    aspect-ratio: 16 / 7;
    margin-top: 12px;
    border-radius: 9px;
  }

  .page-hero,
  .product-page-hero {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 12px;
    padding: 28px 24px 30px;
    border-radius: 9px;
    background: linear-gradient(135deg, #f9fbfa, #edf6f1);
  }

  .page-hero .eyebrow,
  .product-page-hero .eyebrow {
    grid-row: auto;
    display: block;
    padding: 0;
    border-right: 0;
  }

  .page-hero h1,
  .product-page-hero h1,
  .page-hero > p:last-child,
  .product-page-hero > p:last-child {
    grid-column: 1;
  }

  .page-hero h1,
  .product-page-hero h1 {
    font-size: clamp(34px, 10vw, 44px);
  }
}
/* unified-front-sections-end */

/* multilingual-layout-start */
/* Restore the original full-width banner dimensions. */
.hero.hero-carousel,
.hero-banner-section.hero-carousel {
  width: min(calc(100% - 48px), 1600px) !important;
  aspect-ratio: 2 / 1;
  margin: 24px auto 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-carousel .hero-banner,
.hero-carousel .hero-slide {
  object-fit: contain !important;
  object-position: center center !important;
  background: #fff;
}

.language-switch {
  position: relative;
  display: block;
}

.language-switch summary {
  min-width: 62px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--green);
  background: #fff;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  list-style: none;
}

.language-switch summary::-webkit-details-marker { display: none; }

.language-switch[open] summary {
  color: #fff;
  background: var(--green);
}

.language-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 7px);
  right: 0;
  display: grid;
  min-width: 150px;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(10, 45, 34, 0.14);
}

.language-menu a {
  display: block;
  padding: 9px 10px;
  border-radius: 4px;
  text-align: center;
}

.warehouse-promo {
  max-width: 880px;
  margin: 18px 0 0;
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.capability-image {
  height: 230px;
  margin: 12px -28px -28px;
  padding-top: 0;
}

@media (max-width: 720px) {
  .hero.hero-carousel,
  .hero-banner-section.hero-carousel {
    width: calc(100% - 24px) !important;
    aspect-ratio: 2 / 1;
    margin: 12px auto 0;
    border-radius: 0;
  }

  .warehouse-promo {
    margin-top: 14px;
    font-size: 16px;
  }

  .capability-image { height: 200px; }
}

html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .main-nav,
html[dir="rtl"] .language-switch {
  direction: rtl;
}

html[dir="rtl"] .inquiry-form input,
html[dir="rtl"] .inquiry-form textarea {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .contact-qr-panel {
  direction: rtl;
}

@media (max-width: 1160px) {
  .site-header {
    align-items: flex-start;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
/* multilingual-layout-end */
