:root {
  --ink: #111a17;
  --muted: #66736e;
  --paper: #fbfaf7;
  --line: #e6ded6;
  --coral: #d85f4b;
  --coral-dark: #a84235;
  --teal: #0d7773;
  --gold: #b98a46;
  --graphite: #22292c;
  --white: #ffffff;
  --cream: #fff7ef;
  --rose-soft: #f7e8df;
  --shadow: 0 20px 60px rgba(35, 31, 28, 0.12);
  --shadow-strong: 0 30px 86px rgba(35, 31, 28, 0.2);
  --title-gradient: linear-gradient(92deg, #111a17 0%, #244a46 58%, #a84235 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(216, 95, 75, 0.12), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(13, 119, 115, 0.1), transparent 26%),
    linear-gradient(180deg, #fffdf9 0%, var(--paper) 34%, #f4eee7 100%);
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 13px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(251, 250, 247, 0.9));
  border-bottom: 1px solid rgba(205, 193, 181, 0.78);
  box-shadow: 0 12px 36px rgba(23, 32, 29, 0.08);
  backdrop-filter: blur(18px) saturate(1.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--graphite);
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--teal));
  box-shadow: 0 10px 25px rgba(216, 95, 75, 0.25);
}

.brand-domain {
  color: var(--coral);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 1.3vw, 18px);
  font-size: 15.5px;
  color: #123e44;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  border-radius: 999px;
  padding: 10px 12px;
  transition: color 0.22s ease, background 0.22s ease, transform 0.18s ease, box-shadow 0.22s ease;
}

.site-nav a::after {
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  content: "";
  transform: translateX(-50%);
  transition: width 0.22s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--coral-dark);
  background: rgba(255, 247, 239, 0.95);
  box-shadow: inset 0 0 0 1px rgba(216, 95, 75, 0.16), 0 10px 24px rgba(35, 31, 28, 0.08);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: calc(100% - 24px);
}

.site-nav a:active {
  transform: translateY(1px) scale(0.98);
}

.language-switcher {
  position: relative;
  justify-self: end;
}

.language-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(216, 95, 75, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #123e44;
  padding: 0 14px;
  box-shadow: 0 10px 26px rgba(35, 31, 28, 0.08);
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.language-button:hover,
.language-button[aria-expanded="true"] {
  transform: translateY(-1px);
  border-color: rgba(216, 95, 75, 0.34);
  background: #fff8f2;
  box-shadow: 0 16px 34px rgba(35, 31, 28, 0.12);
}

.language-current-flag {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 20px;
  font-size: 18px;
  line-height: 1;
}

.language-current-name {
  max-width: 118px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 30;
  width: min(680px, calc(100vw - 32px));
  max-height: min(76vh, 680px);
  overflow: hidden;
  border: 1px solid rgba(230, 222, 214, 0.95);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 8%, rgba(216, 95, 75, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(251, 250, 247, 0.96));
  box-shadow: 0 28px 90px rgba(23, 32, 29, 0.22);
  backdrop-filter: blur(18px) saturate(1.08);
}

.language-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 22px 12px;
}

.language-panel-head p {
  margin: 0 0 6px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.language-panel-head h2 {
  margin: 0;
  color: var(--graphite);
  font-size: 28px;
  line-height: 1.05;
}

.language-close {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--graphite);
  cursor: pointer;
  font-size: 24px;
}

.language-search {
  display: grid;
  gap: 8px;
  padding: 0 22px 16px;
  color: var(--muted);
  font-size: 13px;
}

.language-search-input {
  border-radius: 999px;
  padding: 12px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.language-region-list {
  display: grid;
  gap: 14px;
  max-height: min(50vh, 466px);
  overflow: auto;
  padding: 0 14px 18px 22px;
}

.language-region h3 {
  position: sticky;
  top: 0;
  z-index: 1;
  margin: 0 0 8px;
  padding: 8px 0;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 253, 249, 0.88));
  color: #244a46;
  font-size: 13px;
  text-transform: uppercase;
}

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

