:root {
  --ink: #0b1220;
  --muted: #637083;
  --line: #dce5ee;
  --panel: #f4f7fb;
  --white: #ffffff;
  --blue: #075aa8;
  --cyan: #00a8c7;
  --green: #20a876;
  --gold: #d7b56d;
  --steel: #e8eef4;
  --dark: #050d17;
  --shadow: 0 26px 80px rgba(7, 17, 28, 0.14);
  --soft-shadow: 0 16px 44px rgba(16, 24, 32, 0.07);
  --premium-surface: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 253, 0.8));
  --premium-border: rgba(255, 255, 255, 0.72);
  --premium-shadow: 0 26px 80px rgba(8, 22, 36, 0.075);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Inter", "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 168, 199, 0.07), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(215, 181, 109, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 48%, #ffffff 100%);
  line-height: 1.6;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: #ffffff;
  background: var(--blue);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 68px);
  color: var(--white);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(220, 229, 238, 0.8);
  box-shadow: 0 18px 44px rgba(16, 24, 32, 0.08);
  backdrop-filter: blur(20px) saturate(150%);
}

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

.brand-logo {
  width: clamp(178px, 21vw, 286px);
  height: auto;
  object-fit: contain;
}

.brand-logo-dark {
  display: none;
}

.site-header.is-scrolled .brand-logo-light,
.site-header.is-open .brand-logo-light {
  display: none;
}

.site-header.is-scrolled .brand-logo-dark,
.site-header.is-open .brand-logo-dark {
  display: block;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand small {
  color: currentColor;
  font-size: 11px;
  opacity: 0.72;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.25vw, 20px);
  font-size: 14px;
  font-weight: 700;
}

.nav a,
.nav-dropdown-trigger {
  position: relative;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  opacity: 0.9;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.nav a::after,
.nav-dropdown-trigger::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.45);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.nav a:hover,
.nav-dropdown-trigger:hover,
.nav-dropdown.is-open .nav-dropdown-trigger {
  opacity: 1;
}

.nav a:hover::after,
.nav-dropdown-trigger:hover::after,
.nav-dropdown.is-open .nav-dropdown-trigger::after {
  opacity: 0.7;
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
}

.nav-chevron {
  font-size: 14px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-chevron,
.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  z-index: 35;
  display: grid;
  min-width: 190px;
  overflow: hidden;
  border: 1px solid rgba(220, 229, 238, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 58px rgba(16, 24, 32, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown.is-open .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-panel a {
  display: block;
  padding: 15px 22px;
  color: var(--ink);
  border-bottom: 1px solid rgba(220, 229, 238, 0.78);
  white-space: nowrap;
}

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

.nav-dropdown-panel a:hover {
  color: var(--blue);
  background: rgba(7, 90, 168, 0.06);
}

.nav-dropdown-panel a::after {
  display: none;
}

.nav-cta {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .nav-cta,
.site-header.is-open .nav-cta {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.nav-cta::after {
  display: none;
}

.language-menu {
  position: relative;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 8px 12px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.site-header.is-scrolled .language-trigger,
.site-header.is-open .language-trigger {
  border-color: rgba(7, 90, 168, 0.18);
  background: rgba(7, 90, 168, 0.06);
}

.language-chevron {
  font-size: 15px;
  line-height: 1;
}

.language-options {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 40;
  display: none;
  min-width: 186px;
  padding: 12px;
  border: 1px solid rgba(220, 229, 238, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 58px rgba(16, 24, 32, 0.16);
}

.language-menu.is-open .language-options {
  display: grid;
  gap: 4px;
}

.language-options button {
  display: grid;
  grid-template-columns: 30px 1fr 18px;
  gap: 10px;
  align-items: center;
  width: 100%;
  border: 0;
  border-radius: 6px;
  padding: 12px 10px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.language-options button:hover {
  background: rgba(7, 90, 168, 0.07);
}

.language-options b {
  color: #d91f18;
  font-size: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

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

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

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transform: scale(1.025);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 79% 20%, rgba(0, 168, 199, 0.28), transparent 28%),
    radial-gradient(circle at 22% 72%, rgba(215, 181, 109, 0.16), transparent 26%),
    linear-gradient(0deg, rgba(5, 13, 23, 0.68), transparent 42%);
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 58px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), currentColor);
}

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

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.3;
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 42px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.button.primary {
  position: relative;
  overflow: hidden;
}

.button.primary::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0 28%, rgba(255, 255, 255, 0.28) 42%, transparent 58% 100%);
  opacity: 0;
  transform: translateX(-45%);
  transition:
    opacity 0.25s ease,
    transform 0.45s ease;
}

.button.primary:hover::before {
  opacity: 1;
  transform: translateX(45%);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(7, 90, 168, 0.18);
}

.button.primary {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent),
    linear-gradient(135deg, var(--blue), var(--cyan));
}

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

.button.danger {
  color: #b42318;
  border-color: rgba(180, 35, 24, 0.32);
  background: rgba(180, 35, 24, 0.04);
}

.button.danger:hover {
  border-color: rgba(180, 35, 24, 0.56);
  box-shadow: 0 16px 34px rgba(180, 35, 24, 0.12);
}

.button.dark-button {
  color: var(--ink);
  border-color: rgba(16, 24, 32, 0.18);
  background: rgba(255, 255, 255, 0.86);
}

.hero-stats {
  display: grid;
  max-width: 820px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 168, 199, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px) saturate(130%);
}

.hero-stats article {
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stats article:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.section {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 104px 0;
}

.section::after {
  position: absolute;
  right: 0;
  bottom: 42px;
  left: 0;
  z-index: 0;
  height: 1px;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(7, 90, 168, 0.1), rgba(0, 168, 199, 0.14), transparent);
}

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

.home-page #capabilities,
.home-page #products,
.home-page #quality,
.home-page #credentials,
.home-page #equipment,
.home-page #cases,
.home-page #culture,
.home-page #rfq,
.home-page #contact,
.home-page #careers {
  display: none;
}

