:root {
  --navy: #2f2f2f;
  --navy-2: #3a3a3a;
  --gold: #c9a24a;
  --gold-2: #d4b36a;
  --ink: #333;
  --muted: #666;
  --line: #e2e2e2;
  --bg: #f4f4f4;
  --white: #fff;
  --nav: #3f3f3f;
  --nav-dark: #2b2b2b;
  --max: 1180px;
  --radius: 4px;
  font-family: "Noto Sans TC", "Microsoft JhengHei", "Noto Sans SC", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
h2[id], h3[id], [id] { scroll-margin-top: 84px; }

.jump-nav {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 28px;
}
.jump-nav a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 6px;
  background: #c9a24a; color: #fff; text-decoration: none;
  font-weight: 700; font-size: 14px;
}
.jump-nav a::before { content: "︾"; font-size: 12px; opacity: .9; }
.jump-nav a:hover { background: #b48d38; color: #fff; }
body { margin: 0; color: var(--ink); background: var(--white); line-height: 1.7; }
a { color: var(--navy-2); }
img { max-width: 100%; }

.wrap { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }

.topbar {
  background: var(--nav-dark);
  color: #cfcfcf;
  font-size: 12px;
  padding: 6px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.topbar a { color: #eee; text-decoration: none; }

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
}
.site-header > .wrap {
  width: 100%;
  max-width: none;
  padding-inline: clamp(24px, 4vw, 64px);
}
.header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  min-height: 0;
  gap: 12px;
  padding-top: 14px;
  padding-bottom: 10px;
}
.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 0 1 auto;
  margin-left: auto;
  min-width: 0;
}
.header-nav-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  width: 100%;
}
.header-lang-inline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.2;
}
.header-lang-inline a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  transition: color .25s ease;
}
.header-lang-inline a:hover,
.header-lang-inline a[aria-current="page"] { color: #fff; }
.header-lang-inline .sep { color: rgba(255,255,255,.45); user-select: none; }

.site-header .drop-lang { display: none; }
.site-header nav.main {
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: none;
}
.site-header nav.main > a,
.site-header .drop-btn {
  padding: 10px 9px;
  font-size: 12px;
}

.site-header--overlay .header-row {
  padding-top: 22px;
  padding-bottom: 12px;
}
.site-header--overlay .logo img { height: 44px; }
.site-header .drop-btn:hover,
.site-header .drop.open > .drop-btn,
.site-header .drop.current > .drop-btn,
.site-header nav.main a:hover,
.site-header nav.main a.active {
  background: rgba(255,255,255,.14);
  color: #fff;
}
.site-header .burger { border-color: rgba(255,255,255,.55); }

.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo img { height: 44px; width: auto; display: block; }

nav.main { display: flex; gap: 0; align-items: stretch; flex-wrap: wrap; justify-content: flex-end; }
nav.main > a, .drop-btn {
  display: block; padding: 10px 9px; text-decoration: none; color: #fff;
  font-weight: 600; font-size: 12px; cursor: pointer; border: 0; background: none;
  font-family: inherit; white-space: nowrap;
  transition: background-color .32s ease, color .32s ease;
}
.drop-btn::after { content: " ▾"; font-size: 9px; opacity: .7; }
.drop { position: relative; }
.drop-lang { margin-left: 4px; }
.drop-lang .menu { left: auto; right: 0; }
.drop-btn:hover, .drop.open > .drop-btn, .drop.current > .drop-btn,
nav.main a:hover, nav.main a.active {
  background: var(--gold); color: #2b2b2b;
}
.menu {
  position: absolute; top: 100%; left: 0; min-width: 200px;
  background: #111; border: 0; border-radius: 0;
  box-shadow: 0 12px 28px rgba(0,0,0,.35); padding: 6px 0;
  display: grid; z-index: 50;
  visibility: hidden; opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: opacity .28s ease, transform .28s ease, visibility .28s;
}
.drop.open > .menu {
  visibility: visible; opacity: 1; pointer-events: auto; transform: none;
}
.menu a { padding: 9px 16px; text-decoration: none; color: #fff; font-size: 13px;
  transition: background-color .25s ease, color .25s ease;
}
.menu a:hover, .menu a[aria-current="page"] { background: var(--gold); color: #2b2b2b; }
.burger { display: none; border: 1px solid #888; background: transparent; color: #fff; border-radius: 4px; padding: 8px 10px; }

.hero-carousel {
  position: relative;
  min-height: 680px;
  color: #fff;
  overflow: hidden;
  background: #111;
}
.page-home .hero-carousel {
  min-height: min(720px, 88vh);
}
.hero-carousel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,.38), transparent);
}
.hero-slides { position: relative; min-height: inherit; }
.page-home .hero-slides { min-height: min(720px, 88vh); }
.hero-kicker {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: .16em;
  font-weight: 700;
  color: var(--gold);
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .55s ease, visibility .55s ease;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(12,12,12,.42) 0%, rgba(12,12,12,.14) 45%, rgba(12,12,12,.06) 100%);
  pointer-events: none;
}
.hero-slide .wrap { position: relative; z-index: 2; }
.hero-slide h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 5vw, 48px);
  letter-spacing: .04em;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}