.market-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  min-height: 64px;
  border: 1px solid rgba(230, 222, 214, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  padding: 10px;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.market-option:hover,
.market-option.is-active {
  transform: translateY(-2px);
  border-color: rgba(216, 95, 75, 0.3);
  background: #fff8f2;
  box-shadow: 0 14px 30px rgba(35, 31, 28, 0.1);
}

.market-option.is-active {
  box-shadow: inset 0 0 0 1px rgba(216, 95, 75, 0.16), 0 14px 30px rgba(35, 31, 28, 0.1);
}

.market-flag {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 22px;
  font-size: 24px;
  line-height: 1;
}

.tw-region-flag {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: #d71f2a;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.tw-region-flag::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 52%;
  height: 54%;
  background: #173b8f;
  content: "";
}

.tw-region-flag::after {
  position: absolute;
  left: 26%;
  top: 27%;
  width: 19%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffffff;
  content: "";
  transform: translate(-50%, -50%);
  box-shadow:
    0 -5px 0 -2px #ffffff,
    0 5px 0 -2px #ffffff,
    5px 0 0 -2px #ffffff,
    -5px 0 0 -2px #ffffff,
    3.6px 3.6px 0 -2px #ffffff,
    -3.6px 3.6px 0 -2px #ffffff,
    3.6px -3.6px 0 -2px #ffffff,
    -3.6px -3.6px 0 -2px #ffffff;
}

.market-name,
.market-lang {
  display: block;
}

.market-name {
  color: var(--graphite);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
}

.market-lang {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
}

.language-empty {
  margin: 0;
  padding: 28px 10px;
  color: var(--muted);
  text-align: center;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #151817;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("./assets/anmua-hero.jpg?v=wechat-jpg-1");
  background-size: cover;
  background-position: center right;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    radial-gradient(circle at 24% 35%, rgba(216, 95, 75, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(18, 27, 25, 0.94) 0%, rgba(18, 27, 25, 0.74) 42%, rgba(18, 27, 25, 0.2) 100%),
    linear-gradient(0deg, rgba(18, 27, 25, 0.72) 0%, rgba(18, 27, 25, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  color: #b94e42;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
}

.eyebrow::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  box-shadow: 0 0 0 6px rgba(216, 95, 75, 0.1);
  content: "";
}

.eyebrow::after {
  display: inline-block;
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(185, 138, 70, 0));
  content: "";
}

.hero .eyebrow {
  color: #ff8f7a;
  font-size: clamp(17px, 2vw, 21px);
}

.section-heading.wide .eyebrow {
  justify-content: center;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.98;
  font-weight: 850;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
}

body[data-locale="zh-CN"] .hero h1 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(32px, 6.2vw, 78px);
}

.hero-subtitle {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.2;
  color: #ffe4d9;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.hero-copy {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, #e36c58, #bd493f 58%, #9f3d32);
  box-shadow: 0 16px 32px rgba(216, 95, 75, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(10px);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(216, 95, 75, 0.24);
}

.button:active {
  transform: translateY(0) scale(0.99);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(128px, 1fr));
  gap: 12px;
  max-width: 860px;
  margin-top: 50px;
}

.stats article {
  min-height: 108px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.stats article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 198, 176, 0.38);
  background: rgba(255, 255, 255, 0.16);
}

.stats strong {
  display: block;
  color: #fff1eb;
  font-size: 26px;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.35;
}

.section {
  position: relative;
  padding: clamp(82px, 10vw, 136px) clamp(18px, 4vw, 56px);
  overflow: hidden;
}

.section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 14%, rgba(216, 95, 75, 0.08), transparent 25%),
    radial-gradient(circle at 88% 30%, rgba(13, 119, 115, 0.07), transparent 24%);
  content: "";
}

.section > * {
  position: relative;
  z-index: 1;
}

.section-heading {
  width: min(1480px, 100%);
  margin: 0 auto 42px;
}

.section-heading.wide {
  text-align: center;
}

.section h2 {
  max-width: min(1480px, 100%);
  margin: 0;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.02;
  color: #111c19;
  letter-spacing: 0;
  text-wrap: normal;
}

body[data-locale="zh-CN"] .section h2,
body[data-locale="zh-CN"] .visual-feature-grid h2,
body[data-locale="zh-CN"] .showcase-grid h2,
body[data-locale="zh-CN"] .contact-panel h2 {
  word-break: keep-all;
  overflow-wrap: normal;
}

