:root {
  --bg: #ffffff;
  --text: #0b0f14;
  --muted: #5b6472;
  --line: #e9edf3;
  --chip: #f3f5f8;
  --shadow: 0 18px 45px rgba(10, 15, 20, 0.08);
  --radius: 22px;
  --max: 1680px;
  --sans:
    ui-sans-serif, system-ui, -apple-system, "Segoe UI", "PingFang TC",
    "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
  --header-h: 84px;
  --header-h-shrink: 48px;
  --logo-h: 72px;
  --logo-h-shrink: 36px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: inherit;
  text-decoration: none;
}
h2.section-title {
  max-width: none;
  white-space: nowrap;
}
.inner-page main h1 {
  max-width: none !important;
  white-space: nowrap !important;
}
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Topbar */

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  transition: height 0.2s ease;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  letter-spacing: 0.2px;
}
.logo {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 12px;
  color: var(--muted);
  background: linear-gradient(180deg, #fff, #f6f8fb);
}
.brand-name {
  font-size: 14px;
}
.nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
.nav a {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
}
.nav a:hover {
  background: var(--chip);
  color: var(--text);
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 16px;
}

.mobile-nav {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.mobile-nav-inner {
  display: grid;
  gap: 8px;
  padding: 14px 24px 18px;
}
.mobile-nav-inner a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
}
.mobile-nav-inner a:hover {
  color: var(--text);
  background: var(--chip);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}
.btn:hover {
  box-shadow: 0 10px 22px rgba(10, 15, 20, 0.1);
  transform: translateY(-1px);
}
.btn-primary {
  border-color: #0b0f14;
  background: #0b0f14;
  color: #fff;
}

/* Hero */
.hero {
  padding: 64px 0 24px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}
.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--chip);
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0b0f14;
  opacity: 0.7;
}
h1 {
  margin: 16px 0 14px;
  font-size: 52px;
  line-height: 1.06;
  letter-spacing: -1.1px;
}
.lead {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 58ch;
}
.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.metrics {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.metric {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #fafbfc);
  min-width: 170px;
}
.metric .v {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
}
.metric .k {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* Visual card */
.hero-visual .visual-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f7f9fc);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.visual-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  color: var(--muted);
  font-size: 13px;
}
.visual-chip {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--chip);
  border: 1px solid var(--line);
  font-size: 12px;
}
.visual-img {
  width: 100%;
  height: auto;
  display: block;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.visual-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
}
.visual-title {
  font-weight: 650;
}
.visual-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
.mini-link {
  color: var(--text);
  font-weight: 650;
}
.mini-link:hover {
  text-decoration: underline;
}

/* Sections */
.section {
  padding: 44px 0;
}
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.section-head.tight {
  margin-bottom: 12px;
}
.section-head h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.4px;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.h3 {
  font-size: 18px !important;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: #fff;
}
.icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: var(--chip);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  font-size: 16px;
}
.card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}
.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--chip);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 10px;
}

/* SEMICON Taiwan 2026 event feature */
.semicon-section {
  background: #f3f6f7;
}
.semicon-section-head {
  align-items: flex-end;
  margin-bottom: 24px;
}
.semicon-section-head h2 {
  max-width: 820px;
  margin: 7px 0 0;
  font-size: clamp(32px, 3.7vw, 52px);
  line-height: 1.03;
  letter-spacing: -0.035em;
}
.semicon-section-head > p {
  padding-bottom: 4px;
}
.semicon-event {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(360px, 0.6fr);
  overflow: hidden;
  border: 1px solid #d9e1e5;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(16, 38, 55, 0.065);
}
.semicon-main-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 38px;
  background: linear-gradient(135deg, #102637, #153247);
  color: #fff;
  transition: background 0.28s ease;
}
.semicon-main-card[data-event-region="europa"] {
  background: linear-gradient(135deg, #17283a, #24445c);
}
.semicon-main-card[data-event-region="china"] {
  background: linear-gradient(135deg, #241b25, #452632);
}
.semicon-main-card::after {
  content: "2026";
  position: absolute;
  right: -8px;
  bottom: -34px;
  color: transparent;
  font-family: Bahnschrift, "Arial Narrow", Arial, sans-serif;
  font-size: 170px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}
.semicon-visual-mark {
  position: absolute;
  z-index: 0;
  right: 22px;
  bottom: -27px;
  display: grid;
  justify-items: end;
  color: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}
.semicon-visual-mark span {
  margin-right: 10px;
  font-family: Bahnschrift, "Arial Narrow", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.24em;
}
.semicon-visual-mark b {
  font-family: Bahnschrift, "Arial Narrow", Arial, sans-serif;
  font-size: 156px;
  line-height: 0.82;
}
.semicon-badges {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.semicon-badges span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.semicon-badges .semicon-status {
  border-color: rgba(255, 255, 255, 0.28);
  background: #fff;
  color: #102637;
}
.semicon-main-card h3 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 42px 0 16px;
  font-family: Bahnschrift, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.semicon-main-card > p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.7;
}
.semicon-topics {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.semicon-topics span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}
.semicon-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}
.semicon-main-card .btn-primary {
  border-color: #fff;
  background: #fff;
  color: #102637;
}
.semicon-shows {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.semicon-switch {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 14px;
  border-left: 1px solid #dfe5e8;
  border-bottom: 1px solid #dfe5e8;
  background: #f7f9fa;
}
.semicon-switch button {
  min-height: 42px;
  border: 1px solid #d5dee2;
  border-radius: 999px;
  background: #fff;
  color: #687781;
  font: 750 12px/1 Arial, sans-serif;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.semicon-switch button:hover {
  border-color: #102637;
  color: #102637;
}
.semicon-switch button[aria-selected="true"] {
  border-color: #102637;
  background: #102637;
  color: #fff;
}
.semicon-show {
  flex: 1;
  min-height: 355px;
  padding: 36px;
  border-left: 1px solid #dfe5e8;
  background: #fff;
}
.semicon-show[hidden] {
  display: none;
}
.semicon-show-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.semicon-show-top span {
  color: #9b2635;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.semicon-show-top em {
  padding: 5px 8px;
  border-radius: 999px;
  background: #eef2f3;
  color: #62727c;
  font-size: 10px;
  font-style: normal;
  font-weight: 750;
  text-transform: uppercase;
}
.semicon-show h3 {
  margin: 24px 0 22px;
  color: #102637;
  font-family: Bahnschrift, "Arial Narrow", Arial, sans-serif;
  font-size: 34px;
  line-height: 1.05;
}
.semicon-show dl,
.semicon-show dd {
  margin: 0;
}
.semicon-show dl {
  display: grid;
  gap: 12px;
}
.semicon-show dl div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
}
.semicon-show dt {
  color: #8b98a0;
  font-size: 12px;
  line-height: 1.45;
}
.semicon-show dd {
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.35;
}
.semicon-show > a {
  display: inline-block;
  margin-top: 25px;
  color: #102637;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.semicon-show > a:hover {
  text-decoration: underline;
}
@media (max-width: 1050px) {
  .semicon-event {
    grid-template-columns: 1fr;
  }
  .semicon-show {
    border-left: 0;
  }
  .semicon-switch {
    border-left: 0;
  }
}
@media (max-width: 680px) {
  .semicon-section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .semicon-main-card {
    min-height: auto;
    padding: 26px;
  }
  .semicon-main-card h3 {
    margin-top: 34px;
    font-size: 40px;
  }
  .semicon-main-card::after {
    font-size: 110px;
  }
  .semicon-visual-mark {
    right: 14px;
    bottom: -16px;
  }
  .semicon-visual-mark span {
    font-size: 15px;
  }
  .semicon-visual-mark b {
    font-size: 94px;
  }
  .semicon-show {
    min-height: auto;
    padding: 28px;
    border-left: 0;
  }
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 22px 0;
}

/* Products split */
.split {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 16px;
  align-items: start;
}
.tabs {
  display: grid;
  gap: 10px;
}
.tab {
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
}
.tab:hover {
  background: #fff5f5;
  color: #ff2d2d;
  border-color: #ffb3b3;
}
.tab.active {
  /*border-color:#0b0f14;*/
  color: var(--text);
  border-color: #ff2d2d; /* 紅框 */
  color: #ff2d2d; /* 紅字 */
  font-weight: 700; /* 可選：更明顯 */
}
.panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: #fff;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.panel-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
}
.panel-desc {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}
.panel-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.panel-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.panel-logo {
  height: 62px; /* ⭐ 你可以改 28~44 */
  width: auto;
  object-fit: contain;
  opacity: 0.95;
}
.panel-logo-extra {
  height: 53px; /* 第二張大小，可改 32~60 */
}

.list {
  display: grid;
  gap: 10px;
}
.item:first-child {
  margin-top: 2px;
}
.item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 12px 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #fafbfc);
  border: 1px solid var(--line);
  position: relative;
}
.item.active {
  border: 2px solid #ff2d2d; /* 紅框 */
  background: #fff5f5; /* 淡紅底 */
  z-index: 2; /* 只在需要時浮上 */
}

