@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Be+Vietnam+Pro:wght@400;500;600;700;800&display=swap");

:root {
  --obsidian: #071412;
  --carbon: #0d1e1b;
  --deep: #112b25;
  --emerald: #0d6a55;
  --jade: #2ea67f;
  --bronze: #b8822e;
  --gold: #e5bd66;
  --champagne: #f4e6c1;
  --porcelain: #f7f5ef;
  --mist: #e8eee7;
  --white: #ffffff;
  --ink: #10201d;
  --muted: #60706b;
  --line: rgba(16, 32, 29, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 80px rgba(7, 20, 18, 0.22);
  --shadow-soft: 0 18px 54px rgba(7, 20, 18, 0.1);
  --shadow-card: 0 24px 70px rgba(7, 20, 18, 0.12);
  --surface: rgba(255, 255, 255, 0.84);
  --radius: 8px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(229, 189, 102, 0.09), transparent 28rem),
    linear-gradient(180deg, #f9f7f1 0%, var(--porcelain) 28rem, #f1f4ee 100%);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.62;
  overflow-x: hidden;
}

html[lang="vi"] body,
html[lang="vi"] button,
html[lang="vi"] input,
html[lang="vi"] textarea,
html[lang="vi"] select,
:lang(vi) {
  font-family: "Be Vietnam Pro", "Noto Sans", "Segoe UI", Arial, sans-serif;
}

body::selection {
  color: var(--obsidian);
  background: var(--gold);
}

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

a {
  color: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(5, 18, 21, 0.96), rgba(7, 20, 18, 0.9)),
    rgba(7, 20, 18, 0.9);
  border-bottom: 1px solid rgba(229, 189, 102, 0.18);
  box-shadow: 0 18px 60px rgba(3, 12, 13, 0.18);
  backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  padding: 5px 8px 5px 0;
  color: var(--white);
  text-decoration: none;
}

.brand-logo {
  width: 62px;
  height: 46px;
  padding: 3px 4px;
  border: 1px solid rgba(229, 189, 102, 0.24);
  border-radius: 14px;
  background: linear-gradient(145deg, #fffaf0, #f1eadb);
  object-fit: contain;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26), inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.brand-copy {
  display: grid;
  gap: 3px;
  line-height: 1.05;
}

.brand-title {
  color: #fff8ea;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.brand-tagline {
  color: rgba(244, 230, 193, 0.68);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 9px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  font-weight: 760;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-current {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.nav-combo {
  gap: 5px;
  white-space: normal;
  text-align: center;
}

.nav-combo-separator {
  color: var(--champagne);
  font-weight: 820;
}

.lang-switch {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 4px;
  margin-left: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.lang-btn {
  min-width: 38px;
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  font-size: 0.76rem;
  font-weight: 850;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-btn:hover,
.lang-btn:focus-visible,
.lang-btn.is-active {
  color: var(--obsidian);
  background: var(--gold);
  outline: none;
}

.nav-action,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.nav-action,
.btn-primary {
  color: var(--obsidian);
  background: linear-gradient(135deg, #f7da8f, #dca94c 52%, var(--bronze));
  border-color: rgba(255, 238, 190, 0.42);
  box-shadow: 0 18px 44px rgba(184, 130, 46, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.btn-secondary {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(244, 230, 193, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn:hover,
.btn:focus-visible,
.nav-action:hover,
.nav-action:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 64px rgba(7, 20, 18, 0.28);
  outline: none;
}

.btn-primary:hover,
.btn-primary:focus-visible,
.nav-action:hover,
.nav-action:focus-visible {
  border-color: rgba(255, 245, 214, 0.72);
  box-shadow: 0 24px 64px rgba(184, 130, 46, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--white);
  border-color: rgba(229, 189, 102, 0.58);
  background: rgba(255, 255, 255, 0.12);
}

.btn-icon {
  width: 18px;
  height: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--champagne);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease;
}

.text-link:hover::after {
  transform: translateX(8px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(84vh - 80px);
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 16, 19, 0.96), rgba(7, 20, 18, 0.82) 48%, rgba(7, 20, 18, 0.46)),
    linear-gradient(180deg, rgba(10, 35, 30, 0.18), rgba(3, 11, 13, 0.48)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=2100&q=86") center 56% / cover;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.052) 0 1px, transparent 1px 112px),
    repeating-linear-gradient(0deg, transparent 0 74px, rgba(229, 189, 102, 0.055) 75px, transparent 76px 148px);
  mask-image: linear-gradient(90deg, #000, transparent 80%);
  pointer-events: none;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(247, 245, 239, 0), var(--porcelain));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(330px, 0.46fr);
  gap: 68px;
  align-items: center;
  padding: 96px 0 118px;
}

.hero-content {
  position: relative;
  max-width: 760px;
  padding-left: 24px;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(229, 189, 102, 0.08));
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: 5.2rem;
  line-height: 0.96;
  letter-spacing: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

html[lang="vi"] h1,
html[lang="vi"] h2,
html[lang="vi"] h3,
html[lang="vi"] .brand-title,
h1:lang(vi),
h2:lang(vi),
h3:lang(vi) {
  font-family: "Be Vietnam Pro", "Noto Sans", "Segoe UI", Arial, sans-serif !important;
  letter-spacing: 0 !important;
  font-kerning: normal;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  overflow-wrap: normal;
  word-break: normal;
  white-space: normal;
}

html[lang="vi"] h1,
html[lang="vi"] .page-hero h1,
h1:lang(vi),
.page-hero h1:lang(vi) {
  line-height: 1.1 !important;
}

h2 {
  margin-bottom: 18px;
  font-size: 3rem;
  line-height: 1.06;
  letter-spacing: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 850;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
}

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

.hero-intel {
  position: relative;
  display: grid;
  align-self: end;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(229, 189, 102, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(244, 230, 193, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(7, 20, 18, 0.74);
  box-shadow: 0 28px 90px rgba(3, 12, 13, 0.36);
  backdrop-filter: blur(16px);
}

.hero-intel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent 72%);
}

.hero-intel div {
  position: relative;
  min-height: 96px;
  padding: 22px 22px 20px;
  background:
    linear-gradient(90deg, rgba(7, 20, 18, 0.74), rgba(17, 43, 37, 0.48)),
    rgba(7, 20, 18, 0.58);
}

.hero-intel div::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 22px;
  width: 34px;
  height: 10px;
  border-top: 1px solid rgba(229, 189, 102, 0.42);
  border-right: 1px solid rgba(229, 189, 102, 0.28);
}

.hero-intel span {
  display: block;
  margin-bottom: 6px;
  color: rgba(244, 230, 193, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-intel strong {
  color: var(--white);
  font-size: 1rem;
}

.hero-motion {
  position: absolute;
  right: 5%;
  bottom: 22%;
  z-index: 0;
  width: min(520px, 42%);
  height: 230px;
  opacity: 0.78;
  pointer-events: none;
}

.hero-motion span {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 189, 102, 0.8), transparent);
  transform: rotate(-9deg);
  animation: routeFlow 4.8s ease-in-out infinite;
}

.hero-motion span:nth-child(2) {
  top: 62px;
  animation-delay: 0.7s;
}

.hero-motion span:nth-child(3) {
  top: 124px;
  animation-delay: 1.4s;
}

.hero-trade-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.route-node {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 2px solid rgba(229, 189, 102, 0.72);
  border-radius: 50%;
  background: rgba(7, 20, 18, 0.74);
  box-shadow: 0 0 0 9px rgba(229, 189, 102, 0.08);
}

.route-node-a {
  right: 39%;
  top: 31%;
}

.route-node-b {
  right: 24%;
  top: 48%;
}

.route-node-c {
  right: 12%;
  top: 37%;
}

.document-sheet {
  position: absolute;
  right: 12%;
  bottom: 24%;
  width: 78px;
  height: 104px;
  border: 1px solid rgba(244, 230, 193, 0.34);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(244, 230, 193, 0.18), rgba(244, 230, 193, 0.04)),
    repeating-linear-gradient(0deg, transparent 0 13px, rgba(244, 230, 193, 0.22) 14px, transparent 15px 22px);
  opacity: 0.55;
  transform: rotate(5deg);
}

.container-stack {
  position: absolute;
  right: 19%;
  bottom: 15%;
  width: 132px;
  height: 54px;
  border: 1px solid rgba(229, 189, 102, 0.28);
  background:
    repeating-linear-gradient(90deg, rgba(229, 189, 102, 0.18) 0 2px, transparent 2px 18px),
    linear-gradient(180deg, rgba(13, 106, 85, 0.42), rgba(7, 20, 18, 0.2));
  opacity: 0.58;
}

.prestige-strip {
  position: relative;
  z-index: 2;
  margin-top: -42px;
}

.why-globerion {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(229, 189, 102, 0.1), transparent 24rem),
    linear-gradient(180deg, #f8f6f0, #eef2ec);
}

.why-globerion-head {
  margin-bottom: 34px;
}

.prestige-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 86px rgba(7, 20, 18, 0.14);
  backdrop-filter: blur(16px);
}

.prestige-grid div {
  position: relative;
  min-height: 178px;
  padding: 28px 26px 26px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 246, 240, 0.96));
}

.prestige-grid div::before {
  content: "";
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--bronze), rgba(229, 189, 102, 0.2));
}

.prestige-grid div:last-child {
  border-right: 0;
}

.prestige-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--bronze);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.prestige-grid strong {
  display: block;
  max-width: 250px;
  margin-bottom: 12px;
  font-size: 1.08rem;
  line-height: 1.32;
}

