:root {
  --primary: #1677ff;
  --primary-dark: #0e54c7;
  --text: #111827;
  --muted: #667085;
  --line: #e5e7eb;
  --bg: #f5f8fc;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(18, 54, 102, 0.08);
  --radius: 18px;
  --container: 1380px;
  --header-bg-alpha: 0;
  --header-border-alpha: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
}

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

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

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

.section {
  padding: 88px 0;
}

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

.section-title {
    margin: 0;
    line-height: 1.2;
    color: #0f4fca;
    text-align: center;
    font-weight: 400;
    font-size: 50px;
}

.section-subtitle {
  margin: 14px auto 0;
  max-width: 720px;
  color: var(--muted);
  text-align: center;
  font-size: 15px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1px 46px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #29c6ff);
  color: #fff;
  font-size: 20px;
  letter-spacing: 0;
}

.hero {
  position: relative;
  background: #eef5fb;
}

.hero-banner {
  width: 100%;
  height: auto;
  display: block;
}

.hero-inner {
  position: absolute;
  inset: 0;
  margin: 0 auto;
  z-index: 1;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.hero-copy h1 {
  margin: 0;
  font-size: 78px;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: 0;
  color: #000;
}

.hero-copy p {
  margin: 26px 0 0;
  max-width: 760px;
  color: rgba(0, 0, 0, 0.64);
  font-size: 28px;
  line-height: 1.5;
  font-weight: 600;
}

.hero-copy {
  max-width: 760px;
  pointer-events: auto;
  padding-left: 44px;
}

.intro {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}

.intro-title small {
  display: block;
  margin-bottom: 28px;
  color: var(--primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.intro-title h2 {
  margin: 0;
  font-size: 55px;
  line-height: 1.52;
  font-weight: 500;
  letter-spacing: 0;
}
.more-btn-div{
	text-align: right;
}
.intro-title .intro-blue {
  color: var(--primary);
}

.intro-title .intro-dark {
  color: #111827;
}

.intro-copy {
  padding-top: 50px;
  color: #475467;
  font-size: 18px;
}

.intro-copy p {
  margin-top: 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  align-items: stretch;
  background: #fff;
}

.stat {
  position: relative;
  padding: 8px 34px 0;
  text-align: center;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  width: 1px;
  height: 92px;
  background: #d3d3d3;
}

.stat strong {
  display: block;
  transform: scale(1);
  transform-origin: center center;
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0;
  transition: transform 0.45s ease;
}

.stat-value {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
}

.stat-number {
  font-size: 82px;
  color: #1451ca;
}

.stat-suffix {
  font-size: 82px;
  color: #111827;
}

.stat > span {
  display: block;
  margin-top: 10px;
  color: #6b7280;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
}

.stat.is-visible strong {
  animation: statPop 0.65s ease;
}

@keyframes statPop {
  0% {
    transform: scale(0.82);
  }

  55% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
}

.services {
  display: grid;
  gap: 34px;
  margin-top: 52px;
}

.service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.service:nth-child(even) .service-media {
  order: 2;
}

.service:nth-child(even) .service-copy {
  order: 1;
}

.service-media {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  /* box-shadow: var(--shadow); */
  /* background: #dbeafe; */
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-copy {
  position: relative;
  padding: 22px 8px;
}

.service-copy .watermark {
  position: absolute;
  top: -8px;
  left: 0;
  font-size: 60px;
  line-height: 1;
  color: rgba(15, 79, 202, 0.06);
  font-weight: 700;
  text-transform: uppercase;
  pointer-events: none;
}

.service-copy h3 {
  position: relative;
  margin: 56px 0 14px;
  font-size: 34px;
  line-height: 1.2;
}

.service-copy p {
  position: relative;
  margin: 0;
  color: #475467;
  font-size: 22px;
}

.service-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding: 0 0 10px;
  color: var(--primary);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
}

.service-link::after {
  content: "\2192";
  font-size: 36px;
  line-height: 1;
  font-weight: 300;
}

.service-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(20, 81, 202, 0.72);
}

.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.case-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 24, 39, 0.04);
  transform: scale(1);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.case-card:hover,
.case-card:focus-within,
.case-card.is-featured {
  transform: scale(1.05);
  box-shadow: 0 22px 46px rgba(18, 54, 102, 0.18);
}

.case-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.28s ease;
}

