@font-face {
  font-family: "Montserrat";
  src: local("Arial");
  font-weight: 600;
}
:root {
  --blue: #0251ff;
  --gold: #d4a853;
  --gold-light: #f8e9b8;
  --dark: #060e22;
  --dark2: #0a1628;
  --gray: #6b7280;
  --light-gray: #f5f6f8;
  --white: #fff;
  --text: #111827;
  --text-light: #4b5563;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}
::selection {
  background: var(--blue);
  color: #fff;
}
::-webkit-scrollbar {
  width: 6px;
  background: #f0f0f0;
}
::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

#header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  height: 5rem;
  padding: 0 6rem;
}
#header .m {
  width: 100%;
  max-width: 1560px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header #logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
}
#header #logo a img {
  width: 10rem;
  object-fit: contain;
  margin-right: 0.5rem;
}
#header #logo a span {
  color: var(--gold);
}
#header .fr {
  display: flex;
  align-items: center;
  gap: 2rem;
}
#header #nav {
  display: flex;
  align-items: center;
}
#header #nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
#header #nav ul li {
  position: relative;
  text-align: center;
}
#header #nav ul li a {
  text-decoration: none;
  display: block;
}
#header #nav ul li h3 {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 5rem;
  transition: 0.3s;
  position: relative;
  white-space: nowrap;
}
#header #nav ul li h3::after {
  content: "";
  position: absolute;
  bottom: 1.2rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.36s;
  border-radius: 1px;
}
#header #nav ul li:hover h3,
#header #nav ul li.on h3 {
  color: var(--white);
  font-weight: 600;
}
#header #nav ul li:hover h3::after,
#header #nav ul li.on h3::after {
  width: 100%;
}
#header.scrolled {
  background: var(--white);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}
#header.scrolled #logo a {
  color: var(--text);
}
#header.scrolled #nav ul li h3 {
  color: var(--text);
}
#header.scrolled #nav ul li:hover h3,
#header.scrolled #nav ul li.on h3 {
  color: var(--blue);
}

#banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    #060e22 0%,
    #0a1f44 30%,
    #0d2858 60%,
    #060e22 100%
  );
  overflow: hidden;
}
#banner::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(2, 81, 255, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 30%,
      rgba(212, 168, 83, 0.08) 0%,
      transparent 50%
    );
  z-index: 1;
}
#banner .banner-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#banner .bg-pattern,
.page-hero .bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.8) 1px,
    transparent 1px
  );
  background-size: 50px 50px;
}
#banner .light-beam,
.page-hero .light-beam {
  position: absolute;
  top: 25%;
  left: -10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 168, 83, 0.4),
    rgba(248, 233, 184, 0.6),
    transparent
  );
  z-index: 1;
  filter: blur(4px);
  animation: beamSweep 10s infinite linear;
  opacity: 0.5;
}
#banner .light-beam:nth-child(2),
.page-hero .light-beam:nth-child(2) {
  top: 55%;
  animation-delay: -5s;
  width: 50%;
}
#banner .light-beam:nth-child(3),
.page-hero .light-beam:nth-child(3) {
  top: 78%;
  animation-delay: -8s;
  width: 65%;
}
@keyframes beamSweep {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(220%);
  }
}
#banner .m,
.page-hero .m {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  padding: 8rem 6rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 4rem;
}
#banner .txt {
  flex: 1;
  max-width: 700px;
}
#banner .txt .badge,
.page-hero .eyebrow {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: rgba(2, 81, 255, 0.2);
  border: 1px solid rgba(2, 81, 255, 0.3);
  border-radius: 2rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  letter-spacing: 2px;
  font-weight: 500;
}
#banner .txt h3,
.page-hero h1 {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
#banner .txt h3 .gold,
.page-hero h1 .gold {
  color: var(--gold);
}
#banner .txt .p,
.page-hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 660px;
}
#banner .txt .btns,
.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s;
  border: none;
  letter-spacing: 0.5px;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 30px rgba(2, 81, 255, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(2, 81, 255, 0.4);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  transform: translateY(-3px);
}

#banner .s_shuzi {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 1rem;
}
#banner .s_shuzi .item {
  text-align: right;
}
#banner .s_shuzi .item .num {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.25rem;
}
#banner .s_shuzi .item .num h4 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}
#banner .s_shuzi .item .num span {
  font-size: 1.125rem;
  color: var(--gold);
  font-weight: 600;
}
#banner .s_shuzi .item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.5rem;
  line-height: 1.5;
}
#banner .banner-arrow {
  position: absolute;
  bottom: 2.5rem;
  left: 6rem;
  z-index: 3;
  animation: mouseMove 1.5s infinite;
}
@keyframes mouseMove {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(12px);
    opacity: 1;
  }
}