.prestige-grid p {
  max-width: 250px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.section {
  position: relative;
  padding: 104px 0;
}

.prestige-strip + .portfolio,
.prestige-strip + .site-directory {
  padding-top: 86px;
}

.trade-corridor {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(229, 189, 102, 0.16), transparent 22rem),
    radial-gradient(circle at 10% 90%, rgba(46, 166, 127, 0.12), transparent 24rem),
    linear-gradient(135deg, #071412, #102e27 62%, #0b211d);
}

.trade-corridor::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.trade-corridor-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.68fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
}

.corridor-copy {
  max-width: 760px;
}

.corridor-copy h2 {
  max-width: 720px;
}

.corridor-copy > p:not(.section-kicker) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.06rem;
}

.corridor-route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(64px, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  max-width: 620px;
  margin: 30px 0;
}

.corridor-route > div {
  min-height: 92px;
  padding: 18px 20px;
  border: 1px solid rgba(229, 189, 102, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.corridor-route span:not(.corridor-route-line) {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.corridor-route strong {
  display: block;
  color: var(--white);
  font-size: 1.12rem;
}

.corridor-route-line {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.corridor-route-line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: lineTravel 2.8s linear infinite;
}

.corridor-panel {
  padding: 30px;
  border: 1px solid rgba(229, 189, 102, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(244, 230, 193, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 30px 90px rgba(3, 12, 13, 0.38);
  backdrop-filter: blur(16px);
}

.corridor-panel-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.corridor-panel > strong {
  display: block;
  max-width: 420px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1.28rem;
  line-height: 1.35;
}

.corridor-panel > p {
  color: rgba(255, 255, 255, 0.72);
}

.corridor-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.corridor-tags li {
  min-height: 64px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(7, 20, 18, 0.42);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.45;
}

.corridor-panel .corridor-note {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(229, 189, 102, 0.18);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  line-height: 1.6;
}

.market-entry-home {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 12%, rgba(229, 189, 102, 0.15), transparent 24rem),
    radial-gradient(circle at 88% 90%, rgba(46, 166, 127, 0.14), transparent 25rem),
    linear-gradient(135deg, #102e27, #071412 68%, #0b211d);
}

.market-entry-home::before {
  content: "";
  position: absolute;
  top: -12rem;
  right: -8rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(229, 189, 102, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(229, 189, 102, 0.025),
    0 0 0 10rem rgba(229, 189, 102, 0.018);
  pointer-events: none;
}

.market-entry-home-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.88fr);
  gap: clamp(46px, 7vw, 92px);
  align-items: center;
}

.market-entry-home-copy {
  max-width: 720px;
}

.market-entry-home-copy h2 {
  max-width: 700px;
}

.market-entry-home-copy > p:not(.section-kicker) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
  line-height: 1.7;
}

.market-entry-home-copy .btn {
  margin-top: 12px;
}

.market-entry-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.market-entry-mini-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(229, 189, 102, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(244, 230, 193, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 22px 58px rgba(3, 12, 13, 0.22);
}

.market-entry-mini-grid span,
.market-entry-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  margin-bottom: 28px;
  border-radius: var(--radius);
  color: var(--obsidian);
  background: linear-gradient(135deg, var(--champagne), var(--gold));
  font-size: 0.78rem;
  font-weight: 900;
}

.market-entry-mini-grid h3 {
  color: var(--white);
  font-size: 1.12rem;
}

.market-entry-mini-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.58;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.52fr);
  grid-template-areas:
    "kicker copy"
    "title copy";
  gap: 14px 64px;
  align-items: end;
  margin-bottom: 48px;
}

.section-head .section-kicker {
  grid-area: kicker;
  margin-bottom: 2px;
}

.section-head h2 {
  grid-area: title;
  max-width: 760px;
  margin-bottom: 0;
}

.section-head p:last-child {
  grid-area: copy;
  max-width: 500px;
  color: var(--muted);
  margin-bottom: 6px;
  font-size: 1.06rem;
  line-height: 1.68;
}

.section-head.center {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  display: block;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(360px, auto);
  gap: 20px;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: var(--radius);
  background: var(--carbon);
  border: 1px solid rgba(229, 189, 102, 0.12);
  box-shadow: var(--shadow-card);
}

.product-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.product-card.wide {
  grid-column: span 2;
}

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 20, 18, 0.04), rgba(7, 20, 18, 0.88)),
    linear-gradient(90deg, rgba(7, 20, 18, 0.34), transparent 58%);
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 26px;
  color: var(--white);
}

.product-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 16px;
  border: 1px solid rgba(229, 189, 102, 0.4);
  border-radius: var(--radius);
  color: var(--gold);
  font-weight: 900;
}