.item.active .name {
  color: #ff2d2d; /* 主文字變紅 */
  font-weight: 700;
}

.item.active .meta {
  color: #ff6b6b; /* 右側小字淡紅 */
}
.item .name {
  font-weight: 650;
}
.item .meta {
  font-size: 13px;
  color: var(--muted);
}
/* 右側清單 hover 紅框 */
a.item:hover {
  border: 2px solid #ff2d2d; /* 紅框 */
  background: #fff5f5; /* 淡紅底 */
}

/* 左邊主文字 */
a.item:hover .name {
  color: #ff2d2d;
  font-weight: 700;
}

/* 右邊 Module / Model */
a.item:hover .meta {
  color: #ff6b6b;
}
.category-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.category-card .badge {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--chip);
  display: grid;
  place-items: center;
  font-size: 16px;
}
.category-card .icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  margin-bottom: 0;
  overflow: hidden;
}
.category-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.category-card h3 {
  margin: 0 0 4px;
}
.category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Partners */
/* 自動換行，不會擠成 6 欄硬塞 */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 一行 3 個 → 兩行 */
  gap: 20px; /* 稍微拉開一點 */
  overflow: visible;
}

.logo-box {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;

  height: 120px;
  padding: 20px 24px;

  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fafbfc);

  box-shadow: 0 8px 22px rgba(10, 15, 20, 0.04);
  transform: translateY(0) scale(1);
  transform-origin: center;
  transition:
    transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.logo-box a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  max-height: 64px;
  max-width: 100%;
  object-fit: contain;

  opacity: 0.72;
  filter: grayscale(100%);
  transform: scale(1);
  transition:
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.28s ease;
}

.logo-box:hover {
  z-index: 20;
  border-color: rgba(11, 15, 20, 0.18);
  background: #fff;
  transform: translateY(-10px) scale(1.12);
  box-shadow: 0 26px 60px rgba(10, 15, 20, 0.18);
}

.logo-box:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.06);
}

.callout {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: linear-gradient(180deg, #fff, #fafbfc);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.callout h3 {
  margin: 0 0 6px;
  font-size: 16px;
}
.callout p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.muted {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}
.form {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}
label span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  font-family: var(--sans);
}
textarea {
  resize: vertical;
}
input:focus,
textarea:focus {
  border-color: #0b0f14;
}
.form-note {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

/* Homepage contact refinement */
#contact {
  background: #f6f8fa;
}
.contact-section-head {
  margin-bottom: 20px;
}
.contact-section-head h2 {
  margin: 7px 0 0;
}
.contact-info-card,
.contact-form-card {
  border-color: #dce3e8;
  box-shadow: 0 14px 38px rgba(16, 38, 55, 0.045);
}
.contact-info-card h3,
.contact-form-card h3 {
  margin-bottom: 7px;
  font-size: 19px;
}
.contact-info-card .muted,
.contact-form-card .muted {
  margin-top: 0;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.contact-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid #cfd9df;
  border-radius: 999px;
  background: #fff;
  color: #102637;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.contact-action:hover {
  border-color: #102637;
  background: #f1f5f6;
}
.contact-form-card .form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 12px;
}
.contact-form-card .contact-message-field,
.contact-form-card .form-note {
  grid-column: 1 / -1;
}
.contact-form-card textarea {
  min-height: 112px;
}
.contact-form-card .btn-primary {
  grid-column: 1 / -1;
  justify-self: end;
  min-width: 210px;
  min-height: 46px;
  border-color: #102637;
  border-radius: 12px;
  background: #102637;
}
.contact-form-card .form-note {
  max-width: 58ch;
  justify-self: end;
  text-align: right;
  font-size: 12px;
}
@media (max-width: 720px) {
  .contact-form-card .form {
    grid-template-columns: 1fr;
  }
  .contact-form-card .contact-message-field,
  .contact-form-card .form-note,
  .contact-form-card .btn-primary {
    grid-column: auto;
  }
  .contact-form-card .btn-primary {
    width: 100%;
    justify-self: stretch;
  }
  .contact-form-card .form-note {
    justify-self: start;
    text-align: left;
  }
}
.footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