.page-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    #060e22 0%,
    #0a1f44 30%,
    #0d2858 60%,
    #060e22 100%
  );
  overflow: hidden;
}
.page-hero .m {
  align-items: center;
  padding-bottom: 5rem;
}
.page-hero .page-side-note {
  min-width: 280px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
}
.page-hero .page-side-note h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.page-hero .page-side-note p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.68);
}

main {
  display: block;
}
section {
  padding: 7.5rem 6rem;
  position: relative;
}
.s_hd {
  text-align: center;
  margin-bottom: 5rem;
}
.s_hd .tt {
  margin-bottom: 1.5rem;
}
.s_hd .tt h3 {
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.5px;
}
.s_hd .tt h3 + h3 {
  margin-top: 0.25rem;
}
.s_hd .tt h3 .blue {
  color: var(--blue);
}
.s_hd .tt h3 .gold {
  color: var(--gold);
}
.s_hd .p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}
.section-dark {
  background: linear-gradient(180deg, #060e22 0%, #0a1f44 100%);
  color: var(--white);
}
.section-dark .s_hd .tt h3 {
  color: var(--white);
}
.section-dark .s_hd .p {
  color: rgba(255, 255, 255, 0.6);
}
.section-muted {
  background: #f8f9fb;
}

#trust-strip {
  margin-top: 2rem;
  position: relative;
  z-index: 10;
  padding: 0 6rem;
}
#trust-strip .trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--white);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
#trust-strip .trust-card {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid #f0f0f0;
  transition: transform 0.3s;
}
#trust-strip .trust-card:last-child {
  border-right: none;
}
#trust-strip .trust-card:hover {
  transform: translateY(-6px);
}
#trust-strip .trust-card .number {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0.5rem;
  line-height: 1;
}
#trust-strip .trust-card .label {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

.capa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.capa-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid #eee;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.capa-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.capa-card:hover::before {
  transform: scaleX(1);
}
.capa-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: #ddd;
}
.capa-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.capa-card h4 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.capa-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}
.capa-card .tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.capa-card .tags span {
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  background: #f0f4ff;
  color: var(--blue);
  border-radius: 1rem;
  font-weight: 500;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.pain-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #f0f0f0;
  transition: all 0.3s;
}
.pain-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-color: #e0e0e0;
}
.pain-card .pain-label {
  display: inline-block;
  font-size: 0.8rem;
  color: #ef4444;
  background: #fef2f2;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.pain-card .sol-label {
  display: inline-block;
  font-size: 0.8rem;
  color: #059669;
  background: #ecfdf5;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.pain-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.pain-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

.partner-scroll {
  overflow: hidden;
  position: relative;
}
.partner-scroll .track {
  display: flex;
  gap: 2rem;
  animation: scrollLeft 50s linear infinite;
  align-items: center;
}
.partner-scroll .track .item {
  flex-shrink: 0;
  height: 2rem;
}
.partner-scroll .track .item img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.4;
  transition: all 0.3s;
}
.partner-scroll .track .item:hover img {
  filter: grayscale(0);
  opacity: 1;
}
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.solution-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 3rem;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.solution-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(2, 81, 255, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(2, 81, 255, 0.1);
}
.solution-card .num {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(2, 81, 255, 0.45);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;
  text-shadow: 0 0 40px rgba(2, 81, 255, 0.2);
}
.solution-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.solution-card .tagline {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}
.solution-card .desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.solution-card .points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.solution-card .points li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}
.solution-card .points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.compare-table th {
  padding: 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  color: var(--white);
  background: var(--blue);
}
.compare-table th:first-child {
  background: #0a1f44;
  width: 20%;
}
.compare-table td {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  text-align: center;
  color: var(--text-light);
  border-bottom: 1px solid #f0f0f0;
  background: var(--white);
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.compare-table td:first-child {
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: #fafafa;
}
.compare-table .win {
  color: var(--blue);
  font-weight: 600;
}
.compare-table .lose {
  color: #c0c0c0;
}

.flow-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-bottom: 4rem;
}
.flow-line::before {
  content: "";
  position: absolute;
  top: 2.25rem;
  left: 3rem;
  right: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--blue));
  z-index: 0;
}
.flow-step {
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
}
.flow-step .dot {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  transition: all 0.3s;
}
.flow-step:hover .dot {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 30px rgba(2, 81, 255, 0.3);
}
.flow-step h5 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.flow-step span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.service-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.service-table th {
  padding: 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  background: #0a1f44;
  color: var(--white);
}
.service-table td {
  padding: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  border-bottom: 1px solid #f0f0f0;
  background: var(--white);
}
.service-table tr:last-child td {
  border-bottom: none;
}
.service-table td:first-child {
  font-weight: 600;
  color: var(--text);
  width: 15%;
}
.service-table td:nth-child(2) {
  width: 45%;
}
.service-table td:nth-child(3) {
  width: 40%;
}
.service-table tr:hover td {
  background: #fafbff;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.insight-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: all 0.4s;
}
.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.insight-card .card-top {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.insight-card:nth-child(1) .card-top {
  background: linear-gradient(135deg, #0251ff, #6366f1);
}
.insight-card:nth-child(2) .card-top {
  background: linear-gradient(135deg, #0a1f44, #0251ff);
}
.insight-card:nth-child(3) .card-top {
  background: linear-gradient(135deg, #d4a853, #b8860b);
}
.insight-card .card-top .ico {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.9);
  z-index: 1;
}
.insight-card .card-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    transparent 30%,
    rgba(0, 0, 0, 0.1)
  );
}
.insight-card .card-body {
  padding: 2rem;
}
.insight-card .card-body h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.insight-card .card-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.insight-card .card-body .more {
  font-size: 0.9rem;
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.3s;
}
.insight-card .card-body .more:hover {
  gap: 0.75rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  border: 1px solid #eee;
  background: var(--white);
  transition: all 0.4s;
}
.value-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--blue);
}
.value-card .v-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}
.value-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.value-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  background: #f8f9fb;
  transition: all 0.4s;
}
.team-card:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.team-card .t-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.team-card h5 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.team-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info .info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.contact-info .info-item .i-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 8px;
  background: #f0f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.icon img,