.page-hero {
  padding: 160px max(20px, calc((100% - 1120px) / 2)) 84px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 24%, rgba(0, 168, 199, 0.18), transparent 30%),
    linear-gradient(105deg, rgba(5, 13, 23, 0.9), rgba(5, 13, 23, 0.6) 46%, rgba(7, 90, 168, 0.2)),
    url("assets/cnc-operator-optimized.jpg") center / cover;
}

.page-about .page-hero {
  background:
    radial-gradient(circle at 74% 22%, rgba(0, 168, 199, 0.18), transparent 30%),
    linear-gradient(105deg, rgba(5, 13, 23, 0.9), rgba(5, 13, 23, 0.58) 48%, rgba(7, 90, 168, 0.18)),
    url("assets/cnc-operator-optimized.jpg") center right / cover;
}

.page-manufacturing .page-hero {
  background:
    radial-gradient(circle at 78% 24%, rgba(0, 168, 199, 0.18), transparent 30%),
    linear-gradient(105deg, rgba(5, 13, 23, 0.9), rgba(5, 13, 23, 0.58) 48%, rgba(7, 90, 168, 0.18)),
    url("assets/cnc-milling-optimized.jpg") center / cover;
}

.page-support .page-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 168, 199, 0.18), transparent 30%),
    linear-gradient(105deg, rgba(5, 13, 23, 0.9), rgba(5, 13, 23, 0.56) 48%, rgba(7, 90, 168, 0.18)),
    url("assets/auto-components-optimized.jpg") center / cover;
}

.page-quote .page-hero {
  background:
    radial-gradient(circle at 78% 24%, rgba(0, 168, 199, 0.18), transparent 30%),
    linear-gradient(105deg, rgba(5, 13, 23, 0.9), rgba(5, 13, 23, 0.58) 48%, rgba(7, 90, 168, 0.18)),
    url("assets/cnc-milling-optimized.jpg") center / cover;
}

.page-careers .page-hero {
  background:
    radial-gradient(circle at 76% 18%, rgba(0, 168, 199, 0.16), transparent 30%),
    linear-gradient(105deg, rgba(5, 13, 23, 0.88), rgba(5, 13, 23, 0.5) 48%, rgba(7, 90, 168, 0.12)),
    url("assets/careers-handshake-real.jpg") center / cover;
}

.page-hero .section-kicker {
  color: #7ee4f6;
}

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

.page-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.page-main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(0, 168, 199, 0.075), transparent 28%),
    radial-gradient(circle at 92% 34%, rgba(7, 90, 168, 0.055), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(215, 181, 109, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff, #f8fafc 48%, #ffffff);
}

.page-main::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 90, 168, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 90, 168, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 76% 10%, rgba(0, 168, 199, 0.1), transparent 22%),
    radial-gradient(circle at 22% 55%, rgba(215, 181, 109, 0.075), transparent 18%);
  background-size:
    56px 56px,
    56px 56px,
    auto,
    auto;
  opacity: 0.72;
  mask-image: linear-gradient(180deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

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

.about-dynamic-surface {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 8%, rgba(0, 168, 199, 0.11), transparent 34%),
    radial-gradient(circle at 14% 78%, rgba(215, 181, 109, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 46%, #ffffff 100%);
}

.page-dynamic-surface {
  margin-top: 0;
}

.about-dynamic-surface::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.88)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), transparent 16%, transparent 84%, rgba(255, 255, 255, 0.86));
}

