:root {
  color-scheme: light;
  --navy: #102946;
  --ink: #1d2a3a;
  --muted: #5f6c7d;
  --line: #dbe3ed;
  --soft: #f5f8fb;
  --white: #ffffff;
  --gold: #c9923c;
  --gold-deep: #875714;
  --aqua: #6ca6b5;
  --green: #6f9f7b;
  --rose: #bd7a73;
  --shadow: 0 18px 50px rgba(16, 41, 70, 0.12);
  --container: 1180px;
  --header-height: 74px;
  font-family: "Noto Serif TC", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", Arial, sans-serif;
  line-height: 1.7;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--navy);
  color: var(--white);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(219, 227, 237, 0.88);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 44px;
  color: var(--navy);
  min-width: 252px;
}

.brand img {
  width: 252px;
  max-width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.7vw, 24px);
  flex: 1;
  color: #1f3147;
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 26px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.header-cta {
  flex: 0 0 auto;
  padding: 0 20px;
  color: var(--navy);
  background: var(--gold);
}

.nav-cta {
  display: none;
}

.btn {
  padding: 0 24px;
  border: 1px solid transparent;
}

.btn-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(16, 41, 70, 0.2);
}

.btn-secondary {
  color: var(--gold-deep);
  border-color: rgba(201, 146, 60, 0.45);
  background: rgba(255, 255, 255, 0.8);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  background: #18385c;
}

.btn-secondary:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(201, 146, 60, 0.14);
}

.nav-toggle {
  display: none;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
}

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

.section-anchor {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(540px, 69vh, 690px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 34%, rgba(255, 255, 255, 0.62) 55%, rgba(255, 255, 255, 0.08) 100%),
    url("assets/hero-dashboard.png") right center / min(63vw, 760px) auto no-repeat,
    linear-gradient(120deg, #ffffff 0%, #edf3f8 100%);
}

.hero::before {
  position: absolute;
  inset: auto auto -130px -110px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(201, 146, 60, 0.2);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201, 146, 60, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 146, 60, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent 56%, #000 100%);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(640px, 100%);
  min-width: 0;
  padding: 60px 0 72px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero h1 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: "Noto Serif TC", "Songti TC", serif;
  font-size: clamp(2rem, 4.5vw, 4.45rem);
  font-weight: 800;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.hero-statement {
  margin: 0;
  color: var(--navy);
  font-family: "Noto Serif TC", "Songti TC", serif;
  font-size: clamp(2.05rem, 4.3vw, 4rem);
  font-weight: 800;
  line-height: 1.26;
  overflow-wrap: anywhere;
}

.hero-statement::first-letter {
  color: var(--navy);
}

.hero-statement span {
  color: var(--gold);
}

.hero-subtitle {
  margin: 18px 0 0;
  color: var(--navy);
  font-size: clamp(1.03rem, 1.8vw, 1.35rem);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.hero-text {
  max-width: 570px;
  margin: 20px 0 0;
  color: #435365;
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
  min-width: 0;
}

.commitments {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.commitment-grid article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 96px;
  padding: 18px 24px;
}

.commitment-grid article + article {
  border-left: 1px solid var(--line);
}

.commitment-icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: rgba(108, 166, 181, 0.16);
  font-weight: 900;
}

.commitment-grid h2,
.commitment-grid p {
  margin: 0;
}

.commitment-grid h2 {
  color: var(--navy);
  font-family: "Noto Serif TC", "Songti TC", serif;
  font-size: 1.08rem;
  line-height: 1.35;
}

.commitment-grid p {
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: clamp(66px, 8vw, 104px) 0;
}

.section-heading {
  max-width: 620px;
}

.section-heading.center {
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Noto Serif TC", "Songti TC", serif;
  font-size: clamp(1.95rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.25;
}

.section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
}

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

.service-card,
.case-card,
.news-card,
.lead-form,
.solution-card,
.value-grid article,
.feature-grid article,
.process-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.service-card {
  min-height: 258px;
  padding: 34px 26px 28px;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card:hover,
.case-card:hover,
.news-card:hover,
.solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 146, 60, 0.35);
  box-shadow: var(--shadow);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 8px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(201, 146, 60, 0.13), rgba(108, 166, 181, 0.14));
}

.icon-box svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.solution-card h3,
.value-grid h3,
.feature-grid h3,
.process-list h3,
.case-card h3,
.news-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Noto Serif TC", "Songti TC", serif;
  line-height: 1.35;
}

.service-card p {
  margin: 13px 0 20px;
  color: var(--muted);
}

.service-card a,
.news-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--gold-deep);
  font-weight: 800;
}

.solutions {
  background: var(--soft);
}

.solution-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}

.solution-layout .btn {
  margin-top: 24px;
}