.product-content p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.supplier-invite {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 20, 18, 0.94), rgba(17, 43, 37, 0.78)),
    url("https://images.unsplash.com/photo-1513828583688-c52646db42da?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.supplier-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.52fr);
  gap: 56px;
  align-items: center;
}

.supplier-copy {
  max-width: 780px;
}

.supplier-copy p:not(.section-kicker) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.supplier-panel {
  padding: 28px;
  border: 1px solid rgba(229, 189, 102, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 26px 80px rgba(3, 12, 13, 0.32);
  backdrop-filter: blur(16px);
}

.supplier-panel span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.supplier-panel strong {
  display: block;
  max-width: 360px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 1.22rem;
  line-height: 1.28;
}

.supplier-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.supplier-panel li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.78);
}

.supplier-panel li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--gold);
}

.command {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 20, 18, 0.96), rgba(17, 43, 37, 0.96)),
    url("https://images.unsplash.com/photo-1494412519320-aa613dfb7738?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.command-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.8fr);
  gap: 58px;
  align-items: center;
}

.command-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.route-board {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(229, 189, 102, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(244, 230, 193, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 26px 80px rgba(3, 12, 13, 0.32);
  backdrop-filter: blur(14px);
}

.route-stage {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(7, 20, 18, 0.55);
}

.route-stage::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(229, 189, 102, 0.12);
}

.route-stage span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-weight: 900;
}

.route-stage strong {
  color: var(--white);
}

.route-line {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.route-line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: lineTravel 2.8s linear infinite;
}

.assurance {
  background: var(--porcelain);
}

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

.assurance-card,
.catalog-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(16, 32, 29, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), var(--surface)),
    var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.assurance-card:hover,
.catalog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 130, 46, 0.32);
  box-shadow: var(--shadow-card);
}

.assurance-card span,
.catalog-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 36px;
  margin-bottom: 42px;
  border-radius: var(--radius);
  color: var(--obsidian);
  background: linear-gradient(135deg, var(--champagne), rgba(229, 189, 102, 0.72));
  font-weight: 900;
}

.assurance-card p,
.catalog-card p {
  color: var(--muted);
  margin-bottom: 0;
}

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

.documents-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 0.85fr);
  gap: 60px;
  align-items: center;
}

.document-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(16, 32, 29, 0.1);
  box-shadow: var(--shadow-card);
}

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

.document-stamp {
  position: absolute;
  right: 18px;
  bottom: 18px;
  min-width: 220px;
  padding: 18px;
  border: 1px solid rgba(229, 189, 102, 0.32);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(7, 20, 18, 0.78);
  backdrop-filter: blur(12px);
}

.document-stamp span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.document-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.document-list li {
  min-height: 58px;
  padding: 16px 18px;
  border: 1px solid rgba(16, 32, 29, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 28px rgba(7, 20, 18, 0.05);
  font-weight: 800;
}

.request {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 20, 18, 0.96), rgba(7, 20, 18, 0.76)),
    url("https://images.unsplash.com/photo-1566576721346-d4a3b4eaeb55?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.request-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.58fr);
  gap: 54px;
  align-items: start;
}

.request p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.74);
}

.request-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(229, 189, 102, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(244, 230, 193, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.1);
  box-shadow: 0 26px 80px rgba(3, 12, 13, 0.34);
  backdrop-filter: blur(16px);
}

.market-entry-form-fields {
  display: grid;
  gap: 16px;
  margin: 4px -4px 2px;
  padding: 20px;
  border: 1px solid rgba(229, 189, 102, 0.2);
  border-radius: var(--radius);
  background: rgba(7, 20, 18, 0.32);
}

.market-entry-form-fields[hidden] {
  display: none;
}

.form-section-title {
  margin: 0 0 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(229, 189, 102, 0.16);
  color: var(--gold) !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: uppercase;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: rgba(244, 230, 193, 0.9);
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(7, 20, 18, 0.56);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field textarea {
  min-height: 116px;
  resize: vertical;
}

.field select option {
  color: var(--ink);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
  background: rgba(7, 20, 18, 0.78);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--champagne);
  font-size: 0.9rem;
  line-height: 1.55;
}

.form-note.is-success {
  color: #bfe5c8;
}

.form-note.is-error {
  color: #ffc0b8;
}

.request-form button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.company-details {
  line-height: 1.5;
}

.company-details strong {
  display: block;
  color: var(--champagne);
  font-size: 0.9rem;
  line-height: 1.35;
}

.company-details a {
  color: inherit;
  text-decoration: none;
}

.company-details a:hover,
.company-details a:focus-visible {
  color: var(--gold);
  outline: none;
}