/* ===== Global site footer ===== */
.site-footer {
  position: relative;
  margin-top: 0;
  overflow: hidden;
  background: #0b0f14;
  color: #fff;
  font-family: var(--sans);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #b50018 0 34%, #ef2434 34% 44%, transparent 44%);
}
.site-footer a {
  color: inherit;
  text-decoration: none;
}
.site-footer__inner {
  width: 100%;
  max-width: var(--max, 1680px);
  margin: 0 auto;
  padding: 68px 24px 54px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(150px, 0.65fr) minmax(150px, 0.65fr) minmax(270px, 1fr);
  gap: clamp(34px, 5vw, 88px);
  align-items: start;
}
.site-footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.site-footer__logo {
  width: 84px;
  height: 54px;
  object-fit: contain;
}
.site-footer__brand-name {
  display: block;
  max-width: 240px;
  font-size: 17px;
  font-weight: 780;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.site-footer__tagline {
  max-width: 38ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.75;
}
.site-footer__eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.site-footer__links {
  display: grid;
  gap: 12px;
}
.site-footer__links a,
.site-footer__contact a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.45;
  transition: color 0.18s ease, transform 0.18s ease;
}
.site-footer__links a:hover,
.site-footer__links a:focus-visible,
.site-footer__contact a:hover,
.site-footer__contact a:focus-visible {
  color: #fff;
  transform: translateX(3px);
}
.site-footer__contact {
  display: grid;
  gap: 9px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-style: normal;
  line-height: 1.7;
}
.site-footer__legal-name {
  margin-bottom: 2px;
  color: #fff;
  font-size: 14px;
  font-weight: 760;
}
.site-footer__registration {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}
.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: var(--max, 1680px);
  margin: 0 auto;
  padding: 21px 24px 24px;
}
.site-footer__copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  line-height: 1.6;
}
.site-footer__top-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.03em;
}
.site-footer__top-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 17px;
  line-height: 1;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.site-footer__top-link:hover .site-footer__top-icon,
.site-footer__top-link:focus-visible .site-footer__top-icon {
  border-color: #ef2434;
  background: #b50018;
  transform: translateY(-2px);
}
.site-footer a:focus-visible {
  outline: 2px solid #ff5a66;
  outline-offset: 4px;
  border-radius: 3px;
}
@media (max-width: 980px) {
  .site-footer__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 48px 56px;
  }
}
@media (max-width: 620px) {
  .site-footer__inner {
    padding-top: 52px;
    padding-bottom: 38px;
  }
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }
  .site-footer__brand,
  .site-footer__contact-column {
    grid-column: 1 / -1;
  }
  .site-footer__tagline {
    margin-top: 19px;
  }
  .site-footer__bottom-inner {
    align-items: flex-end;
  }
  .site-footer__top-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

/* RWD */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  h1 {
    font-size: 44px;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .nav {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

.item-link {
  text-decoration: none;
  cursor: pointer;
}
.item-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(10, 15, 20, 0.08);
}

.topbar {
  position: fixed !important; /* 不用 sticky，改 fixed 最穩 */
  top: 0;
  left: 0;
  right: 0;
  z-index: 2147483647 !important; /* 最大層級，誰都蓋不住 */
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  transition: background 0.2s ease;
}
/* ===== Desktop header shrink (HESSE-like) ===== */

/* 讓動畫絲滑 */
.topbar,
.topbar-inner,
.logo-img,
.brand-name,
.nav a {
  transition: all 0.22s ease;
}

/* 縮小後：整條變矮 + logo 變小 + 導覽更緊 */
.topbar.is-shrink .topbar-inner {
  height: var(--header-h-shrink);
}

.logo-img {
  height: var(--logo-h); /* 可改 28–36 */
  width: auto;
  display: block;
}

.topbar.is-shrink .logo-img {
  height: var(--logo-h-shrink);
}

/* 導覽列縮小後更緊湊（仍保留所有 links） */
.topbar.is-shrink .nav a {
  padding: 6px 8px;
  font-size: 13px;
}

/* 可選：縮小後品牌文字淡出（像影片 logo 區更乾淨） */
.topbar.is-shrink .brand-name {
  opacity: 0;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
}

/* 可選：縮小後背景更實心 */
.topbar.is-shrink {
  background: rgba(255, 255, 255, 0.97);
}
/* header 變 fixed 之後，內容要往下推，不然會被蓋住 */
body {
  padding-top: var(--header-h);
}

/* Keep product-page anchor navigation flush below the shrunken fixed header.
   A shared offset prevents section headings from showing through the gap or
   landing underneath the two navigation bars on product subpages. */
body.inner-page .subnav-wrap,
body.inner-page .sono-anchor,
body.inner-page .xr-anchorbar,
body.inner-page .pf-anchor-nav,
body.inner-page .sc-anchor-nav,
body.inner-page .vx-anchor-nav {
  top: var(--header-h-shrink, 48px);
}

body.inner-page section[id] {
  scroll-margin-top: calc(var(--header-h-shrink, 48px) + 72px);
}

section {
  scroll-margin-top: 120px; /* 可調：90~120 */
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: height 0.2s ease;
}

.brand-name {
  font-size: 20px;
  font-weight: 600;
  transition: font-size 0.2s ease;
}

/* ===== Featured slider ===== */
.slider {
  position: relative;
  height: 360px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
}

/* ⭐ 這行很關鍵：沒有它，下面的 100% 會失效 */
.slides {
  position: relative;
  height: 100%;
}

/* 所有 slide 都保持 absolute 疊在一起，不要把 active 改 relative */
.slide {
  position: absolute;
  inset: 0;
  height: 100%; /* ⭐ 撐滿 slider */
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.is-active {
  opacity: 1;
  z-index: 1;
}

/* ✅ 圖片上下撐滿：height:100% */
.slider .visual-img {
  height: 100%;
  width: auto; /* 不變形 */
  max-width: 100%; /* 避免超出框 */
  object-fit: contain; /* 不裁切機台 */
  object-position: center;
  display: block;
  background: #fff;
}

/* arrows */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;

  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  display: grid;
  place-items: center;
  cursor: pointer;

  opacity: 0;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.slider:hover .slider-btn {
  opacity: 1;
}
.slider-btn:hover {
  transform: translateY(-50%) scale(1.06);
}
.slider-btn.prev {
  left: 14px;
}
.slider-btn.next {
  right: 14px;
}

/* dots */
.dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 6;

  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;

  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.dots .dot-btn {
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  margin: 0;
  border: 0;

  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d6dbe5;
  cursor: pointer;
  transition: all 0.25s ease;
}

.dots .dot-btn.is-active {
  width: 18px;
  border-radius: 999px;
  background: #0b0f14;
}

/* ===============================
   ASML-style big cover hero
   =============================== */
.hero-cover {
  position: relative;
  min-height: calc(100vh - var(--header-h)); /* 84px 是你 body padding-top */
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 44px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform, filter, opacity;
  transform: scale(1.02);
  transition: transform 0.25s ease;
}

/* 左側漸層遮罩：文字更清楚 */
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 32%,
    rgba(0, 0, 0, 0) 68%
  );
  will-change: opacity;
}

.hero-cover-inner {
  position: relative;
  z-index: 1;
}

.hero-cover-copy {
  max-width: 980px;
  color: #fff;
  margin-left: -70px;
}

.hero-cover-copy .pill {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
}

.hero-cover-copy .dot {
  background: #fff;
  opacity: 0.75;
}

.hero-cover-title {
  margin: 16px 0 14px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -1.2px;
  white-space: normal;
}
.hero-cover-title .accent {
  color: #ff2d2d;
}
.hero-cover-lead {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 60ch;
}

