@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Noto+Sans+TC:wght@400;500;600;700&display=swap");

:root {
  --ink: #111827;
  --muted: #5b6472;
  --line: #d8dee8;
  --panel: #f4f7fc;
  --panel-2: #e8eef8;
  --brand: #0a0b0d;
  --brand-navy: #24479b;
  --brand-navy-deep: #1a356f;
  --brand-2: #0052ff;
  --brand-sky: #3b82f6;
  --accent: #0052ff;
  --accent-soft: rgba(0, 82, 255, 0.1);
  --ok: #16815a;
  --risk: #a94722;
  --white: #ffffff;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow: 0 22px 55px rgba(17, 24, 39, 0.1);
  --shadow-sm: 0 8px 24px rgba(36, 71, 155, 0.08);
  --shadow-hover: 0 20px 48px rgba(36, 71, 155, 0.16);
  --gradient-hero: linear-gradient(135deg, #f8fbff 0%, #eef4ff 48%, #f5f8fc 100%);
  --gradient-cta: linear-gradient(125deg, #1a356f 0%, #24479b 52%, #2d5cb8 100%);
  --gradient-band: linear-gradient(180deg, #f4f7fc 0%, #eef3fb 100%);
  --visual-height: clamp(240px, 26vw, 320px);
  --card-visual-height: 240px;
  --card-visual-height-compact: 200px;
  --card-body-min-height: 0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
  line-height: 1.62;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1560px, calc(100% - 72px)); margin: 0 auto; }

.topbar {
  background: linear-gradient(90deg, var(--brand-navy-deep), var(--brand-navy));
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.topbar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(216, 222, 232, 0.85);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 21px;
  font-weight: 780;
  color: #24479b;
  letter-spacing: 0;
  white-space: nowrap;
}
.brand img {
  display: none;
}
.brand span {
  color: #24479b;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}
nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #344054;
  font-size: 13px;
  white-space: nowrap;
}
nav a.active { color: var(--brand-2); font-weight: 740; }
.nav-menu {
  position: relative;
}
.nav-menu summary {
  cursor: pointer;
  list-style: none;
  font-weight: 680;
  color: #344054;
}
.nav-menu summary::-webkit-details-marker { display: none; }
.nav-menu summary::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}
.nav-menu[open] summary, .nav-menu.active summary { color: var(--brand-2); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 178px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow);
}
.nav-dropdown a {
  padding: 9px 10px;
  border-radius: 6px;
  color: #344054;
}
.nav-dropdown a:hover, .nav-dropdown a.active {
  background: var(--panel);
  color: var(--brand-2);
}
.mobile-nav {
  display: none;
  position: relative;
  margin-left: auto;
  z-index: 120;
}
.mobile-nav > summary {
  cursor: pointer;
  list-style: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(216, 222, 232, 0.95);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-navy);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.mobile-nav > summary::-webkit-details-marker { display: none; }