.case-card:hover .case-image img,
.case-card:focus-within .case-image img,
.case-card.is-featured .case-image img {
  transform: scale(1.04);
}

.case-body {
  position: relative;
  padding: 50px 24px 28px;
  text-align: center;
  background: #E6E6E6;
  /* transition: background 0.28s ease; */
}

.case-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #1d6fff, #17c2ff);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.case-card:hover .case-body::before,
.case-card:focus-within .case-body::before,
.case-card.is-featured .case-body::before {
  opacity: 1;
}

.case-body h4 {
  position: relative;
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.24;
  color: #222a37;
  transition: color 0.28s ease;
}

.case-card:hover .case-body h4,
.case-card:focus-within .case-body h4,
.case-card.is-featured .case-body h4 {
  color: #ffffff;
}

.case-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 42px;
  margin-top: 2px;
  padding: 0 20px;
  border: 1.5px solid rgba(17, 24, 39, 0.42);
  border-radius: 999px;
  color: #3b4554;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  transition: border-color 0.28s ease, color 0.28s ease, background 0.28s ease;
}

.case-link::after {
  content: "\3009";
  margin-left: 8px;
  font-size: 16px;
}

.case-card:hover .case-link,
.case-card:focus-within .case-link,
.case-card.is-featured .case-link {
  border-color: rgba(255, 255, 255, 0.96);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.cta-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}

.cta-inner p {
  margin: 0;
  font-size: 22px;
  color: #1451ca;
  font-weight: 600;
}


@media (max-width: 1080px) {
  .intro,
  .service {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    width: min(var(--container), calc(100% - 40px));
  }

  .hero-copy {
    order: 1;
  }

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

  .hero-copy p {
    font-size: 22px;
  }

  .service:nth-child(even) .service-media,
  .service:nth-child(even) .service-copy {
    order: initial;
  }

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

  .stat {
    padding: 8px 24px 20px;
  }

  .stat:nth-child(even)::after {
    display: none;
  }

  .stat strong,
  .stat-number,
  .stat-suffix {
    font-size: 72px;
  }

  .stat span {
    font-size: 16px;
  }

}

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

  .section {
    padding: 52px 0;
  }

  .hero-copy h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero-copy p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-inner {
    position: static;
    width: min(var(--container), calc(100% - 28px));
    padding: 24px 0 34px;
  }

  .hero-copy {
    max-width: none;
    padding-left: 0;
  }

  .intro {
    gap: 22px;
  }

  .intro-title h2,
  .section-title,
  .service-copy h3,
  .cta-inner p {
    font-size: 26px;
  }

  .intro-title small {
    margin-bottom: 14px;
    font-size: 14px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .intro-copy p {
    font-size: 15px;
    line-height: 1.8;
  }

  .stats,
  .cases {
    grid-template-columns: 1fr;
  }

  .stat {
    padding: 6px 0 18px;
  }

  .stat:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    width: 72px;
    height: 1px;
    transform: translateX(-50%);
  }

  .stat strong,
  .stat-number,
  .stat-suffix {
    font-size: 44px;
  }

  .stat span {
    font-size: 14px;
  }

  .service-media {
    min-height: 200px;
  }

  .service-copy .watermark {
    font-size: 28px;
  }

  .service-copy h3 {
    margin-top: 28px;
  }

  .service-copy p {
    font-size: 16px;
    line-height: 1.75;
  }

  .service-link {
    margin-top: 18px;
    font-size: 16px;
  }

  .service-link::after {
    font-size: 28px;
  }

  .cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

}
.case-showcase-line {
    display: block;
    width: 96px;
    height: 5px;
    margin: 18px auto 22px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2278ff, #29c6ff);
}