.service-app-page {
  --service-text-strong: rgba(0, 0, 0, 0.9);
  --service-text-primary: rgba(0, 0, 0, 0.82);
  --service-text-secondary: rgba(0, 0, 0, 0.56);
  background: #f6f8fc;
}

.service-hero {
    position: relative;
    overflow: hidden;
    padding: 176px 0;

    background:
        url("/assets/images/service/banner.jpg?v=20260703") center / cover no-repeat,
        linear-gradient(180deg, #f8fbff 0%, #f2f6ff 100%);
}

.service-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: 72px;
}

.service-hero-copy h1 {
  margin: 0;
  color: var(--service-text-strong);
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.split-heading h2,
.service-cta h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: 0;
}

.split-heading h2 {
  color: var(--service-text-strong);
}

.service-hero-copy h1 span {
  color: transparent;
  background: linear-gradient(95deg, #1a75ff 0%, #7b4dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--service-text-secondary);
  font-size: 17px;
  line-height: 1.9;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

.service-hero-panel {
}

.hero-metrics {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.hero-metrics article {
    width: 304px;
    height: auto;
    position: relative;
    border-radius: 16px;
    padding: 24px 32px;
    gap: 10px;

    display: flex;
    flex-direction: column;

    background: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
}

/* ⭐ 用伪元素做描边（最稳） */
.hero-metrics article::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;

    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.8),
        rgba(255,255,255,0.15),
        rgba(255,255,255,0.6)
    );

    -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: var(--service-text-strong);
  font-size: 24px;
  font-weight: 500;
   color: rgba(0, 0, 0, 0.9);
}

.hero-metrics span {
  color: var(--service-text-secondary);
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
}

.service-section {
  padding: 92px 0;
}

.service-overview,
.service-solutions,
.service-faq {
  background: #fff;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.capability-grid article,
.risk-grid article,
.why-grid article {
  position: relative;
  overflow: hidden;
  min-height: 156px;
  padding: 26px;
  border: 1px solid #e7edf7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(23, 41, 82, 0.04);
}

.capability-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: #1a75ff;
  font-size: 13px;
  font-weight: 800;
}

.capability-grid h3 {
  margin: 0;
  color: var(--service-text-primary);
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: 0;
  font-weight: 400;
}

.risk-grid h3,
.solution-list h3,
.why-grid h3 {
  margin: 0;
  color: var(--service-text-strong);
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: 500;
}

.industry-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  padding: 22px;
  border: 1px solid #e7edf7;
  border-radius: 18px;
  background: #f8fbff;
}

.industry-strip span,
.management-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--service-text-primary);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(23, 41, 82, 0.05);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.65fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 48px;
}

.split-heading p:last-child {
  margin: 0;
  color: var(--service-text-secondary);
  font-size: 16px;
  line-height: 1.9;
}

.service-app-page #main h4 {
  margin: 0;
  color: var(--service-text-primary);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.risk-grid article {
  background: #fbfcff;
}

.risk-grid article::before,
.why-grid article::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 0;
  width: 54px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1a75ff 0%, #7b4dff 100%);
}

.risk-grid p,
.solution-list p,
.why-grid p {
  margin: 14px 0 0;
  color: var(--service-text-secondary);
  font-size: 15px;
  line-height: 1.8;
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.solution-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  padding: 30px;
  border: 1px solid #e7edf7;
  border-radius: 22px;
  background: #f8fbff;
}

.solution-list span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1a75ff 0%, #7b4dff 100%);
  color: #fff;
  font-weight: 900;
}