/* 讓按鈕在深色背景上更像官網 */
.hero-cover .btn {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.hero-cover .btn:hover {
  background: rgba(255, 255, 255, 0.16);
}
.hero-cover .btn-primary {
  background: #fff;
  border-color: #fff;
  color: #0b0f14;
}

/* RWD */
@media (max-width: 980px) {
  .hero-cover {
    min-height: calc(85vh - 84px);
    padding: 32px 0;
  }
  .hero-cover-copy {
    margin-left: 0;
  }
  .hero-cover-title {
    font-size: clamp(36px, 10vw, 44px);
  }
  .hero-shade {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.3) 48%,
      rgba(0, 0, 0, 0) 100%
    );
  }
}

/* ===== Desktop nav dropdown ===== */
.nav {
  position: relative;
}

/* 容器 */
.nav-dd {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* 讓 dropdown 的主連結外觀跟其他 nav a 一樣 */
.nav .nav-link {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav .nav-link:hover {
  background: var(--chip);
  color: var(--text);
}

/* 下拉選單 */
.dd-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;

  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  box-shadow: 0 18px 45px rgba(10, 15, 20, 0.1);

  display: none;
  z-index: 99999;
}

/* 選單項目 */
.dd-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 14px;
}
.dd-menu a:hover {
  background: var(--chip);
  color: var(--text);
}

/* hover / focus 顯示（滑鼠與鍵盤都可用） */
.nav-dd:hover .dd-menu,
.nav-dd:focus-within .dd-menu {
  display: block;
}

/* ===== Hover buffer（避免下拉閃爍） ===== */
.nav-dd::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px; /* ⭐ hover 緩衝距離，可調 10–16 */
}

/* ===== Lightbox (must-have) ===== */
.lightbox[hidden] {
  display: none !important;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2147483647;
}

.lightbox img {
  display: block;
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  opacity: 0.9;
  z-index: 2147483647;
}
.lightbox-close:hover {
  opacity: 1;
}

/* 讓圖看起來可點 */
.gallery-img {
  cursor: zoom-in;
  max-height: 320px; /* 控制高度 */
  object-fit: contain; /* 不裁切 */
}

/* ===== Apple-ish hero fade on scroll ===== */
.hero-cover-copy {
  will-change: transform, opacity;
  transition: opacity 0.18s linear;
}
#panelCta {
  min-width: 200px;
  text-align: center;
  padding: 12px 28px;
}
#panelList {
  max-height: 420px; /* 你可調 420~640 */
  overflow: auto;
  padding-right: 6px;
}
/* ===== Offices (Below Contact) ===== */
.offices {
  padding: 64px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.offices__header {
  text-align: center;
  margin-bottom: 36px;
}

.offices__header h2 {
  margin: 0 0 14px 0;
  font-size: 44px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #b50018; /* 接近你圖上的紅色 */
  font-weight: 800;
}

.offices__divider {
  width: 56px;
  height: 3px;
  margin: 0 auto;
  background: #b50018;
  border-radius: 999px;
  opacity: 0.6;
}

.offices__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 28px;
  align-items: start;
}

.office-card {
  text-align: center;
  border-radius: 18px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  padding: 18px 16px 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.office-card__flag {
  font-size: 50px;
  line-height: 1;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  margin-bottom: 12px;
  font-family:
    "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}
.office-card__flag img {
  width: 64px; /* 可改 36~50 */
  height: auto;
  margin-bottom: 12px;
  border: 1px solid #111; /* 黑邊 */
  border-radius: 2px; /* 可選：微圓角 */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  padding: 2px; /* 可選：讓邊框不貼圖 */
  background: #fff; /* 防止透明邊出現灰色 */
}

.office-card__title {
  margin: 0 0 10px 0;
  font-size: 22px;
  color: #b50018;
  font-weight: 700;
}

.office-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: #222;
}
.office-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 900px) {
  .offices__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .offices__header h2 {
    font-size: 36px;
  }
}

@media (max-width: 560px) {
  .offices__grid {
    grid-template-columns: 1fr;
  }
  .offices {
    padding-inline: 16px;
  }
  .office-card__text {
    overflow-wrap: anywhere;
  }
}

/* Global offices map and selector */
.offices {
  max-width: 1400px;
}
.offices__grid[hidden] {
  display: none !important;
}
.office-explorer {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(10, 15, 20, 0.06);
}
.office-map {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #fff;
}
.office-map > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.office-map::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(180deg, transparent, rgba(11, 15, 20, 0.76));
  pointer-events: none;
}
.office-pin {
  position: absolute;
  z-index: 3;
  width: 17px;
  height: 17px;
  padding: 0;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #b50018;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.office-pin::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  top: calc(100% + 7px);
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-50%);
}
.office-pin:hover,
.office-pin.is-active {
  transform: scale(1.28);
  box-shadow: 0 7px 18px rgba(181, 0, 24, 0.3);
}
.office-pin--sg { left: 36%; top: 75%; }
.office-pin--my { left: 27%; top: 67%; }
.office-pin--cn { left: 38%; top: 31%; }
.office-pin--tw { left: 65%; top: 44%; }
.office-pin--hk { left: 52%; top: 51%; }
.office-pin--ph { left: 68%; top: 65%; }
.office-pin--jp { left: 79%; top: 23%; }
.office-pin--kr { left: 67%; top: 29%; }
.office-map-caption {
  position: absolute;
  z-index: 3;
  left: 28px;
  right: 28px;
  bottom: 25px;
  color: #fff;
}
.office-map-caption b,
.office-map-caption span {
  display: block;
}
.office-map-caption b {
  font-size: 22px;
}
.office-map-caption span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}
.office-selector {
  display: grid;
  grid-template-columns: minmax(310px, 0.7fr) minmax(0, 1.3fr);
  gap: 32px;
  min-width: 0;
  padding: 32px;
}
.office-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.office-tabs button {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.office-tabs button:hover {
  border-color: #b50018;
  color: #b50018;
}
.office-tabs button[aria-selected="true"] {
  border-color: #0b0f14;
  background: #0b0f14;
  color: #fff;
}
.office-mobile-select {
  display: none;
}
.office-detail {
  margin: 0;
  padding-left: 32px;
  border-left: 1px solid var(--line);
}
.office-detail__head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.office-detail__head img {
  width: 64px;
  height: auto;
  border: 1px solid #111;
  border-radius: 2px;
  padding: 2px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.office-detail__head span,
.office-detail__address > span,
.office-detail__contacts span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.office-detail__head h3 {
  margin: 5px 0 0;
  color: #b50018;
  font-size: 31px;
}
.office-detail__address {
  margin-top: 28px;
}
.office-detail__address p {
  margin: 9px 0 0;
  color: #222;
  font-size: 16px;
  line-height: 1.75;
  white-space: pre-line;
}
.office-detail__contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}
.office-detail__contacts a {
  min-width: 0;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  text-decoration: none;
}
.office-detail__contacts a:hover {
  border-color: #b50018;
}
.office-detail__contacts b {
  display: block;
  margin-top: 7px;
  font-size: 13px;
  overflow-wrap: anywhere;
}
@media (max-width: 980px) {
  .office-selector {
    grid-template-columns: 1fr;
  }
  .office-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .office-detail {
    padding-top: 26px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}
@media (max-width: 620px) {
  .office-tabs {
    display: none;
  }
  .office-mobile-select {
    display: block;
  }
  .office-mobile-select span {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 12px;
  }
  .office-mobile-select select {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    color: var(--text);
  }
  .office-detail__contacts {
    grid-template-columns: 1fr;
  }
}
/* ===== Services Demo Button ===== */
.services-title {
  display: flex;
  align-items: center;
  gap: 18px;
}

.services-head {
  align-items: flex-end;
}
.services-heading-copy h2 {
  margin: 0;
}
.services-heading-copy p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.services-demo-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.services-demo-cta > span {
  color: var(--muted);
  font-size: 12px;
}

.demo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid #0b0f14;
  background: #0b0f14;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}

.demo-btn:hover {
  background: #ff2d2d;
  border-color: #ff2d2d;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
/* ===== Platforms & Cells (4-column Infotech-like) ===== */
.pc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0; /* 用分隔線，不用 gap */
  margin-top: 18px;
}

.pc-card {
  padding: 16px 18px;
  position: relative;
}

/* 直線分隔（除了第一欄） */
.pc-card + .pc-card {
  border-left: 1px solid var(--line);
}

.pc-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  display: block;
  margin-bottom: 14px;
  cursor: zoom-in; /* 你有 lightbox 的話可點放大 */
}

.pc-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 750;
}

