/* ═══════════════════════════════════════════
   HXOVA SHARED STYLES
   ═══════════════════════════════════════════ */
:root {
  --page:       #EEF2F7;
  --white:      #FFFFFF;
  --navy:       #0C1D32;
  --navy-2:     #112744;
  --navy-3:     #1A3255;
  --navy-deep:  #091525;
  --teal:       #26B5A5;
  --teal-2:     #1E9C8E;
  --teal-3:     #48CFC0;
  --teal-pale:  #E4F5F3;
  --teal-grad:  linear-gradient(110deg, #48CFC0 0%, #26B5A5 45%, #1A8A7C 100%);
  --yellow:     #F5C518;
  --ink:        #0C1D32;
  --ink-2:      #334D6A;
  --ink-3:      #637D96;
  --ink-4:      #9FB3C5;
  --line:       #DDE4EC;
  --line-soft:  #EBF0F5;
  --fs: 'Noto Sans TC', system-ui, sans-serif;
  --fh: 'Syne', system-ui, sans-serif;
  --fi: 'Instrument Serif', Georgia, serif;
  --fm: 'JetBrains Mono', monospace;
  --r: 10px;
  --maxw: 1360px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--page);
  color: var(--ink);
  font-family: var(--fs);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--fs); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 44px; }

/* ─── NAV ─── */
.nav {
  position: sticky; top: 0; z-index: 400;
  background: rgba(12,29,50,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  height: 54px; display: flex; align-items: center; gap: 0;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  margin-right: 24px; text-decoration: none; flex-shrink: 0;
}
.nav-logo-icon {
  width: 26px; height: 26px; border-radius: 5px;
  background: var(--teal-grad);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fi); font-size: 11px; color: var(--navy-deep);
}
.nav-logo-name { font-family: var(--fh); font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 0.1em; }
.nav-logo-sub { font-family: var(--fm); font-size: 8px; color: rgba(255,255,255,0.28); letter-spacing: 0.09em; display: block; margin-top: 1px; line-height: 1; }

/* Page switch */
.nav-switch {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 3px;
  margin-right: 18px; flex-shrink: 0;
}
.ns-btn {
  padding: 5px 14px; font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.48); border: none; background: transparent;
  border-radius: 6px; transition: all 0.2s; letter-spacing: 0.02em; white-space: nowrap;
  text-decoration: none; display: block;
}
.ns-btn:hover { color: rgba(255,255,255,0.8); }
.ns-btn.active { background: var(--teal); color: var(--navy-deep); font-weight: 700; }

/* Nav links */
.nav-links { display: flex; list-style: none; gap: 0; margin-right: auto; padding: 0; }
.nav-item { position: relative; }
.nav-item > a {
  font-size: 12.5px; font-weight: 400; color: rgba(255,255,255,0.5);
  padding: 0 11px; height: 54px; display: flex; align-items: center; gap: 4px;
  transition: color 0.18s; white-space: nowrap;
}
.nav-item > a:hover, .nav-item.mega-open > a { color: #fff; }
.nav-item > a.active { color: #fff; font-weight: 500; }
.nav-chevron { font-size: 9px; opacity: 0.6; transition: transform 0.2s; font-style: normal; }
.nav-item.mega-open .nav-chevron { transform: rotate(180deg); }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-fav {
  font-size: 12px; color: rgba(255,255,255,0.42);
  background: none; border: none; padding: 5px 8px; border-radius: 5px;
  transition: all 0.18s; display: flex; align-items: center; gap: 5px; text-decoration: none;
}
.nav-fav:hover { color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.06); }
.nav-cta {
  background: var(--teal); color: var(--navy-deep);
  font-size: 12.5px; font-weight: 700; padding: 8px 18px; border-radius: 7px;
  letter-spacing: 0.02em; transition: background 0.18s, transform 0.15s; text-decoration: none;
  display: inline-block;
}
.nav-cta:hover { background: var(--teal-3); transform: translateY(-1px); }

/* ─── MEGA MENU ─── */
.mega-backdrop {
  position: fixed; top: 54px; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3); opacity: 0; pointer-events: none;
  transition: opacity 0.2s; z-index: 300;
}
.mega-backdrop.show { opacity: 1; pointer-events: auto; }

