@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;600;700&display=swap');

:root{
  --primary-color:#003d82;
  --secondary-color:#0066cc;
  --accent-color:#2196F3;
  --text-dark:#1a1a1a;
  --text-muted:#666666;
  --text-light:#999999;
  --bg-light:#f8f9fa;
  --bg-white:#ffffff;
  --border-color:#e0e0e0;
  --shadow-sm:0 2px 8px rgba(0,0,0,.08);
  --shadow-md:0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:0 8px 32px rgba(0,0,0,.15);
}

*,*::before,*::after{box-sizing:border-box;}
body{
  font-family:'Noto Sans SC','Microsoft YaHei',Arial,sans-serif;
  margin:0;
  background:var(--bg-white);
  color:var(--text-dark);
  line-height:1.7;
  font-size:15px;
}
img{max-width:100%;height:auto;display:block;}
a{text-decoration:none;color:inherit;transition:color .3s ease;}
a:hover{color:var(--secondary-color);}

.section{padding:80px 0;}
.section-alt{background:var(--bg-light);}
.section-header{margin-bottom:50px;}
.section-tag{
  display:inline-block;
  padding:6px 18px;
  border-radius:20px;
  background:rgba(0,102,204,.08);
  color:var(--primary-color);
  font-size:13px;
  font-weight:600;
  letter-spacing:1px;
  margin-bottom:12px;
}
.section-title{
  font-size:32px;
  font-weight:600;
  color:var(--text-dark);
  margin:0 0 12px;
  line-height:1.3;
}
.section-subtitle{
  font-size:16px;
  color:var(--text-muted);
  margin:0;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 32px;
  border-radius:6px;
  font-weight:600;
  border:2px solid transparent;
  cursor:pointer;
  transition:all .3s ease;
  font-size:15px;
}
.btn:focus{outline:none;box-shadow:0 0 0 4px rgba(0,102,204,.1);}
.btn-primary{
  background:var(--primary-color);
  color:#fff;
  border-color:var(--primary-color);
}
.btn-primary:hover{
  background:#002d5f;
  border-color:#002d5f;
  color:#fff;
  transform:translateY(-2px);
  box-shadow:var(--shadow-md);
}
.btn-outline-primary{
  border-color:var(--primary-color);
  color:var(--primary-color);
  background:transparent;
}
.btn-outline-primary:hover{
  background:var(--primary-color);
  color:#fff;
}
.btn-light{
  background:#fff;
  color:var(--primary-color);
  border-color:#fff;
}
.btn-light:hover{
  background:#f5f5f5;
  color:var(--primary-color);
}

.finance-navbar{
  background:#fff;
  padding:16px 0;
  transition:all .3s ease;
  box-shadow:var(--shadow-sm);
}
.finance-navbar.is-scrolled{
  box-shadow:var(--shadow-md);
  padding:12px 0;
}
.finance-navbar .navbar-brand{
  font-weight:600;
  color:var(--text-dark);
  font-size:18px;
}
.finance-navbar .brand-mark{width:36px;height:36px;margin-right:10px;}
.finance-navbar .nav-link{
  color:var(--text-dark);
  padding:8px 16px;
  font-weight:500;
}
.finance-navbar .nav-link:hover{color:var(--secondary-color);}
.finance-navbar .btn-outline{
  border-color:var(--primary-color);
  color:var(--primary-color);
  padding:8px 20px;
}
.finance-navbar .btn-gradient{
  background:var(--primary-color);
  color:#fff;
  padding:8px 20px;
}

