:root {
  --site-blue: #1769ff;
  --site-blue-deep: #0c4ed5;
  --site-blue-soft: #edf5ff;
  --site-ink: #101b31;
  --site-muted: #66758f;
  --site-line: #e4ebf5;
  --site-page: #f8fbff;
  --site-white: #ffffff;
  --site-shadow: 0 24px 60px rgba(28, 75, 143, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--site-ink);
  background: var(--site-page);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
}

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

.pc-site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(228, 235, 245, 0.92);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.pc-site-header-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  width: min(1180px, calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
}

.pc-site-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.pc-site-brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: #fff;
  background: var(--site-blue);
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(23, 105, 255, 0.22);
}

.pc-site-brand-copy {
  display: grid;
  gap: 3px;
}

.pc-site-brand-copy strong {
  font-size: 18px;
  line-height: 1.05;
}

.pc-site-brand-copy small {
  color: #8b9ab2;
  font-size: 11px;
}

.pc-site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: auto;
}

.pc-site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 76px;
  color: #62718b;
  font-size: 14px;
}

.pc-site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--site-blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.pc-site-nav a:hover,
.pc-site-nav a.is-active {
  color: var(--site-blue);
}

.pc-site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.pc-site-header-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid #c9dbfb;
  border-radius: 8px;
  color: var(--site-blue);
  font-size: 13px;
  font-weight: 800;
}

.pc-site-hero {
  overflow: hidden;
  background: var(--site-blue-soft);
}

.pc-site-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 60px;
  align-items: center;
  min-height: 590px;
  padding-top: 58px;
  padding-bottom: 62px;
}

.pc-site-eyebrow {
  color: var(--site-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
}

.pc-site-hero-copy h1 {
  max-width: 600px;
  margin: 18px 0;
  font-size: clamp(48px, 5vw, 74px);
  line-height: 1.08;
  letter-spacing: 0;
}

.pc-site-hero-copy h1 em {
  color: var(--site-blue);
  font-style: normal;
}

.pc-site-hero-copy > p {
  max-width: 520px;
  margin: 0;
  color: var(--site-muted);
  font-size: 16px;
  line-height: 1.85;
}

.pc-site-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.pc-site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.pc-site-button-primary {
  color: #fff;
  background: var(--site-blue);
  box-shadow: 0 13px 25px rgba(23, 105, 255, 0.24);
}

.pc-site-button-light {
  border: 1px solid #cadbfa;
  color: var(--site-blue);
  background: #fff;
}

.pc-site-stats {
  display: flex;
  gap: 38px;
  margin-top: 46px;
}

.pc-site-stats > div {
  display: grid;
  gap: 5px;
}

.pc-site-stats strong {
  font-size: 21px;
}

.pc-site-stats strong span {
  margin-left: 3px;
  color: var(--site-blue);
  font-size: 12px;
}

.pc-site-stats small {
  color: #7e8ca3;
  font-size: 11px;
}

.pc-site-hero-visual {
  position: relative;
  min-height: 440px;
}

.pc-site-hero-image {
  position: absolute;
  inset: 0 0 24px 20px;
  overflow: hidden;
  border: 9px solid #fff;
  border-radius: 28px;
  background: #d9e8ff;
  box-shadow: var(--site-shadow);
}

.pc-site-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pc-site-hero-note {
  position: absolute;
  right: -14px;
  bottom: 52px;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 220px;
  padding: 14px 16px;
  border: 1px solid #dbe7f8;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(28, 75, 143, 0.16);
}

.pc-site-note-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: #18a66c;
  font-size: 16px;
  font-weight: 800;
}

.pc-site-hero-note span:last-child {
  display: grid;
  gap: 4px;
}

.pc-site-hero-note strong {
  font-size: 13px;
}

.pc-site-hero-note small {
  color: #8290a6;
  font-size: 11px;
}

.pc-site-hero-label {
  position: absolute;
  right: 16px;
  bottom: 0;
  color: #7c8ba4;
  font-size: 12px;
}

.pc-site-section {
  padding: 92px 0;
  background: var(--site-page);
}

.pc-site-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.pc-site-section-head h2,
.pc-site-trust-copy h2,
.pc-site-rider-inner h2 {
  margin: 11px 0 0;
  font-size: 38px;
  line-height: 1.2;
}