.mega-panel {
  position: absolute; top: 54px; left: 50%; transform: translateX(-50%);
  min-width: 580px; max-width: 900px; width: max-content;
  background: var(--white); border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
  opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.18s, transform 0.18s;
  z-index: 350; overflow: hidden;
}
.nav-item.mega-open .mega-panel {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Panels that should be left-aligned (exhibitor/visitor are wide) */
.nav-item[data-mega="exhibitor"] .mega-panel,
.nav-item[data-mega="visitor"] .mega-panel {
  left: 0; transform: translateY(-8px); max-width: 860px; width: 860px;
}
.nav-item[data-mega="exhibitor"].mega-open .mega-panel,
.nav-item[data-mega="visitor"].mega-open .mega-panel {
  transform: translateY(0);
}

.mega-inner {
  padding: 28px 32px 32px;
  display: flex; gap: 0; align-items: flex-start;
}
.mega-col { padding: 0 28px 0 0; min-width: 160px; }
.mega-col:last-child { padding-right: 0; }
.mega-col-wide { min-width: 190px; }
.mega-col-title {
  font-family: var(--fm); font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-4); margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}
.mega-divider {
  width: 1px; background: var(--line-soft); margin: 0 24px; align-self: stretch; flex-shrink: 0;
}
.mega-link {
  display: block; font-size: 13px; font-weight: 400; color: var(--ink-2);
  padding: 6px 0; transition: color 0.15s;
}
.mega-link:hover { color: var(--teal-2); }
.mega-link-icon { display: flex; align-items: center; gap: 7px; font-size: 12.5px; }

.mega-report-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 24px; }
.mega-report-link { font-size: 13px; }
.mega-new { font-family: var(--fm); font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #E84545; margin-left: 4px; }

/* Mega CTA column */
.mega-cta-col {
  margin-left: auto; padding-left: 24px; border-left: 1px solid var(--line-soft);
  min-width: 180px; display: flex; flex-direction: column; gap: 10px;
}
.mega-cta-btn {
  display: block; text-align: center; padding: 10px 16px;
  font-size: 13px; font-weight: 700; border-radius: 7px;
  transition: all 0.18s; letter-spacing: 0.02em;
}
.mega-cta-primary { background: var(--teal); color: var(--navy-deep); }
.mega-cta-primary:hover { background: var(--teal-3); }
.mega-cta-yellow { background: var(--yellow); color: var(--navy-deep); }
.mega-cta-yellow:hover { background: #f0bc0a; }
.mega-cta-outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--line);
}
.mega-cta-outline:hover { border-color: var(--teal); color: var(--teal-2); }

.mega-qr-block { margin-top: 8px; }
.mega-qr-label { font-family: var(--fm); font-size: 9.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 8px; text-align: center; }
.mega-qr-box { display: flex; justify-content: center; }

/* Big links (matchmaking) */
.mega-biglink {
  display: block; padding: 14px 16px; border-radius: 8px;
  border: 1.5px solid var(--line-soft); margin-bottom: 10px;
  transition: border-color 0.18s, background 0.18s;
}
.mega-biglink:hover { border-color: var(--teal); background: var(--teal-pale); }
.mega-biglink-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.mega-biglink-sub { font-size: 12px; color: var(--ink-3); font-weight: 300; }

/* ─── SECTION UTILITIES ─── */
.sec { padding: 68px 0; }
.sec-white { background: var(--white); }
.sec-dark { background: var(--navy-deep); }
.sec-navy { background: var(--navy); }

.sec-label {
  font-family: var(--fm); font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3);
  margin-bottom: 5px; display: flex; align-items: center; gap: 8px;
}
.sec-label::before { content: '—'; color: var(--teal); }
.sec-label-inv { color: rgba(255,255,255,0.38); }
.sec-h { font-family: var(--fh); font-size: clamp(20px,2.2vw,28px); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 4px; letter-spacing: -0.01em; }
.sec-h-inv { color: #fff; }
.sec-sub { font-size: 13px; color: var(--ink-3); font-weight: 300; }
.sec-sub-inv { color: rgba(255,255,255,0.38); }
.sec-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; }
.more-link {
  font-size: 12.5px; font-weight: 600; color: var(--ink-2);
  display: flex; align-items: center; gap: 5px;
  padding: 7px 14px; border: 1.5px solid var(--line); border-radius: 7px;
  background: var(--white); transition: all 0.18s; flex-shrink: 0; margin-bottom: 2px;
}
.more-link .a { transition: transform 0.18s; }
.more-link:hover { border-color: var(--teal); color: var(--teal-2); }
.more-link:hover .a { transform: translateX(3px); }
.more-link-inv { border-color: rgba(255,255,255,0.12); background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.55); }
.more-link-inv:hover { border-color: var(--teal); color: var(--teal-3); }