.about-wave-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.74;
}

.about-dynamic-surface > .section {
  position: relative;
  z-index: 1;
}

.about-dynamic-surface .culture,
.about-dynamic-surface .credentials,
.about-dynamic-surface .products,
.about-dynamic-surface .quality {
  background: transparent;
}

.about-dynamic-surface .section-head {
  padding: 24px;
  border-radius: 10px;
  border: 0;
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 168, 199, 0.11), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.64));
  box-shadow: 0 18px 52px rgba(16, 24, 32, 0.045);
  backdrop-filter: blur(12px) saturate(128%);
}

.about-dynamic-surface .section-head::after {
  display: block;
  width: 86px;
  height: 2px;
  margin-top: 18px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--cyan), transparent);
}

.page-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.page-link-grid a {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 24px;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 168, 199, 0.13), transparent 28%),
    var(--premium-surface);
  box-shadow: var(--premium-shadow);
}

.page-link-grid a::before {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--cyan), transparent);
}

.page-link-grid b {
  color: var(--blue);
  font-size: 20px;
}

.page-link-grid span {
  color: var(--muted);
}

.rfq-helper {
  margin-top: 28px;
  padding: 22px;
  border: 0;
  border-radius: 12px;
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 168, 199, 0.12), transparent 32%),
    var(--premium-surface);
  box-shadow: var(--premium-shadow);
}

.rfq-helper ul {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.recruit-info {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  overflow: hidden;
  margin-bottom: 34px;
  padding: 28px;
  border: 0;
  border-radius: 14px;
  background:
    radial-gradient(circle at 90% 12%, rgba(0, 168, 199, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 252, 0.98));
  box-shadow: var(--premium-shadow);
}

.recruit-info::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--gold), var(--cyan), var(--blue));
}

.recruit-info div {
  position: relative;
  min-width: 0;
  padding: 18px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.recruit-info span,
.contact-grid article span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.recruit-info b,
.contact-grid article b {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.recruit-info p {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px 18px;
  border-radius: 10px;
  color: var(--muted);
  background: rgba(7, 90, 168, 0.05);
}

.job-grid article,
.contact-grid article {
  border: 0;
  border-radius: 12px;
  background: var(--premium-surface);
  box-shadow: var(--premium-shadow);
}

.job-grid article {
  display: grid;
  min-height: 260px;
  padding: 24px;
}

.job-grid article span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.job-grid article p,
.job-grid article small {
  color: var(--muted);
}

.published-jobs-head {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 46px 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(7, 90, 168, 0.12);
}

.published-jobs-head h2 {
  margin-bottom: 0;
}

.published-jobs-head .button.secondary,
.publisher-actions .button.secondary {
  color: var(--blue);
  border-color: rgba(7, 90, 168, 0.22);
  background: rgba(255, 255, 255, 0.76);
}

.published-jobs-head .button.secondary:hover,
.publisher-actions .button.secondary:hover {
  border-color: rgba(7, 90, 168, 0.42);
  background: #ffffff;
}

.job-list {
  display: grid;
  gap: 20px;
}

.job-post {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.2fr) minmax(132px, auto);
  gap: 26px;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.98)),
    var(--white);
  box-shadow: var(--premium-shadow);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.job-post::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.job-post:hover {
  transform: translateY(-3px);
  border-color: rgba(7, 90, 168, 0.28);
  box-shadow: 0 24px 58px rgba(16, 24, 32, 0.1);
}

.job-post > div {
  min-width: 0;
  padding: 30px;
}

.job-post > div:first-child {
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 80% 12%, rgba(0, 168, 199, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(7, 90, 168, 0.06), rgba(255, 255, 255, 0.82));
}

.job-post > div:first-child > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.job-post h3 {
  margin: 8px 0 14px;
  font-size: 24px;
}

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

.job-meta small {
  display: block;
  padding: 8px 10px;
  border: 1px solid rgba(7, 90, 168, 0.1);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.64);
  font-weight: 700;
}

.job-content {
  display: grid;
  align-content: center;
  gap: 9px;
  padding-left: 10px;
}

.job-content b {
  margin-top: 4px;
  color: var(--ink);
  font-size: 18px;
}