body[data-locale="zh-CN"] .visual-feature-grid h2,
body[data-locale="zh-CN"] .showcase-grid h2,
body[data-locale="zh-CN"] .contact-panel h2 {
  font-size: clamp(30px, 2.65vw, 42px);
  line-height: 1.08;
}

.section h2,
.visual-feature-grid h2,
.showcase-grid h2,
.contact-panel h2 {
  background: var(--title-gradient);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-heading .eyebrow,
.visual-feature-grid .eyebrow,
.showcase-grid .eyebrow,
.contact-panel .eyebrow {
  color: var(--coral-dark);
}

.section-heading > p:not(.eyebrow)::before,
.visual-feature-grid p:not(.eyebrow)::before,
.showcase-grid p:not(.eyebrow)::before,
.contact-panel > div > p:not(.eyebrow)::before {
  display: block;
  width: 58px;
  height: 2px;
  margin: 20px 0 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  content: "";
}

.section-heading.wide > p:not(.eyebrow)::before {
  margin-left: auto;
  margin-right: auto;
}

.section-heading.wide h2,
.section-heading.wide p {
  margin-left: auto;
  margin-right: auto;
}

.section-heading > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 70px);
  width: min(1080px, 100%);
  margin: 0 auto;
}

.intro-copy {
  color: #33403b;
  font-size: 17px;
  line-height: 1.9;
}

.feature-list,
.service-grid,
.advantage-grid,
.process-grid {
  display: grid;
  gap: 16px;
}

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

.feature-list article,
.service-grid article,
.advantage-grid article,
.process-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 245, 0.96)),
    radial-gradient(circle at 16% 0%, rgba(216, 95, 75, 0.1), transparent 36%);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.feature-list article:hover,
.service-grid article:hover,
.process-grid article:hover,
.advantage-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 95, 75, 0.22);
  box-shadow: var(--shadow-strong);
}

.feature-list article {
  padding: 24px;
}

.icon {
  display: inline-flex;
  min-width: 64px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), #1d4b48);
  box-shadow: 0 12px 24px rgba(13, 119, 115, 0.16);
  padding: 0 12px;
  font-size: 13px;
  font-weight: 900;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.feature-list p,
.service-grid p,
.advantage-grid p,
.process-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.global-network {
  background: #fffdf9;
}

.wide-visual {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.wide-visual:hover {
  transform: translateY(-8px);
  border-color: rgba(185, 138, 70, 0.28);
  box-shadow: var(--shadow-strong);
}

.wide-visual::after,
.visual-feature-grid figure::after,
.showcase-grid figure::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0) 38%, rgba(185,138,70,0.08));
  content: "";
}

.visual-feature-grid figure::before,
.showcase-grid figure::before,
.wide-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.34) 46%, transparent 62%);
  content: "";
  opacity: 0;
  transform: translateX(-70%);
}

.visual-feature-grid figure:hover::before,
.showcase-grid figure:hover::before,
.wide-visual:hover::before {
  animation: imageShine 1.2s ease forwards;
}

figure {
  margin: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

picture {
  display: block;
}

.map-visual {
  isolation: isolate;
}

.map-label {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(13, 119, 115, 0.24);
  border-radius: 8px;
  padding: 8px 13px 8px 11px;
  color: #123e44;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(23, 32, 29, 0.12);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  transform: translate(-50%, -50%);
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, color 0.24s ease;
}

.map-label::before {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(216, 95, 75, 0.12);
  content: "";
  transition: box-shadow 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.map-label:hover,
.map-label.is-active {
  color: var(--coral-dark);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(216, 95, 75, 0.48);
  box-shadow: 0 18px 36px rgba(216, 95, 75, 0.18), 0 8px 24px rgba(23, 32, 29, 0.12);
  transform: translate(-50%, calc(-50% - 7px)) scale(1.04);
}

.map-label:hover::before,
.map-label.is-active::before {
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(185, 138, 70, 0.18), 0 0 20px rgba(216, 95, 75, 0.42);
  transform: scale(1.12);
}

.map-label:active {
  transform: translate(-50%, calc(-50% - 3px)) scale(1.01);
}

.map-cn {
  left: 73%;
  top: 43%;
}

.map-jp {
  left: 84%;
  top: 37%;
}

.map-us {
  left: 17%;
  top: 43%;
}

.map-latam {
  left: 25%;
  top: 68%;
}

.map-eu {
  left: 49%;
  top: 34%;
}

.map-africa {
  left: 52%;
  top: 61%;
}

.map-sea {
  left: 71%;
  top: 62%;
}

.map-tw {
  left: 78%;
  top: 53%;
}

.map-label.is-hq {
  border-color: rgba(216, 95, 75, 0.42);
  color: var(--coral-dark);
}

.services {
  background: #f2efea;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1120px, 100%);
  margin: 0 auto;
}

.service-grid article {
  min-height: 242px;
  padding: 26px;
}

.service-grid span,
.advantage-number,
.process-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold);
  font-weight: 900;
}