.solution-rail {
  display: grid;
  grid-template-columns: repeat(7, minmax(150px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 18px 4px 24px;
  scroll-snap-type: x mandatory;
}

.solution-card {
  min-width: 150px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.solution-art {
  position: relative;
  display: block;
  height: 136px;
  background:
    linear-gradient(135deg, rgba(16, 41, 70, 0.1), rgba(201, 146, 60, 0.12)),
    var(--soft);
}

.solution-art::before,
.solution-art::after {
  position: absolute;
  content: "";
}

.art-pos::before {
  inset: 28px 24px 30px;
  border: 10px solid rgba(16, 41, 70, 0.14);
  border-top-color: var(--gold);
  border-radius: 8px;
}

.art-pos::after {
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 28px;
  border-radius: 5px;
  background: var(--navy);
  box-shadow: -58px -42px 0 -10px rgba(111, 159, 123, 0.85);
}

.art-commerce::before {
  inset: 26px 34px;
  border: 4px solid var(--navy);
  transform: skew(-12deg);
}

.art-commerce::after {
  left: 48px;
  top: 42px;
  width: 72px;
  height: 50px;
  border-bottom: 5px solid var(--gold);
  border-left: 5px solid var(--gold);
  transform: rotate(-8deg);
}

.art-compass {
  background:
    radial-gradient(circle at 50% 48%, rgba(201, 146, 60, 0.34), transparent 31%),
    radial-gradient(circle at 50% 48%, transparent 35%, rgba(16, 41, 70, 0.82) 36%, rgba(16, 41, 70, 0.82) 37%, transparent 38%),
    #0e263f;
}

.art-compass::before {
  inset: 24px 50px;
  clip-path: polygon(50% 0, 62% 40%, 100% 50%, 62% 60%, 50% 100%, 38% 60%, 0 50%, 38% 40%);
  background: var(--gold);
}

.art-learning::before {
  inset: 24px 30px 32px;
  border: 5px solid var(--navy);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.art-learning::after {
  left: 67px;
  top: 50px;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid var(--gold);
}

.art-monitor::before {
  inset: 24px 38px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, var(--navy) 0 14px, transparent 15px),
    linear-gradient(90deg, transparent 48%, var(--navy) 49% 51%, transparent 52%),
    rgba(108, 166, 181, 0.3);
  border: 4px solid var(--navy);
}

.art-monitor::after {
  right: 42px;
  top: 32px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
}

.art-health::before {
  left: 36px;
  top: 22px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 7px solid rgba(111, 159, 123, 0.5);
  background: rgba(255, 255, 255, 0.72);
}

.art-health::after {
  left: 70px;
  top: 54px;
  width: 46px;
  height: 12px;
  background: var(--green);
  box-shadow: 17px 17px 0 -2px var(--gold), -17px 17px 0 -2px var(--navy);
}

.art-ai {
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    #182b45;
  background-size: 18px 18px;
}

.art-ai::before {
  inset: 28px 34px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.art-ai::after {
  left: 54px;
  top: 44px;
  width: 58px;
  height: 48px;
  background:
    linear-gradient(var(--gold) 0 0) 0 11px / 58px 4px no-repeat,
    linear-gradient(var(--aqua) 0 0) 0 26px / 46px 4px no-repeat,
    linear-gradient(var(--rose) 0 0) 0 41px / 52px 4px no-repeat;
}

.solution-card h3 {
  min-height: 50px;
  padding: 16px 14px 4px;
  font-size: 1rem;
  text-align: center;
}

.solution-card p {
  margin: 0;
  padding: 0 14px 18px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.about {
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.about-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

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

.value-grid article {
  min-height: 210px;
  padding: 26px 20px;
  text-align: center;
}

.value-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border: 1px solid rgba(201, 146, 60, 0.28);
  border-radius: 50%;
  color: var(--gold-deep);
  background: rgba(201, 146, 60, 0.08);
  font-weight: 900;
}

.value-grid p,
.feature-grid p,
.process-list p,
.case-card p,
.case-card li,
.news-card p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
}

.process {
  background:
    linear-gradient(rgba(16, 41, 70, 0.03), rgba(16, 41, 70, 0.03)),
    #fff;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 188px;
  padding: 28px 18px 22px;
  text-align: center;
}

.process-list li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -15px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--navy);
  background: rgba(201, 146, 60, 0.1);
  font-weight: 900;
}

.cases {
  background: var(--soft);
}

.case-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
}

.filter-btn.active {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.search-field input {
  width: min(300px, 100%);
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
}

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

.case-card {
  padding: 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.case-tag {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(201, 146, 60, 0.12);
  font-size: 0.82rem;
  font-weight: 800;
}

.case-card ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.card-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 20px;
  color: var(--gold-deep);
  font-weight: 900;
}

.case-card li {
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
}

.case-card li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.empty-state {
  margin: 24px 0 0;
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.detail-main {
  background: var(--white);
}

.detail-hero {
  padding: clamp(64px, 8vw, 104px) 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86)),
    url("assets/hero-dashboard.png") right center / min(52vw, 680px) auto no-repeat,
    linear-gradient(120deg, #ffffff 0%, #edf3f8 100%);
}

.detail-hero-inner {
  max-width: 780px;
}

.detail-back {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--gold-deep);
  font-weight: 900;
}

.detail-hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: "Noto Serif TC", "Songti TC", serif;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.16;
}