.job-content p {
  margin: 0;
  color: var(--muted);
}

.job-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  align-self: center;
  justify-content: flex-end;
  padding-left: 0;
}

.job-actions .button.secondary {
  min-width: 126px;
  color: var(--blue);
  border-color: rgba(7, 90, 168, 0.26);
  background: linear-gradient(135deg, rgba(7, 90, 168, 0.09), rgba(0, 168, 199, 0.08));
}

.job-actions .button.danger {
  min-width: 126px;
  background: rgba(180, 35, 24, 0.05);
}

.job-actions .button.secondary:hover {
  border-color: rgba(7, 90, 168, 0.48);
  background: linear-gradient(135deg, rgba(7, 90, 168, 0.14), rgba(0, 168, 199, 0.12));
}

.job-empty {
  margin: 16px 0 0;
  padding: 18px;
  border: 1px dashed rgba(7, 90, 168, 0.28);
  border-radius: 10px;
  color: var(--muted);
  background: rgba(7, 90, 168, 0.04);
}

.job-publisher {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: 28px;
  overflow: hidden;
  margin: 44px 0 0;
  padding: 34px;
  border: 0;
  border-radius: 14px;
  background:
    radial-gradient(circle at 92% 8%, rgba(0, 168, 199, 0.16), transparent 26%),
    linear-gradient(135deg, #ffffff, #f5f9fc);
  box-shadow: var(--premium-shadow);
}

.job-publisher::before {
  position: absolute;
  top: 0;
  right: 34px;
  left: 34px;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--cyan));
}

.publisher-copy {
  position: sticky;
  top: 110px;
  align-self: start;
  padding-top: 12px;
}

.job-publisher p {
  color: var(--muted);
}

.publisher-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.publisher-form label,
.publisher-form span {
  display: grid;
  gap: 8px;
}

.publisher-form span {
  font-size: 14px;
  font-weight: 800;
}

.publisher-form input,
.publisher-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.publisher-form input:focus,
.publisher-form textarea:focus {
  border-color: rgba(7, 90, 168, 0.56);
  outline: none;
  box-shadow: 0 0 0 4px rgba(7, 90, 168, 0.1);
}

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

.publisher-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.career-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(520px, 1.38fr);
  gap: 24px;
  align-items: start;
  margin-top: 42px;
}

.career-benefits-card {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 10%, rgba(0, 168, 199, 0.14), transparent 28%),
    linear-gradient(145deg, #ffffff, #f6f9fc);
  box-shadow: 0 18px 52px rgba(16, 24, 32, 0.07);
}

.career-benefits-card h2 {
  margin-bottom: 0;
}

.career-steps {
  counter-reset: hiring-step;
  display: grid;
  gap: 10px;
}

.career-steps span {
  position: relative;
  min-height: 50px;
  padding: 12px 14px 12px 48px;
  border: 1px solid rgba(7, 90, 168, 0.12);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.career-steps span::before {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  content: counter(hiring-step);
  counter-increment: hiring-step;
  font-size: 13px;
  line-height: 26px;
  place-items: center;
}

.contact-grid article {
  min-height: 190px;
  padding: 26px;
}

.contact-grid article small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.map-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 20px;
  padding: 34px;
  border-radius: 10px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 168, 199, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(5, 13, 23, 0.98), rgba(11, 92, 173, 0.78)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 34px);
  box-shadow: var(--shadow);
}

.map-card p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-head {
  position: relative;
}

.section-head::before {
  position: absolute;
  top: -18px;
  left: -22px;
  z-index: -1;
  width: min(460px, 80vw);
  height: 180px;
  border-radius: 999px;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 168, 199, 0.09), transparent 68%);
  filter: blur(2px);
}

.about-dynamic-surface .section-head::before {
  content: none;
}

.section-head p,
.split-copy p,
.rfq-copy p,
.footer p {
  color: var(--muted);
  font-size: 17px;
}

.section-head h2 + p,
.rfq-copy h2 + p {
  margin-bottom: 0;
}

.standard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 4px;
}

.standard-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(11, 92, 173, 0.18);
  border-radius: 8px;
  color: #174a7a;
  background: linear-gradient(135deg, rgba(11, 92, 173, 0.08), rgba(0, 168, 199, 0.05));
  font-size: 13px;
  font-weight: 800;
}

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

.intro-grid article,
.quality-grid article,
.case-strip article,
.process-panel,
.rfq-form {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 168, 199, 0.1), transparent 30%),
    var(--premium-surface);
  box-shadow: var(--premium-shadow);
}