.mobile-nav > summary::marker { content: ""; }
.mobile-nav[open] > summary {
  border-color: rgba(36, 71, 155, 0.35);
  background: var(--accent-soft);
  box-shadow: var(--shadow-hover);
}
.mobile-nav-bars {
  position: relative;
  display: block;
  width: 20px;
  height: 14px;
}
.mobile-nav-bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-navy);
  transition: transform 0.22s ease, top 0.22s ease, opacity 0.22s ease;
}
.mobile-nav-bars span:nth-child(1) { top: 0; }
.mobile-nav-bars span:nth-child(2) { top: 6px; }
.mobile-nav-bars span:nth-child(3) { top: 12px; }
.mobile-nav[open] > summary .mobile-nav-bars span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
.mobile-nav[open] > summary .mobile-nav-bars span:nth-child(2) {
  opacity: 0;
}
.mobile-nav[open] > summary .mobile-nav-bars span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}
.mobile-nav-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
}
.mobile-nav-icon::before,
.mobile-nav-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-navy);
}
.mobile-nav-icon::before {
  transform: rotate(45deg);
}
.mobile-nav-icon::after {
  transform: rotate(-45deg);
}
.mobile-nav-scrim {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 110;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(15, 23, 42, 0.48);
  cursor: pointer;
  animation: mobile-nav-fade-in 0.2s ease;
}
.mobile-nav[open] .mobile-nav-scrim {
  display: block;
}
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 115;
  width: min(320px, 88vw);
  height: 100dvh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-left: 1px solid var(--line);
  box-shadow: -16px 0 48px rgba(15, 23, 42, 0.16);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.mobile-nav[open] .mobile-nav-drawer {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 14px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fafcff 0%, #fff 100%);
}
.mobile-nav-drawer-brand {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-navy);
}
.mobile-nav-close {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-navy);
  background: #fff;
  cursor: pointer;
}
.mobile-nav-drawer-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 10px 12px 18px;
  display: grid;
  gap: 6px;
  align-content: start;
}
.mobile-nav-item {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: #1f2937;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}
.mobile-nav-item:hover {
  background: var(--panel);
  color: var(--brand-navy);
}
.mobile-nav-item.active {
  background: var(--accent-soft);
  color: var(--brand-navy);
  font-weight: 700;
}
.mobile-nav-group {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fafcff;
  overflow: hidden;
}
.mobile-nav-group-summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--brand-navy);
  font-size: 14px;
  font-weight: 700;
}
.mobile-nav-group-summary::-webkit-details-marker { display: none; }
.mobile-nav-group-summary::marker { content: ""; }
.mobile-nav-group-summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}
.mobile-nav-group[open] > .mobile-nav-group-summary::after {
  transform: rotate(225deg);
}
.mobile-nav-group-panel {
  display: grid;
  gap: 2px;
  padding: 0 6px 8px;
}
.mobile-nav-group-panel .mobile-nav-item {
  min-height: 40px;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  border: 1px solid rgba(216, 222, 232, 0.65);
}
.mobile-nav-group-panel .mobile-nav-item.active {
  border-color: rgba(36, 71, 155, 0.28);
}
.mobile-nav-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.mobile-nav-footer .mobile-nav-item {
  justify-content: center;
  min-height: 42px;
  font-size: 14px;
  border: 1px solid var(--line);
  background: #fff;
}
.mobile-nav-footer .mobile-nav-item.active {
  border-color: rgba(36, 71, 155, 0.28);
}
@keyframes mobile-nav-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
body:has(.mobile-nav[open]) {
  overflow: hidden;
}
.nav-actions { display: none; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
  background: #fff;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand-navy-deep), var(--brand-navy) 55%, var(--brand-sky));
  color: #fff;
  box-shadow: 0 10px 28px rgba(36, 71, 155, 0.28);
}
.btn.gold {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-2), var(--brand-sky));
  box-shadow: 0 10px 28px rgba(0, 82, 255, 0.22);
}
.btn:hover {
  border-color: var(--brand-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn.primary:hover,
.btn.gold:hover {
  border-color: transparent;
  box-shadow: 0 14px 32px rgba(36, 71, 155, 0.32);
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: #0d2230;
  font-weight: 800;
}
h2 {
  color: #102432;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  font-weight: 800;
}
h3 { color: #142738; line-height: 1.28; }
.lead { font-size: 18px; color: #45515f; max-width: 690px; margin-bottom: 28px; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-navy);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(0, 82, 255, 0.12);
}
.eyebrow::before, .section-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-2);
  box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.15);
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  align-items: center;
  background: var(--gradient-hero);
  border-bottom: 1px solid rgba(216, 222, 232, 0.7);
  overflow: visible;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.55;
}
.hero::before {
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.18) 0%, transparent 70%);
}
.hero::after {
  width: min(380px, 55vw);
  height: min(380px, 55vw);
  bottom: -100px;
  left: -60px;
  background: radial-gradient(circle, rgba(36, 71, 155, 0.14) 0%, transparent 70%);
}
.hero > .container { position: relative; z-index: 1; }
.hero.compact { min-height: auto; }
.hero.compact::before,
.hero.compact::after { opacity: 0.35; }
.hero-inner { padding: 74px 0 64px; max-width: 760px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 620px);
  gap: 72px;
  align-items: center;
  padding: 56px 0 58px;
}
.hero-copy { min-width: 0; }
.hero-media {
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  height: auto;
}
.hero-media img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 32px; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 20px;
  max-width: 880px;
  align-items: center;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(216, 222, 232, 0.65);
}
.trust-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  border: 1px solid rgba(216, 222, 232, 0.9);
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  color: #344054;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.trust-item:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 82, 255, 0.25);
  box-shadow: var(--shadow-hover);
}
.trust-item i {
  color: var(--brand-navy);
  font-size: 16px;
  line-height: 1;
}
.trust-item strong {
  display: block;
  color: var(--brand-navy);
  font-weight: 800;
}
.trust-item-sub {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.5;
}
.notice {
  max-width: 800px;
  padding: 14px 16px;
  border: 1px solid #d8e3e5;
  border-left: 4px solid var(--brand-2);
  background: #fbfdfd;
  color: #53606e;
  font-size: 14px;
  border-radius: 6px;
}
.notice.service-distinction {
  max-width: none;
  margin-top: 28px;
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.65;
  border-radius: var(--radius-sm);
}
.notice.service-distinction strong { color: #142738; }
.notice-compact {
  margin-top: 0;
  margin-bottom: 28px;
}
.section-after-hero {
  padding-top: 40px;
}
.settlement-block {
  margin-top: 0;
}
.settlement-block .list + .btn {
  margin-top: 32px;
  display: inline-flex;
}

.core-services { align-items: stretch; }
.core-service-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.core-service-card .num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--brand-navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.core-service-card .num::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-2);
}
.core-service-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.core-service-card p { color: var(--muted); font-size: 14px; margin: 0 0 14px; }
.core-service-tag {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.core-service-scale {
  display: inline-block;
  margin-top: auto;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--brand-navy);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}