.pc-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  white-space: pre-line; /* 讓你用 <br> 或 \n 分段更像原版 */
}

.pc-sub {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.pc-sub b {
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .pc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pc-card + .pc-card {
    border-left: 0;
  }
  .pc-card:nth-child(2n) {
    border-left: 1px solid var(--line);
  }
  .pc-card:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .pc-grid {
    grid-template-columns: 1fr;
  }
  .pc-card {
    border-left: 0 !important;
    border-top: 1px solid var(--line);
  }
  .pc-card:first-child {
    border-top: 0;
  }
}
/* ===== Platforms & Cells: image left, text right (marketing short) ===== */
.pc2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 兩列 */
  gap: 24px;
  margin-top: 18px;
}

.pc2-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 22px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fafbfc);
}

.pc2-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  display: block;
  cursor: zoom-in;
}

.pc2-title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 780;
  letter-spacing: -0.2px;
}

.pc2-line1 {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.pc2-line2 {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.pc2-line2 b {
  color: var(--text);
  font-weight: 750;
}

@media (max-width: 980px) {
  .pc2-row {
    grid-template-columns: 1fr;
  }
  .pc2-img {
    height: 240px;
  }
}
/* ===== Head Peripherals: enterprise smooth infinite carousel ===== */
.hp-shell {
  --hp-visible: 4; /* desktop */
  --hp-gap: 0px; /* keep Infotech-like tight columns */
  position: relative;
  margin-top: 14px;
}

@media (max-width: 1100px) {
  .hp-shell {
    --hp-visible: 2;
  }
}
@media (max-width: 620px) {
  .hp-shell {
    --hp-visible: 1;
  }
}

.hp-viewport {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.hp-head .kicker {
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 23px;
  color: var(--muted);
}
.hp-head .hint {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
}
.hp-track {
  display: flex;
  gap: var(--hp-gap);
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 0.45s cubic-bezier(0.22, 0.8, 0.25, 1);
}

/* each slide takes 1/visible width */
.hp-slide {
  flex: 0 0 calc(100% / var(--hp-visible));
  min-width: calc(100% / var(--hp-visible));
}

/* card styling inside each slide (with vertical separators) */
.hp-card {
  height: 100%;
  padding: 16px 18px;
  min-height: 320px;
  position: relative;
}
.hp-slide + .hp-slide .hp-card {
  border-left: 1px solid var(--line);
}

/* your existing card content styles */
.hp-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  display: block;
  margin-bottom: 12px;
  cursor: zoom-in;
}
.hp-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
}
.hp-line1 {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.hp-line2 {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* arrows */
.hp-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.hp-nav:hover {
  background: #fff;
}
.hp-prev {
  left: -10px;
}
.hp-next {
  right: -10px;
}
@media (max-width: 1100px) {
  .hp-prev {
    left: 6px;
  }
  .hp-next {
    right: 6px;
  }
}
.hp-nav span {
  font-size: 20px;
  line-height: 1;
  color: var(--text);
}

/* ===== AGA Feature Hero (Infotech-style, AGA skin) ===== */
.feature-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}
.feature-hero__media {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 18px;
}
.feature-hero__media img {
  width: 100%;
  height: auto;
  display: block;
}
.feature-hero__title {
  margin: 0 0 10px;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.feature-hero__text {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.75;
}
.feature-hero__actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--text);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}
.btn-primary:hover {
  opacity: 0.92;
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
}
.feature-split__title {
  margin: 0 0 10px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.feature-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}
.feature-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 18px;
}
.feature-card img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 980px) {
  .feature-hero {
    grid-template-columns: 1fr;
  }
  .feature-hero__title {
    font-size: 34px;
  }
  .feature-split {
    grid-template-columns: 1fr;
  }
}
.spec-title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
  color: var(--text); /* ← 這行最重要 */
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding: 14px 0 14px 32px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--text);
}

.feature-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--text);
  position: absolute;
  left: 0;
  top: 16px;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
/* PINK Products (cards) */
.product-card {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
  border-radius: 20px;
  background: #f8f8f8;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.product-img {
  width: 100%;
  height: 190px;
  object-fit: contain; /* 產品圖通常用 contain */
  display: block;
  margin-bottom: 12px;
}

.product-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
}

/* PINK Products 改成兩欄 */
#pink-products .grid-3 {
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 24px;
}

/* ===== PINK Systems (German style layout) ===== */

.systems-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 40px;
}

.system-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.system-row:nth-child(even) {
  grid-template-columns: 1fr 1.1fr;
}

.system-row:nth-child(even) .system-media {
  order: 2;
}

.system-row:nth-child(even) .system-content {
  order: 1;
}

.system-media img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  display: block;
}

.system-content h3 {
  font-size: 32px;
  margin: 0 0 16px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.system-sub {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--muted);
}

.system-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  text-decoration: none;
  color: #0b0f14;
  transition: 0.2s ease;
}

.system-link:hover {
  color: #ff2d2d;
}

@media (max-width: 980px) {
  .system-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .system-row:nth-child(even) .system-media,
  .system-row:nth-child(even) .system-content {
    order: unset;
  }
}

/* Applications only */
#applications .pc2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

#applications .pc2-row {
  display: block;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

#applications .pc2-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 12px;
}
@media (max-width: 980px) {
  #applications .pc2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  #applications .pc2 {
    grid-template-columns: 1fr;
  }
}

.machine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.machine-card {
  border-radius: 12px;
  overflow: hidden;
  background: #f8f9fb; /* 淡背景讓圖片好看 */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  padding: 20px;
}