.detail-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: #435365;
  font-size: 1.1rem;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.detail-body-section {
  background: var(--soft);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: start;
}

.detail-content,
.detail-side-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 41, 70, 0.06);
}

.detail-content {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.detail-block {
  padding: 30px;
  background: var(--white);
}

.detail-block h2,
.detail-side-card h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: "Noto Serif TC", "Songti TC", serif;
  font-size: 1.45rem;
  line-height: 1.35;
}

.detail-block p,
.detail-side-card p {
  margin: 0;
  color: var(--muted);
}

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

.detail-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
}

.detail-list li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
}

.faq-list summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin-top: 12px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(201, 146, 60, 0.12);
  font-weight: 900;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--gold-deep);
  font-weight: 900;
}

.article-body {
  display: grid;
  gap: 18px;
}

.article-body p {
  font-size: 1.05rem;
}

.detail-side {
  display: grid;
  gap: 18px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.detail-side-card {
  padding: 24px;
}

.detail-side-card .btn {
  width: 100%;
  margin-top: 20px;
}

.related-list {
  display: grid;
  gap: 12px;
}

.related-list a {
  display: grid;
  gap: 5px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.related-list strong {
  color: var(--navy);
}

.related-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-layout,
.growth-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: center;
}

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

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

.ai-section {
  background:
    linear-gradient(135deg, rgba(108, 166, 181, 0.12), rgba(201, 146, 60, 0.08)),
    #ffffff;
}

.growth {
  background: var(--white);
}

.growth-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.growth-panel div {
  min-height: 160px;
  padding: 30px;
  background: var(--white);
}

.growth-panel span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold-deep);
  font-weight: 900;
}

.growth-panel strong {
  display: block;
  color: var(--navy);
  font-family: "Noto Serif TC", "Songti TC", serif;
  font-size: 1.22rem;
  line-height: 1.45;
}

.trust {
  padding-top: 70px;
  padding-bottom: 70px;
  background: var(--soft);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: center;
}

.logo-strip span {
  display: grid;
  place-items: center;
  min-height: 70px;
  border: 1px solid rgba(219, 227, 237, 0.85);
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  font-family: "Noto Serif TC", "Songti TC", serif;
  font-size: 1.08rem;
  font-weight: 800;
}

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

.news-card {
  min-height: 210px;
  padding: 30px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.news-card p {
  margin: 0 0 12px;
  color: var(--gold-deep);
  font-weight: 800;
}

.news-card h3 {
  min-height: 86px;
  margin-bottom: 18px;
}

.contact {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 41, 70, 0.97), rgba(16, 41, 70, 0.84)),
    url("assets/hero-dashboard.png") right center / cover no-repeat;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.contact .eyebrow,
.contact a {
  color: #f0c981;
}

.contact h2 {
  margin: 0;
  font-family: "Noto Serif TC", "Songti TC", serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.25;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
}

.contact-list div {
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}

.contact-list dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-list dd {
  margin: 4px 0 0;
}

.contact-list a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.lead-form {
  padding: 30px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

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

.form-grid label,
.consent {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}

.form-grid label span {
  color: #b14c43;
}

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

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfd9e4;
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
}

.form-optional {
  border-top: 1px solid var(--line);
  padding-top: 4px;
}

.form-optional summary {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.form-optional summary::-webkit-details-marker {
  display: none;
}

.form-optional summary::after {
  content: "+";
  color: var(--gold-deep);
  font-size: 1.35rem;
}

.form-optional[open] summary::after {
  content: "−";
}

.optional-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding-top: 14px;
}

.form-grid textarea {
  resize: vertical;
  min-height: 130px;
  padding-top: 10px;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus,
.search-field input:focus,
.filter-btn:focus-visible,
.btn:focus-visible,
.header-cta:focus-visible,
.nav-toggle:focus-visible,
.site-nav a:focus-visible {
  outline: 3px solid rgba(201, 146, 60, 0.34);
  outline-offset: 2px;
}

.field-error {
  border-color: #b14c43 !important;
  box-shadow: 0 0 0 3px rgba(177, 76, 67, 0.12);
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.consent a {
  color: var(--gold-deep);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--navy);
}

.honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  min-height: 28px;
  margin: 18px 0 0;
  color: var(--navy);
  font-weight: 800;
}