.hero-slide p {
  max-width: 640px;
  font-size: 18px;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  opacity: .75;
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
}
.hero-nav:hover { opacity: 1; }
.hero-nav.prev { left: 10px; }
.hero-nav.next { right: 10px; }
.btn {
  display: inline-block; margin-top: 18px; padding: 10px 18px; border-radius: 6px;
  background: var(--gold); color: var(--navy); font-weight: 700; text-decoration: none;
}
.btn.ghost { background: transparent; color: #fff; border: 1px solid #fff; margin-left: 8px; }

.hero {
  min-height: 520px; color: #fff; display: grid; align-items: center;
  background:
    linear-gradient(100deg, rgba(12,12,12,.38) 0%, rgba(12,12,12,.12) 42%, rgba(12,12,12,.04) 100%),
    url("../img/index_bg.jpg") center/cover no-repeat;
  position: relative; overflow: hidden;
}
.hero .wrap { position: relative; z-index: 1; }
.hero h1 { margin: 0 0 12px; font-size: clamp(28px, 5vw, 48px); letter-spacing: .04em; text-shadow: 0 2px 12px rgba(0,0,0,.45); }
.hero p { max-width: 640px; font-size: 18px; color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.5); }

.page-hero {
  background:
    linear-gradient(100deg, rgba(20,20,20,.72), rgba(20,20,20,.38)),
    url("../img/circuit.jpg") center/cover no-repeat;
  color: #fff;
  min-height: 280px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 110px 0 48px;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,.38), transparent);
}
.page-hero.has-quote { min-height: 320px; align-items: flex-end; padding: 110px 0 56px; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  border: 12px solid transparent;
  border-top-color: #fff;
  border-bottom: 0;
}
.page-hero.press-hero {
  min-height: 240px;
  align-items: flex-end;
  padding: 110px 0 44px;
}
.page-hero.press-hero::after { display: none; }
.page-hero.press-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: .02em;
}

