:root {
  --ink: #142033;
  --muted: #667085;
  --line: #e4e9f2;
  --soft: #f5f8fc;
  --card: #ffffff;
  --brand: #1c64f2;
  --brand-dark: #174ea6;
  --brand-2: #0f766e;
  --accent: #f59e0b;
  --dark: #111827;
  --shadow: 0 24px 70px rgba(15, 23, 42, .11);
  --soft-shadow: 0 12px 34px rgba(15, 23, 42, .08);
  --radius: 24px;
  font-family: "Noto Sans TC", "Microsoft JhengHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(28, 100, 242, .09), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #fff 42%, #f7fafc 100%);
  line-height: 1.68;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(226, 232, 240, .84);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 28px rgba(28, 100, 242, .24);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  letter-spacing: -.02em;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: #475467;
  font-size: 14px;
  white-space: nowrap;
}

.nav a {
  padding: 9px 12px;
  border-radius: 999px;
  text-decoration: none;
}

.nav a:hover,
.nav-cta {
  color: #0f172a;
  background: #eef4ff;
}

.hero,
.page-hero,
.section {
  padding-right: clamp(18px, 5vw, 72px);
  padding-left: clamp(18px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(56px, 8vw, 112px);
  padding-bottom: 44px;
}

.page-hero {
  max-width: 1060px;
  padding-top: clamp(54px, 7vw, 96px);
  padding-bottom: clamp(34px, 5vw, 64px);
}

.hero-copy h1,
.page-hero h1 {
  max-width: 920px;
  margin: 12px 0 20px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.page-hero h1 {
  font-size: clamp(36px, 4.6vw, 58px);
}

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

.breadcrumb {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--brand);
  text-decoration: none;
}

.lead {
  max-width: 800px;
  color: #475467;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.button,
.hero-panel button,
.quote-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.primary,
.hero-panel button,
.quote-form button {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 16px 32px rgba(28, 100, 242, .24);
}

.secondary {
  color: #1d2939;
  background: #fff;
  border: 1px solid var(--line);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 940px;
  margin: 28px 0 0;
}

.trust-strip div,
.metric-card,
.hero-panel,
.service-grid article,
.solution-card,
.note-grid article,
.faq details,
.quote-form,
.page-card,
.contact-note {
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-strip div {
  padding: 14px 16px;
  box-shadow: none;
}

.trust-strip dt,
.info-list dt {
  color: var(--muted);
  font-size: 12px;
}

.trust-strip dd,
.info-list dd {
  margin: 2px 0 0;
  font-weight: 900;
}

.hero-panel,
.page-card,
.metric-card,
.solution-card,
.note-grid article {
  padding: 26px;
}

.hero-panel h2 {
  margin: 12px 0 8px;
  font-size: 28px;
  line-height: 1.2;
}

.panel-status {
  display: inline-flex;
  padding: 6px 10px;
  color: #7c2d12;
  font-size: 13px;
  font-weight: 900;
  border-radius: 999px;
  background: #fff7ed;
}

.mini-form,
.quote-form {
  display: grid;
  gap: 14px;
}

.mini-form {
  margin-top: 20px;
}

label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(28, 100, 242, .12);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.section {
  padding-top: clamp(42px, 6vw, 86px);
  padding-bottom: clamp(42px, 6vw, 86px);
}

.compact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 24px;
}

.linked-card {
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.linked-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(15, 23, 42, .14);
}

.metric-card strong,
.page-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.metric-card span {
  display: block;
  font-size: 20px;
  font-weight: 900;
}

.metric-card p,
.service-grid p,
.solution-card p,
.solution-card li,
.note-grid p,
.faq p,
.contact p,
.hero-panel p,
.page-card p,
.feature-list p,
.check-list p {
  color: var(--muted);
}

.split,
.contact,
.two-column {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

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

.split h2,
.section > h2,
.contact h2,
.contact-band h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.service-grid,
.solution-grid,
.note-grid,
.content-grid {
  display: grid;
  gap: 16px;
}

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

.content-grid.three,
.solution-grid,
.note-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid article {
  padding: 24px;
}

.service-grid span,
.note-grid time {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-grid h3,
.solution-card h3,
.note-grid h3,
.page-card h2 {
  margin: 8px 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.solution-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--brand);
  font-weight: 900;
  text-decoration: none;
}

.soft-block {
  margin: 0 clamp(18px, 5vw, 72px);
  padding-right: clamp(18px, 4vw, 48px);
  padding-left: clamp(18px, 4vw, 48px);
  border: 1px solid #e7edf7;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(238, 244, 255, .86), rgba(240, 253, 250, .72));
}

.dark {
  color: #fff;
  background: radial-gradient(circle at top left, rgba(28, 100, 242, .38), transparent 34%), var(--dark);
}

.dark .eyebrow {
  color: #93c5fd;
}

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

.timeline li {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .07);
}

.timeline span {
  color: rgba(255, 255, 255, .72);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.service-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.service-table th,
.service-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.service-table th {
  color: #344054;
  background: #f8fafc;
  font-size: 14px;
}

.service-table tr:last-child td {
  border-bottom: 0;
}

.feature-list,
.check-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.feature-list p,
.check-list p {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.highlight-card {
  background: linear-gradient(135deg, #ffffff, #eef4ff);
}

.info-list {
  display: grid;
  gap: 14px;
  margin: 16px 0 0;
}

.info-list div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.contact {
  padding-top: 22px;
}

.contact-note {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 18px;
  box-shadow: var(--soft-shadow);
}

.contact-note a {
  color: var(--brand);
  font-weight: 900;
  text-decoration: none;
}

.quote-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 26px;
}

.quote-form .full,
.quote-form button,
.quote-form small {
  grid-column: 1 / -1;
}

.quote-form small {
  color: var(--muted);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 clamp(18px, 5vw, 72px) clamp(42px, 6vw, 86px);
  padding: clamp(28px, 5vw, 48px);
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 255, 255, .22), transparent 30%),
    linear-gradient(135deg, #172554, #1c64f2);
}

.contact-band .eyebrow {
  color: #bfdbfe;
}

.contact-band h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #cbd5e1;
  background: #0f172a;
}

.footer p {
  margin: 4px 0 0;
  color: #94a3b8;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }
}

@media (max-width: 980px) {
  .hero,
  .split,
  .contact,
  .two-column {
    grid-template-columns: 1fr;
  }

  .compact,
  .solution-grid,
  .note-grid,
  .content-grid,
  .content-grid.three {
    grid-template-columns: 1fr;
  }

  .quote-form,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: static;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 36px;
  }

  .nav a {
    padding: 8px 10px;
  }

  .soft-block,
  .contact-band {
    margin-right: 12px;
    margin-left: 12px;
    border-radius: 24px;
  }
}
