:root {
  color-scheme: light;
  --ink: #172033;
  --muted: #5d6678;
  --line: #dfe4ec;
  --paper: #f7f9fc;
  --white: #ffffff;
  --blue: #0b63ce;
  --teal: #00998d;
  --navy: #0f2447;
  --gold: #c7922b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.brand img {
  display: block;
  width: clamp(142px, 16vw, 210px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--blue);
}

.static-nav {
  position: static;
}

.nav-cta,
.button,
.quote-panel button,
.rfq-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.nav-cta,
.button.primary,
.quote-panel button,
.rfq-form button {
  color: var(--white) !important;
  background: var(--blue);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.menu-button {
  display: none;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.language-switcher select {
  min-height: 38px;
  padding: 0 34px 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  background: var(--white);
  font: inherit;
  font-size: 14px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[dir="rtl"] .site-header,
[dir="rtl"] .hero-actions,
[dir="rtl"] .form-actions,
[dir="rtl"] .part-actions,
[dir="rtl"] .filter-chips {
  direction: rtl;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.55fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: 680px;
  padding: clamp(56px, 9vw, 110px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(15, 36, 71, 0.92), rgba(11, 99, 206, 0.78)),
    url("assets/galaxyic-supply-chain-hero.png") center / cover;
  color: var(--white);
}

.premium-header {
  background: rgba(255, 255, 255, 0.9);
}

.premium-hero {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  min-height: 760px;
  background:
    radial-gradient(circle at 78% 24%, rgba(116, 226, 216, 0.34), transparent 28%),
    radial-gradient(circle at 12% 18%, rgba(108, 165, 255, 0.24), transparent 34%),
    linear-gradient(115deg, rgba(7, 20, 43, 0.98), rgba(10, 66, 131, 0.86) 48%, rgba(0, 153, 141, 0.74)),
    url("winhe-business-card.png") center / cover;
  isolation: isolate;
}

.premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(116, 226, 216, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(116, 226, 216, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.12), #000 30%, #000 78%, rgba(0, 0, 0, 0.18));
  opacity: 0.75;
  transform: perspective(900px) rotateX(62deg) translateY(-120px) scale(1.4);
  transform-origin: center top;
  animation: grid-drift 16s linear infinite;
  pointer-events: none;
}

.premium-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -22% 42%;
  height: 360px;
  z-index: 0;
  background: linear-gradient(90deg, rgba(116, 226, 216, 0.2), rgba(255, 255, 255, 0));
  transform: skewY(-10deg);
  animation: hero-sheen 7s ease-in-out infinite;
  pointer-events: none;
}

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

.premium-hero h1 {
  max-width: 900px;
  text-shadow: 0 0 32px rgba(116, 226, 216, 0.18);
}

.tech-grid,
.signal-field,
.orbit-system,
.data-floaters {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.tech-grid {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.68) 0 1px, transparent 1.5px) 0 0 / 34px 34px,
    linear-gradient(135deg, transparent 0 46%, rgba(116, 226, 216, 0.26) 47% 48%, transparent 49% 100%);
  opacity: 0.22;
  animation: pulse-field 6s ease-in-out infinite;
}

.signal-field span {
  position: absolute;
  left: -18%;
  width: 52%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(116, 226, 216, 0.92), rgba(255, 255, 255, 0.64), transparent);
  box-shadow: 0 0 26px rgba(116, 226, 216, 0.42);
  transform: rotate(-16deg);
  animation: signal-run 5.8s linear infinite;
}

.signal-field span:nth-child(1) {
  top: 22%;
}

.signal-field span:nth-child(2) {
  top: 54%;
  animation-delay: -1.9s;
  opacity: 0.76;
}

.signal-field span:nth-child(3) {
  top: 74%;
  animation-delay: -3.4s;
  opacity: 0.58;
}

.orbit-system {
  inset: 12% 5% auto auto;
  width: min(34vw, 440px);
  aspect-ratio: 1;
}

.orbit-ring,
.orbit-core {
  position: absolute;
  inset: 0;
  border-radius: 999px;
}

.orbit-ring {
  border: 1px solid rgba(116, 226, 216, 0.24);
  box-shadow: inset 0 0 42px rgba(116, 226, 216, 0.08), 0 0 52px rgba(11, 99, 206, 0.14);
}

.ring-one {
  animation: orbit-spin 22s linear infinite;
}

.ring-one::before,
.ring-two::before {
  content: "";
  position: absolute;
  top: 11%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #74e2d8;
  box-shadow: 0 0 22px #74e2d8;
}