.intro-grid article::before,
.quality-grid article::before,
.process-panel::before,
.rfq-form::before,
.career-form::after,
.job-publisher::after,
.recruit-info::after,
.career-benefits-card::before,
.contact-card::before {
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 2px;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, var(--gold), rgba(0, 168, 199, 0.72), transparent);
}

.intro-grid article,
.quality-grid article,
.product-card,
.contact-card,
.culture-grid article,
.values-row article,
.job-card,
.career-notice,
.career-meta article,
.career-form {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.intro-grid article:hover,
.quality-grid article:hover,
.product-card:hover,
.contact-card:hover,
.culture-grid article:hover,
.values-row article:hover,
.job-card:hover,
.career-notice:hover,
.career-meta article:hover,
.career-form:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 30px 82px rgba(8, 22, 36, 0.12);
}

.intro-grid article {
  padding: 30px;
}

.card-index {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.intro-grid article::after,
.quality-grid article::after,
.credential-grid article::after,
.culture-grid article::after,
.job-card::after,
.career-meta article::after,
.rfq-guide article::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-right: 1px solid rgba(7, 90, 168, 0.12);
  border-bottom: 1px solid rgba(7, 90, 168, 0.12);
  border-radius: 0 0 10px 0;
  content: "";
  pointer-events: none;
}

.intro {
  padding-bottom: 54px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.capability-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.capability-list div {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.capability-list span {
  color: var(--muted);
}

.process-panel {
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 248, 251, 0.94)),
    url("assets/cnc-milling-optimized.jpg") center / cover;
  background-blend-mode: screen;
}

.process-panel ol {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-panel li {
  position: relative;
  padding: 18px 18px 18px 62px;
  border: 1px solid rgba(11, 92, 173, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
}

.process-panel li::before {
  position: absolute;
  top: 20px;
  left: 18px;
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  color: var(--blue);
  font-weight: 900;
}

.process-panel span,
.process-panel small {
  display: block;
}

.process-panel small {
  color: var(--muted);
}

.products,
.quality {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - 1120px) / 2));
}

.products {
  background:
    linear-gradient(180deg, #f6f9fc, #eef4f9),
    repeating-linear-gradient(90deg, rgba(11, 92, 173, 0.04) 0 1px, transparent 1px 40px);
}

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

.product-card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: var(--premium-surface);
  box-shadow: var(--premium-shadow);
}

.product-card img,
.product-visual {
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-visual {
  background:
    linear-gradient(135deg, rgba(11, 92, 173, 0.16), rgba(0, 166, 200, 0.2)),
    repeating-linear-gradient(90deg, rgba(16, 24, 32, 0.08) 0 1px, transparent 1px 24px),
    linear-gradient(135deg, #eef5fb, #d7e6ef);
}

.product-visual.visual-green {
  background:
    linear-gradient(135deg, rgba(40, 166, 118, 0.2), rgba(11, 92, 173, 0.12)),
    radial-gradient(circle at 38% 42%, rgba(255, 255, 255, 0.9) 0 10%, transparent 11%),
    repeating-linear-gradient(0deg, rgba(16, 24, 32, 0.08) 0 1px, transparent 1px 22px),
    #e7f4ed;
}

.product-card div:last-child {
  padding: 26px;
}

.product-card p,
.quality-grid p,
.case-strip p,
.intro-grid p {
  color: var(--muted);
}

.product-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 900;
}

.product-card a::after {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.product-card a:hover::after {
  transform: translateX(4px);
}

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

.quality-grid article {
  padding: 26px;
}

.cases {
  padding-top: 50px;
}

.case-strip article {
  min-height: 210px;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(7, 17, 28, 0.9), rgba(11, 92, 173, 0.72)),
    url("assets/cnc-operator-optimized.jpg") center / cover;
}

.case-strip article:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(7, 17, 28, 0.88), rgba(40, 166, 118, 0.62)),
    url("assets/cnc-milling-optimized.jpg") center / cover;
}

.case-strip p {
  color: rgba(255, 255, 255, 0.78);
}

.credentials {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - 1120px) / 2));
  background:
    radial-gradient(circle at 90% 12%, rgba(215, 181, 109, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff, #f4f8fb);
}

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

.credential-grid article {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 290px;
  align-content: start;
  padding: 26px;
  border: 0;
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 12%, rgba(215, 181, 109, 0.13), transparent 30%),
    var(--premium-surface);
  box-shadow: var(--premium-shadow);
}