.pc-site-section-head p {
  max-width: 330px;
  margin: 0 0 4px;
  color: var(--site-muted);
  font-size: 14px;
  line-height: 1.75;
}

.pc-site-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pc-site-service-card {
  min-height: 244px;
  padding: 25px;
  border: 1px solid var(--site-line);
  border-radius: 12px;
  background: var(--site-white);
  box-shadow: 0 8px 25px rgba(28, 75, 143, 0.04);
}

.pc-site-service-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 17px;
  background: #f0f6ff;
}

.pc-site-service-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.pc-site-service-card h3 {
  margin: 0 0 9px;
  font-size: 19px;
}

.pc-site-service-card p {
  min-height: 48px;
  margin: 0;
  color: var(--site-muted);
  font-size: 13px;
  line-height: 1.7;
}

.pc-site-service-card span {
  display: block;
  margin-top: 19px;
  color: var(--site-blue);
  font-size: 12px;
  font-weight: 800;
}

.pc-site-process-band {
  padding: 88px 0 94px;
  color: #fff;
  background: var(--site-blue);
}

.pc-site-section-head-inverse .pc-site-eyebrow {
  color: #c7dcff;
}

.pc-site-section-head-inverse p {
  color: #d5e3ff;
}

.pc-site-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.pc-site-process-item {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.pc-site-process-item strong {
  display: block;
  color: #b8d2ff;
  font-size: 14px;
  letter-spacing: 1px;
}

.pc-site-process-item h3 {
  margin: 39px 0 9px;
  font-size: 20px;
}

.pc-site-process-item p {
  margin: 0;
  color: #d5e3ff;
  font-size: 13px;
  line-height: 1.7;
}

.pc-site-trust-section {
  background: #fff;
}

.pc-site-trust-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  gap: 88px;
  align-items: center;
}

.pc-site-trust-copy > p {
  max-width: 520px;
  margin: 20px 0 32px;
  color: var(--site-muted);
  font-size: 15px;
  line-height: 1.85;
}

.pc-site-trust-list {
  display: grid;
  gap: 18px;
}

.pc-site-trust-list > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
}

.pc-site-trust-list b {
  color: var(--site-blue);
  font-size: 12px;
}

.pc-site-trust-list span {
  display: grid;
  gap: 4px;
}

.pc-site-trust-list strong {
  font-size: 15px;
}

.pc-site-trust-list small {
  color: var(--site-muted);
  font-size: 12px;
  line-height: 1.6;
}

.pc-site-trust-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 18px;
  background: #eaf3ff;
}

.pc-site-trust-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;
}

.pc-site-trust-visual > div {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 4px;
  min-width: 145px;
  padding: 14px 16px;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(28, 75, 143, 0.15);
}

.pc-site-trust-visual strong {
  color: var(--site-blue);
  font-size: 26px;
}

.pc-site-trust-visual span {
  color: var(--site-muted);
  font-size: 11px;
}

.pc-site-rider-band {
  padding: 68px 0;
  background: #eaf3ff;
}

.pc-site-rider-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.pc-site-rider-inner p {
  max-width: 600px;
  margin: 18px 0 0;
  color: var(--site-muted);
  font-size: 15px;
  line-height: 1.8;
}

.pc-site-rider-badge {
  display: grid;
  gap: 8px;
  min-width: 215px;
  padding: 22px 24px;
  border-left: 4px solid var(--site-blue);
  background: #fff;
}

.pc-site-rider-badge strong {
  font-size: 18px;
}

.pc-site-rider-badge span {
  color: var(--site-muted);
  font-size: 12px;
}

.pc-site-footer {
  color: #d4e2fc;
  background: #12244a;
}

.pc-site-footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px 60px;
  align-items: end;
  padding: 42px 0 34px;
}

.pc-site-footer .pc-site-brand-copy strong {
  color: #fff;
}

.pc-site-footer .pc-site-brand-copy small {
  color: #9cb5df;
}

.pc-site-footer .pc-site-brand-mark {
  background: var(--site-blue);
}

.pc-site-footer p {
  margin: 15px 0 0;
  color: #9cb5df;
  font-size: 12px;
}

.pc-site-footer-links {
  display: flex;
  gap: 23px;
  color: #c3d4f1;
  font-size: 12px;
}