.core-service-card .list { margin-top: 4px; }

.service-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-flow-step {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  font-size: 15px;
  line-height: 1.65;
  color: #344054;
}
.service-flow-step strong {
  display: block;
  color: var(--brand-navy);
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.35;
}
@media (max-width: 940px) {
  .service-flow { grid-template-columns: 1fr; }
}

section { padding: 76px 0; }
section.section-tint {
  background: linear-gradient(180deg, #fafcff 0%, #fff 100%);
  padding: 88px 0;
}
section.section-tint .section-head {
  max-width: 820px;
  margin-bottom: 48px;
}
section.section-tint .section-head h2 {
  margin-bottom: 18px;
}
section.section-tint .section-head p {
  font-size: 17px;
  line-height: 1.75;
  max-width: 68ch;
}
section.section-tint .section-kicker {
  margin-bottom: 20px;
}
section.section-tint .service-flow {
  margin-bottom: 44px;
}
section.section-tint .notice.service-distinction {
  margin-top: 0;
  margin-bottom: 52px;
}
section.section-tint .stats {
  margin-top: 0;
}
.band {
  background: var(--gradient-band);
  border-block: 1px solid var(--line);
  position: relative;
}
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(36, 71, 155, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.35;
  pointer-events: none;
}
.band > .container { position: relative; z-index: 1; }
.section-head { max-width: 790px; margin-bottom: 34px; }
.section-head p { color: var(--muted); font-size: 16px; margin-bottom: 0; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.grid-2-start > pre {
  align-self: stretch;
  min-height: 100%;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.grid-3--media {
  align-items: start;
}
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 82, 255, 0.2);
  box-shadow: var(--shadow-hover);
}
.card.large { min-height: 300px; }
.card .num {
  color: var(--accent);
  font-weight: 820;
  font-size: 13px;
  margin-bottom: 12px;
}
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { color: var(--muted); margin-bottom: 18px; }
.list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #344054;
  font-size: 14px;
}
.list li { display: flex; gap: 9px; align-items: flex-start; }
.list li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--brand-2);
  flex: 0 0 auto;
}