.ring-two {
  inset: 14%;
  border-color: rgba(199, 146, 43, 0.28);
  transform: rotate(24deg);
  animation: orbit-spin 15s linear infinite reverse;
}

.ring-two::before {
  background: #c7922b;
  box-shadow: 0 0 22px rgba(199, 146, 43, 0.88);
}

.orbit-core {
  inset: 35%;
  background: radial-gradient(circle, rgba(116, 226, 216, 0.5), rgba(11, 99, 206, 0.08) 58%, transparent 70%);
  filter: blur(0.2px);
  animation: core-breathe 3.8s ease-in-out infinite;
}

.data-floaters span {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(116, 226, 216, 0.28);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(8, 17, 34, 0.34);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  animation: float-chip 6s ease-in-out infinite;
}

.data-floaters span:nth-child(1) {
  top: 22%;
  right: 36%;
}

.data-floaters span:nth-child(2) {
  top: 66%;
  right: 7%;
  animation-delay: -2s;
}

.data-floaters span:nth-child(3) {
  bottom: 13%;
  left: 42%;
  animation-delay: -3.6s;
}

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

.hero-terminal {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(12, 28, 54, 0.88), rgba(8, 17, 34, 0.78)),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 7px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), 0 0 52px rgba(116, 226, 216, 0.16);
  backdrop-filter: blur(18px);
  animation: panel-float 5s ease-in-out infinite;
}

.terminal-top {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.terminal-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #74e2d8;
}

.terminal-top span:nth-child(2) {
  background: #c7922b;
}

.terminal-top span:nth-child(3) {
  background: #6ca5ff;
}

.terminal-body {
  padding: 26px;
}

.terminal-label {
  margin-bottom: 18px;
  color: #74e2d8;
  font-size: 13px;
  font-weight: 800;
}

.rfq-ticker {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.rfq-ticker span {
  display: block;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(116, 226, 216, 0.18);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(90deg, rgba(116, 226, 216, 0.12), rgba(255, 255, 255, 0.04));
  font-size: 13px;
  font-weight: 700;
  animation: ticker-glow 4.8s ease-in-out infinite;
}

.rfq-ticker span:nth-child(2) {
  animation-delay: -1.6s;
}

.rfq-ticker span:nth-child(3) {
  animation-delay: -3.2s;
}

.rfq-ticker b {
  margin-right: 8px;
  color: #74e2d8;
  text-transform: uppercase;
}

.terminal-body dl {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
}

.terminal-body div {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.terminal-body dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  text-transform: uppercase;
}

.terminal-body dd {
  margin: 4px 0 0;
  color: var(--white);
  font-weight: 800;
}

.terminal-button {
  width: 100%;
}

@keyframes grid-drift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 72px, 72px 0;
  }
}

@keyframes hero-sheen {
  0%, 100% {
    opacity: 0.38;
    transform: skewY(-10deg) translateX(-2%);
  }
  50% {
    opacity: 0.72;
    transform: skewY(-10deg) translateX(6%);
  }
}

@keyframes pulse-field {
  0%, 100% {
    opacity: 0.18;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes signal-run {
  from {
    transform: translateX(0) rotate(-16deg);
  }
  to {
    transform: translateX(240%) rotate(-16deg);
  }
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes core-breathe {
  0%, 100% {
    transform: scale(0.86);
    opacity: 0.58;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.92;
  }
}

@keyframes float-chip {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes panel-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes ticker-glow {
  0%, 100% {
    border-color: rgba(116, 226, 216, 0.18);
    box-shadow: none;
  }
  50% {
    border-color: rgba(116, 226, 216, 0.46);
    box-shadow: 0 0 24px rgba(116, 226, 216, 0.14);
  }
}

.premium-metrics {
  position: relative;
  margin-top: -1px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(15, 36, 71, 0.08);
}

.product-universe {
  background: #ffffff;
}

.product-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-cloud a,
.hot-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--paper);
  font-weight: 800;
  text-decoration: none;
}

.product-cloud a:hover,
.hot-grid a:hover {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.hot-products {
  padding-top: 42px;
  background:
    linear-gradient(120deg, rgba(15, 36, 71, 0.96), rgba(11, 99, 206, 0.82));
  color: var(--white);
}

.hot-products .eyebrow {
  color: #74e2d8;
}

.compact-heading {
  margin-bottom: 22px;
}

.hot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hot-grid a {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
}

.media-showcase {
  background: #ffffff;
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(240px, 0.7fr));
  gap: 18px;
  align-items: stretch;
}

.video-stage,
.image-feature {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(23, 32, 51, 0.08);
}

.video-stage {
  display: grid;
  min-height: 420px;
}

.video-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 330px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 20, 43, 0.72), rgba(0, 153, 141, 0.38)),
    url("assets/galaxyic-supply-chain-hero.png") center / cover;
}