.form-message.error {
  color: #b14c43;
}

.form-message.success {
  color: #2f7453;
}

.form-submit {
  width: 100%;
  margin-top: 12px;
  border: 0;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.site-footer {
  padding: 46px 0 28px;
  background: #0d2238;
  color: rgba(255, 255, 255, 0.76);
}

.footer-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
}

.privacy-nav {
  justify-content: flex-end;
}

.policy-content {
  max-width: 920px;
}

.policy-content a {
  color: var(--gold-deep);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer p {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  justify-content: flex-end;
  font-weight: 800;
}

.footer-links a:hover {
  color: #f0c981;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 12px;
    font-size: 0.86rem;
  }

  .brand {
    min-width: 230px;
  }

  .brand img {
    width: 230px;
  }

  .service-grid,
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-grid,
  .process-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-list li:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .header-inner {
    justify-content: space-between;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 0;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    padding: 14px 18px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-120%);
    transition: transform 0.2s ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(219, 227, 237, 0.78);
    text-align: center;
  }

  .site-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav .nav-cta {
    display: flex;
    min-height: 48px;
    justify-content: center;
    width: min(100%, 480px);
    margin-top: 14px;
    margin-right: auto;
    margin-left: auto;
    border: 0;
    border-radius: 6px;
    color: var(--navy);
    background: var(--gold);
  }

  .privacy-nav {
    display: none;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 34px, var(--container));
  }

  .hero {
    align-items: flex-end;
    min-height: 690px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 52%, rgba(255, 255, 255, 0.36) 100%),
      url("assets/hero-dashboard.png") center bottom / min(760px, 118vw) auto no-repeat,
      linear-gradient(120deg, #ffffff 0%, #edf3f8 100%);
  }

  .hero::after {
    display: none;
  }

  .hero-copy {
    padding: 38px 0 310px;
  }

  .solution-layout,
  .about-layout,
  .feature-layout,
  .growth-layout,
  .contact-layout,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.84)),
      url("assets/hero-dashboard.png") center bottom / min(760px, 118vw) auto no-repeat,
      linear-gradient(120deg, #ffffff 0%, #edf3f8 100%);
  }

  .detail-side {
    position: static;
  }

  .solution-rail {
    grid-template-columns: repeat(7, 170px);
  }

  .logo-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  body {
    line-height: 1.65;
  }

  .brand {
    min-width: auto;
  }

  .brand img {
    width: min(228px, 58vw);
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 30px 0 260px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-statement {
    font-size: clamp(2rem, 10.5vw, 2.55rem);
    line-height: 1.2;
  }

  .hero-subtitle {
    margin-top: 14px;
    font-size: 1rem;
  }

  .hero-text {
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .commitment-grid {
    grid-template-columns: 1fr;
    padding: 8px 0;
  }

  .commitment-grid article {
    justify-content: flex-start;
    min-height: 72px;
    padding: 12px 8px;
  }

  .commitment-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-actions,
  .case-toolbar,
  .footer-layout {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
  }

  .detail-actions .btn {
    width: 100%;
  }

  .service-grid,
  .feature-grid,
  .process-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 16px;
    min-height: 0;
    padding: 20px 18px;
    text-align: left;
  }

  .service-card .icon-box {
    grid-row: 1 / 4;
    width: 52px;
    height: 52px;
    margin: 0;
  }

  .service-card p {
    margin: 8px 0 4px;
  }

  .value-grid,
  .case-grid,
  .news-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 88%);
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
  }

  .value-grid article,
  .case-card,
  .news-card {
    min-height: 0;
    scroll-snap-align: start;
  }

  .case-card ul {
    display: none;
  }

  .process-list li {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 14px;
    min-height: 0;
    text-align: left;
  }

  .process-list span {
    grid-row: 1 / 3;
    width: 44px;
    height: 44px;
    margin: 0;
  }

  .process-list p {
    margin: 6px 0 0;
  }

  .growth-panel,
  .logo-strip {
    grid-template-columns: 1fr;
  }

  .search-field input {
    width: 100%;
  }

  .lead-form {
    padding: 22px;
  }

  .optional-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-links a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand img {
    width: min(198px, 54vw);
  }

  .hero-copy {
    padding-top: 28px;
    padding-bottom: 238px;
  }

  .section {
    padding: 58px 0;
  }

  .service-card,
  .case-card,
  .news-card,
  .feature-grid article,
  .value-grid article,
  .process-list li {
    padding: 24px 20px;
  }

  .service-card {
    padding: 20px 18px;
  }
}