/* ─── PRODUCT CARD ─── */
.pc {
  background: var(--white); border: 1.5px solid var(--line-soft);
  border-radius: var(--r); overflow: hidden; cursor: pointer;
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s; position: relative;
}
.pc:hover { transform: translateY(-4px); border-color: var(--teal); box-shadow: 0 10px 28px rgba(26,138,124,0.11); }
.pc-img { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, #E8F3F1, #D5ECEA); display: flex; align-items: center; justify-content: center; color: rgba(38,181,165,0.35); position: relative; overflow: hidden; }
.pc-img svg { transition: transform 0.36s; opacity: 0.5; }
.pc:hover .pc-img svg { transform: scale(1.05); }
.pc-snq { position: absolute; top: 9px; right: 9px; background: var(--navy); color: #fff; font-family: var(--fm); font-size: 8.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 2px 7px; border-radius: 4px; }
.pc-body { padding: 14px 16px 16px; }
.pc-tags { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 8px; }
.pc-tag { font-family: var(--fm); font-size: 8.5px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; padding: 2px 7px; border-radius: 3px; }
.pc-tag-d { background: rgba(38,181,165,0.08); color: var(--teal-2); border: 1px solid rgba(38,181,165,0.14); }
.pc-tag-t { background: rgba(12,29,50,0.04); color: var(--ink-2); border: 1px solid rgba(12,29,50,0.08); }
.pc-name { font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 5px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pc-desc { font-size: 12px; color: var(--ink-3); line-height: 1.55; font-weight: 300; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pc-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--line-soft); }
.pc-booth { font-family: var(--fm); font-size: 10px; font-weight: 500; color: var(--teal-2); letter-spacing: 0.04em; display: flex; align-items: center; gap: 3px; cursor: pointer; transition: color 0.15s; margin-bottom: 2px; }
.pc-booth:hover { color: var(--teal); }
.pc-co { font-size: 11px; color: var(--ink-3); cursor: pointer; transition: color 0.15s; }
.pc-co:hover { color: var(--navy); }
.pc-more { font-size: 11.5px; font-weight: 600; color: var(--ink-3); background: none; border: none; padding: 3px 7px; border-radius: 4px; display: flex; align-items: center; gap: 3px; transition: all 0.15s; }
.pc-arr { transition: transform 0.18s; }
.pc-more:hover { color: var(--teal-2); background: var(--teal-pale); }
.pc-more:hover .pc-arr { transform: translateX(3px); }

/* ─── BUTTONS ─── */
.btn-teal { background: var(--teal); color: var(--navy-deep); font-size: 13px; font-weight: 700; padding: 10px 24px; border-radius: 7px; border: none; transition: background 0.18s, transform 0.15s; letter-spacing: 0.02em; }
.btn-teal:hover { background: var(--teal-3); transform: translateY(-2px); }
.btn-line { background: transparent; color: var(--ink); font-size: 13px; font-weight: 600; padding: 10px 24px; border-radius: 7px; border: 1.5px solid var(--line); transition: border-color 0.18s, color 0.18s; }
.btn-line:hover { border-color: var(--teal); color: var(--teal-2); }
.btn-ghost-light { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 600; padding: 10px 24px; border-radius: 7px; border: 1.5px solid rgba(255,255,255,0.14); transition: all 0.18s; }
.btn-ghost-light:hover { background: rgba(255,255,255,0.14); color: #fff; }

/* ─── PAGE HERO ─── */
.page-hero { background: var(--white); padding: 52px 0 48px; border-bottom: 1px solid var(--line); }
.page-crumb { font-family: var(--fm); font-size: 10.5px; color: var(--ink-3); letter-spacing: 0.05em; margin-bottom: 18px; display: flex; align-items: center; gap: 7px; }
.page-crumb a { transition: color 0.15s; }
.page-crumb a:hover { color: var(--teal-2); }
.page-crumb-sep { color: var(--ink-4); }
.page-h1 { font-family: var(--fh); font-size: clamp(26px,3vw,42px); font-weight: 800; color: var(--navy); line-height: 1.12; margin-bottom: 10px; letter-spacing: -0.02em; }
.page-h1 em { font-family: var(--fi); font-style: italic; font-weight: 400; background: var(--teal-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-sub { font-size: 14px; color: var(--ink-3); font-weight: 300; }

/* ─── STATS BAR ─── */
.stats-bar { background: var(--navy-2); padding: 20px 0; }
.stats-inner { display: flex; align-items: center; }
.stat { flex: 1; text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.07); }
.stat:last-child { border-right: none; }
.stat-n { font-family: var(--fh); font-size: 28px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; letter-spacing: -0.02em; display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-n em { font-family: var(--fi); font-style: italic; font-weight: 400; font-size: 18px; color: var(--teal-3); margin-left: 1px; }
.stat-l { font-family: var(--fm); font-size: 9px; font-weight: 500; color: rgba(255,255,255,0.35); letter-spacing: 0.16em; text-transform: uppercase; }

/* ─── LOGO WALL ─── */
.logo-wall { overflow: hidden; border-top: 1px solid rgba(255,255,255,0.05); padding: 22px 0; }
.logo-row { display: flex; gap: 24px; width: max-content; margin-bottom: 14px; }
.logo-row:nth-child(1) { animation: sl 22s linear infinite; }
.logo-row:nth-child(2) { animation: sr 26s linear infinite; }
.logo-row:hover { animation-play-state: paused; }
@keyframes sl { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes sr { from{transform:translateX(-50%)} to{transform:translateX(0)} }
.logo-chip { height: 34px; padding: 0 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07); border-radius: 5px; display: flex; align-items: center; font-family: var(--fm); font-size: 9.5px; font-weight: 500; color: rgba(255,255,255,0.38); letter-spacing: 0.08em; white-space: nowrap; cursor: pointer; transition: all 0.18s; flex-shrink: 0; }
.logo-chip:hover { background: rgba(38,181,165,0.1); border-color: rgba(38,181,165,0.25); color: rgba(255,255,255,0.75); }

/* ─── SUBSCRIBE + FOOTER ─── */
.sub-bar { background: var(--white); border-top: 1px solid var(--line); padding: 26px 0; }
.sub-in { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.sub-lbl { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.sub-lbl span { color: var(--ink-3); font-weight: 300; margin-left: 4px; }
.sub-form { display: flex; gap: 8px; }
.sub-inp { padding: 9px 15px; border: 1.5px solid var(--line); border-radius: 6px; font-size: 12.5px; width: 230px; background: var(--page); color: var(--navy); font-family: var(--fs); outline: none; transition: border-color 0.18s; }
.sub-inp:focus { border-color: var(--teal); }
.sub-btn { padding: 9px 18px; background: var(--navy); color: #fff; border: none; border-radius: 6px; font-size: 12.5px; font-weight: 600; transition: background 0.18s, transform 0.15s; }
.sub-btn:hover { background: var(--teal-2); transform: translateY(-1px); }

footer { background: var(--navy-deep); padding: 52px 0 28px; border-top: 1px solid rgba(255,255,255,0.05); }
.ft-grid { display: grid; grid-template-columns: 200px 1fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.ft-brand-row { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.ft-brand-icon { width: 26px; height: 26px; border-radius: 5px; background: var(--teal-grad); display: flex; align-items: center; justify-content: center; font-family: var(--fi); font-size: 11px; color: var(--navy-deep); }
.ft-brand-name { font-family: var(--fh); font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 0.08em; }
.ft-tagline { font-size: 11.5px; color: rgba(255,255,255,0.26); line-height: 1.6; font-weight: 300; }
.ft-col-h { font-family: var(--fm); font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 7px; padding: 0; }
.ft-links a { font-size: 12px; color: rgba(255,255,255,0.42); transition: color 0.18s; font-weight: 300; }
.ft-links a:hover { color: rgba(255,255,255,0.8); }
.ft-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; }
.ft-copy { font-family: var(--fm); font-size: 10.5px; color: rgba(255,255,255,0.22); letter-spacing: 0.04em; }
.ft-mark { font-family: var(--fm); font-size: 8.5px; color: rgba(255,255,255,0.16); letter-spacing: 0.1em; text-transform: uppercase; }
.ft-mark span { color: var(--teal); opacity: 0.5; }

/* Ticker */
.ticker { background: var(--navy-2); border-top: 1px solid rgba(255,255,255,0.05); padding: 9px 0; overflow: hidden; }
.ticker-in { display: flex; align-items: center; gap: 0; }
.ticker-tag { font-family: var(--fm); font-size: 8.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; background: var(--teal); color: var(--navy-deep); padding: 3px 10px; border-radius: 4px; flex-shrink: 0; margin-right: 18px; white-space: nowrap; }
.ticker-scroll { display: flex; gap: 40px; white-space: nowrap; animation: tick 30s linear infinite; width: max-content; }
.ticker-scroll:hover { animation-play-state: paused; }
@keyframes tick { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.tick-item { font-size: 12px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 7px; }
.tick-item strong { color: rgba(255,255,255,0.82); font-weight: 500; }
.tick-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* Tooltip */
.tip { position: fixed; background: var(--navy); color: #fff; font-family: var(--fm); font-size: 10px; padding: 5px 11px; border-radius: 5px; pointer-events: none; opacity: 0; transition: opacity 0.14s; z-index: 999; white-space: nowrap; }
.tip.on { opacity: 1; }

/* Fade-in animation */
@keyframes fu { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
.fade-in { animation: fu 0.4s ease both; }

/* ─── MEGA MENU EXTENDED ─── */
.mega-cta-col {
  flex-shrink: 0; width: 180px;
  background: var(--page); border-left: 1px solid var(--line-soft);
  margin: -28px -32px -32px 0; padding: 28px 24px 28px 24px;
  display: flex; flex-direction: column; gap: 10px; border-radius: 0 12px 12px 0;
}
.mega-cta-btn {
  display: block; text-align: center; font-size: 13px; font-weight: 700;
  padding: 10px 16px; border-radius: 7px; transition: all 0.18s; cursor: pointer;
  text-decoration: none;
}
.mega-cta-primary { background: var(--teal); color: var(--navy-deep); border: none; }
.mega-cta-primary:hover { background: var(--teal-3); }
.mega-cta-yellow { background: var(--yellow); color: var(--navy); border: none; }
.mega-cta-yellow:hover { background: #f7cf30; }
.mega-cta-outline { background: var(--white); color: var(--navy); border: 1.5px solid var(--line); }
.mega-cta-outline:hover { border-color: var(--teal); color: var(--teal-2); }
.mega-qr-block { margin-top: 8px; }
.mega-qr-label { font-family: var(--fm); font-size: 9px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 8px; text-align: center; }
.mega-qr-box { display: flex; justify-content: center; }
.mega-report-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 20px; }
.mega-report-link { font-size: 13px; color: var(--ink-2); padding: 5px 0; }
.mega-report-link:hover { color: var(--teal-2); }
.mega-new { font-family: var(--fm); font-size: 8.5px; font-weight: 700; letter-spacing: 0.08em; color: var(--teal-2); background: rgba(38,181,165,0.1); padding: 1px 5px; border-radius: 3px; margin-left: 4px; text-transform: uppercase; }
.mega-biglink { display: block; padding: 14px 18px; border: 1.5px solid var(--line); border-radius: var(--r); margin-bottom: 10px; transition: border-color 0.18s, background 0.18s; }
.mega-biglink:hover { border-color: var(--teal); background: var(--teal-pale); }
.mega-biglink-title { font-family: var(--fh); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.mega-biglink-sub { font-size: 12px; color: var(--ink-3); font-weight: 300; line-height: 1.5; }

/* ─── SECTIONS ─── */
.sec { padding: 68px 0; }
.sec-white { background: var(--white); }
.sec-dark { background: var(--navy-deep); }
.sec-label { font-family: var(--fm); font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 5px; display: flex; align-items: center; gap: 8px; }
.sec-label::before { content: '—'; color: var(--teal); letter-spacing: 0; }
.sec-label-inv { color: rgba(255,255,255,0.38); }
.sec-h { font-family: var(--fh); font-size: clamp(20px,2.2vw,28px); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 4px; letter-spacing: -0.01em; }
.sec-h-inv { color: #fff; }
.sec-sub { font-size: 13px; color: var(--ink-3); font-weight: 300; }
.sec-sub-inv { color: rgba(255,255,255,0.38); }
.sec-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; }

/* Dis card */
.dis-card { background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r); padding: 14px 16px; cursor: pointer; transition: all 0.2s; }
.dis-card:hover, .dis-card.active { background: var(--teal-2); border-color: var(--teal-2); }
.dis-card-name { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 2px; line-height: 1.3; transition: color 0.2s; }
.dis-card:hover .dis-card-name, .dis-card.active .dis-card-name { color: #fff; }
.dis-card-en { font-family: var(--fm); font-size: 9px; color: var(--ink-4); letter-spacing: 0.04em; transition: color 0.2s; }
.dis-card:hover .dis-card-en, .dis-card.active .dis-card-en { color: rgba(255,255,255,0.6); }