.video-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.34;
}

.play-button {
  position: relative;
  z-index: 1;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.play-button::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 24px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--white);
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: #74e2d8;
  box-shadow: 0 0 24px #74e2d8;
  animation: scanMove 4s linear infinite;
}

@keyframes scanMove {
  from { transform: translateY(0); }
  to { transform: translateY(330px); }
}

.video-frame p {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 1;
  margin: 0;
  font-weight: 900;
}

.video-caption,
.image-feature div {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.video-caption span,
.image-feature span {
  color: var(--muted);
  font-size: 14px;
}

.image-feature img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.premium-section .section-heading p:last-child,
.premium-band .section-heading p:last-child {
  color: var(--muted);
}

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

.premium-card-grid article {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(247, 249, 252, 0.8), rgba(255, 255, 255, 1));
  box-shadow: 0 16px 42px rgba(23, 32, 51, 0.06);
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--teal);
  font-weight: 900;
}

.premium-band {
  background: linear-gradient(180deg, #f7f9fc 0%, #eef6f5 100%);
}

.premium-quality {
  background: #ffffff;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.55fr) minmax(280px, 0.55fr);
}

.quality-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(23, 32, 51, 0.08);
}

.quality-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.quality-list li {
  border-left-color: var(--teal);
  box-shadow: 0 12px 32px rgba(23, 32, 51, 0.05);
}

.premium-process {
  background: var(--paper);
}

.group-overview {
  background: #ffffff;
}

.overview-panel {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(238, 246, 245, 0.95), rgba(255, 255, 255, 1));
  box-shadow: 0 18px 50px rgba(23, 32, 51, 0.08);
}

.overview-panel strong {
  color: var(--navy);
  font-size: 26px;
  line-height: 1.2;
}

.overview-panel span {
  color: var(--muted);
}

.premium-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(15, 36, 71, 0.96), rgba(11, 99, 206, 0.84)),
    url("galaxyic-logo.png") right center / 420px auto no-repeat;
}

.premium-contact p {
  color: rgba(255, 255, 255, 0.78);
}

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

.premium-footer {
  background: #07142b;
}

.hero-content {
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #74e2d8;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
}

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

.quote-panel {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.quote-panel h2 {
  font-size: 28px;
}

.quote-panel p {
  color: var(--muted);
}

.quote-panel form,
.quote-panel label {
  display: grid;
  gap: 10px;
}

.quote-panel form {
  gap: 16px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-bar div {
  padding: 24px clamp(18px, 5vw, 72px);
  border-right: 1px solid var(--line);
}

.trust-bar strong {
  display: block;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.2;
}

.trust-bar span {
  color: var(--muted);
}

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

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

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

.category-overview {
  background: var(--white);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.category-grid a {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  text-decoration: none;
}

.category-grid a:hover {
  border-color: var(--blue);
  background: var(--white);
}

.category-grid strong {
  color: var(--navy);
  font-size: 24px;
}

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

.service-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-grid article:nth-child(2) {
  border-top: 4px solid var(--teal);
}

.service-grid article:nth-child(3) {
  border-top: 4px solid var(--gold);
}

.service-grid p,
.split p,
.seo-block p,
.process span {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: var(--paper);
}

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

.industry-list li {
  padding: 16px 18px;
  border-left: 4px solid var(--blue);
  background: var(--white);
}

.process ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process li {
  position: relative;
  min-height: 170px;
  padding: 26px 22px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  counter-increment: step;
}

.process li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 800;
}

.process strong,
.process span {
  display: block;
}

.seo-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #eef6f5;
}

.seo-block div {
  max-width: 780px;
}

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

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

.site-footer p,
.site-footer address {
  margin: 6px 0 0;
  font-style: normal;
}

.page-hero {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.page-hero h1,
.page-hero p {
  max-width: 860px;
}

.compact-section {
  padding-top: 34px;
}

.search-box {
  display: grid;
  max-width: 720px;
  gap: 10px;
  margin-top: 28px;
  font-weight: 700;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.filter-chips button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
}

.filter-chips button.active,
.filter-chips button:hover {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 15px;
}

th {
  color: var(--navy);
  background: #f0f4f9;
}

td a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 28px;
  align-items: start;
}

.rfq-form,
.contact-card,
.part-detail {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.rfq-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

.rfq-form label {
  display: grid;
  gap: 9px;
  font-weight: 700;
}

.form-actions,
.part-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-card {
  padding: 24px;
}

.contact-card p {
  color: var(--muted);
}

.part-detail {
  padding: clamp(22px, 4vw, 34px);
}

.part-detail dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 24px;
}

.part-detail div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.part-detail dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.part-detail dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: #1fa855;
  box-shadow: 0 14px 30px rgba(31, 168, 85, 0.28);
  font-weight: 800;
  text-decoration: none;
}