.machine-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.service-detail-card {
  padding: 26px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #fafbfc);
  box-shadow: 0 10px 30px rgba(10, 15, 20, 0.05);
}

.services-grid {
  align-items: stretch;
  counter-reset: service-card;
}
.service-core-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  overflow: hidden;
  counter-increment: service-card;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.service-core-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(10, 15, 20, 0.07);
}
.service-core-card::after {
  content: counter(service-card);
  position: absolute;
  right: 22px;
  top: 12px;
  color: var(--line);
  font-family: Bahnschrift, "Arial Narrow", Arial, sans-serif;
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  opacity: 0.55;
  pointer-events: none;
}
.service-core-card > * {
  position: relative;
  z-index: 1;
}
.service-core-card .tag {
  width: max-content;
  max-width: calc(100% - 76px);
}
.service-core-card .service-points {
  margin-top: auto;
  padding-top: 24px;
}

.service-detail-card h3 {
  margin: 10px 0 10px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.service-lead {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.65;
  color: #0b0f14;
  font-weight: 500;
}

.service-copy {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 70ch;
}

.service-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.service-point {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.service-point::before {
  content: "• ";
  color: #ff2d2d;
  font-weight: 700;
}

.service-custom-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr) auto;
  gap: 32px;
  align-items: center;
  min-height: 225px;
  padding: 32px;
}
.service-custom-card h3 {
  margin-top: 0;
}
.custom-service-copy .lead {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}
.custom-service-copy .desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.custom-service-points {
  display: grid;
  gap: 9px;
}
.custom-service-points span {
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}
.custom-service-points span::before {
  content: "• ";
  color: #ff2d2d;
}
.custom-service-action {
  display: flex;
  justify-content: flex-end;
}
.custom-service-action .btn {
  min-height: 46px;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .service-custom-card {
    grid-template-columns: 1fr 1fr;
  }
  .custom-service-action {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .services-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .services-demo-cta {
    width: 100%;
    justify-content: space-between;
  }
  .service-core-card {
    min-height: auto;
  }
  .service-detail-card h3 {
    font-size: 24px;
  }

  .service-lead {
    font-size: 16px;
  }

  .service-points {
    grid-template-columns: 1fr;
  }
  .service-custom-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 26px;
  }
  .custom-service-action {
    grid-column: auto;
  }
  .custom-service-action .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  background: #000;
  will-change: transform, filter, opacity;
  transform: scale(1.02);
}

/* ===== About Us v2 — premium corporate page ===== */
.about-page-body {
  background: #fff;
}
.nav a[aria-current="page"] {
  background: #fff5f5;
  color: #ff2d2d;
  font-weight: 800;
}
.aboutv2-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: center;
  padding: 72px 0 58px;
  background: linear-gradient(
    120deg,
    rgba(6, 10, 15, 0.96) 0%,
    rgba(11, 15, 20, 0.92) 46%,
    rgba(39, 14, 18, 0.92) 100%
  );
  color: #fff;
}
.aboutv2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 22% 20%,
      rgba(255, 45, 45, 0.38),
      transparent 28%
    ),
    radial-gradient(
      circle at 84% 76%,
      rgba(255, 255, 255, 0.12),
      transparent 34%
    ),
    linear-gradient(90deg, rgba(0, 0, 0, 0.15), transparent 56%);
  pointer-events: none;
}
.aboutv2-bg-word {
  position: absolute;
  right: -5vw;
  bottom: -8vw;
  font-size: clamp(160px, 25vw, 360px);
  font-weight: 950;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.035);
  line-height: 0.8;
  user-select: none;
}
.aboutv2-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}
.aboutv2-copy {
  max-width: 780px;
}
.aboutv2-crumbs {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.58);
}
.aboutv2-crumbs a {
  color: rgba(255, 255, 255, 0.72);
}
.aboutv2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.aboutv2-eyebrow span {
  width: 34px;
  height: 2px;
  background: #ff2d2d;
  border-radius: 999px;
}
.aboutv2-copy h1 {
  margin: 18px 0 20px;
  font-size: clamp(42px, 6.2vw, 78px);
  line-height: 0.95;
  letter-spacing: -3.4px;
  max-width: 13.5ch;
}
.aboutv2-copy p {
  margin: 0;
  max-width: 68ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.75;
}
.aboutv2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.aboutv2-hero .btn {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.aboutv2-hero .btn:hover {
  background: rgba(255, 255, 255, 0.14);
}
.aboutv2-hero .btn-primary {
  background: #fff;
  color: #0b0f14;
  border-color: #fff;
}
.aboutv2-visual {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.13),
    rgba(255, 255, 255, 0.06)
  );
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 22px;
}
.aboutv2-visual::before {
  content: "";
  position: absolute;
  inset: 54px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}
.aboutv2-visual::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  right: -140px;
  top: -120px;
  background: rgba(255, 45, 45, 0.24);
  filter: blur(6px);
}
.aboutv2-logo-card {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  max-width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}
.aboutv2-logo-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  padding: 7px;
}
.aboutv2-logo-card b {
  display: block;
  font-size: 15px;
  line-height: 1.2;
}
.aboutv2-logo-card span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}
.aboutv2-orbit {
  position: absolute;
  inset: 84px 20px 122px;
  display: grid;
  place-items: center;
  z-index: 1;
}
.aboutv2-orbit-core {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 44px;
  font-weight: 950;
  letter-spacing: -0.08em;
  color: #fff;
  background: linear-gradient(135deg, #ff2d2d, #8e0015);
  box-shadow: 0 30px 80px rgba(255, 45, 45, 0.3);
}
.orbit-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}
.chip-1 {
  top: 12%;
  left: 7%;
}
.chip-2 {
  top: 22%;
  right: 5%;
}
.chip-3 {
  bottom: 16%;
  left: 9%;
}
.chip-4 {
  bottom: 10%;
  right: 7%;
}
.aboutv2-stat-row {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.aboutv2-stat-row div {
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}
.aboutv2-stat-row b {
  display: block;
  color: #fff;
  font-size: 26px;
  letter-spacing: -0.06em;
  margin-bottom: 8px;
}
.aboutv2-stat-row span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.45;
}
.aboutv2-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}
.aboutv2-intro .aboutv2-split h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.9px;
}
.aboutv2-section-title h2,
.aboutv2-dark-head h2,
.aboutv2-process-copy h2 {
  margin: 8px 0 0;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -1.6px;
}
.aboutv2-intro-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}
.aboutv2-intro-copy p {
  margin: 0;
}
.aboutv2-dark {
  background: #0b0f14;
  color: #fff;
  overflow: hidden;
}
.aboutv2-dark-head {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}
.aboutv2-dark-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
  font-size: 16px;
}
.aboutv2-cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.aboutv2-cap-card {
  min-height: 290px;
  padding: 26px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.025)
  );
}
.aboutv2-cap-card + .aboutv2-cap-card {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.aboutv2-cap-card span {
  color: #ff5a5a;
  font-weight: 950;
  letter-spacing: 0.14em;
  font-size: 13px;
}
.aboutv2-cap-card h3 {
  margin: 48px 0 12px;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.aboutv2-cap-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  font-size: 14px;
}
.aboutv2-section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.aboutv2-section-title > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 54ch;
}
.aboutv2-logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 55px rgba(10, 15, 20, 0.06);
}
.aboutv2-logo-strip div {
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: 22px;
  background: linear-gradient(180deg, #fff, #fafbfc);
}
.aboutv2-logo-strip div + div {
  border-left: 1px solid var(--line);
}
.aboutv2-logo-strip img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.74;
  transition: all 0.2s ease;
}
.aboutv2-logo-strip div:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.04);
}
.aboutv2-process-section {
  background: linear-gradient(180deg, #fff, #fafbfc);
}
.aboutv2-process-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 40px;
  align-items: start;
}
.aboutv2-process-copy {
  position: sticky;
  top: 96px;
}
.aboutv2-process-copy p {
  margin: 18px 0 22px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}