.pc-site-footer-inner > small {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(212, 226, 252, 0.15);
  color: #89a4d0;
  font-size: 11px;
}

@media (max-width: 980px) {
  .pc-site-header-inner {
    gap: 24px;
  }

  .pc-site-nav {
    gap: 18px;
  }

  .pc-site-hero-inner,
  .pc-site-trust-inner {
    gap: 42px;
  }

  .pc-site-hero-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  }

  .pc-site-hero-copy h1 {
    font-size: 54px;
  }

  .pc-site-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .pc-site-container,
  .pc-site-header-inner {
    width: min(100% - 32px, 620px);
  }

  .pc-site-header-inner {
    min-height: 66px;
  }

  .pc-site-nav {
    display: none;
  }

  .pc-site-header-link {
    margin-left: auto;
  }

  .pc-site-hero-inner,
  .pc-site-trust-inner {
    grid-template-columns: 1fr;
  }

  .pc-site-hero-inner {
    min-height: 0;
    padding-top: 48px;
  }

  .pc-site-hero-copy h1 {
    font-size: clamp(42px, 12vw, 60px);
  }

  .pc-site-hero-copy > p {
    font-size: 14px;
  }

  .pc-site-hero-visual {
    min-height: 320px;
  }

  .pc-site-hero-note {
    right: 0;
    bottom: 35px;
  }

  .pc-site-section {
    padding: 64px 0;
  }

  .pc-site-section-head {
    display: block;
  }

  .pc-site-section-head h2,
  .pc-site-trust-copy h2,
  .pc-site-rider-inner h2 {
    font-size: 30px;
  }

  .pc-site-section-head p {
    margin-top: 14px;
  }

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

  .pc-site-service-card {
    min-height: 250px;
    padding: 18px;
  }

  .pc-site-process-band {
    padding: 64px 0;
  }

  .pc-site-trust-inner {
    gap: 38px;
  }

  .pc-site-rider-inner {
    display: block;
  }

  .pc-site-rider-badge {
    margin-top: 28px;
  }

  .pc-site-footer-inner {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .pc-site-footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 430px) {
  .pc-site-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pc-site-button {
    width: 100%;
  }

  .pc-site-stats {
    gap: 17px;
  }

  .pc-site-stats strong {
    font-size: 18px;
  }

  .pc-site-stats small {
    font-size: 10px;
  }

  .pc-site-service-grid,
  .pc-site-process-grid {
    grid-template-columns: 1fr;
  }

  .pc-site-service-card {
    min-height: 0;
  }

  .pc-site-hero-visual {
    min-height: 260px;
  }

  .pc-site-hero-image {
    inset: 0 0 17px;
  }

  .pc-site-hero-note {
    right: 7px;
    bottom: 0;
    min-width: 190px;
    padding: 11px 12px;
  }

  .pc-site-hero-label {
    display: none;
  }
}

.pc-site-header-link .ui-icon,
.pc-site-button .ui-icon {
  width: 16px;
  height: 16px;
}

@media (max-width: 600px) {
  .pc-site-container,
  .pc-site-header-inner {
    width: calc(100% - 28px);
  }

  .pc-site-header-link {
    gap: 5px;
    min-height: 34px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 11px;
  }

  .pc-site-brand-copy strong {
    font-size: 16px;
  }

  .pc-site-brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .pc-site-hero-inner {
    padding-top: 36px;
    padding-bottom: 46px;
  }

  .pc-site-hero-copy h1 {
    font-size: clamp(36px, 12vw, 52px);
    overflow-wrap: anywhere;
  }

  .pc-site-stats {
    justify-content: space-between;
    gap: 10px;
  }

  .pc-site-stats > div {
    min-width: 0;
  }

  .pc-site-stats strong,
  .pc-site-stats small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 365px) {
  .pc-site-container,
  .pc-site-header-inner {
    width: calc(100% - 20px);
  }

  .pc-site-header-link {
    max-width: 82px;
    overflow: hidden;
    white-space: nowrap;
  }

  .pc-site-header-link .ui-icon {
    flex: 0 0 auto;
    width: 13px;
    height: 13px;
  }

  .pc-site-stats strong {
    font-size: 16px;
  }

  .pc-site-stats small {
    font-size: 9px;
  }
}