.credential-grid span,
.case-grid span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-grid b {
  display: block;
  padding: 22px 22px 0;
  color: var(--ink);
  font-size: 18px;
}

.credential-grid h3 {
  margin-top: 32px;
}

.credential-grid p,
.equipment-grid p,
.case-grid p {
  color: var(--muted);
}

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

.equipment-grid article,
.case-grid article {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: var(--premium-surface);
  box-shadow: var(--premium-shadow);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.equipment-grid article:hover,
.case-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(7, 90, 168, 0.28);
  box-shadow: 0 24px 58px rgba(16, 24, 32, 0.1);
}

.equipment-grid img {
  height: 250px;
  object-fit: cover;
}

.equipment-grid div,
.case-grid article {
  padding: 24px;
}

.case-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.case-grid article {
  min-height: 250px;
}

.case-grid h3 {
  margin-top: 24px;
}

.culture {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - 1120px) / 2));
  background:
    radial-gradient(circle at 88% 10%, rgba(0, 168, 199, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff, rgba(246, 248, 251, 0.94)),
    repeating-linear-gradient(90deg, rgba(11, 92, 173, 0.035) 0 1px, transparent 1px 36px);
}

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

.culture-grid article {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 26px;
  border: 0;
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 168, 199, 0.11), transparent 30%),
    var(--premium-surface);
  box-shadow: var(--premium-shadow);
}

.culture-grid article span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.culture-grid article p {
  color: var(--muted);
  font-size: 17px;
}

.about-dynamic-surface :is(
  .culture-grid article,
  .credential-grid article,
  .equipment-grid article,
  .case-grid article,
  .quality-grid article,
  .product-card,
  .process-panel,
  .contact-grid article,
  .map-card
) {
  border: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 168, 199, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72) 54%, rgba(247, 250, 252, 0.86));
  box-shadow: 0 22px 62px rgba(16, 24, 32, 0.055);
  backdrop-filter: blur(10px) saturate(122%);
}

.about-dynamic-surface :is(
  .culture-grid article,
  .credential-grid article,
  .equipment-grid article,
  .case-grid article,
  .quality-grid article,
  .product-card,
  .process-panel,
  .contact-grid article,
  .map-card
):hover {
  border-color: transparent;
  box-shadow: 0 26px 70px rgba(16, 24, 32, 0.085);
}

.about-dynamic-surface .process-panel {
  background:
    radial-gradient(circle at 84% 14%, rgba(0, 168, 199, 0.11), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68)),
    url("assets/cnc-milling-optimized.jpg") center / cover;
  background-blend-mode: normal, screen, soft-light;
}

.about-dynamic-surface .process-panel li,
.about-dynamic-surface .capability-list div {
  border: 0;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 -1px 0 rgba(7, 90, 168, 0.06);
}

.about-dynamic-surface .product-card div:last-child,
.about-dynamic-surface .equipment-grid div,
.about-dynamic-surface .case-grid article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72));
}

.about-dynamic-surface .map-card {
  color: var(--ink);
}

.about-dynamic-surface .map-card p {
  color: var(--muted);
}

.values-block {
  margin-top: 18px;
  padding: clamp(26px, 4vw, 38px);
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 12%, rgba(0, 168, 199, 0.28), transparent 28%),
    radial-gradient(circle at 18% 86%, rgba(215, 181, 109, 0.18), transparent 26%),
    linear-gradient(135deg, #050d17, #0d2238 54%, #10243a);
  box-shadow: 0 32px 92px rgba(5, 13, 23, 0.2);
}

.values-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.values-head span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #d7b56d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.values-head h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
}

.values-row article {
  display: grid;
  min-height: 132px;
  align-content: space-between;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.055));
}

.values-row b {
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
}

.values-row small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.rfq {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(620px, 1.22fr);
  gap: clamp(44px, 5vw, 78px);
  align-items: start;
}

.rfq-copy {
  position: sticky;
  top: 112px;
}

.rfq-guide {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.rfq-guide article {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 0;
  border-radius: 12px;
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 168, 199, 0.12), transparent 32%),
    var(--premium-surface);
  box-shadow: var(--premium-shadow);
}

.rfq-guide b,
.rfq-guide span {
  display: block;
}

.rfq-guide b {
  margin-bottom: 6px;
  color: var(--ink);
}

.rfq-guide span {
  color: var(--muted);
  font-size: 14px;
}

.rfq-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  padding: 30px;
}

.rfq-form label,
.rfq-form span {
  display: grid;
  gap: 8px;
}