.aboutv2-timeline {
  display: grid;
  gap: 14px;
}
.aboutv2-timeline-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(10, 15, 20, 0.04);
}
.aboutv2-timeline-item b {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: #0b0f14;
  color: #fff;
  letter-spacing: 0.04em;
}
.aboutv2-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(10, 15, 20, 0.06);
  overflow: hidden;
}
.aboutv2-step-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}
.aboutv2-timeline-item h3 {
  margin: 0 0 6px;
  font-size: 21px;
}
.aboutv2-timeline-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.aboutv2-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.aboutv2-values-grid article {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 45, 45, 0.1), transparent 30%),
    linear-gradient(180deg, #fff, #fafbfc);
}
.aboutv2-values-grid h3 {
  margin: 0 0 12px;
  font-size: 26px;
  letter-spacing: -0.04em;
}
.aboutv2-values-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.aboutv2-offices {
  background: #fafbfc;
}
.aboutv2-office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.aboutv2-office-grid article {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  background: #fff;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.aboutv2-office-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(10, 15, 20, 0.08);
}
.aboutv2-office-grid img {
  width: 58px;
  height: auto;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  padding: 2px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.aboutv2-office-grid h3 {
  margin: 16px 0 8px;
  color: #b50018;
  font-size: 23px;
}
.aboutv2-office-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}
.aboutv2-cta-section {
  padding-top: 34px;
}
.aboutv2-cta {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(120deg, #0b0f14, #2a0f13);
  color: #fff;
  box-shadow: 0 26px 80px rgba(10, 15, 20, 0.14);
}
.aboutv2-cta::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 45, 45, 0.26);
}
.aboutv2-cta > * {
  position: relative;
  z-index: 1;
}
.aboutv2-cta h2 {
  margin: 8px 0 10px;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.04;
  letter-spacing: -1.6px;
  max-width: 27ch;
}
.aboutv2-cta p {
  margin: 0;
  max-width: 72ch;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}
.aboutv2-cta .btn-primary {
  flex: 0 0 auto;
  background: #fff;
  border-color: #fff;
  color: #0b0f14;
}
@media (max-width: 1180px) {
  .aboutv2-hero-grid,
  .aboutv2-split,
  .aboutv2-dark-head,
  .aboutv2-process-layout {
    grid-template-columns: 1fr;
  }
  .aboutv2-process-copy {
    position: static;
  }
  .aboutv2-cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .aboutv2-cap-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .aboutv2-cap-card:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .aboutv2-logo-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .aboutv2-logo-strip div:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .aboutv2-logo-strip div:nth-child(5),
  .aboutv2-logo-strip div:nth-child(6) {
    border-top: 1px solid var(--line);
  }
}
@media (max-width: 980px) {
  .aboutv2-hero {
    min-height: auto;
    padding: 56px 0 42px;
  }
  .aboutv2-visual {
    min-height: 500px;
  }
  .aboutv2-stat-row,
  .aboutv2-values-grid,
  .aboutv2-office-grid {
    grid-template-columns: 1fr;
  }
  .aboutv2-stat-row {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 318px;
  }
  .aboutv2-section-title,
  .aboutv2-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 680px) {
  .aboutv2-copy h1 {
    font-size: 42px;
    letter-spacing: -1.8px;
  }
  .aboutv2-copy p {
    font-size: 16px;
  }
  .aboutv2-visual {
    min-height: auto;
    padding: 16px;
  }
  .aboutv2-orbit {
    position: relative;
    inset: auto;
    min-height: 300px;
    margin: 16px 0;
  }
  .aboutv2-orbit-core {
    width: 130px;
    height: 130px;
    font-size: 36px;
  }
  .orbit-chip {
    font-size: 12px;
    padding: 8px 10px;
  }
  .aboutv2-stat-row {
    margin-top: 0;
  }
  .aboutv2-cap-grid,
  .aboutv2-logo-strip {
    grid-template-columns: 1fr;
  }
  .aboutv2-cap-card + .aboutv2-cap-card,
  .aboutv2-logo-strip div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .aboutv2-logo-strip div + div {
    border-top: 1px solid var(--line);
  }
  .aboutv2-timeline-item {
    grid-template-columns: 1fr;
  }
  .aboutv2-step-icon {
    width: 58px;
    height: 58px;
  }
  .aboutv2-step-icon img {
    width: 48px;
    height: 48px;
  }
  .aboutv2-cta {
    padding: 26px;
  }
}

/* ===== About Us refresh: practical B2B equipment profile ===== */
.about-page-body {
  background: #f6f8fb;
}

.about-page-body main .wrap {
  max-width: 1680px;
}

.about-page-body .topbar {
  box-shadow: 0 1px 0 rgba(10, 15, 20, 0.06);
}

.aboutv2-bg-word,
.aboutv2-orbit,
.aboutv2-orbit-core,
.orbit-chip,
.aboutv2-logo-card {
  display: none;
}

.aboutv2-hero {
  min-height: auto;
  padding: 62px 0 62px;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(255, 45, 45, 0.08), transparent 34%),
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.aboutv2-hero::before {
  background:
    linear-gradient(rgba(10, 15, 20, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 15, 20, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.45;
}

.aboutv2-hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 56px;
}

.aboutv2-copy {
  max-width: 720px;
}

.aboutv2-crumbs {
  color: #7a8492;
}

.aboutv2-crumbs a {
  color: #515b68;
}

.aboutv2-eyebrow {
  color: #b50018;
  letter-spacing: 0.08em;
}

.aboutv2-copy h1 {
  max-width: 25ch;
  margin: 18px 0 22px;
  font-size: clamp(34px, 3.5vw, 46px);
  line-height: 1.12;
  letter-spacing: 0;
}

.aboutv2-copy p {
  max-width: 64ch;
  color: #4d5866;
  font-size: 18px;
  line-height: 1.72;
}

.aboutv2-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.aboutv2-industries span {
  padding: 8px 11px;
  border: 1px solid #dfe5ee;
  border-radius: 999px;
  background: #fff;
  color: #374151;
  font-size: 13px;
  font-weight: 750;
}

.aboutv2-hero .btn {
  border-color: #dfe5ee;
  background: #fff;
  color: var(--text);
}

.aboutv2-hero .btn:hover {
  background: #f4f6f9;
}

.aboutv2-hero .btn-primary {
  background: #d71920;
  border-color: #d71920;
  color: #fff;
}

.aboutv2-visual {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.aboutv2-visual::before,
.aboutv2-visual::after {
  display: none;
}

.aboutv2-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(10, 15, 20, 0.1);
}

.aboutv2-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.aboutv2-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  max-width: calc(100% - 32px);
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: #1f2937;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(10, 15, 20, 0.16);
}