.company-details-request {
  max-width: 680px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(229, 189, 102, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(244, 230, 193, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(7, 20, 18, 0.48);
  box-shadow: 0 22px 70px rgba(3, 12, 13, 0.22);
  backdrop-filter: blur(12px);
}

.company-details-request dl {
  display: grid;
  gap: 13px;
  margin: 18px 0 0;
}

.company-details-request dl div {
  display: grid;
  grid-template-columns: minmax(128px, 0.34fr) minmax(0, 1fr);
  gap: 16px;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.company-details-request dt {
  color: rgba(244, 230, 193, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.company-details-request dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.site-footer {
  padding: 38px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #06100e;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-company {
  display: grid;
  gap: 14px;
  min-width: 0;
  max-width: 760px;
}

.company-details-footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.company-details-footer strong {
  color: rgba(244, 230, 193, 0.88);
  font-size: 0.84rem;
  margin-bottom: 4px;
}

.company-details-footer > span {
  position: relative;
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.5;
}

/* Visual separator between address/email block and phone block */
.company-details-footer > span:nth-child(5) {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  text-decoration: none;
}

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

.page-hero {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 16, 19, 0.96), rgba(7, 20, 18, 0.7) 58%, rgba(7, 20, 18, 0.48)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=82") center / cover;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 118px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 52%);
  mask-image: linear-gradient(90deg, #000, transparent 82%);
  pointer-events: none;
}

.catalog-hero {
  background:
    linear-gradient(90deg, rgba(7, 20, 18, 0.94), rgba(7, 20, 18, 0.58)),
    url("https://images.unsplash.com/photo-1609143739217-01b60dad1c67?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.importers-hero {
  background:
    linear-gradient(90deg, rgba(7, 20, 18, 0.94), rgba(7, 20, 18, 0.58)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.suppliers-hero {
  background:
    linear-gradient(90deg, rgba(7, 20, 18, 0.94), rgba(7, 20, 18, 0.56)),
    url("https://images.unsplash.com/photo-1565688534245-05d6b5be184a?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.logistics-hero {
  background:
    linear-gradient(90deg, rgba(7, 20, 18, 0.94), rgba(7, 20, 18, 0.56)),
    url("https://images.unsplash.com/photo-1494412519320-aa613dfb7738?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.quality-hero {
  background:
    linear-gradient(90deg, rgba(7, 20, 18, 0.94), rgba(7, 20, 18, 0.56)),
    url("https://images.unsplash.com/photo-1581092335878-2d9ff86ca2bf?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(7, 20, 18, 0.94), rgba(7, 20, 18, 0.58)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.documents-hero {
  background:
    linear-gradient(90deg, rgba(7, 20, 18, 0.94), rgba(7, 20, 18, 0.56)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 126px 0 116px;
}

.page-hero h1 {
  max-width: 820px;
  font-size: 4.2rem;
}

.page-hero p:last-child {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  line-height: 1.68;
}

.catalog-section {
  background: var(--porcelain);
}

.detail-section {
  background: var(--porcelain);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.45fr);
  gap: 56px;
  align-items: start;
}

.detail-main {
  max-width: 820px;
}

.detail-main p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.detail-panel {
  padding: 30px;
  border: 1px solid rgba(16, 32, 29, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), var(--surface)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.detail-panel span {
  display: block;
  margin-bottom: 18px;
  color: var(--bronze);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-weight: 760;
}

.detail-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 12px;
  height: 2px;
  background: var(--bronze);
}

.service-section {
  background: var(--mist);
}

.site-directory {
  background: var(--porcelain);
}

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

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

.services-overview-grid .service-card {
  min-height: 340px;
}

.services-search-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-directory {
  background:
    linear-gradient(180deg, rgba(247, 245, 239, 0.98), rgba(232, 238, 231, 0.8)),
    var(--porcelain);
}

.services-directory-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.72fr);
  gap: 30px 56px;
  align-items: end;
  margin-bottom: 24px;
  padding: 42px 46px 34px;
  border: 1px solid rgba(229, 189, 102, 0.24);
  border-radius: var(--radius);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 12%, rgba(229, 189, 102, 0.14), transparent 24rem),
    linear-gradient(135deg, #071412, #12352d);
  box-shadow: var(--shadow);
}

.services-directory-heading .section-kicker {
  margin-bottom: 12px;
}

.services-directory-heading h2 {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2.15rem, 3vw, 3.45rem);
  line-height: 1.08;
}

.services-directory-copy {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.72;
}

.services-quick-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding-top: 24px;
  border-top: 1px solid rgba(229, 189, 102, 0.18);
}

.services-quick-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(229, 189, 102, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.services-quick-links a:hover,
.services-quick-links a:focus-visible {
  color: var(--obsidian);
  border-color: var(--champagne);
  background: var(--champagne);
  outline: none;
  transform: translateY(-1px);
}

.services-detail-list {
  display: grid;
  gap: 18px;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: 30px;
  align-items: start;
  padding: 34px;
  scroll-margin-top: 104px;
  border: 1px solid rgba(16, 32, 29, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 245, 239, 0.94)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.service-detail-card-featured {
  color: var(--white);
  border-color: rgba(229, 189, 102, 0.28);
  background:
    radial-gradient(circle at 88% 18%, rgba(229, 189, 102, 0.14), transparent 22rem),
    linear-gradient(135deg, #071412, #12352d);
}

.service-detail-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 40px;
  border-radius: var(--radius);
  color: var(--obsidian);
  background: linear-gradient(135deg, var(--champagne), var(--gold));
  font-size: 0.82rem;
  font-weight: 900;
}

.service-detail-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
}

.service-detail-copy p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.service-detail-card-featured .service-detail-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.service-detail-inclusions {
  padding: 22px 24px;
  border: 1px solid rgba(184, 130, 46, 0.18);
  border-radius: var(--radius);
  background: rgba(232, 238, 231, 0.62);
}

.service-detail-card-featured .service-detail-inclusions {
  border-color: rgba(229, 189, 102, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.service-detail-inclusions strong {
  display: block;
  margin-bottom: 14px;
  color: var(--bronze);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-detail-inclusions ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-inclusions li {
  position: relative;
  padding-left: 19px;
  color: var(--deep);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}

.service-detail-card-featured .service-detail-inclusions li {
  color: rgba(255, 255, 255, 0.84);
}

.service-detail-inclusions li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--bronze);
}

.service-card,
.process-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(16, 32, 29, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), var(--surface)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.service-card span,
.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 36px;
  margin-bottom: 34px;
  border-radius: var(--radius);
  color: var(--obsidian);
  background: linear-gradient(135deg, var(--champagne), rgba(229, 189, 102, 0.72));
  font-weight: 900;
}

.service-card p,
.process-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  padding: 13px 16px;
  border: 1px solid rgba(184, 130, 46, 0.34);
  border-radius: var(--radius);
  color: var(--obsidian);
  background: linear-gradient(135deg, rgba(244, 230, 193, 0.74), rgba(229, 189, 102, 0.54));
  font-size: 0.83rem;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card-cta::after {
  content: "→";
  flex: 0 0 auto;
  font-size: 1rem;
}

.service-card-cta:hover,
.service-card-cta:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(184, 130, 46, 0.7);
  box-shadow: 0 12px 28px rgba(184, 130, 46, 0.16);
  outline: none;
}

.service-card:has(.service-card-cta) p {
  margin-bottom: 26px;
}

.directory-card {
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.directory-card:hover,
.directory-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(184, 130, 46, 0.4);
  box-shadow: 0 28px 70px rgba(7, 20, 18, 0.14);
  outline: none;
}

.process-section {
  background: var(--porcelain);
}

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

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

.process-card {
  min-height: 230px;
}

.cta-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 20, 18, 0.96), rgba(17, 43, 37, 0.94)),
    var(--carbon);
}

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

.catalog-card ul {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.catalog-card li {
  padding: 8px 10px;
  border-radius: var(--radius);
  color: var(--deep);
  background: rgba(232, 238, 231, 0.9);
  font-size: 0.86rem;
  font-weight: 800;
}

.catalog-note {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 20, 18, 0.96), rgba(17, 43, 37, 0.94)),
    var(--carbon);
}

.home-product-directions {
  background:
    linear-gradient(180deg, rgba(247, 245, 239, 0.98), rgba(232, 238, 231, 0.86)),
    var(--porcelain);
}

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

.home-product-route {
  display: flex;
  flex-direction: column;
  min-height: 540px;
  padding: 38px;
  border: 1px solid rgba(229, 189, 102, 0.22);
  border-radius: var(--radius);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(229, 189, 102, 0.14), transparent 22rem),
    linear-gradient(135deg, #071412, #12352d);
  box-shadow: var(--shadow-soft);
}

.home-product-route-russia {
  background:
    radial-gradient(circle at 88% 12%, rgba(229, 189, 102, 0.16), transparent 22rem),
    linear-gradient(135deg, #10231f, #24463d);
}

.home-product-route-label {
  margin-bottom: 14px;
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-product-route h3 {
  max-width: 520px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3rem);
}

.home-product-route > p:not(.home-product-route-label) {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.home-product-route ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0 30px;
  padding: 0;
  list-style: none;
}

.featured-products {
  background:
    radial-gradient(circle at 12% 0%, rgba(229, 189, 102, 0.09), transparent 24rem),
    var(--white);
}

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

.featured-product-card {
  display: flex;
  min-width: 0;
  min-height: 390px;
  padding: 0 22px 24px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(16, 32, 29, 0.12);
  border-radius: var(--radius);
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 245, 239, 0.94));
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.featured-product-card:hover,
.featured-product-card:focus-visible {
  border-color: rgba(184, 130, 46, 0.42);
  box-shadow: var(--shadow-card);
  outline: none;
  transform: translateY(-4px);
}

.featured-product-card img {
  width: calc(100% + 44px);
  height: 178px;
  margin: 0 -22px 22px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.featured-product-card:hover img {
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.035);
}

.featured-product-card > span {
  margin-bottom: 10px;
  color: var(--bronze);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-product-card h3 {
  margin-bottom: 12px;
  font-size: 1.34rem;
  line-height: 1.18;
}

.featured-product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.featured-products-action {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.featured-products-action .btn-secondary {
  color: var(--deep);
  border-color: rgba(13, 106, 85, 0.28);
  background: rgba(232, 238, 231, 0.72);
}

.home-product-route li {
  position: relative;
  padding: 12px 12px 12px 28px;
  border: 1px solid rgba(229, 189, 102, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.4;
}

.home-product-route li::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 13px;
  width: 7px;
  height: 1px;
  background: var(--gold);
}

.home-product-route .btn {
  align-self: flex-start;
  margin-top: auto;
}

.product-route-section {
  scroll-margin-top: 96px;
  background: var(--porcelain);
}

.product-route-switcher-shell {
  position: sticky;
  top: 76px;
  z-index: 20;
  padding: 12px 0;
  border-bottom: 1px solid rgba(229, 189, 102, 0.18);
  background: rgba(7, 20, 18, 0.94);
  box-shadow: 0 14px 34px rgba(3, 12, 13, 0.12);
  backdrop-filter: blur(16px);
}

.product-route-switcher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 880px;
  margin-inline: auto;
  padding: 5px;
  border: 1px solid rgba(229, 189, 102, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.product-route-switcher a {
  display: grid;
  gap: 3px;
  padding: 11px 18px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.product-route-switcher a span {
  font-size: 0.92rem;
  font-weight: 900;
}

.product-route-switcher a small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-route-switcher a:hover,
.product-route-switcher a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.product-route-switcher a.is-active {
  color: var(--obsidian);
  background: linear-gradient(135deg, var(--champagne), var(--gold));
  box-shadow: 0 8px 22px rgba(184, 130, 46, 0.22);
}

.product-route-switcher a.is-active small {
  color: rgba(7, 20, 18, 0.68);
}

.product-route-russia {
  background:
    radial-gradient(circle at 92% 8%, rgba(229, 189, 102, 0.1), transparent 26rem),
    linear-gradient(180deg, #edf2eb, var(--porcelain));
  border-top: 1px solid rgba(16, 32, 29, 0.08);
}

.product-route-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 34px 64px;
  align-items: end;
  margin-bottom: 30px;
  padding: 38px 42px;
  border: 1px solid rgba(229, 189, 102, 0.24);
  border-radius: var(--radius);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 10%, rgba(229, 189, 102, 0.15), transparent 24rem),
    linear-gradient(135deg, #071412, #12352d);
  box-shadow: var(--shadow-soft);
}

.product-route-russia .product-route-head {
  background:
    radial-gradient(circle at 88% 10%, rgba(229, 189, 102, 0.16), transparent 24rem),
    linear-gradient(135deg, #10231f, #24463d);
}

.product-route-head h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2.25rem, 3.6vw, 4rem);
}

.product-route-head > p {
  max-width: 560px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.72;
}

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

.product-direction-card {
  display: flex;
  flex-direction: column;
  min-height: 570px;
  padding: 0 28px 28px;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 29, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 245, 239, 0.94)),
    var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.product-direction-media {
  position: relative;
  width: calc(100% + 56px);
  aspect-ratio: 3 / 2;
  margin: 0 -28px 24px;
  overflow: hidden;
  background: #10231f;
}

.product-direction-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 52%, rgba(7, 20, 18, 0.22)),
    linear-gradient(135deg, rgba(229, 189, 102, 0.04), transparent 56%);
  pointer-events: none;
}

.product-direction-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.product-direction-card:hover .product-direction-media img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.035);
}

.product-direction-card:hover {
  border-color: rgba(184, 130, 46, 0.32);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.product-direction-card-featured {
  color: var(--white);
  border-color: rgba(229, 189, 102, 0.26);
  background:
    radial-gradient(circle at 88% 12%, rgba(229, 189, 102, 0.15), transparent 20rem),
    linear-gradient(135deg, #071412, #12352d);
}

.product-direction-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--obsidian);
  background: linear-gradient(135deg, var(--champagne), var(--gold));
  font-size: 0.76rem;
  font-weight: 900;
}

.product-direction-card h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.product-direction-card > p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

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

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

.product-direction-format {
  padding-top: 16px;
  border-top: 1px solid rgba(16, 32, 29, 0.09);
  font-size: 0.86rem !important;
  font-weight: 700;
}

.product-direction-card-featured .product-direction-format {
  border-color: rgba(229, 189, 102, 0.16);
}

.product-direction-action {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 38px;
  margin-top: auto;
  padding: 9px 13px;
  border: 1px solid rgba(184, 130, 46, 0.28);
  border-radius: 8px;
  color: var(--deep);
  background: rgba(229, 189, 102, 0.11);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.product-direction-action:hover,
.product-direction-action:focus-visible,
.product-direction-card-featured .product-direction-action {
  color: var(--obsidian);
  border-color: var(--champagne);
  background: var(--champagne);
  outline: none;
}

.product-directions-note {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 20, 18, 0.97), rgba(17, 43, 37, 0.95)),
    var(--carbon);
}