.rfq-form span {
  font-size: 14px;
  font-weight: 800;
}

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.rfq-form input:focus,
.rfq-form select:focus,
.rfq-form textarea:focus {
  border-color: rgba(7, 90, 168, 0.56);
  outline: none;
  box-shadow: 0 0 0 4px rgba(7, 90, 168, 0.1);
}

.rfq-form textarea {
  resize: vertical;
}

.file-upload {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px dashed rgba(7, 90, 168, 0.3);
  border-radius: 12px;
  background:
    radial-gradient(circle at 90% 12%, rgba(0, 168, 199, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 253, 0.76));
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.file-upload:hover,
.file-upload:focus-within {
  border-color: rgba(7, 90, 168, 0.72);
  box-shadow: 0 0 0 4px rgba(7, 90, 168, 0.08);
}

.file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload strong {
  color: var(--blue);
  font-size: 16px;
}

.file-upload b {
  color: var(--blue);
  font-size: 16px;
}

.file-upload small {
  color: var(--muted);
  font-size: 13px;
}

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

.upload-note,
.privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.upload-note {
  grid-column: 1 / -1;
  padding: 10px 12px;
  border: 1px solid rgba(7, 90, 168, 0.12);
  border-radius: 8px;
  background: rgba(7, 90, 168, 0.04);
}

.upload-note.is-error,
.form-result.is-error {
  color: #b42318;
}

.upload-note.is-error {
  border-color: rgba(180, 35, 24, 0.24);
  background: rgba(180, 35, 24, 0.06);
}

.privacy-note {
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(215, 181, 109, 0.12), rgba(7, 90, 168, 0.04));
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

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

.form-result {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.contact-section {
  padding-top: 28px;
}

.careers {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - 1120px) / 2));
  background:
    radial-gradient(circle at 88% 8%, rgba(0, 168, 199, 0.1), transparent 28%),
    radial-gradient(circle at 8% 42%, rgba(215, 181, 109, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 48%, #ffffff 100%);
}

.careers-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr);
  gap: 28px;
  align-items: start;
}

.career-content {
  display: grid;
  gap: 18px;
}

.career-notice {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(7, 90, 168, 0.18);
  border-radius: 12px;
  background:
    radial-gradient(circle at 86% 8%, rgba(0, 168, 199, 0.18), transparent 30%),
    radial-gradient(circle at 8% 92%, rgba(215, 181, 109, 0.12), transparent 26%),
    linear-gradient(135deg, #ffffff, #f7fbff);
  box-shadow: 0 24px 68px rgba(7, 17, 28, 0.09);
}

.career-notice::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--cyan));
}

.career-notice-head,
.career-notice p {
  grid-column: 1 / -1;
}

.career-notice-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 6px;
}

.career-notice-head span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.career-notice-head h3 {
  margin-bottom: 0;
  font-size: clamp(26px, 3vw, 34px);
}

.career-notice div {
  display: grid;
  gap: 7px;
  align-content: start;
  min-width: 0;
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(7, 90, 168, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.career-notice div span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.career-notice small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.career-notice b,
.career-notice a {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.career-notice p {
  margin-bottom: 0;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

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

.job-card,
.career-meta article,
.career-form {
  border: 0;
  border-radius: 14px;
  background: var(--premium-surface);
  box-shadow: var(--premium-shadow);
}

.job-card {
  display: grid;
  min-height: 320px;
  padding: 24px;
}

.job-card span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.job-card p,
.job-card li {
  color: var(--muted);
}

.job-card ul {
  display: grid;
  gap: 6px;
  margin: 14px 0 20px;
  padding-left: 18px;
}

.job-card a {
  align-self: end;
  color: var(--blue);
  font-weight: 900;
}

.career-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.career-meta article {
  padding: 24px;
}

.benefit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.benefit-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(7, 90, 168, 0.16);
  border-radius: 8px;
  color: #174a7a;
  background: rgba(7, 90, 168, 0.06);
  font-size: 13px;
  font-weight: 800;
}

.hiring-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.career-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  overflow: hidden;
  padding: 34px;
  border: 0;
  border-radius: 14px;
  background:
    radial-gradient(circle at 92% 8%, rgba(0, 168, 199, 0.13), transparent 26%),
    linear-gradient(145deg, #ffffff, #fbfdff);
  box-shadow: var(--premium-shadow);
}

.career-form::before {
  position: absolute;
  top: 0;
  right: 34px;
  left: 34px;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--gold));
}

.career-form.is-highlight {
  border-color: rgba(0, 168, 199, 0.56);
  box-shadow:
    0 0 0 4px rgba(0, 168, 199, 0.12),
    0 24px 58px rgba(16, 24, 32, 0.1);
}

.career-form h2,
.career-form h3 {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  padding-top: 4px;
}

.career-form label,
.career-form span {
  display: grid;
  gap: 8px;
}

.career-form span {
  font-size: 14px;
  font-weight: 800;
}

.career-form input,
.career-form select,
.career-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: rgba(255, 255, 255, 0.92);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.career-form input:focus,
.career-form select:focus,
.career-form textarea:focus {
  border-color: rgba(7, 90, 168, 0.56);
  outline: none;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(7, 90, 168, 0.1);
}

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

.contact-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent),
    linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 15px;
  font-weight: 900;
}