.hero{
  padding:140px 0 80px;
  background:linear-gradient(135deg,#f5f7fa 0%,#e8eef5 100%);
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  top:-50%;
  right:-10%;
  width:600px;
  height:600px;
  background:radial-gradient(circle,rgba(33,150,243,.08) 0%,transparent 70%);
  border-radius:50%;
}
.badge-enterprise{
  display:inline-block;
  padding:8px 20px;
  border-radius:24px;
  background:#fff;
  color:var(--primary-color);
  font-size:13px;
  font-weight:600;
  letter-spacing:1px;
  margin-bottom:24px;
  box-shadow:var(--shadow-sm);
}
.hero-title{
  font-size:42px;
  font-weight:600;
  color:var(--text-dark);
  margin-bottom:20px;
  line-height:1.3;
}
.hero-title .typed-text{
  display:block;
  font-size:32px;
  color:var(--secondary-color);
  margin-top:12px;
  font-weight:500;
}
.hero-desc{
  font-size:17px;
  color:var(--text-muted);
  margin-bottom:32px;
  line-height:1.8;
}
.hero-features{
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  margin-bottom:32px;
}
.feature-item{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--text-muted);
  font-size:14px;
}
.feature-item svg{
  color:var(--secondary-color);
  flex-shrink:0;
}
.hero-cta{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.hero-image{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.hero-image img{
  width:100%;
  height:auto;
}

.trust-bar{
  background:#fff;
  padding:40px 0;
  margin-top:60px;
  box-shadow:var(--shadow-md);
  border-radius:12px;
}
.trust-item{
  text-align:center;
  padding:20px 10px;
  border-right:1px solid var(--border-color);
}
.trust-item:last-child{border-right:none;}
.trust-item strong{
  display:inline-block;
  font-size:36px;
  font-weight:600;
  color:var(--primary-color);
}
.trust-item span{
  font-size:24px;
  color:var(--primary-color);
  margin-left:4px;
}
.trust-item p{
  margin:8px 0 0;
  color:var(--text-muted);
  font-size:14px;
}

.value-card{
  background:#fff;
  border-radius:12px;
  padding:32px;
  height:100%;
  border:1px solid var(--border-color);
  transition:all .3s ease;
}
.value-card:hover{
  box-shadow:var(--shadow-md);
  transform:translateY(-4px);
  border-color:var(--secondary-color);
}
.value-icon{
  width:80px;
  height:80px;
  border-radius:12px;
  background:rgba(33,150,243,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:24px;
}
.value-icon svg{
  color:var(--secondary-color);
}
.value-card h4{
  font-size:20px;
  font-weight:600;
  margin-bottom:12px;
  color:var(--text-dark);
}
.value-card p{
  color:var(--text-muted);
  margin:0;
  line-height:1.7;
}

.service-card{
  background:#fff;
  border-radius:12px;
  padding:32px;
  height:100%;
  border:1px solid var(--border-color);
  transition:all .3s ease;
  position:relative;
}
.service-card:hover{
  box-shadow:var(--shadow-md);
  transform:translateY(-4px);
}
.service-number{
  position:absolute;
  top:20px;
  right:20px;
  font-size:48px;
  font-weight:700;
  color:rgba(0,102,204,.08);
  line-height:1;
}
.service-card h5{
  font-size:18px;
  font-weight:600;
  margin-bottom:12px;
  color:var(--text-dark);
}
.service-card p{
  color:var(--text-muted);
  margin:0;
}

.compliance-card{
  background:#fff;
  border-radius:12px;
  padding:32px;
  height:100%;
  border:1px solid var(--border-color);
  box-shadow:var(--shadow-sm);
}
.compliance-card h5{
  font-size:20px;
  font-weight:600;
  margin-bottom:20px;
  color:var(--text-dark);
  padding-bottom:12px;
  border-bottom:2px solid var(--primary-color);
}
.compliance-list{
  list-style:none;
  padding:0;
  margin:0;
}
.compliance-list li{
  padding:12px 0 12px 28px;
  color:var(--text-muted);
  position:relative;
  border-bottom:1px solid var(--border-color);
}
.compliance-list li:last-child{border-bottom:none;}
.compliance-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--secondary-color);
  font-weight:700;
  font-size:18px;
}

.scenario-card-enterprise{
  background:#fff;
  border-radius:12px;
  padding:32px;
  height:100%;
  border:1px solid var(--border-color);
  transition:all .3s ease;
}
.scenario-card-enterprise:hover{
  box-shadow:var(--shadow-md);
  transform:translateY(-4px);
}
.scenario-icon{
  width:70px;
  height:70px;
  border-radius:12px;
  background:rgba(0,61,130,.05);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
}
.scenario-icon svg{
  color:var(--primary-color);
}
.scenario-card-enterprise h5{
  font-size:18px;
  font-weight:600;
  margin-bottom:12px;
  color:var(--text-dark);
}
.scenario-card-enterprise p{
  color:var(--text-muted);
  margin:0;
  line-height:1.7;
}

.process-timeline{
  display:flex;
  justify-content:space-between;
  position:relative;
  gap:20px;
  flex-wrap:wrap;
}
.process-timeline::before{
  content:"";
  position:absolute;
  top:40px;
  left:60px;
  right:60px;
  height:2px;
  background:var(--border-color);
  z-index:0;
}
.process-step{
  flex:1;
  min-width:200px;
  text-align:center;
  position:relative;
  z-index:1;
}
.step-num{
  width:80px;
  height:80px;
  border-radius:50%;
  background:var(--primary-color);
  color:#fff;
  font-size:32px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
  box-shadow:var(--shadow-md);
  border:4px solid #fff;
}
.process-step h5{
  font-size:18px;
  font-weight:600;
  margin-bottom:10px;
  color:var(--text-dark);
}
.process-step p{
  color:var(--text-muted);
  margin:0;
}

.section-cta{
  background:var(--bg-light);
}
.cta-box{
  background:linear-gradient(135deg,var(--primary-color) 0%,var(--secondary-color) 100%);
  border-radius:16px;
  padding:50px;
  color:#fff;
  box-shadow:var(--shadow-lg);
}
.cta-box h3{
  font-size:28px;
  font-weight:600;
  margin:0 0 12px;
}
.cta-box p{
  font-size:16px;
  margin:0;
  opacity:.9;
}

.contact-card{
  background:#fff;
  border-radius:12px;
  padding:28px;
  text-align:center;
  border:1px solid var(--border-color);
  transition:all .3s ease;
  height:100%;
}
.contact-card:hover{
  box-shadow:var(--shadow-md);
  transform:translateY(-4px);
}
.contact-icon{
  width:64px;
  height:64px;
  border-radius:50%;
  background:rgba(0,102,204,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
}
.contact-icon svg{
  color:var(--secondary-color);
}
.contact-card h5{
  font-size:18px;
  font-weight:600;
  margin-bottom:12px;
  color:var(--text-dark);
}
.contact-card p{
  color:var(--text-muted);
  margin:0;
  word-break:break-all;
}
.contact-card a{
  color:var(--secondary-color);
  font-weight:500;
}

.footer_background{
  background:#1a1a1a;
  color:rgba(255,255,255,.7);
  padding:60px 0 30px;
}
.footer_background h6{
  color:#fff;
  font-weight:600;
  margin-bottom:20px;
  font-size:16px;
}
.footer_background p{
  font-size:14px;
  line-height:1.8;
}
.footer_background a{
  color:rgba(255,255,255,.7);
}
.footer_background a:hover{
  color:#fff;
}
.footer_menu_list{
  list-style:none;
  padding:0;
  margin:0;
}
.footer_menu_list li{
  margin-bottom:10px;
}
.footer_background .fot_bor{
  border-top:1px solid rgba(255,255,255,.1);
  margin:40px 0 30px;
}

[data-animate]{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .7s ease,transform .7s ease;
}
[data-animate].in-view{
  opacity:1;
  transform:translateY(0);
}

@media (max-width:991px){
  .hero{padding:120px 0 60px;}
  .hero-title{font-size:36px;}
  .hero-title .typed-text{font-size:26px;}
  .section{padding:60px 0;}
  .section-title{font-size:28px;}
  .trust-bar{margin-top:40px;}
  .trust-item{border-right:none;border-bottom:1px solid var(--border-color);}
  .trust-item:last-child{border-bottom:none;}
  .process-timeline::before{display:none;}
  .process-step{flex-basis:100%;}
  .cta-box{padding:40px 30px;text-align:center;}
  .cta-box .btn{width:100%;margin-top:20px;}
}
@media (max-width:575px){
  .hero{padding:100px 0 50px;}
  .hero-title{font-size:28px;}
  .hero-title .typed-text{font-size:22px;}
  .hero-cta{flex-direction:column;}
  .hero-cta .btn{width:100%;}
  .section{padding:50px 0;}
  .section-title{font-size:24px;}
  .value-card,.service-card,.compliance-card,.scenario-card-enterprise{padding:24px;}
  .step-num{width:60px;height:60px;font-size:24px;}
}