.quote-tool-page {
  background: var(--paper);
}

.quote-tool-hero {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 20, 43, 0.94), rgba(11, 99, 206, 0.78)),
    url("assets/galaxyic-supply-chain-hero.png") center / cover;
}

.quote-tool-hero p {
  color: rgba(255, 255, 255, 0.82);
}

.quote-tool-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 24px;
  align-items: start;
}

.quote-tool-panel,
.quote-tool-help {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(23, 32, 51, 0.07);
}

.quote-tool-panel {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

.quote-settings {
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) minmax(220px, 1.2fr) minmax(130px, 0.8fr);
  gap: 14px;
}

.quote-tool-panel label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

.quote-input-label textarea {
  min-height: 320px;
  font-family: Consolas, "Courier New", monospace;
  line-height: 1.5;
}

.markup-slider-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) 64px;
  gap: 12px;
  align-items: center;
  min-height: 46px;
}

.markup-slider-row input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
}

.markup-slider-row output {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  background: var(--paper);
  font-weight: 900;
}

.quote-tool-help {
  padding: 24px;
}

.quote-tool-help h2 {
  font-size: 24px;
}

.quote-tool-help p,
.quote-tool-help dd {
  color: var(--muted);
}

.quote-tool-help dl {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

.quote-tool-help div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.quote-tool-help dt {
  color: var(--navy);
  font-weight: 900;
}

.quote-tool-help dd {
  margin: 4px 0 0;
}

.quote-result-section {
  padding-top: 0;
}

.quote-result-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.quote-result-header h2 {
  margin-bottom: 0;
}

.quote-summary {
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
}

.english-output {
  margin-top: 16px;
  min-height: 180px;
  background: #fbfcfe;
  font-family: Consolas, "Courier New", monospace;
}

.part-media {
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
}

.part-media img {
  display: block;
  max-width: 220px;
  max-height: 180px;
  object-fit: contain;
}

.spec-list,
.spec-grid {
  margin: 18px 0 0;
}

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

.spec-list div,
.spec-grid li {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
}

.spec-list dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
}

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

@media (max-width: 920px) {
  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 40px rgba(23, 32, 51, 0.12);
  }

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

  .hero,
  .split,
  .seo-block,
  .site-footer,
  .form-section,
  .quote-tool-layout,
  .premium-quality {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .premium-hero {
    gap: 24px;
    padding-top: 56px;
    padding-bottom: 44px;
  }

  .orbit-system {
    inset: 6% -14% auto auto;
    width: 360px;
    opacity: 0.48;
  }

  .data-floaters span:nth-child(1) {
    top: 18%;
    right: 18px;
  }

  .data-floaters span:nth-child(2),
  .data-floaters span:nth-child(3) {
    display: none;
  }

  .hero-terminal {
    max-width: 680px;
  }

  .terminal-body {
    padding: 20px;
  }

  .rfq-ticker span:nth-child(2),
  .rfq-ticker span:nth-child(3) {
    display: none;
  }

  .terminal-body dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
  }

  .terminal-body div {
    padding: 10px 0;
  }

  .service-grid,
  .category-grid,
  .premium-card-grid,
  .media-grid,
  .process ol,
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .seo-block,
  .site-footer,
  .premium-contact {
    display: grid;
  }

  .static-nav {
    display: flex;
    flex-direction: row;
    gap: 14px;
    overflow-x: auto;
  }

  .quote-result-header {
    align-items: stretch;
    flex-direction: column;
  }
}

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

  .hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .premium-hero {
    min-height: auto;
    padding-top: 54px;
  }

  .premium-hero::before {
    opacity: 0.44;
    background-size: 54px 54px;
  }

  .orbit-system,
  .data-floaters {
    display: none;
  }

  .rfq-ticker span {
    font-size: 12px;
  }

  .terminal-body dl {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .category-grid,
  .premium-card-grid,
  .media-grid,
  .process ol,
  .trust-bar {
    grid-template-columns: 1fr;
  }

  .trust-bar div {
    padding: 18px 16px;
    border-right: 0;
  }

  .static-nav {
    font-size: 14px;
  }

  .part-detail dl {
    grid-template-columns: 1fr;
  }

  .spec-list,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .quote-settings {
    grid-template-columns: 1fr;
  }
}

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