* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #F7F8FA;
  padding-bottom: 66px;

}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: white;
  padding: 9px 0;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
}

.logo {
  width: 141px;
  height: 38px;
  margin-right: 86px;
}

.logo::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #2563eb;
  border-radius: 50%;
  margin-right: 8px;
}

.nav {
  display: flex;
  gap: 56px;
}

.nav a {
  text-decoration: none;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: #2563eb;
}

.login-btn {
  background: #2563eb;
  color: white;
  padding: 8px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.login-btn:hover {
  background: #1d4ed8;
}

/* Hero Section */
.hero {
  background: url('../assets/technicalAdvantages/Group_1321315985@2x.png') no-repeat;
  background-size: 100% 512px;
  height: 512px;
  /* padding: 60px 0 80px; */
  position: relative;
  overflow: hidden;
}

.hero-content {
  /* display: flex; */
  /* align-items: center; */
  /* gap: 80px; */
  position: relative;
  z-index: 2;
}

.hero-text {
  /* flex: 1; */
  /* width: 80%; */
}

.p {
  font-size: 22px;
  color: #222222;
  text-align: center;
  margin-top: 28px;
}

.hero-title {
  margin-top: 139px;
  font-size: 68px;
  left: 0;
  /* font-weight: 700; */
  /* width: 120%; */
  /* top: -40px; */
  /* position: relative; */
  text-align: center;
  line-height: 1.3;
  background: -webkit-linear-gradient(#4C8CEF, #054ACD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
}

.hero-image {
  /* flex: 1; */
  /* width: 30%; */
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  position: relative;
  right: -80px;
  width: 466px;
  height: 512px;
  object-fit: cover;
  border-radius: 16px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

/* Feature Cards */
.features {
  width: 100%;
  /* background: #f8fafc; */
  padding: 60px 0;
  box-sizing: border-box;
  margin-top: -145px;
  position: relative;
  z-index: 3;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 56px;
  height: 56px;
  /* background: linear-gradient(135deg, #dbeafe, #bfdbfe); */
  border-radius: 16px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feature-icon::after {
  content: "";
  width: 24px;
  height: 24px;
  background: #2563eb;
  border-radius: 6px;
}

.feature-title {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}

/* Core Technology */
.core-tech {
  margin-top: 46px;
  /* background: #dbeafe; */
}

.core-background {
  padding: 66px;
  background: url('../assets/productIntroduction/Group_1321315987@2x.png') no-repeat;
  background-size: cover;
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 28px;
  color: #0646CA;
}

.core-caption {
  text-align: center;
  font-size: 22px;
  margin-bottom: 62px;
}

.section-subtitle {
  text-align: center;
  color: #64748b;
  margin-bottom: 48px;
  font-size: 20px;
}

.tech-grid {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  gap: 88px;
}

.tech-card {
  position: relative;
  max-width: 313px;
  border-radius: 16px;
  padding: 66px 46px 136px 46px;
  box-sizing: border-box;
  /* overflow: hidden; */
  background: #fff;
  transition: transform 0.2s;
}

.tech-card img {
  width: 28px;
  height: 28px;
}

.tech-card:nth-child(1) {
  background: url('../assets/technicalAdvantages/Group_1321316250@2x.png') no-repeat;
  background-size: cover;
}

.tech-card:nth-child(2) {
  background: url('../assets/technicalAdvantages/Group_1321316249@2x.png') no-repeat;
  background-size: cover;
}

.tech-card:nth-child(3) {
  background: url('../assets/technicalAdvantages/Group_1321316251@2x.png') no-repeat;
  background-size: cover;
}

.tech-card:hover {
  transform: scale(1.02);
}

.tech-label {
  color: #0646CA;
  font-size: 22px;
  margin: 12px 0;
}

.caption-text {
  margin-top: 48px;
  color: rgba(34, 34, 34, 0.6);
}

/* Developer Tools */
.developer-tools {
  margin: 46px auto;
  background: #dbeafe;
  padding: 66px 36px 502px 66px;
  position: relative;
  background: url('../assets/technicalAdvantages/Group_1321316253@2x.png') no-repeat;
  background-size: cover;
}

.developer-tools .section-title {
  margin-bottom: 0;
}

.tools-description {
  margin: 18px 0 48px 0;
  font-size: 20px;
  text-align: center;
  color: #596978;
}

.tools-buttons {
  display: flex;
  /* justify-content: center; */
  gap: 66px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  /* border-bottom: 38px; */
}

.box {
  position: relative;

}

.img {
  max-width: 351px;
  height: 156px;
  padding-top: 43px;
  padding-left: 60px;
  padding-right: 31px;
  font-size: 20px;
  box-sizing: border-box;
  position: absolute;
  background: url('../assets/technicalAdvantages/Group_1321316223@2x.png') no-repeat;
  background-size: cover;
  /* margin-bottom: 38px; */
}

/* .developer-tools .img:nth-child(1) {
  top: 212px;
  left: 66px;
} */

.developer-tools .img:nth-child(2) {
  top: 55px;
  left: 484px;
}

.developer-tools .img:last-child {
  top: 243px;
  left: 222px;
}

.tools-text {
  padding: 0px 115px;
  font-size: 18px;
  text-align: center;
  color: rgba(34, 34, 34, 0.6);
}

.tool-btn:hover {
  background: #1d4ed8;
}

.tools-support {
  /* text-align: center; */
  color: #64748b;
  font-size: 14px;
  font-size: 20px;
  margin-bottom: 38px;
}

.tools-support:last-child {
  margin-bottom: 0;
}

/* Footer */
.footer {
  background: #596978;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  padding: 0 73px;
  display: flex;
  /* grid-template-columns: repeat(2, 1fr); */
  gap: 60px;
  margin-bottom: 40px;
}

.footer-section:first-child {
  width: 65%;
}

.footer-section h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
  color: #cbd5e1;
  margin-bottom: 8px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
}

.footer-section a:hover {
  color: white;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.footer-links a {
  display: block;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 24px;
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
}

.ai {
  width: 100vw;
  height: 66px;
  box-sizing: border-box;
  color: #054ACD;
  position: fixed;
  bottom: 0px;
  background-color: #FFF;
  z-index: 999;
}

.aiBox {
  display: flex;
  padding: 15px 0;
  justify-content: space-between;

}

.aiText {
  padding-top: 7px;
}

.aiImg {
  height: 36px;
  width: 125px;
}

/* Responsive Design */
@media (max-width: 768px) {

  .hero-content,
  .case-item,
  .consultation-section {
    flex-direction: column;
    text-align: center;
  }

  .features-grid,
  .tech-grid,
  .advantages-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-image img {
    right: 0px;
    width: 240px;
    height: 300px;
  }

  .img {
    position: relative;
    margin-bottom: 20px;
  }

  .developer-tools .img:nth-child(2) {
    top: 0;
    left: 0;
  }

  .developer-tools .img:last-child {
    top: 0;
    left: 0;
  }

  .tools-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.flex {
  display: flex;
}

.justifyContentCenter {
  display: flex;
  justify-content: center;
}

.flex1 {
  flex: 1;
}

.inlineBlock {
  display: inline-block;
}

.fontSize32 {
  font-size: 32px;
}

.m_r_10px {
  margin-right: 10px;
}

.m_t_60px {
  margin-top: 60px;
}

.m_t_80px {
  margin-top: 80px;
}