.product-directions-legal {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr) auto;
  gap: 34px 48px;
  align-items: center;
}

.product-directions-legal h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.product-directions-legal > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.7;
}

.service-product-directions {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(16, 32, 29, 0.1);
}

.service-product-directions strong {
  display: block;
  margin-bottom: 12px;
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-product-directions ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.service-product-directions li {
  padding: 7px 9px;
  border-radius: 7px;
  color: var(--deep);
  background: rgba(232, 238, 231, 0.8);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.3;
}

.service-product-directions a {
  color: var(--bronze);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.service-product-directions a:hover,
.service-product-directions a:focus-visible {
  color: var(--deep);
  text-decoration: underline;
  outline: none;
}

.russia-catalog {
  background:
    radial-gradient(circle at 92% 8%, rgba(229, 189, 102, 0.12), transparent 22rem),
    linear-gradient(180deg, #edf2eb, var(--porcelain));
  border-top: 1px solid rgba(16, 32, 29, 0.08);
}

.russia-product-card {
  position: relative;
  overflow: hidden;
}

.russia-product-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bronze), var(--gold), var(--jade));
}

.trade-compliance {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.82fr);
  gap: 44px;
  align-items: center;
  margin-top: 28px;
  padding: 28px 30px;
  border: 1px solid rgba(229, 189, 102, 0.22);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 20, 18, 0.98), rgba(17, 43, 37, 0.94)),
    var(--carbon);
  box-shadow: var(--shadow-soft);
}

.trade-compliance span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trade-compliance strong {
  display: block;
  max-width: 520px;
  font-size: 1.14rem;
  line-height: 1.4;
}

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