.visual-feature,
.team-service {
  background: var(--paper);
}

.visual-feature-grid,
.showcase-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(24px, 5vw, 68px);
  width: min(1120px, 100%);
  margin: 0 auto;
}

.visual-feature-grid.reverse {
  grid-template-columns: 0.92fr 1.08fr;
}

.visual-feature-grid.reverse figure {
  order: 2;
}

.visual-feature-grid figure,
.showcase-grid figure {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.visual-feature-grid figure:hover,
.showcase-grid figure:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 138, 70, 0.24);
  box-shadow: var(--shadow-strong);
}

.visual-feature-grid figure:hover img,
.showcase-grid figure:hover img,
.wide-visual:hover img {
  transform: scale(1.035);
}

.visual-feature-grid img,
.showcase-grid img,
.wide-visual img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.wide-visual img {
  aspect-ratio: auto;
}

.visual-feature-grid h2,
.showcase-grid h2 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 56px);
}

.visual-feature-grid p:not(.eyebrow),
.showcase-grid p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.mini-metrics article {
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(180deg, #ffffff, #fff8f2),
    radial-gradient(circle at 14% 10%, rgba(185, 138, 70, 0.12), transparent 34%);
  box-shadow: 0 12px 32px rgba(35, 31, 28, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.mini-metrics article:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 95, 75, 0.2);
  box-shadow: 0 20px 46px rgba(35, 31, 28, 0.12);
}

.mini-metrics strong,
.mini-metrics span {
  display: block;
}

.mini-metrics strong {
  color: var(--coral-dark);
  font-size: 20px;
}

.mini-metrics span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.35;
}

.process {
  background: #fffdf9;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1120px, 100%);
  margin: 0 auto;
}

.process-grid article {
  min-height: 230px;
  padding: 26px;
  box-shadow: none;
}

.product-showcase {
  background: #f2efea;
}