.aboutv2-workflow-panel {
  position: relative;
  padding: 28px;
  border: 1px solid #e1e7f0;
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(215, 25, 32, 0.07), transparent 42%),
    linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 18px 52px rgba(10, 15, 20, 0.07);
}

.aboutv2-panel-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 0 22px;
  border-bottom: 1px solid #dfe5ee;
}

.aboutv2-panel-head > img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #dfe5ee;
  background: #fff;
  padding: 6px;
  box-shadow: 0 8px 22px rgba(10, 15, 20, 0.06);
}

.aboutv2-panel-head b {
  display: block;
  color: #111827;
  font-size: 22px;
  line-height: 1.2;
}

.aboutv2-panel-head small {
  display: block;
  margin-top: 6px;
  color: #5b6472;
  font-size: 14px;
  line-height: 1.5;
}

.aboutv2-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
  padding-top: 18px;
}

.aboutv2-flow::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 34px;
  height: 2px;
  background: #d71920;
}

.aboutv2-flow article {
  position: relative;
  min-height: 138px;
  padding: 40px 14px 0 0;
  border: 0;
  background: transparent;
}

.aboutv2-flow article::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #d71920;
  box-shadow:
    0 0 0 7px rgba(215, 25, 32, 0.1),
    0 10px 20px rgba(215, 25, 32, 0.18);
}

.aboutv2-flow article span {
  color: #d71920;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.aboutv2-flow article b {
  display: block;
  margin-top: 14px;
  color: #111827;
  font-size: 20px;
  line-height: 1.15;
}

.aboutv2-flow article small {
  display: block;
  margin-top: 8px;
  color: #5b6472;
  font-size: 13px;
  line-height: 1.5;
}

.aboutv2-stat-row {
  position: static;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 12px;
  border-top: 1px solid #dfe5ee;
}

.aboutv2-stat-row div {
  min-height: 82px;
  padding: 18px 18px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.aboutv2-stat-row b {
  color: #111827;
  font-size: 22px;
  letter-spacing: 0;
}

.aboutv2-stat-row span {
  color: #5b6472;
}

.aboutv2-intro {
  background: #fff;
  border-top: 1px solid #edf0f4;
}

.aboutv2-intro .aboutv2-split h2,
.aboutv2-section-title h2,
.aboutv2-dark-head h2,
.aboutv2-process-copy h2,
.aboutv2-cta h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.16;
  letter-spacing: 0;
}

.aboutv2-dark {
  background: #f0f3f7;
  color: var(--text);
}

.aboutv2-dark-head p {
  color: #586372;
}

.aboutv2-cap-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.aboutv2-cap-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(10, 15, 20, 0.05);
}

.aboutv2-cap-card + .aboutv2-cap-card {
  border-left: 1px solid #dfe5ee;
}

.aboutv2-cap-card span {
  color: #d71920;
}

.aboutv2-cap-card h3 {
  margin: 44px 0 12px;
  color: #111827;
  letter-spacing: 0;
}

.aboutv2-cap-card p {
  color: #5b6472;
}

.aboutv2-logo-strip {
  border-radius: 8px;
  box-shadow: none;
}

.aboutv2-logo-strip div {
  min-height: 118px;
  background: #fff;
}

.aboutv2-logo-strip img {
  filter: grayscale(100%);
  opacity: 0.78;
}

.aboutv2-process-section {
  background: #fff;
}

.aboutv2-timeline-item {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(10, 15, 20, 0.05);
}

.aboutv2-timeline-item b {
  border-radius: 8px;
  background: #111827;
}

.aboutv2-step-icon {
  border-radius: 8px;
  background: #fff;
}

.aboutv2-values-section {
  background: #f7f9fc;
}

.aboutv2-values-grid article {
  min-height: 210px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(10, 15, 20, 0.04);
}

.aboutv2-values-grid h3 {
  letter-spacing: 0;
}

.aboutv2-offices {
  background: #fff;
}

.aboutv2-office-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.aboutv2-office-grid article {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 8px;
}

.aboutv2-office-grid article:hover {
  transform: translateY(-2px);
}

.aboutv2-office-grid img {
  grid-row: span 2;
  width: 46px;
}

.aboutv2-office-grid h3 {
  margin: 0 0 6px;
  color: #111827;
  font-size: 20px;
}

.aboutv2-office-grid p {
  font-size: 13px;
}

.aboutv2-cta {
  border-radius: 8px;
  background: #111827;
  box-shadow: none;
}

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

@media (max-width: 1180px) {
  .aboutv2-hero-grid {
    grid-template-columns: 1fr;
  }

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

  .aboutv2-cap-card:nth-child(3),
  .aboutv2-cap-card:nth-child(4) {
    border-top: 1px solid #dfe5ee;
  }
}

@media (max-width: 980px) {
  #panelCta {
    display: none;
  }
}

@media (max-width: 640px) {
  #services .section-head p {
    display: none;
  }
}

@media (max-width: 760px) {
  .aboutv2-hero {
    padding: 52px 0 46px;
  }

  .aboutv2-copy h1 {
    max-width: none;
    font-size: 32px;
    line-height: 1.14;
    letter-spacing: 0;
  }

  .aboutv2-intro .aboutv2-split h2,
  .aboutv2-section-title h2,
  .aboutv2-dark-head h2,
  .aboutv2-process-copy h2,
  .aboutv2-cta h2 {
    font-size: 28px;
    line-height: 1.18;
  }

  .aboutv2-stat-row,
  .aboutv2-cap-grid,
  .aboutv2-values-grid,
  .aboutv2-office-grid {
    grid-template-columns: 1fr;
  }

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

  .aboutv2-photo img {
    aspect-ratio: 4 / 3;
  }

  .aboutv2-workflow-panel {
    padding: 18px;
  }

  .aboutv2-panel-head {
    align-items: flex-start;
  }

  .aboutv2-flow {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
    padding-top: 0;
  }

  .aboutv2-flow::before {
    display: none;
  }

  .aboutv2-flow article {
    min-height: auto;
    padding: 8px 0 14px 30px;
  }

  .aboutv2-flow article::after {
    left: 0;
    top: 12px;
  }

  .aboutv2-flow article b {
    margin-top: 6px;
  }

  .aboutv2-office-grid article {
    grid-template-columns: 42px 1fr;
  }
}