.note-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.68fr) auto;
  gap: 42px;
  align-items: center;
}

.note-grid p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.market-entry-detail {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 8%, rgba(229, 189, 102, 0.14), transparent 25rem),
    radial-gradient(circle at 8% 92%, rgba(46, 166, 127, 0.12), transparent 24rem),
    linear-gradient(145deg, #071412, #102e27 58%, #0b211d);
}

.market-entry-detail::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  pointer-events: none;
}

.market-entry-detail .container {
  position: relative;
  z-index: 1;
}

.market-entry-head p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.market-entry-process {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.market-entry-process-intro {
  padding: 28px;
  border: 1px solid rgba(229, 189, 102, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(244, 230, 193, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.055);
}

.market-entry-process-intro h3 {
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1.18;
}

.market-entry-process-intro > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

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

.market-entry-step {
  min-height: 260px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(7, 20, 18, 0.52);
}

.market-entry-step > span {
  margin-bottom: 34px;
}

.market-entry-step h3 {
  color: var(--white);
  font-size: 1.18rem;
}

.market-entry-step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.market-entry-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.48fr);
  gap: 28px;
  margin-top: 28px;
}

.market-entry-offer > div,
.market-entry-action {
  padding: 28px;
  border: 1px solid rgba(229, 189, 102, 0.2);
  border-radius: var(--radius);
}

.market-entry-offer > div {
  background: rgba(255, 255, 255, 0.055);
}

.market-entry-offer h3 {
  max-width: 740px;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1.25;
}

.market-entry-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.market-entry-category-list li {
  padding: 10px 13px;
  border: 1px solid rgba(229, 189, 102, 0.17);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.84);
  background: rgba(7, 20, 18, 0.48);
  font-size: 0.88rem;
  font-weight: 800;
}

.market-entry-action {
  display: grid;
  align-content: space-between;
  justify-items: start;
  gap: 26px;
  background:
    linear-gradient(145deg, rgba(244, 230, 193, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.05);
}

.market-entry-action p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.65;
}

.supplier-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}

.supplier-cta h2 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(2.6rem, 4.3vw, 4.6rem);
  line-height: 1.02;
}

.supplier-cta-action {
  display: grid;
  justify-items: start;
  gap: 24px;
  max-width: 560px;
  padding: 30px;
  border: 1px solid rgba(229, 189, 102, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.18);
}

.supplier-cta-action p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.7;
}

.supplier-cta-action .btn {
  min-width: 250px;
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes routeFlow {
  0% {
    opacity: 0;
    transform: translateX(-24px) rotate(-9deg);
  }

  30%,
  70% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(42px) rotate(-9deg);
  }
}

@keyframes lineTravel {
  from {
    transform: translateX(-110%);
  }

  to {
    transform: translateX(260%);
  }
}

@media (max-width: 1320px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(229, 189, 102, 0.18);
    border-radius: var(--radius);
    background: rgba(7, 20, 18, 0.97);
    box-shadow: 0 26px 80px rgba(3, 12, 13, 0.34);
  }

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

  .nav-link,
  .nav-action {
    justify-content: center;
  }

  .lang-switch {
    width: min(260px, 100%);
    margin: 0 auto;
  }

  .hero-inner,
  .command-grid,
  .supplier-grid,
  .trade-corridor-shell,
  .trade-compliance,
  .market-entry-home-shell,
  .market-entry-process,
  .market-entry-offer,
  .detail-grid,
  .documents-grid,
  .request-grid,
  .note-grid,
  .supplier-cta-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .service-detail-inclusions {
    grid-column: 2;
  }

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

  .product-directions-legal {
    grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  }

  .product-directions-legal .btn {
    justify-self: start;
  }

  .supplier-cta-grid {
    gap: 30px;
  }

  .trade-corridor-shell {
    gap: 34px;
  }

  .market-entry-home-shell,
  .market-entry-process,
  .market-entry-offer {
    gap: 30px;
  }

  .supplier-cta-action {
    max-width: 680px;
  }

  .hero-inner {
    gap: 34px;
    align-items: start;
  }

  .hero-intel {
    max-width: 560px;
    align-self: start;
  }

  .hero-motion {
    right: -6%;
    width: min(520px, 62%);
  }

  .hero-trade-layer {
    opacity: 0.72;
  }

  .prestige-grid,
  .assurance-grid,
  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .prestige-grid div:nth-child(2n) {
    border-right: 0;
  }

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