.image-frame {
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  height: var(--visual-height);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.image-frame.short,
.image-frame.tall {
  height: var(--visual-height);
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
}

.media-card {
  display: flex;
  flex-direction: column;
  height: auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.media-card:hover {
  transform: translateY(-3px);
  border-color: rgba(36, 71, 155, 0.22);
  box-shadow: var(--shadow-hover);
}
.media-card-visual {
  flex: 0 0 var(--card-visual-height);
  width: 100%;
  height: var(--card-visual-height);
  min-height: var(--card-visual-height);
  max-height: var(--card-visual-height);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0;
  background: #f8fbff;
  border-bottom: 1px solid var(--line);
}
.media-card-visual img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}
.media-card:not(:has(.list)) .media-card-visual {
  flex: 0 0 var(--card-visual-height-compact);
  height: var(--card-visual-height-compact);
  min-height: var(--card-visual-height-compact);
  max-height: var(--card-visual-height-compact);
}
.media-card-body {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  min-height: var(--card-body-min-height);
  margin: 0;
  padding: 18px 20px 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.media-card-body .list {
  flex: 0 1 auto;
  margin-top: 8px;
}
.media-card-body h3 { font-size: 18px; margin-bottom: 8px; }
.media-card-body p { color: var(--muted); margin: 0; font-size: 14px; }
.media-card .num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: var(--brand-navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
  pointer-events: none;
  cursor: default;
}
.media-card .num::before,
.media-panel-col .num::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-2);
  flex: 0 0 auto;
}

.media-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.media-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}
.media-panel-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-right: 1px solid var(--line);
}
.media-panel-col:last-child {
  border-right: 0;
}
.media-panel-col .media-card-visual {
  border-bottom: 1px solid var(--line);
}
.media-panel-col .media-card-body {
  min-height: 0;
  flex: 0 1 auto;
}
.media-panel-col .num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--brand-navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}
#collection .section-head,
#core-services .section-head {
  margin-bottom: 32px;
}

.logo-marquee-section {
  padding: 32px 0 22px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  position: relative;
}
.logo-marquee-section::before,
.logo-marquee-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}
.logo-marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}
.logo-marquee-section::after {
  right: 0;
  background: linear-gradient(270deg, #f8fbff, transparent);
}
.logo-marquee-section .logo-slider {
  margin-top: 0;
}
.logo-slider {
  overflow: hidden;
  background: transparent;
  padding: 0;
  position: relative;
}
.logo-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: logoScroll 34s linear infinite;
}
.logo-slider:hover .logo-track { animation-play-state: paused; }
.logo-item {
  width: 178px;
  min-height: 92px;
  border: 0;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 16px;
  color: #111827;
  background: rgba(255, 255, 255, 0.7);
  flex: 0 0 auto;
  transition: transform 0.2s ease, background 0.2s ease;
}
.logo-item:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.logo-item i {
  font-size: 28px;
  color: var(--brand-navy);
  line-height: 1;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--accent-soft);
}
.logo-item span { font-size: 13px; font-weight: 700; color: #344054; }
@keyframes logoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 7px)); }
}

.form-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 760; color: #344054; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid rgba(0, 82, 255, .18);
  border-color: var(--brand-2);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}
.stat {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.stat:hover {
  transform: translateY(-3px);
  border-color: rgba(36, 71, 155, 0.25);
  box-shadow: var(--shadow-hover);
}
.stat strong {
  display: block;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  margin-bottom: 10px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-navy-deep), var(--brand-sky));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

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

.industry-logo-slider {
  overflow: hidden;
  margin-top: 30px;
}
.industry-logo-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: logoScroll 36s linear infinite;
}
.industry-logo-slider:hover .industry-logo-track { animation-play-state: paused; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] {
  border-color: rgba(36, 71, 155, 0.25);
  box-shadow: var(--shadow-hover);
}
.faq-item summary {
  cursor: pointer;
  padding: 17px 18px;
  font-weight: 780;
  color: #142738;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--brand-2);
  font-weight: 820;
}
.faq-item[open] summary::after { content: "-"; }
.faq-item p {
  border-top: 1px solid var(--line);
  color: var(--muted);
  margin: 0;
  padding: 15px 18px 18px;
  font-size: 15px;
}