.v-icon img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  vertical-align: middle;
}
.t-icon img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  vertical-align: middle;
}
.ico img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}
.i-icon img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}
.contact-info .info-item .i-text h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.contact-info .info-item .i-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid #eee;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-form .form-group.full {
  grid-column: 1/-1;
}
.contact-form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-family: inherit;
  transition: 0.3s;
  outline: none;
  background: #fafbfd;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(2, 81, 255, 0.08);
  background: #fff;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form .btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.35s;
  margin-top: 0.5rem;
}
.contact-form .btn-submit:hover {
  background: #0044d6;
  box-shadow: 0 8px 30px rgba(2, 81, 255, 0.3);
}

.cta-panel {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  background: linear-gradient(135deg, #0a1f44, #0251ff);
  padding: 3rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-panel h3 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.cta-panel p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
}

footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 6rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
footer h4 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
}
footer p,
footer a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  line-height: 2;
}
footer a:hover {
  color: var(--gold);
}
footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
}

@media (max-width: 1200px) {
  #header {
    padding: 0 2rem;
  }
  section {
    padding: 5rem 2.5rem;
  }
  #banner .m,
  .page-hero .m {
    flex-direction: column;
    padding: 7rem 2.5rem 3rem;
    align-items: flex-start;
  }
  #banner .s_shuzi {
    flex-direction: row;
    gap: 3rem;
  }
  #banner .s_shuzi .item {
    text-align: left;
  }
  #banner .s_shuzi .item .num {
    justify-content: flex-start;
  }
  #banner .txt h3,
  .page-hero h1 {
    font-size: 3rem;
  }
  #trust-strip {
    margin-top: 2rem;
    padding: 0 2.5rem;
  }
  #trust-strip .trust-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .capa-grid,
  .solution-grid {
    grid-template-columns: 1fr;
  }
  .insight-grid {
    grid-template-columns: 1fr;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .flow-line {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  .flow-line::before {
    display: none;
  }
  .page-hero .page-side-note {
    width: 100%;
  }
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  #header #nav {
    display: none;
  }
  section {
    padding: 4rem 1.5rem;
  }
  #banner .m,
  .page-hero .m {
    padding: 6rem 1.5rem 2rem;
  }
  #banner .txt h3,
  .page-hero h1 {
    font-size: 2.25rem;
  }
  #banner .s_shuzi {
    flex-direction: column;
    gap: 1.5rem;
  }
  #banner .banner-arrow {
    left: 1.5rem;
  }
  #trust-strip {
    padding: 0 1.5rem;
  }
  #trust-strip .trust-cards {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }
  #trust-strip .trust-card {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 0.75rem 0;
  }
  #trust-strip .trust-card:last-child {
    border-bottom: none;
  }
  .s_hd .tt h3 {
    font-size: 2.25rem;
  }
  .pain-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .flow-line {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .compare-table,
  .service-table {
    display: block;
    overflow-x: auto;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
  .cta-panel {
    padding: 2rem;
  }
  footer {
    padding: 3rem 1.5rem 2rem;
  }
  footer .footer-grid {
    grid-template-columns: 1fr;
  }
}