.press-room { padding-bottom: 72px; }
.press-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  padding-top: 40px;
}
.press-years {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.press-year {
  border: 0;
  background: none;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  padding: 6px 0;
}
.press-year.is-active {
  color: var(--navy);
  box-shadow: inset 0 -3px 0 var(--gold);
}
.press-year-more { position: relative; }
.press-year-more.is-open .press-year-dropdown { display: grid; }
.press-year-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 120px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  padding: 6px 0;
  z-index: 5;
}
.press-year-dropdown .press-year {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 16px;
  box-shadow: none;
}
.press-year-dropdown .press-year.is-active {
  background: #faf6ee;
  color: var(--navy);
}
.press-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.press-item[hidden] { display: none; }
.press-item h3 {
  margin: 0 0 10px;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.35;
  font-weight: 700;
}
.press-item h3 a {
  color: var(--navy);
  text-decoration: none;
}
.press-item h3 a:hover { color: #9a7a28; }
.press-item time {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}
.press-excerpt {
  margin: 0 0 16px;
  color: #555;
  line-height: 1.75;
  font-size: 15px;
}
.press-read {
  font-weight: 700;
  color: #9a7a28;
  text-decoration: none;
}
.press-read:hover { text-decoration: underline; }
.press-pager {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}
.press-pager[hidden] { display: none; }
.press-pager button {
  min-width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
}
.press-pager button.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.press-aside {
  border-top: 3px solid var(--gold);
  padding-top: 18px;
}
.press-aside h3 {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
}
.press-aside-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.press-aside-item h4 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}
.press-aside-item h4 a {
  color: var(--navy);
  text-decoration: none;
}
.press-aside-item h4 a:hover { color: #9a7a28; }
.press-aside-item time {
  color: var(--muted);
  font-size: 13px;
}

.banner-slogan {
  margin: 0;
  max-width: 720px;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 500;
  letter-spacing: .04em;
  text-align: left;
  line-height: 1.45;
}
.banner-cite {
  display: block;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  opacity: .92;
}
.page-head { margin: 0 0 8px; }
.page-head h1 {
  margin: 10px 0 18px;
  font-size: clamp(28px, 3vw, 36px);
  color: #2b2b2b;
  font-weight: 800;
}
.crumb { color: var(--gold); font-size: 13px; }
.crumb a { color: var(--gold); text-decoration: none; }
.crumb a:hover { text-decoration: underline; }

.page-main-only { padding: 36px 0 56px; }
.page-main-only .page-main .section { padding: 0; }
.page-main-only .page-main .wrap { width: 100%; margin: 0; }

.page-with-side {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 48px;
  align-items: start;
  padding: 36px 0 56px;
}
.page-with-side .page-main .section { padding: 0; }
.page-with-side .page-main .wrap { width: 100%; margin: 0; }

.side-nav {
  position: sticky;
  top: 84px;
  padding: 4px 0 8px;
}
.side-nav h4 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 700;
  color: #2b2b2b;
}
.side-nav nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  color: #555;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid #ececec;
}
.side-nav nav a::before {
  content: "";
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  background: var(--gold);
}
.side-nav nav a:hover { color: #9a7a28; }
.side-nav nav a.is-current {
  background: var(--gold);
  color: #fff;
}
.side-nav nav a.is-current::before { background: #fff; }

.section { padding: 56px 0; }
.section.alt { background: var(--bg); }
h2 { margin: 0 0 16px; font-size: 26px; color: var(--navy); }
h3 { color: var(--gold); }
.lead { font-size: 17px; color: #334155; }

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

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; color: inherit; display: block;
  box-shadow: 0 8px 20px rgba(12,35,64,.04);
}
.card:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(12,35,64,.08); }
.thumb {
  height: 160px;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.35)), url("../img/01_iot_rf_transceiver.png") center/cover no-repeat;
}
.thumb.t2 { background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.4)), url("../img/02_rf_asic_design.png") center/cover no-repeat; }
.thumb.t3 { background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.45)), url("../img/03_fiber_optics.png") center/cover no-repeat; }
.thumb.t4 { background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.4)), url("../img/04_satellite_receiver.png") center/cover no-repeat; }
.thumb.t5 { background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.4)), url("../img/05_set_top_box_receiver.png") center/cover no-repeat; }
.thumb.t6 { background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.35)), url("../img/06_4k8k_tv_receiver.png") center/cover no-repeat; }
.card .body { padding: 16px 18px 20px; }
.card h3 { margin: 0 0 6px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }

.product-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 920px;
}
.product-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 20px rgba(12,35,64,.04);
  transition: transform .2s, box-shadow .2s;
}
.product-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(12,35,64,.1);
}
.product-row .thumb { height: 160px; }
.product-row-body {
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-row-body h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--gold);
}
.product-row-body p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
}
.product-row-body .more {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}
.product-intro {
  margin: 0 0 28px;
  color: #445;
  font-size: 16px;
  max-width: 820px;
}

.quote {
  border-left: 4px solid var(--gold); padding: 8px 0 8px 16px; color: var(--muted); font-style: italic;
}

.table-wrap { overflow: auto; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 640px; }
th, td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: var(--navy); color: #fff; font-weight: 600; }
tr:nth-child(even) td { background: #f8fafc; }
.legend { font-size: 13px; color: var(--muted); margin-top: 8px; }
table a { color: var(--gold); font-weight: 700; text-decoration: none; }
table a:hover { text-decoration: underline; }

.year-tab-btns { display: flex; flex-wrap: wrap; gap: 6px; margin: 8px 0 16px; }
.year-tab-btns button {
  border: 1px solid var(--gold); background: #fff; color: #333;
  padding: 8px 18px; cursor: pointer; font: inherit; font-weight: 700;
}
.year-tab-btns button.is-on, .year-tab-btns button:hover {
  background: var(--gold); color: #fff;
}
.year-pane { display: none; }
.year-pane.is-on { display: block; }

.prose p { margin: 0 0 14px; }
.prose ul { padding-left: 20px; }
.prose a { color: var(--gold); font-weight: 700; text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.prose a.btn { color: var(--navy); font-weight: 700; }
.prose .jump-nav a,
.jump-nav a {
  color: #fff;
  text-decoration: none;
}
.prose .jump-nav a:hover,
.jump-nav a:hover {
  color: #fff;
  text-decoration: none;
  background: #b48d38;
}
.esg-covers {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  max-width: 640px; margin: 36px auto 0; text-align: center;
}
.esg-covers h3 { margin: 0 0 14px; font-size: 18px; font-weight: 700; }
.esg-covers img {
  width: 100%; max-width: 280px; height: auto;
  box-shadow: 0 12px 32px rgba(0,0,0,.16); background: #fff;
}
.esg-covers a:hover img { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0,0,0,.22); }
.esg-covers img { transition: transform .2s, box-shadow .2s; }
.kpi { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 24px 0; }
.kpi div { background: var(--nav); color: #fff; border-radius: 4px; padding: 18px; }
.kpi strong { display: block; font-size: 28px; color: var(--gold-2); }

form.contact { display: grid; gap: 12px; max-width: 640px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.partner-list h3 { margin: 28px 0 8px; font-size: 18px; }
.partner-list h3:first-child { margin-top: 0; }
.partner-list p { margin: 0 0 4px; }
.partner-logo { margin: 20px 0 8px; }
.partner-logo img { max-height: 56px; width: auto; max-width: 220px; }
.quality-icons { list-style: none; padding: 0; }
.quality-icons li { display: flex; align-items: center; gap: 12px; margin: 10px 0; }
.quality-icons img { width: 48px; height: 48px; object-fit: contain; }
label { font-size: 13px; font-weight: 600; }
input, select, textarea {
  width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; font: inherit;
}
textarea { min-height: 120px; }
.note { font-size: 13px; color: var(--muted); }

footer.site {
  background: #2b2b2b; color: #cfcfcf; padding: 40px 0 20px; margin-top: 24px;
}
footer.site h4 { color: #fff; margin: 0 0 10px; }
footer.site a { color: #eee; text-decoration: none; display: block; font-size: 14px; padding: 3px 0; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; }
.copy { border-top: 1px solid #4a4a4a; margin-top: 28px; padding-top: 14px; font-size: 12px; color: #999; }

.cookie {
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 50;
  max-width: 720px; margin: auto; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 16px 18px; box-shadow: 0 16px 40px rgba(0,0,0,.16);
  display: none;
}
.cookie.show { display: block; }

.news-item { padding: 16px 0; border-bottom: 1px solid var(--line); }
.news-item time { color: var(--muted); font-size: 13px; }
.news-item h3 a { color: var(--navy); text-decoration: none; }
.news-item h3 a:hover { color: #9a7a28; text-decoration: underline; }
.news-item .more { font-size: 14px; font-weight: 700; color: #9a7a28; }
.news-more-wrap { margin: 28px 0 8px; }
.design-fig { text-align: center; margin: 24px 0 36px; }
.design-fig img { max-width: min(640px, 100%); height: auto; }

.home-intro {
  text-align: center;
  padding: 88px 0 64px;
}
.home-intro .eyebrow, .home-head .eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: .18em;
  font-weight: 700;
  color: var(--gold);
}
.home-intro h2 {
  margin: 0 auto 18px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.3;
  max-width: 720px;
}
.home-intro p {
  margin: 0 auto 22px;
  max-width: 720px;
  font-size: 17px;
  color: #555;
}
.home-head { margin: 0 0 36px; max-width: 720px; }
.home-head h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.3;
}
.home-head p { margin: 0; color: #555; font-size: 16px; }
.home-feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.home-feature img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.home-feature h3 { margin: 0 0 10px; font-size: 28px; color: var(--navy); }
.home-feature p { margin: 0 0 16px; color: #555; }
.home-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 40px;
}
.home-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.home-card:hover { transform: none; box-shadow: none; }
.home-card .thumb { height: 220px; margin-bottom: 18px; }
.home-card h3 {
  margin: 0 0 6px;
  font-size: 22px;
  color: var(--navy);
}
.home-card .tag {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: #222;
}
.home-card p { margin: 0 0 14px; color: #666; font-size: 15px; }
.home-more {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
}
.home-card:hover .home-more, a.home-more:hover { text-decoration: underline; }
.home-tech {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.home-tech-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding-top: 8px;
}
.home-tech-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--navy);
}
.home-tech-card p { margin: 0 0 14px; color: #666; font-size: 15px; }
.home-news { border-top: 1px solid var(--line); }
.home-news-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.home-news-item time { color: var(--muted); font-size: 14px; }
.home-news-item h3 { margin: 0; font-size: 18px; font-weight: 600; }
.home-news-item h3 a { color: var(--navy); text-decoration: none; }
.home-news-item h3 a:hover { color: #9a7a28; }
.home-more-wrap { margin: 28px 0 0; }

@media (max-width: 1100px) {
  .burger { display: block; }
  nav.main {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: rgba(20,20,20,.96); flex-direction: column; padding: 8px 16px 16px;
    z-index: 60;
  }
  nav.main.open { display: flex; }
  .drop .menu {
    position: static; box-shadow: none; border: 0; background: #111;
    transform: none; max-height: 0; overflow: hidden; padding: 0;
  }
  .menu a { color: #fff; }
  .drop.open > .menu { max-height: 480px; padding: 6px 0; }
  nav.main > a, .drop-btn { padding: 12px 8px; }
  .grid-6, .grid-3, .grid-2, .kpi, .foot-grid, .esg-covers { grid-template-columns: 1fr; }
  .page-with-side { grid-template-columns: 1fr; gap: 28px; }
  .side-nav { position: static; order: -1; }
  .hero-nav { font-size: 36px; }
  .hero-nav.prev { left: 4px; }
  .hero-nav.next { right: 4px; }
  .product-row { grid-template-columns: 1fr; }
  .product-row .thumb { height: 180px; }
  .home-feature, .home-cards, .home-tech { grid-template-columns: 1fr; }
  .home-feature img { height: 220px; }
  .home-news-item { grid-template-columns: 1fr; gap: 6px; }
  .press-layout { grid-template-columns: 1fr; gap: 36px; }
  .press-aside { order: -1; }
}