@media (max-width: 900px) {
  h1 {
    font-size: 4rem;
  }

  h2,
  .page-hero h1 {
    font-size: 2.55rem;
  }

  .section {
    padding: 76px 0;
  }

  .section-head,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    grid-template-areas:
      "kicker"
      "title"
      "copy";
    gap: 14px;
  }

  .section-head p:last-child {
    max-width: 680px;
    margin-bottom: 0;
  }

  .services-directory-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-directory-copy {
    max-width: 700px;
  }

  .home-product-grid,
  .product-route-head,
  .product-directions-legal {
    grid-template-columns: 1fr;
  }

  .featured-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-product-route {
    min-height: auto;
  }

  .product-route-head {
    gap: 20px;
  }

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

  .product-card.large,
  .product-card.wide {
    grid-column: span 2;
    grid-row: auto;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-company {
    width: 100%;
    max-width: none;
  }

  .company-details-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

  .header-inner {
    min-height: 74px;
    gap: 14px;
  }

  .brand-logo {
    width: 56px;
    height: 40px;
    padding: 2px 3px;
    border-radius: 12px;
  }

  .brand-title {
    font-size: 0.98rem;
  }

  .brand-tagline {
    display: none;
  }

  .nav {
    top: 74px;
    right: 14px;
    left: 14px;
    padding: 16px;
  }

  .hero {
    min-height: auto;
    background-position: 61% center;
  }

  .hero-inner {
    gap: 26px;
    padding: 54px 0 66px;
  }

  .hero-content {
    padding-left: 16px;
  }

  h1 {
    font-size: 2.7rem;
    line-height: 1.04;
  }

  h2,
  .page-hero h1 {
    font-size: 2.05rem;
    line-height: 1.1;
  }

  .hero-lead,
  .page-hero p:last-child {
    font-size: 1.02rem;
    line-height: 1.64;
  }

  .hero-actions,
  .hero-actions .btn,
  .request-form .btn {
    width: 100%;
  }

  .btn,
  .nav-action,
  .lang-btn {
    min-height: 46px;
  }

  .hero-intel {
    display: grid;
    width: 100%;
    max-width: none;
  }

  .hero-intel div {
    min-height: auto;
    padding: 16px 18px;
  }

  .hero-intel div::after {
    top: 18px;
    right: 18px;
    width: 26px;
  }

  .hero-intel strong {
    font-size: 0.95rem;
  }

  .hero-motion,
  .hero-trade-layer {
    display: none;
  }

  .prestige-strip {
    margin-top: -24px;
  }

  .prestige-grid,
  .portfolio-grid,
  .assurance-grid,
  .service-grid,
  .process-grid,
  .featured-products-grid,
  .market-entry-mini-grid,
  .market-entry-step-grid,
  .document-list {
    grid-template-columns: 1fr;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }

  .service-detail-inclusions {
    grid-column: auto;
    padding: 18px;
  }

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

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

  .product-card,
  .product-card.large,
  .product-card.wide {
    grid-column: auto;
    min-height: 320px;
  }

  .service-card,
  .process-card,
  .featured-product-card,
  .assurance-card,
  .catalog-card,
  .corridor-panel,
  .trade-compliance,
  .detail-panel,
  .supplier-panel,
  .route-board {
    padding: 22px;
  }

  .featured-product-card {
    min-height: 0;
    padding-top: 0;
  }

  .featured-product-card img {
    width: calc(100% + 44px);
    margin-right: -22px;
    margin-left: -22px;
  }

  .corridor-route {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .corridor-route-line {
    width: 2px;
    height: 28px;
    justify-self: center;
  }

  .corridor-route-line::after {
    display: none;
  }

  .corridor-tags {
    grid-template-columns: 1fr;
  }

  .document-stamp {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-width: 0;
  }

  .company-details-request {
    padding: 18px;
  }

  .company-details-request dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .page-hero-inner {
    padding: 84px 0 78px;
  }

  .request-form {
    padding: 22px;
  }

  .product-route-switcher-shell {
    top: 74px;
    padding: 8px 0;
  }

  .product-route-switcher {
    width: 100%;
  }

  .product-route-switcher a {
    padding: 10px 8px;
  }

  .product-route-switcher a span {
    font-size: 0.78rem;
  }

  .product-route-switcher a small {
    display: none;
  }

  .home-product-route,
  .product-route-head,
  .product-direction-card {
    padding: 24px;
  }

  .product-direction-card {
    padding-top: 0;
  }

  .product-direction-media {
    width: calc(100% + 48px);
    margin-right: -24px;
    margin-left: -24px;
  }

  .home-product-route ul,
  .product-direction-grid {
    grid-template-columns: 1fr;
  }

  .home-product-route h3,
  .product-route-head h2 {
    font-size: 2.1rem;
  }

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

  .product-directions-legal {
    gap: 24px;
  }

  .services-directory-head {
    padding: 26px 22px 22px;
  }

  .services-directory-heading h2 {
    font-size: 1.85rem;
  }

  .services-quick-links {
    flex-wrap: nowrap;
    gap: 8px;
    margin-right: -22px;
    padding-top: 20px;
    padding-right: 22px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .services-quick-links a {
    flex: 0 0 auto;
    width: auto;
    border-radius: 999px;
    white-space: nowrap;
  }

  .market-entry-mini-grid article,
  .market-entry-step {
    min-height: auto;
    padding: 22px;
  }

  .market-entry-form-fields {
    margin-inline: 0;
    padding: 16px;
  }

  .market-entry-offer > div,
  .market-entry-action,
  .market-entry-process-intro {
    padding: 22px;
  }

  .market-entry-action .btn {
    width: 100%;
  }

  .supplier-cta h2 {
    font-size: 2.45rem;
  }

  .supplier-cta-action {
    gap: 20px;
    padding: 22px;
  }

  .supplier-cta-action .btn {
    width: 100%;
    min-width: 0;
  }
}

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

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.brand {
  position: relative;
}

.brand-logo {
  filter: drop-shadow(0 10px 18px rgba(229, 189, 102, 0.12));
}

.brand::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 2px;
  left: 74px;
  height: 1px;
  background: linear-gradient(90deg, rgba(229, 189, 102, 0.46), transparent);
  opacity: 0.72;
  pointer-events: none;
}

.hero-brand-mark {
  position: absolute;
  right: 12%;
  top: 17%;
  width: min(260px, 18vw);
  opacity: 0.055;
  filter: grayscale(1) brightness(1.9);
  transform: rotate(-4deg);
}

.contacts-request {
  overflow: hidden;
}

.contacts-request .request-grid {
  position: relative;
  z-index: 1;
}

.company-watermark {
  pointer-events: none;
  user-select: none;
}

.contact-brand-mark {
  position: absolute;
  right: 6%;
  top: 50%;
  width: min(520px, 38vw);
  opacity: 0.06;
  filter: grayscale(1) brightness(2.1);
  transform: translateY(-50%) rotate(-5deg);
  z-index: 0;
}

.footer-brand-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-logo-mark {
  width: 34px;
  height: 26px;
  padding: 2px 3px;
  border: 1px solid rgba(229, 189, 102, 0.2);
  border-radius: 7px;
  background: linear-gradient(145deg, rgba(255, 250, 240, 0.96), rgba(241, 234, 219, 0.88));
  object-fit: contain;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

@media (max-width: 640px) {
  .brand::after {
    left: 66px;
    opacity: 0.46;
  }

  .hero-brand-mark,
  .contact-brand-mark {
    display: none;
  }

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

  .footer-logo-mark {
    flex: 0 0 auto;
    margin-top: 1px;
  }
}

.nav-submenu {
  display: none;
}

@media (max-width: 1320px) {
  .nav-submenu {
    display: grid;
    gap: 0;
    width: 100%;
  }

  .nav-submenu-toggle {
    position: relative;
    width: 100%;
    justify-content: center;
    padding-right: 44px;
    padding-left: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .nav-submenu-toggle:hover,
  .nav-submenu-toggle:focus-visible,
  .nav-submenu.is-open .nav-submenu-toggle {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-submenu-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    opacity: 0.8;
    transform: translateY(-60%) rotate(45deg);
    transition: transform 0.22s ease;
  }

  .nav-submenu.is-open .nav-submenu-icon {
    transform: translateY(-35%) rotate(225deg);
  }

  .nav-submenu-panel {
    display: grid;
    gap: 4px;
    width: calc(100% - 22px);
    max-height: 0;
    margin-left: 22px;
    padding-left: 14px;
    overflow: hidden;
    border-left: 1px solid rgba(229, 189, 102, 0.28);
    opacity: 0;
    transition: max-height 0.24s ease, opacity 0.18s ease, padding-top 0.24s ease;
  }

  .nav-submenu.is-open .nav-submenu-panel {
    max-height: 260px;
    padding-top: 6px;
    opacity: 1;
  }

  .nav-submenu-services.is-open .nav-submenu-panel {
    max-height: 680px;
    padding-bottom: 6px;
    overflow-y: auto;
  }

  .nav-submenu-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.84rem;
    font-weight: 780;
    text-align: left;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
  }

  .nav-submenu-link:hover,
  .nav-submenu-link:focus-visible,
  .nav-submenu-link.is-current {
    color: var(--champagne);
    background: rgba(229, 189, 102, 0.1);
    outline: none;
  }
}

.about-company {
  background:
    linear-gradient(180deg, rgba(247, 245, 239, 0.9), rgba(232, 238, 231, 0.72)),
    var(--porcelain);
}

.about-section-nav {
  position: relative;
  z-index: 4;
  padding: 18px 0;
  border-bottom: 1px solid rgba(16, 32, 29, 0.1);
  background: rgba(247, 245, 239, 0.96);
  box-shadow: 0 14px 40px rgba(7, 20, 18, 0.05);
}

.about-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.about-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(184, 130, 46, 0.22);
  border-radius: var(--radius);
  color: var(--deep);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 820;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(7, 20, 18, 0.05);
}

.about-actions a:hover,
.about-actions a:focus-visible {
  border-color: rgba(184, 130, 46, 0.42);
  background: var(--white);
  outline: none;
}

.introduction-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: start;
}