.advantages {
  background:
    radial-gradient(circle at 10% 16%, rgba(216, 95, 75, 0.18), transparent 26%),
    radial-gradient(circle at 88% 74%, rgba(13, 119, 115, 0.2), transparent 28%),
    linear-gradient(135deg, #17201d 0%, #263634 58%, #1a2021 100%);
  color: var(--white);
}

.advantages .eyebrow,
.advantages .advantage-number {
  color: #ffb29f;
}

.advantages h2 {
  color: var(--white);
  background: linear-gradient(92deg, #ffffff 0%, #ffe1d6 54%, #d9b47a 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.advantage-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(1080px, 100%);
  margin: 0 auto;
}

.advantage-grid article {
  padding: clamp(28px, 5vw, 48px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(45, 53, 55, 0.82);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.advantage-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.brand-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  width: min(1160px, 100%);
  margin: 36px auto 0;
  border: 1px solid #dcd3c9;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fff8f2);
  box-shadow: var(--shadow);
}

.brand-tile {
  display: grid;
  min-height: 96px;
  align-content: center;
  justify-items: center;
  gap: 10px;
  border-right: 1px solid #dcd3c9;
  border-bottom: 1px solid #dcd3c9;
  border-radius: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  text-align: center;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.brand-tile:hover {
  z-index: 1;
  background: linear-gradient(180deg, #ffffff, #fff7f1);
  box-shadow: inset 0 0 0 1px rgba(216, 95, 75, 0.18), 0 16px 34px rgba(35,31,28,0.1);
  transform: translateY(-4px) scale(1.015);
}

.brand-tile strong {
  color: var(--graphite);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.6vw, 21px);
  line-height: 1.1;
}

.brand-tile span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.contact {
  padding-top: 20px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 36px;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(29, 37, 38, 0.98), rgba(40, 65, 63, 0.96) 58%, rgba(157, 74, 62, 0.96)),
    linear-gradient(90deg, rgba(255,255,255,0.06), transparent);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  position: relative;
}

.contact-panel::after {
  position: absolute;
  inset: auto -10% -42% 48%;
  height: 260px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 217, 207, 0.18), transparent 65%);
  content: "";
}

.contact-panel h2 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(34px, 4.2vw, 56px);
  background: linear-gradient(92deg, #ffffff 0%, #ffe1d6 56%, #d9b47a 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-panel p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

address {
  display: grid;
  align-content: center;
  gap: 14px;
  font-style: normal;
}

address p {
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

address strong,
address span,
address a {
  display: block;
}

address strong {
  color: #ffd9cf;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer a {
  color: var(--coral-dark);
  font-weight: 800;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: grid;
  gap: 10px;
}

.contact-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  border: 0;
  color: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.contact-icon:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  filter: saturate(1.08);
}

.contact-icon:active {
  transform: translateY(-1px) scale(0.98);
}

.contact-icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.contact-icon span {
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

.floating-contact .whatsapp {
  background: #25d366;
}

.floating-contact .zalo {
  background: #0068ff;
}

.floating-contact .telegram {
  background: #229ed9;
}

.floating-contact .messenger {
  background: linear-gradient(135deg, #00b2ff, #006aff 48%, #a033ff 100%);
}

.quote-modal {
  width: min(680px, calc(100% - 28px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.manager-panel {
  position: fixed;
  right: 84px;
  bottom: 18px;
  z-index: 19;
  width: min(360px, calc(100vw - 28px));
  border: 1px solid rgba(230, 222, 214, 0.92);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 28px 80px rgba(23, 32, 29, 0.24);
  backdrop-filter: blur(18px) saturate(1.1);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.manager-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.manager-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.manager-panel-head p,
.manager-channel {
  margin: 0;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.manager-panel h2 {
  margin: 5px 0 0;
  color: var(--graphite);
  font-size: 22px;
  line-height: 1.08;
}

.manager-close {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--graphite);
  cursor: pointer;
  font-size: 22px;
}

.manager-channel {
  margin-top: 16px;
  color: var(--teal);
}

.manager-grid {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.manager-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
  background: linear-gradient(180deg, #ffffff, #fff8f2);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.manager-card:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 95, 75, 0.28);
  box-shadow: 0 16px 34px rgba(35,31,28,0.12);
}

.manager-avatar {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 18px rgba(35, 31, 28, 0.16);
}

.manager-card strong,
.manager-card em {
  display: block;
}

.manager-card strong {
  color: var(--graphite);
  font-size: 18px;
}

.manager-card em {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.quote-modal::backdrop {
  background: rgba(15, 18, 18, 0.58);
}

.quote-form {
  position: relative;
  padding: clamp(24px, 5vw, 42px);
  background: var(--paper);
}

.quote-form h2 {
  margin: 0 0 22px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  font-size: 24px;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

label.full {
  grid-column: 1 / -1;
}

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

textarea {
  resize: vertical;
}

menu {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.72s ease, transform 0.72s ease;
  transition-delay: calc(var(--reveal-index, 0) * 55ms);
}

.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.09) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes imageShine {
  0% {
    opacity: 0;
    transform: translateX(-70%);
  }

  30% {
    opacity: 0.75;
  }

  100% {
    opacity: 0;
    transform: translateX(70%);
  }
}

[dir="rtl"] .hero-overlay {
  background:
    linear-gradient(270deg, rgba(18, 21, 20, 0.92) 0%, rgba(18, 21, 20, 0.72) 42%, rgba(18, 21, 20, 0.18) 100%),
    linear-gradient(0deg, rgba(18, 21, 20, 0.68) 0%, rgba(18, 21, 20, 0) 42%);
}

[dir="rtl"] .hero-bg {
  transform: scaleX(-1) scale(1.02);
}

[dir="rtl"] .modal-close {
  right: auto;
  left: 14px;
}

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

[dir="rtl"] .language-panel-head,
[dir="rtl"] .market-option {
  text-align: right;
}

[dir="rtl"] .language-region-list {
  padding: 0 22px 18px 14px;
}

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

  .nav-toggle {
    display: block;
    order: 3;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .site-nav a::after {
    left: 14px;
    right: auto;
    transform: none;
  }

  .site-nav a:hover::after,
  .site-nav a.active::after {
    width: 44px;
  }

  .stats,
  .service-grid,
  .advantage-grid,
  .intro-grid,
  .contact-panel,
  .visual-feature-grid,
  .visual-feature-grid.reverse,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .visual-feature-grid.reverse figure {
    order: 0;
  }

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

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

@media (max-width: 620px) {
  .site-header {
    gap: 10px;
    padding: 12px 14px;
  }

  .brand-domain {
    display: none;
  }

  .language-button {
    min-height: 40px;
    padding: 0 11px;
  }

  .language-current-name {
    max-width: 78px;
    font-size: 13px;
  }

  .language-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 72px;
    width: auto;
    max-height: calc(100svh - 92px);
  }

  [dir="rtl"] .language-panel {
    left: 12px;
    right: 12px;
  }

  .language-panel-head {
    padding: 18px 18px 10px;
  }

  .language-panel-head h2 {
    font-size: 23px;
  }

  .language-search {
    padding: 0 18px 14px;
  }

  .language-region-list {
    max-height: calc(100svh - 248px);
    padding: 0 12px 16px 18px;
  }

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

  .eyebrow {
    gap: 9px;
    font-size: 18px;
  }

  .eyebrow::after {
    width: 24px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-bg {
    background-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(18, 21, 20, 0.94) 0%, rgba(18, 21, 20, 0.74) 72%, rgba(18, 21, 20, 0.34) 100%),
      linear-gradient(0deg, rgba(18, 21, 20, 0.76) 0%, rgba(18, 21, 20, 0) 46%);
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-top: 118px;
  }

  .hero h1 {
    font-size: clamp(38px, 14vw, 56px);
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  body[data-locale="zh-CN"] .hero h1 {
    font-size: clamp(26px, 8.6vw, 42px);
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .section h2,
  .visual-feature-grid h2,
  .showcase-grid h2,
  .contact-panel h2,
  body[data-locale="zh-CN"] .section h2,
  body[data-locale="zh-CN"] .visual-feature-grid h2,
  body[data-locale="zh-CN"] .showcase-grid h2,
  body[data-locale="zh-CN"] .contact-panel h2 {
    max-width: 100%;
    font-size: clamp(28px, 9.6vw, 42px);
    line-height: 1.1;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  menu {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .feature-list,
  .form-grid,
  .process-grid,
  .mini-metrics {
    grid-template-columns: 1fr;
  }

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

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

  .stats article {
    min-height: 92px;
    padding: 14px;
  }

  .stats strong {
    font-size: 22px;
  }

  .section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .map-label {
    min-height: 28px;
    padding: 6px 8px 6px 7px;
    font-size: 11px;
  }

  .map-label::before {
    width: 7px;
    height: 7px;
    flex-basis: 7px;
    box-shadow: 0 0 0 4px rgba(216, 95, 75, 0.12);
  }

  .map-us {
    left: 18%;
    top: 45%;
  }

  .map-latam {
    left: 28%;
    top: 72%;
  }

  .map-eu {
    left: 50%;
    top: 34%;
  }

  .map-africa {
    left: 50%;
    top: 62%;
  }

  .map-cn {
    left: 72%;
    top: 43%;
  }

  .map-jp {
    left: 86%;
    top: 36%;
  }

  .map-sea {
    left: 68%;
    top: 64%;
  }

  .map-tw {
    left: 82%;
    top: 55%;
  }

  .floating-contact {
    left: auto;
    right: 14px;
    grid-template-columns: 1fr;
  }

  .contact-icon {
    width: 54px;
    min-width: 54px;
    height: 54px;
    min-height: 54px;
    border-radius: 50%;
    overflow: hidden;
  }

  .manager-panel {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    padding: 16px;
  }

  .manager-panel h2 {
    font-size: 20px;
  }

  .footer {
    display: grid;
    padding-bottom: 270px;
  }
}

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

  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}