.matrix {
  display: grid;
  grid-template-columns: 260px 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.matrix-nav {
  background: linear-gradient(180deg, var(--brand-navy-deep), var(--brand-navy));
  color: #dbe6ea;
  padding: 18px;
  display: grid;
  gap: 10px;
  align-content: start;
}
.matrix-nav div {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  font-size: 14px;
  font-weight: 700;
}
.matrix-body {
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.capability { border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.capability h3 { font-size: 18px; margin-bottom: 6px; }
.capability p { color: var(--muted); margin: 0; font-size: 14px; }

.process-card {
  border-top: 0;
  background: #fff;
  padding: 20px;
  min-height: 184px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.process-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.process-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: var(--brand-navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.3;
  pointer-events: none;
  cursor: default;
}
.process-card span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-2);
  flex: 0 0 auto;
}
.process-card h3 { font-size: 18px; margin-bottom: 8px; }
.process-card p { color: var(--muted); font-size: 14px; margin: 0; }

.feature-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.feature-table th, .feature-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}
.feature-table th { background: #f8fafc; color: #253141; }
.feature-table td { color: #485564; }
.feature-table tr:last-child td { border-bottom: 0; }

pre {
  margin: 0;
  padding: 22px;
  overflow: auto;
  border-radius: 8px;
  background: #101923;
  color: #d9f0e7;
  font-size: 13px;
  line-height: 1.7;
  border: 1px solid #223241;
}
.rule {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
}
.rule b { color: var(--risk); }
.rule span:last-child { color: #285064; }

.cta {
  position: relative;
  overflow: hidden;
  background: var(--gradient-cta);
  color: #fff;
  padding: 64px 0;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.14), transparent 42%),
    radial-gradient(circle at 88% 80%, rgba(59, 130, 246, 0.35), transparent 45%);
  pointer-events: none;
}
.cta > .container { position: relative; z-index: 1; }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.cta h2 { color: #fff; margin-bottom: 8px; }
.cta p { color: rgba(255,255,255,.74); margin: 0; max-width: 760px; }
.cta .btn {
  border-color: #fff;
  background: #fff;
  color: var(--brand-navy);
}
.cta .btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-navy);
}

footer {
  background: linear-gradient(180deg, #152a52 0%, #0a0b0d 100%);
  color: rgba(255, 255, 255, 0.72);
  padding: 42px 0;
  font-size: 14px;
}
footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 28px; }
footer h3 { color: #fff; font-size: 14px; margin-bottom: 10px; }
footer p { margin: 0 0 12px; }
footer a { display: block; margin: 7px 0; color: rgba(255,255,255,.72); }
.legal {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 28px;
  padding-top: 18px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
}

@media (max-width: 940px) {
  :root {
    --visual-height: 220px;
    --card-visual-height: 200px;
    --card-body-min-height: 0;
  }
  nav { display: none; }
  .mobile-nav { display: block; }
  .hero { min-height: auto; background-position: center right; }
  .hero-inner { padding: 58px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 26px; padding: 58px 0; }
  .grid-2, .grid-3, .grid-4, .stats, .matrix, .cta-inner, .footer-grid { grid-template-columns: 1fr; }
  .matrix-body { grid-template-columns: 1fr; }
  .media-panel-grid {
    grid-template-columns: 1fr;
  }
  .media-panel-col {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .media-panel-col:last-child {
    border-bottom: 0;
  }
  .trust-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
    padding-top: 16px;
  }
  .trust-stack {
    grid-column: 1 / -1;
    margin-top: 6px;
    gap: 16px;
  }
}
@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1160px); }
  .topbar .container { align-items: flex-start; flex-direction: column; padding: 10px 0; }
  h1 { font-size: 36px; }
  section { padding: 58px 0; }
  .trust-row, .rule, .form-grid { grid-template-columns: 1fr; }
  .trust-row { gap: 14px; }
  .trust-stack { margin-top: 0; }
  .logo-item { width: 148px; }
  .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .card:hover,
  .media-card:hover,
  .stat:hover,
  .trust-item:hover,
  .btn:hover {
    transform: none;
  }
}