.contact-card p {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 800;
}

.contact-card small {
  display: block;
  color: var(--muted);
}

.contact-link,
.contact-card a {
  color: var(--blue);
  font-weight: 900;
}

.contact-link {
  display: inline-flex;
  margin-top: 22px;
}

.map-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 20px;
  padding: 34px;
  border-radius: 10px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 168, 199, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(5, 13, 23, 0.98), rgba(11, 92, 173, 0.78)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 34px);
  box-shadow: var(--shadow);
}

.map-panel p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  min-height: 360px;
  align-items: start;
  padding: 70px clamp(20px, 5vw, 68px) 92px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 34%, rgba(255, 255, 255, 0.02) 68%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.02) 44%, rgba(255, 255, 255, 0.08) 100%),
    url("assets/footer-misty-mountains-real.jpg") center 54% / cover,
    #f7f8f9;
  border-top: 1px solid rgba(16, 24, 32, 0.08);
}

.footer > div {
  padding: 0;
}

.footer-info {
  display: grid;
  gap: 12px;
  align-content: center;
  color: #0f1724;
  font-weight: 700;
}

.footer-info a {
  color: var(--ink);
  font-weight: 800;
}

.legal-page {
  background: #f6f8fb;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 5vw, 68px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.legal-header img {
  width: min(286px, 58vw);
}

.legal-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 96px;
}

.legal-main h1 {
  color: var(--ink);
}

.legal-main section {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.legal-main p {
  color: var(--muted);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

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

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

  .nav a {
    padding: 14px;
  }

  .nav-dropdown {
    border-bottom: 1px solid rgba(220, 229, 238, 0.72);
  }

  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 14px;
    text-align: left;
  }

  .nav-dropdown-trigger::after {
    display: none;
  }

  .nav-dropdown-panel {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 8px 10px;
    border-radius: 8px;
    opacity: 1;
    box-shadow: none;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown:hover .nav-dropdown-panel {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-panel {
    display: grid;
    transform: none;
  }

  .language-menu {
    padding: 10px 14px;
  }

  .language-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .language-options {
    position: static;
    margin-top: 10px;
    width: 100%;
    box-shadow: none;
  }

  .intro-grid,
  .product-grid,
  .page-link-grid,
  .case-strip,
  .credential-grid,
  .equipment-grid,
  .case-grid,
  .quality-grid,
  .contact-grid,
  .culture-grid,
  .careers-layout,
  .job-grid,
  .career-meta,
  .page-link-grid,
  .recruit-info,
  .career-layout,
  .job-post,
  .job-publisher,
  .publisher-form,
  .split,
  .rfq,
  .footer {
    grid-template-columns: 1fr;
  }

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

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

  .map-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .published-jobs-head,
  .job-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .job-post {
    gap: 0;
  }

  .job-post > div {
    padding: 24px;
  }

  .job-actions {
    padding-top: 0;
  }

  .career-benefits-card,
  .publisher-copy {
    position: static;
  }

  .publisher-form {
    padding: 18px;
  }

  .map-actions {
    justify-content: flex-start;
  }

  .rfq-copy {
    position: static;
  }

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

  .hero-stats article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-stats article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: 184px;
  }

  .site-header {
    padding: 14px 18px;
  }

  .hero {
    min-height: auto;
  }

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

  .section,
  .products,
  .quality,
  .credentials,
  .careers {
    width: calc(100% - 32px);
    padding: 64px 0;
  }

  .products,
  .quality,
  .credentials,
  .careers {
    width: 100%;
    padding-inline: 16px;
  }

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

  .rfq-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .upload-group {
    grid-template-columns: 1fr;
  }

  .career-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .job-meta {
    grid-template-columns: 1fr;
  }

  .job-post > div {
    padding: 20px;
  }

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

  .career-notice {
    grid-template-columns: 1fr;
    padding: 20px;
  }

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