.introduction-heading {
  display: grid;
  gap: 22px;
}

.introduction-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 46px;
  border-radius: var(--radius);
  color: var(--obsidian);
  background: linear-gradient(135deg, var(--champagne), rgba(229, 189, 102, 0.72));
  box-shadow: 0 16px 40px rgba(184, 130, 46, 0.18);
  font-weight: 900;
}

.introduction-content {
  max-width: 820px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(16, 32, 29, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.76)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.introduction-content h2 {
  margin-bottom: 18px;
}

.introduction-content p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.brand-legal-notice {
  max-width: 760px;
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(184, 130, 46, 0.22);
  border-left: 3px solid var(--champagne);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 34px rgba(7, 20, 18, 0.05);
}

.brand-legal-notice strong {
  display: block;
  margin-bottom: 7px;
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-legal-notice p,
.introduction-content .brand-legal-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.6;
}

.brand-legal-notice-dark {
  margin: 0 0 20px;
  border-color: rgba(229, 189, 102, 0.24);
  border-left-color: var(--champagne);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.brand-legal-notice-dark strong {
  color: var(--champagne);
}

.brand-legal-notice-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.certificate-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 239, 229, 0.9)),
    var(--surface);
}

.certificate-section::before {
  content: "";
  position: absolute;
  right: 7%;
  top: 72px;
  width: 210px;
  height: 280px;
  border: 1px solid rgba(16, 32, 29, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(180deg, rgba(16, 32, 29, 0.08) 0 1px, transparent 1px 18px);
  opacity: 0.42;
  transform: rotate(5deg);
  pointer-events: none;
}

.certificate-section .container {
  position: relative;
  z-index: 1;
}

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

.certificate-card {
  min-height: 245px;
  padding: 26px;
  border: 1px dashed rgba(184, 130, 46, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.7)),
    var(--white);
  box-shadow: 0 18px 50px rgba(7, 20, 18, 0.07);
}

.certificate-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  margin-bottom: 30px;
  border-radius: var(--radius);
  color: var(--obsidian);
  background: rgba(229, 189, 102, 0.5);
  font-weight: 900;
}

.certificate-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.company-history-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(229, 189, 102, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(7, 20, 18, 0.98), rgba(8, 36, 31, 0.94)),
    var(--deep);
}

.company-history-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.company-history-section .container {
  position: relative;
  z-index: 1;
}

.company-history-section h2 {
  color: var(--white);
}

.company-history-section .section-head p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

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

.history-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid rgba(229, 189, 102, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.history-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  margin-bottom: 32px;
  border-radius: var(--radius);
  color: var(--obsidian);
  background: linear-gradient(135deg, var(--champagne), rgba(229, 189, 102, 0.76));
  font-weight: 900;
}

.history-card h3 {
  color: var(--white);
}

.history-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.history-closing {
  max-width: 860px;
  margin: 26px 0 0;
  padding: 20px 24px;
  border: 1px solid rgba(229, 189, 102, 0.22);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.02rem;
  font-weight: 680;
  line-height: 1.65;
}

.mission-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 14%, rgba(229, 189, 102, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(247, 245, 239, 0.96), rgba(232, 238, 231, 0.82)),
    var(--porcelain);
}

.mission-section::before {
  content: "";
  position: absolute;
  right: -80px;
  top: 60px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(184, 130, 46, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(184, 130, 46, 0.045);
  pointer-events: none;
}

.mission-section .container {
  position: relative;
  z-index: 1;
}

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

.mission-card {
  position: relative;
  min-height: 270px;
  padding: 28px;
  border: 1px solid rgba(16, 32, 29, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.76)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.mission-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  margin-bottom: 32px;
  border-radius: var(--radius);
  color: var(--obsidian);
  background: linear-gradient(135deg, var(--champagne), rgba(229, 189, 102, 0.72));
  font-weight: 900;
}

.mission-card h3 {
  max-width: 220px;
}

.mission-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.mission-closing {
  max-width: 860px;
  margin: 26px 0 0;
  padding: 20px 24px;
  border: 1px solid rgba(184, 130, 46, 0.2);
  border-radius: var(--radius);
  color: var(--deep);
  background: rgba(255, 255, 255, 0.68);
  font-size: 1.02rem;
  font-weight: 720;
  line-height: 1.65;
  box-shadow: 0 14px 42px rgba(7, 20, 18, 0.06);
}

@media (min-width: 1321px) {
  .nav-submenu {
    position: relative;
    display: inline-flex;
    align-items: center;
  }

  .nav-submenu-toggle {
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .nav-submenu-toggle:hover,
  .nav-submenu-toggle:focus-visible,
  .nav-submenu.is-open .nav-submenu-toggle {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-submenu-icon {
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    opacity: 0.78;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s ease;
  }

  .nav-submenu.is-open .nav-submenu-icon {
    transform: rotate(225deg) translate(-2px, -1px);
  }

  .nav-submenu-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 50;
    display: grid;
    gap: 4px;
    width: 230px;
    padding: 10px;
    border: 1px solid rgba(229, 189, 102, 0.2);
    border-radius: var(--radius);
    background: rgba(7, 20, 18, 0.98);
    box-shadow: 0 26px 80px rgba(3, 12, 13, 0.36);
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .nav-submenu.is-open .nav-submenu-panel,
  .nav-submenu:hover .nav-submenu-panel,
  .nav-submenu:focus-within .nav-submenu-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-submenu-link {
    display: flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 10px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
    font-weight: 740;
    text-decoration: none;
  }

  .nav-submenu-link:hover,
  .nav-submenu-link:focus-visible,
  .nav-submenu-link.is-current {
    color: var(--champagne);
    background: rgba(229, 189, 102, 0.1);
    outline: none;
  }

  .nav-submenu-operations .nav-submenu-panel {
    right: 0;
    left: auto;
  }

  .nav-submenu-services .nav-submenu-panel {
    width: 360px;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
  }
}

@media (max-width: 1320px) {
  .certificate-grid,
  .history-grid,
  .mission-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-actions,
  .certificate-grid,
  .history-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .about-actions {
    display: grid;
  }

  .about-actions a {
    justify-content: center;
  }

  .introduction-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .introduction-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .introduction-heading .section-kicker {
    margin-bottom: 0;
  }

  .introduction-content {
    padding: 24px;
  }

  .history-card {
    min-height: auto;
    padding: 22px;
  }

  .certificate-card {
    min-height: auto;
    padding: 22px;
  }

  .mission-card {
    min-height: auto;
    padding: 22px;
  }

  .history-closing {
    padding: 18px;
    font-size: 0.98rem;
  }

  .mission-closing {
    padding: 18px;
    font-size: 0.98rem;
  }
}

.nav .nav-submenu.is-open > .nav-submenu-panel {
  opacity: 1 !important;
  pointer-events: auto;
  transform: translateY(0) !important;
}