.service-process {
  background: linear-gradient(180deg, #f6f8fc 0%, #ffffff 100%);
}

.process-table {
  overflow: hidden;
  border: 1px solid #e1e8f2;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 44px rgba(23, 41, 82, 0.05);
}

.process-table div {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid #edf2f8;
}

.process-table div:last-child {
  border-bottom: 0;
}

.process-table strong,
.process-table span {
  padding: 0 30px;
  font-size: 16px;
  line-height: 1.6;
}

.process-table strong {
  color: var(--service-text-primary);
}

.process-table span {
  color: var(--service-text-secondary);
}

.management-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.why-grid article {
  grid-column: span 2;
  background: #fff;
}

.why-grid article:nth-child(4),
.why-grid article:nth-child(5) {
  grid-column: span 3;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid #e3eaf4;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 41, 82, 0.04);
}

.faq-list summary {
  position: relative;
  padding: 22px 58px 22px 24px;
  color: var(--service-text-primary);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  color: #1a75ff;
  font-size: 28px;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--service-text-secondary);
  font-size: 15px;
  line-height: 1.85;
}

.service-cta {
  padding: 90px 0;
  background: linear-gradient(110deg, #1a75ff 0%, #3056ff 52%, #7b4dff 100%);
  color: #fff;
}

.service-cta-inner {
  max-width: 860px;
  text-align: center;
}

.service-cta .eyebrow,
.service-cta p {
  color: #fff;
  -webkit-text-fill-color: currentColor;
  font-size: 16px;
}

.service-cta h2 {
  color: #fff;
}

.service-cta p:not(.eyebrow) {
  margin: 20px auto 34px;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.9;
}

@media (max-width: 1100px) {
  .service-hero-inner,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .service-hero-panel {
    grid-template-columns: 260px minmax(0, 1fr);
  }

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

  .why-grid article,
  .why-grid article:nth-child(4),
  .why-grid article:nth-child(5) {
    grid-column: span 3;
  }
}

@media (max-width: 760px) {
    .site-header.site-header-static {
        background-color: #FFF !important;
        background-image: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

  .service-hero {
    padding: 56px 0 56px;
    margin-top: 52px;
    background: url("/assets/images/service/h5-banner.jpg?v=20260703") center top / cover no-repeat, linear-gradient(180deg, #f8fbff 0%, #f6f9ff 100%);
  }
  .eyebrow {
      font-size: 20px;
      font-weight: 400;
      margin-block-start: 0;
      margin-block-end: 10px;
  }
  .service-hero-panel{
      margin-top: 132px;
  }
  .hero-metrics{
    gap: 14px;
  }


  .service-hero-copy h1 {
    font-size: 36px;
    line-height: 1.38;
  }

  .split-heading h2,
  .service-cta h2 {
    font-size: 34px;
  }

  .capability-grid h3 {
    font-size: 17px;
  }

  .risk-grid h3,
  .solution-list h3,
  .why-grid h3 {
    font-size: 18px;
  }

  .service-app-page #main h4 {
    font-size: 17px;
  }

  .service-hero-panel {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 28px 20px;
  }

  .hero-metrics article {
    width: 100%;
    height: auto;
    text-align: center;
    padding: 20px 0;
  }

  .service-section {
    padding: 68px 0;
  }

  .capability-grid,
  .risk-grid,
  .solution-list {
    grid-template-columns: 1fr;
  }

  .solution-list article {
    grid-template-columns: 1fr;
  }

  .process-table div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 18px 0;
  }

  .process-table strong,
  .process-table span {
    padding: 0 22px;
  }

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

  .why-grid article,
  .why-grid article:nth-child(4),
  .why-grid article:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .service-hero-actions .button {
      height: 41px;
      min-height: 41px;
      font-size: 14px;
  }

  .service-hero-copy h1 {
    font-size: 32px;
  }

  .split-heading h2,
  .service-cta h2 {
    font-size: 30px;
  }

  .capability-grid h3 {
    font-size: 16px;
  }

    .service-hero-actions{
        margin-top: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }

  .risk-grid h3,
  .solution-list h3,
  .why-grid h3 {
    font-size: 17px;
  }

  .service-app-page #main h4 {
    font-size: 16px;
  }

  .service-hero-copy > p:not(.eyebrow) {
    font-size: 16px;
    font-weight: 400;
    margin-top: 16px;
    color: rgba(0,0,0,0.6);
      line-height: 1.6;
  }

  .capability-grid article,
  .risk-grid article,
  .why-grid article,
  .solution-list article {
    padding: 22px;
  }
}
