html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  /* font-weight: normal; */
  vertical-align: baseline;
  outline: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: #7e8c8d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-text-decoration: none;
  text-decoration: none;
}

a:hover {
  -webkit-text-decoration: none;
  text-decoration: none;
}

a:visited {
  -webkit-text-decoration: none;
  text-decoration: none;
}

li {
  list-style: none;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track-piece {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:vertical {
  height: 5px;
  background-color: rgba(125, 125, 125, 0.7);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:horizontal {
  width: 5px;
  background-color: rgba(125, 125, 125, 0.7);
  border-radius: 6px;
}

@font-face {
  font-family: "Source Han Sans CN-Normal";
  src: url("https://www.ieduchina.com/statics/font/SourceHanSansCN-Regular.ttf") format("truetype");
}

html,
body {
  width: 100%;
}

body {
  font-family: Source Han Sans CN-Normal;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  min-width: 1200px;
  height: 72px;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

header .header-con {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 72px;
}

header .header-con .logo {
  font-weight: bold;
  font-size: 26px;
  color: var(--primary);
  letter-spacing: 2px;
}

header .header-con .logo img {
  height: 50px;
}

header .header-con .nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}

header .header-con .nav-links a {
  display: inline-block;
  padding: 8px 18px;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .header-con .nav-links a:hover,
header .header-con .nav-links a.active {
  color: var(--primary);
  background-color: rgba(20, 58, 126, 0.08);
  font-weight: bold;
}

header .header-con .nav-links a.active {
  font-weight: 600;
}

header .header-con .tel-wrap a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #666;
  font-weight: bold;
  -webkit-transition: var(--t);
  transition: var(--t);
  cursor: context-menu;
}

header .header-con .tel-wrap a .tel span {
  display: block;
  line-height: 1.4;
}

header .header-con .tel-wrap a:hover {
  color: var(--primary);
  cursor: pointer;
}

header .header-con .tel-wrap svg {
  width: 28px;
  height: 28px;
  margin-right: 4px;
}

.title {
  text-align: center;
  margin-bottom: 48px;
}

.title h2 {
  font-weight: bold;
  font-size: 38px;
  color: var(--black);
  letter-spacing: 2px;
  line-height: 1.4;
}

.title h2 span {
  position: relative;
  display: inline-block;
}

.title h2 span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(var(--primary)), to(var(--secondary)));
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.title p {
  font-weight: 400;
  font-size: 16px;
  color: #999;
  letter-spacing: 3px;
  margin-top: 20px;
  text-transform: uppercase;
}

.banner-section {
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.banner-section .banner-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.banner-section .banner-bg .bg-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.banner-section .banner-bg .bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.banner-section .banner-bg .bg-image .bg-gradient-mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(20, 58, 126, 0.92) 0%, rgba(20, 58, 126, 0.75) 30%, rgba(20, 58, 126, 0.55) 60%, rgba(20, 58, 126, 0.35) 100%);
}

.banner-section .banner-bg .bg-image .bg-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(15, 23, 42, 0.1)), color-stop(30%, transparent));
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, transparent 30%);
}

.banner-section .classroom-elements {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.banner-section .classroom-elements .video-window {
  position: absolute;
  border-radius: 16px;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  -webkit-animation: videoFloat 6s ease-in-out infinite;
  animation: videoFloat 6s ease-in-out infinite;
  opacity: 0;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

.banner-section .classroom-elements .video-window .video-frame {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a4080 0%, #143a7e 100%);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-section .classroom-elements .video-window .video-frame .video-placeholder {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
}

.banner-section .classroom-elements .video-window .video-frame .video-placeholder .play-icon {
  width: 60px;
  height: 60px;
  background: rgba(20, 58, 126, 0.9);
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  -webkit-box-shadow: 0 10px 30px rgba(20, 58, 126, 0.5);
  box-shadow: 0 10px 30px rgba(20, 58, 126, 0.5);
}

.banner-section .classroom-elements .video-window .video-frame .video-placeholder .user-avatar {
  font-size: 48px;
}

.banner-section .classroom-elements .video-window .video-frame .video-placeholder .video-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.banner-section .classroom-elements .video-window .video-frame .window-controls {
  position: absolute;
  top: 12px;
  left: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}

.banner-section .classroom-elements .video-window .video-frame .window-controls span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.banner-section .classroom-elements .video-window .video-frame .window-controls span:nth-child(1) {
  background: #ef4444;
}

.banner-section .classroom-elements .video-window .video-frame .window-controls span:nth-child(2) {
  background: #1e88e5;
}

.banner-section .classroom-elements .video-window .video-frame .window-controls span:nth-child(3) {
  background: #22c55e;
}

.banner-section .classroom-elements .video-window .video-frame .connection-line {
  position: absolute;
  bottom: -30px;
  left: 50%;
  width: 2px;
  height: 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(#143a7e), to(transparent));
  background: linear-gradient(180deg, #143a7e, transparent);
}

.banner-section .classroom-elements .video-window.window-1 {
  width: 280px;
  height: 180px;
  top: 15%;
  left: 5%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.banner-section .classroom-elements .video-window.window-2 {
  width: 200px;
  height: 130px;
  bottom: 20%;
  left: 8%;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.banner-section .classroom-elements .video-window.window-2 .video-placeholder {
  background: linear-gradient(135deg, #1a4080 0%, #0d2137 100%);
}

.banner-section .classroom-elements .video-window.window-3 {
  width: 180px;
  height: 120px;
  top: 25%;
  right: 8%;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.banner-section .classroom-elements .video-window.window-3 .video-placeholder {
  background: linear-gradient(135deg, #1a4080 0%, #1a1030 100%);
}

.banner-section .classroom-elements .connection-lines {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner-section .classroom-elements .connection-lines .line {
  fill: none;
  stroke: rgba(20, 58, 126, 0.3);
  stroke-width: 2;
  stroke-dasharray: 8 4;
  -webkit-animation: lineDash 2s linear infinite;
  animation: lineDash 2s linear infinite;
}

.banner-section .classroom-elements .connection-lines .line.line-1 {
  stroke: #143a7e;
}

.banner-section .classroom-elements .connection-lines .line.line-2 {
  stroke: #256af2;
}

.banner-section .classroom-elements .connection-lines .node {
  fill: #143a7e;
  -webkit-animation: nodePulse 2s ease-in-out infinite;
  animation: nodePulse 2s ease-in-out infinite;
}

@-webkit-keyframes lineDash {
  to {
    stroke-dashoffset: -24;
  }
}

@keyframes lineDash {
  to {
    stroke-dashoffset: -24;
  }
}

@-webkit-keyframes nodePulse {

  0%,
  100% {
    r: 8;
    opacity: 1;
  }

  50% {
    r: 12;
    opacity: 0.5;
  }
}

@keyframes nodePulse {

  0%,
  100% {
    r: 8;
    opacity: 1;
  }

  50% {
    r: 12;
    opacity: 0.5;
  }
}

@-webkit-keyframes videoFloat {

  0%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes videoFloat {

  0%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.banner-section .floating-cards {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.banner-section .floating-cards .float-card {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  -webkit-box-shadow: 0 8px 32px rgba(20, 58, 126, 0.15);
  box-shadow: 0 8px 32px rgba(20, 58, 126, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  display: block;
  text-align: center;
  width: 100px;
  height: 100px;
}

.banner-section .floating-cards .float-card .card-text {
  line-height: 96px;
}

.banner-section .floating-cards .float-card.card-1 {
  top: 16%;
  left: 22%;
}

.banner-section .floating-cards .float-card.card-2 {
  top: 20%;
  right: 28%;
}

.banner-section .floating-cards .float-card.card-3 {
  top: 48%;
  left: 15%;
}

.banner-section .floating-cards .float-card.card-4 {
  top: 52%;
  right: 16%;
  width: 120px;
  height: 120px;
}

.banner-section .floating-cards .float-card.card-4 .card-text {
  line-height: 116px;
}

.banner-section .floating-cards .float-card.card-5 {
  bottom: 26%;
  left: 25%;
}

.banner-section .floating-cards .float-card.card-6 {
  bottom: 18%;
  right: 25%;
}

.banner-section .floating-cards .float-card .card-text {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.banner-section.is-visible .video-window {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.banner-section.is-visible .floating-cards .float-card {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-animation: cardFloat 5s ease-in-out infinite;
  animation: cardFloat 5s ease-in-out infinite;
}

.banner-section.is-visible .floating-cards .float-card.card-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.banner-section.is-visible .floating-cards .float-card.card-2 {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.banner-section.is-visible .floating-cards .float-card.card-3 {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.banner-section.is-visible .floating-cards .float-card.card-4 {
  -webkit-animation-delay: 2.1s;
  animation-delay: 2.1s;
}

.banner-section.is-visible .floating-cards .float-card.card-5 {
  -webkit-animation-delay: 2.8s;
  animation-delay: 2.8s;
}

.banner-section.is-visible .floating-cards .float-card.card-6 {
  -webkit-animation-delay: 3.5s;
  animation-delay: 3.5s;
}

@-webkit-keyframes cardFloat {

  0%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
  }
}

@keyframes cardFloat {

  0%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
  }
}

.banner-section .banner-con {
  position: relative;
  z-index: 3;
}

.banner-section .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.banner-section .title-block {
  margin-bottom: 40px;
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-animation: fadeInUp 0.8s ease forwards;
  animation: fadeInUp 0.8s ease forwards;
  position: relative;
}

.banner-section .title-block .brand-badge {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(135deg, #143a7e 0%, #256af2 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  border-radius: 30px;
  margin-bottom: 24px;
  -webkit-box-shadow: 0 4px 20px rgba(20, 58, 126, 0.3);
  box-shadow: 0 4px 20px rgba(20, 58, 126, 0.3);
}

.banner-section .title-block h1 {
  font-size: 96px;
  font-weight: 900;
  background-color: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 20px;
  position: relative;
  display: inline-block;
}

.banner-section .title-block h1::before {
  content: "超慧学";
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, #143a7e 0%, #256af2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: -1;
  -webkit-filter: blur(20px);
  filter: blur(20px);
  opacity: 0.6;
}

.banner-section .title-block::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 120px;
  height: 6px;
  background: -webkit-gradient(linear, left top, right top, from(#143a7e), color-stop(#256af2), to(#1e88e5));
  background: linear-gradient(90deg, #143a7e, #256af2, #1e88e5);
  border-radius: 3px;
}

.banner-section .divider {
  width: 60px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#143a7e), to(#256af2));
  background: linear-gradient(90deg, #143a7e, #256af2);
  margin: 0 auto 40px;
  border-radius: 2px;
  opacity: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-animation: scaleIn 0.6s ease forwards 0.3s;
  animation: scaleIn 0.6s ease forwards 0.3s;
}

@-webkit-keyframes scaleIn {
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes scaleIn {
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.banner-section .subtitle-block {
  margin-bottom: 32px;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-animation: fadeInUp 0.8s ease forwards 0.5s;
  animation: fadeInUp 0.8s ease forwards 0.5s;
}

.banner-section .subtitle-block .main-sub {
  font-size: 56px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}

.banner-section .subtitle-block .sub-sub {
  font-size: 28px;
  color: white;
}

.banner-section .desc {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-animation: fadeInUp 0.8s ease forwards 0.7s;
  animation: fadeInUp 0.8s ease forwards 0.7s;
}

.banner-section .btn-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-animation: fadeInUp 0.8s ease forwards 0.9s;
  animation: fadeInUp 0.8s ease forwards 0.9s;
}

.banner-section .btn-group .btn-primary {
  padding: 16px 40px;
  background: linear-gradient(135deg, #143a7e 0%, #143a7e 30%, #256af2 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 20px rgba(20, 58, 126, 0.3);
  box-shadow: 0 4px 20px rgba(20, 58, 126, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.banner-section .btn-group .btn-primary:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 30px rgba(20, 58, 126, 0.4);
  box-shadow: 0 8px 30px rgba(20, 58, 126, 0.4);
}

.banner-section .btn-group .btn-secondary {
  padding: 16px 40px;
  background: rgba(255, 255, 255, 0.9);
  color: #143a7e;
  font-size: 18px;
  font-weight: 600;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.banner-section .btn-group .btn-secondary:hover {
  border-color: #143a7e;
  background: #fff;
}

@-webkit-keyframes fadeInUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.why-section {
  background-color: var(--light-gray);
  padding: 80px 0;
}

.why-section .why-intro {
  text-align: center;
  font-size: 16px;
  color: var(--text-gray);
  margin: -20px auto 40px;
  max-width: 700px;
  line-height: 1.8;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.why-section .why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0;
  gap: 0;
  background: var(--white);
  border-radius: 16px;
  -webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 10px;
  overflow: hidden;
}

.why-section .why-cards .why-card {
  padding: 32px 24px;
  border-right: 1px solid var(--border-gray);
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease, -webkit-box-shadow 0.3s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease, -webkit-box-shadow 0.3s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, -webkit-transform 0.6s ease, -webkit-box-shadow 0.3s ease;
}

.why-section .why-cards .why-card:nth-child(1) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.why-section .why-cards .why-card:nth-child(2) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.why-section .why-cards .why-card:nth-child(3) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.why-section .why-cards .why-card:nth-child(4) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.why-section .why-cards .why-card:last-child {
  border-right: none;
}

.why-section .why-cards .why-card:hover {
  background: #fafbfc;
  -webkit-box-shadow: inset 0 0 20px rgba(20, 58, 126, 0.04);
  box-shadow: inset 0 0 20px rgba(20, 58, 126, 0.04);
}

.why-section .why-cards .why-card .card-num {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  opacity: 0.6;
}

.why-section .why-cards .why-card .card-content h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.why-section .why-cards .why-card .card-content p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
}

.why-section .radar-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  border-radius: 20px;
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  background-color: white;
}

.why-section .radar-section .radar-left {
  padding: 50px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  opacity: 0;
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.why-section .radar-section .radar-left .radar-header {
  margin-bottom: 36px;
}

.why-section .radar-section .radar-left .radar-header .radar-subtitle {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.7;
}

.why-section .radar-section .radar-left .radar-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.why-section .radar-section .radar-left .radar-header p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
  max-width: 400px;
}

.why-section .radar-section .radar-left .radar-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
}

.why-section .radar-section .radar-left .radar-list .radar-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-gray);
}

.why-section .radar-section .radar-left .radar-list .radar-item:last-child {
  border-bottom: none;
}

.why-section .radar-section .radar-left .radar-list .radar-item .item-num {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #eef3fc;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.why-section .radar-section .radar-left .radar-list .radar-item .item-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
  width: 90px;
  display: inline-block;
}

.why-section .radar-section .radar-left .radar-list .radar-item .item-info p {
  font-size: 16px;
  color: var(--text-gray);
  display: inline-block;
}

.why-section .radar-section .radar-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  background-image: linear-gradient(135deg, #f8fbff, #edf5ff);
  padding: 50px;
}

.why-section .radar-section .radar-right .radar-chart-wrapper {
  position: relative;
  width: 480px;
  height: 480px;
}

.why-section .radar-section .radar-right .radar-chart-wrapper canvas {
  width: 100%;
  height: 100%;
}

.why-section .radar-section .radar-right .radar-chart-wrapper .radar-labels {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}

.why-section .radar-section .radar-right .radar-chart-wrapper .radar-labels .label-item {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--white);
  border-radius: 20px;
  font-size: 13px;
  color: var(--primary);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-gray);
}

.why-section .radar-section .radar-right .radar-chart-wrapper .radar-labels .label-item span {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  opacity: 0.6;
}

.why-section .radar-section .radar-right .radar-chart-wrapper .radar-labels .label-item.label-1 {
  top: 8%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.why-section .radar-section .radar-right .radar-chart-wrapper .radar-labels .label-item.label-2 {
  top: 32%;
  right: 2%;
}

.why-section .radar-section .radar-right .radar-chart-wrapper .radar-labels .label-item.label-3 {
  bottom: 12%;
  right: 8%;
}

.why-section .radar-section .radar-right .radar-chart-wrapper .radar-labels .label-item.label-4 {
  bottom: 12%;
  left: 8%;
}

.why-section .radar-section .radar-right .radar-chart-wrapper .radar-labels .label-item.label-5 {
  top: 32%;
  left: 2%;
}

.why-section.is-visible .why-intro,
.why-section.is-visible .radar-left,
.why-section.is-visible .radar-right {
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.why-section.is-visible .why-card {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.courses-section {
  background: -webkit-gradient(linear, left top, left bottom, from(#f0f4f8), to(#eef3fc));
  background: linear-gradient(180deg, #f0f4f8 0%, #eef3fc 100%);
  padding: 80px 0;
  position: relative;
}

.courses-section .timeline-wrapper {
  position: relative;
  padding-bottom: 40px;
}

.courses-section.is-visible .line-progress {
  width: 100%;
}

.courses-section .timeline-cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.courses-section .timeline-card {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.courses-section .timeline-card:nth-child(1) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.courses-section .timeline-card:nth-child(2) {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

.courses-section .timeline-card:nth-child(3) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.courses-section .timeline-card:nth-child(4) {
  -webkit-transition-delay: 0.55s;
  transition-delay: 0.55s;
}

.courses-section .timeline-card:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.courses-section .timeline-card:hover .card-content {
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.courses-section .timeline-card:hover .card-dot {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-box-shadow: 0 0 0 8px var(--dot-color) 20;
  box-shadow: 0 0 0 8px var(--dot-color) 20;
}

.courses-section .timeline-card .card-dot {
  width: 20px;
  height: 20px;
  background: var(--dot-color);
  border-radius: 50%;
  border: 4px solid #fff;
  -webkit-box-shadow: 0 0 0 4px var(--dot-color) 30;
  box-shadow: 0 0 0 4px var(--dot-color) 30;
  margin-bottom: 24px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.courses-section .timeline-card .card-content {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 100%;
  border: 1px solid #d1dce8;
}

.courses-section .timeline-card .card-header {
  padding: 20px;
  background: linear-gradient(135deg, var(--card-color) 0%, var(--card-color) dd 100%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.courses-section .timeline-card .card-header .card-num {
  font-size: 32px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1;
}

.courses-section .timeline-card .card-header .card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 24px;
  backdrop-filter: blur(4px);
}

.courses-section .timeline-card .card-body {
  padding: 20px;
}

.courses-section .timeline-card .card-body .card-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.courses-section .timeline-card .card-body .card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.courses-section .timeline-card .card-body .card-items li {
  padding: 10px 0;
  font-size: 14px;
  color: #64748b;
  border-bottom: 1px dashed #d1dce8;
  position: relative;
  padding-left: 16px;
  line-height: 1.5;
}

.courses-section .timeline-card .card-body .card-items li:last-child {
  border-bottom: none;
}

.courses-section .timeline-card .card-body .card-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  background: var(--card-color);
  border-radius: 50%;
}

.courses-section.is-visible .timeline-card {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.diff-section {
  background: linear-gradient(135deg, #0a1f3d 0%, #143a7e 100%);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.diff-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.diff-section::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 106, 242, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.diff-section .diff-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.diff-section .diff-header {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 340px;
  -ms-flex: 0 0 340px;
  flex: 0 0 340px;
  opacity: 0;
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  -webkit-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.diff-section .diff-header .section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #4a8bff;
  margin-bottom: 20px;
}

.diff-section .diff-header .diff-title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 20px;
}

.diff-section .diff-header .diff-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 28px;
}

.diff-section .diff-header .diff-quote {
  position: relative;
  padding: 20px 24px 20px 44px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  border-left: 3px solid #4a8bff;
  backdrop-filter: blur(10px);
}

.diff-section .diff-header .diff-quote .quote-icon {
  position: absolute;
  left: 18px;
  top: 14px;
  font-size: 28px;
  color: #4a8bff;
  font-weight: 700;
  line-height: 1;
}

.diff-section .diff-header .diff-quote p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.diff-section .diff-steps {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.diff-section .diff-step {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.diff-section .diff-step:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(74, 139, 255, 0.4);
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
}

.diff-section .diff-step.item-1 {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.diff-section .diff-step.item-2 {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

.diff-section .diff-step.item-3 {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.diff-section .diff-step .step-num {
  position: absolute;
  top: 18px;
  left: 22px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
}

.diff-section .diff-step .step-icon {
  width: 56px;
  height: 56px;
  background: rgba(74, 139, 255, 0.15);
  border-radius: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 28px 0 24px;
  color: #4a8bff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.diff-section .diff-step .step-icon svg {
  width: 26px;
  height: 26px;
}

.diff-section .diff-step:hover .step-icon {
  background: rgba(74, 139, 255, 0.25);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.diff-section .diff-step .step-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.diff-section .diff-step .step-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.diff-section.is-visible .diff-header {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.diff-section.is-visible .diff-step {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .diff-section .diff-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
  }

  .diff-section .diff-header {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    width: 100%;
    text-align: center;
  }

  .diff-section .diff-header .diff-title {
    font-size: 30px;
  }

  .diff-section .diff-steps {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.advantage-section {
  background-color: var(--white);
  padding-bottom: 0;
}

.advantage-section .advantage-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-gray);
  margin-top: -24px;
  margin-bottom: 10px;
}

.advantage-section .advantage-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 32px;
  margin-top: 30px;
}

.advantage-section .advantage-list .advantage-item {
  text-align: center;
  padding: 36px 28px;
  width: 340px;
  border-radius: 12px;
  background: var(--light-gray);
  -webkit-transition: background 0.4s ease, -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-box-shadow 0.4s ease;
  transition: background 0.4s ease, -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-box-shadow 0.4s ease;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, background 0.4s ease;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, background 0.4s ease, -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-box-shadow 0.4s ease;
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
}

.advantage-section .advantage-list .advantage-item:nth-child(1) {
  -webkit-transition: background 0.4s ease, opacity 0.7s ease 0.1s, -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s, -webkit-box-shadow 0.4s ease;
  transition: background 0.4s ease, opacity 0.7s ease 0.1s, -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s, -webkit-box-shadow 0.4s ease;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s, box-shadow 0.4s ease, background 0.4s ease, opacity 0.7s ease 0.1s;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s, box-shadow 0.4s ease, background 0.4s ease, opacity 0.7s ease 0.1s, -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s, -webkit-box-shadow 0.4s ease;
}

.advantage-section .advantage-list .advantage-item:nth-child(2) {
  -webkit-transition: background 0.4s ease, opacity 0.7s ease 0.25s, -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.25s, -webkit-box-shadow 0.4s ease;
  transition: background 0.4s ease, opacity 0.7s ease 0.25s, -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.25s, -webkit-box-shadow 0.4s ease;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.25s, box-shadow 0.4s ease, background 0.4s ease, opacity 0.7s ease 0.25s;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.25s, box-shadow 0.4s ease, background 0.4s ease, opacity 0.7s ease 0.25s, -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.25s, -webkit-box-shadow 0.4s ease;
}

.advantage-section .advantage-list .advantage-item:nth-child(3) {
  -webkit-transition: background 0.4s ease, opacity 0.7s ease 0.4s, -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.4s, -webkit-box-shadow 0.4s ease;
  transition: background 0.4s ease, opacity 0.7s ease 0.4s, -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.4s, -webkit-box-shadow 0.4s ease;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.4s, box-shadow 0.4s ease, background 0.4s ease, opacity 0.7s ease 0.4s;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.4s, box-shadow 0.4s ease, background 0.4s ease, opacity 0.7s ease 0.4s, -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.4s, -webkit-box-shadow 0.4s ease;
}

.advantage-section .advantage-list .advantage-item:hover {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  -webkit-box-shadow: 0 12px 36px rgba(20, 58, 126, 0.12);
  box-shadow: 0 12px 36px rgba(20, 58, 126, 0.12);
  background: var(--white);
}

.advantage-section .advantage-list .advantage-item:hover .advantage-num {
  opacity: 1;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  color: var(--secondary);
}

.advantage-section .advantage-list .advantage-item .advantage-num {
  font-size: 56px;
  font-weight: bold;
  color: var(--secondary);
  margin-bottom: 12px;
  opacity: 0.5;
  letter-spacing: 2px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.advantage-section .advantage-list .advantage-item h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 14px;
}

.advantage-section .advantage-list .advantage-item p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
}

.advantage-section.is-visible .advantage-item {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.process-section {
  background-color: #f5f8fc;
  padding: 100px 0;
  overflow: hidden;
}

.process-section .process-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 80px;
  gap: 60px;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.process-section .process-header .header-left {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.process-section .process-header .header-right {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 380px;
  -ms-flex: 0 0 380px;
  flex: 0 0 380px;
  padding-top: 30px;
}

.process-section .process-header .section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #143a7e;
  margin-bottom: 16px;
}

.process-section .process-header .process-title {
  font-size: 38px;
  font-weight: 800;
  color: #143a7e;
  line-height: 1.3;
}

.process-section .process-header .process-subtitle {
  font-size: 15px;
  color: #5a6a7a;
  line-height: 1.8;
}

.process-section .process-flow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  margin: 0 auto;
}

.process-section .process-flow .flow-line {
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#d1dce8), color-stop(50%, #4a8bff), to(#d1dce8));
  background: linear-gradient(90deg, #d1dce8 0%, #4a8bff 50%, #d1dce8 100%);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: -webkit-transform 1.2s ease 0.3s;
  transition: -webkit-transform 1.2s ease 0.3s;
  transition: transform 1.2s ease 0.3s;
  transition: transform 1.2s ease 0.3s, -webkit-transform 1.2s ease 0.3s;
  z-index: 0;
}

.process-section .process-step {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 10px;
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-section .process-step.item-1 {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.process-section .process-step.item-2 {
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}

.process-section .process-step.item-3 {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.process-section .process-step.item-4 {
  -webkit-transition-delay: 0.65s;
  transition-delay: 0.65s;
}

.process-section .process-step.item-5 {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.process-section .process-step .step-circle {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #d1dce8;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 28px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-shadow: 0 4px 20px rgba(20, 58, 126, 0.05);
  box-shadow: 0 4px 20px rgba(20, 58, 126, 0.05);
}

.process-section .process-step .step-circle .step-num {
  font-size: 18px;
  font-weight: 700;
  color: #143a7e;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.process-section .process-step.item-3 .step-circle {
  background: linear-gradient(135deg, #143a7e 0%, #256af2 100%);
  border-color: #143a7e;
  -webkit-box-shadow: 0 8px 28px rgba(20, 58, 126, 0.3);
  box-shadow: 0 8px 28px rgba(20, 58, 126, 0.3);
}

.process-section .process-step.item-3 .step-circle .step-num {
  color: #fff;
}

.process-section .process-step:hover .step-circle {
  border-color: #143a7e;
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
  -webkit-box-shadow: 0 10px 30px rgba(20, 58, 126, 0.2);
  box-shadow: 0 10px 30px rgba(20, 58, 126, 0.2);
}

.process-section .process-step .step-title {
  font-size: 18px;
  font-weight: 700;
  color: #143a7e;
  margin-bottom: 12px;
  line-height: 1.4;
}

.process-section .process-step .step-desc {
  font-size: 13px;
  color: #5a6a7a;
  line-height: 1.7;
  max-width: 180px;
}

.process-section.is-visible .process-header {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.process-section.is-visible .flow-line {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.process-section.is-visible .process-step {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .process-section .process-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
  }

  .process-section .process-header .header-right {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    width: 100%;
    padding-top: 0;
  }

  .process-section .process-flow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }

  .process-section .process-flow .flow-line {
    display: none;
  }
}

.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #050d1f 0%, #0a1f3d 30%, #143a7e 70%, #0a3a8a 100%);
  background-size: 200% 200%;
  isolation: isolate;
  -webkit-animation: bgFlow 15s ease infinite;
  animation: bgFlow 15s ease infinite;
}

@-webkit-keyframes bgFlow {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes bgFlow {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.cta-section .cta-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  pointer-events: none;
}

.cta-section .cta-bg .bg-mesh {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(at 20% 30%, rgba(74, 139, 255, 0.3) 0%, transparent 50%), radial-gradient(at 80% 70%, rgba(99, 102, 241, 0.3) 0%, transparent 50%), radial-gradient(at 50% 50%, rgba(37, 106, 242, 0.2) 0%, transparent 60%);
}

.cta-section .cta-bg .bg-grid {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.cta-section .cta-bg .bg-orb {
  position: absolute;
  border-radius: 50%;
  -webkit-filter: blur(60px);
  filter: blur(60px);
  opacity: 0.6;
  -webkit-animation: orbFloat 12s ease-in-out infinite;
  animation: orbFloat 12s ease-in-out infinite;
}

.cta-section .cta-bg .bg-orb.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #256af2, transparent 70%);
  top: -150px;
  left: -100px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.cta-section .cta-bg .bg-orb.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #6366f1, transparent 70%);
  bottom: -100px;
  right: -50px;
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.cta-section .cta-bg .bg-orb.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #4a8bff, transparent 70%);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
}

@-webkit-keyframes orbFloat {

  0%,
  100% {
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
  }

  33% {
    -webkit-transform: translate(50px, -30px) scale(1.1);
    transform: translate(50px, -30px) scale(1.1);
  }

  66% {
    -webkit-transform: translate(-30px, 50px) scale(0.9);
    transform: translate(-30px, 50px) scale(0.9);
  }
}

@keyframes orbFloat {

  0%,
  100% {
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
  }

  33% {
    -webkit-transform: translate(50px, -30px) scale(1.1);
    transform: translate(50px, -30px) scale(1.1);
  }

  66% {
    -webkit-transform: translate(-30px, 50px) scale(0.9);
    transform: translate(-30px, 50px) scale(0.9);
  }
}

.cta-section .floating-elements {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.cta-section .floating-elements .float-item {
  position: absolute;
  height: 60px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 1;
  -webkit-animation: floatBob 6s ease-in-out infinite;
  animation: floatBob 6s ease-in-out infinite;
  color: white;
}

.cta-section .floating-elements .float-item .ico {
  font-size: 16px;
  -webkit-filter: drop-shadow(0 4px 8px rgba(74, 139, 255, 0.5));
  filter: drop-shadow(0 4px 8px rgba(74, 139, 255, 0.5));
}

.cta-section .floating-elements .float-item.item-1 {
  top: 15%;
  left: 8%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.cta-section .floating-elements .float-item.item-2 {
  top: 25%;
  right: 12%;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.cta-section .floating-elements .float-item.item-3 {
  top: 65%;
  left: 5%;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.cta-section .floating-elements .float-item.item-4 {
  top: 60%;
  right: 8%;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.cta-section .floating-elements .float-item.item-5 {
  top: 40%;
  left: 15%;
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.cta-section .floating-elements .float-item.item-6 {
  top: 45%;
  right: 18%;
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

@-webkit-keyframes floatBob {

  0%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes floatBob {

  0%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.cta-section .light-rays {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
}

.cta-section .light-rays .ray {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}

.cta-section .light-rays.is-visible .ray {
  -webkit-animation: drawRay 3s ease forwards;
  animation: drawRay 3s ease forwards;
}

.cta-section .light-rays.is-visible .ray-1 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.cta-section .light-rays.is-visible .ray-2 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.cta-section .light-rays.is-visible .ray-3 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@-webkit-keyframes drawRay {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawRay {
  to {
    stroke-dashoffset: 0;
  }
}

.cta-section .cta-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-section .cta-badge {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(74, 139, 255, 0.15);
  border: 1px solid rgba(74, 139, 255, 0.4);
  border-radius: 100px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.cta-section .cta-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 12px #4ade80;
  box-shadow: 0 0 12px #4ade80;
  -webkit-animation: pulse 1.5s ease-in-out infinite;
  animation: pulse 1.5s ease-in-out infinite;
}

@-webkit-keyframes pulse {

  0%,
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

.cta-section .cta-badge .badge-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #4a8bff;
}

.cta-section .cta-title {
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.cta-section .cta-title .title-line {
  display: block;
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, #c5d4ff 50%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 4px;
  line-height: 1.3;
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-animation: shineText 4s linear infinite;
  animation: shineText 4s linear infinite;
}

@-webkit-keyframes shineText {

  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 200% center;
  }
}

@keyframes shineText {

  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 200% center;
  }
}

.cta-section .cta-title .title-underline {
  position: absolute;
  bottom: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%) scaleX(0);
  transform: translateX(-50%) scaleX(0);
  width: 120px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#4a8bff), color-stop(#256af2), to(#4a8bff));
  background: linear-gradient(90deg, #4a8bff, #256af2, #4a8bff);
  border-radius: 2px;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: -webkit-transform 0.8s ease 0.5s;
  transition: -webkit-transform 0.8s ease 0.5s;
  transition: transform 0.8s ease 0.5s;
  transition: transform 0.8s ease 0.5s, -webkit-transform 0.8s ease 0.5s;
}

.cta-section .cta-stats {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 0.8s ease 0.3s;
  transition: all 0.8s ease 0.3s;
}

.cta-section .cta-stats .stat-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.cta-section .cta-stats .stat-item .stat-num {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, #4a8bff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-section .cta-stats .stat-item .stat-plus {
  font-size: 32px;
  font-weight: 700;
  color: #4a8bff;
  margin-left: -4px;
}

.cta-section .cta-stats .stat-item .stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  margin-top: 4px;
}

.cta-section .cta-stats .stat-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 0;
}

.cta-section .cta-stats .stat-item .stat-label {
  margin-left: 8px;
  margin-top: 0;
}

.cta-section .cta-stats .stat-divider {
  width: 1px;
  height: 40px;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(rgba(255, 255, 255, 0.3)), to(transparent));
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.cta-section .cta-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 0.8s ease 0.5s;
  transition: all 0.8s ease 0.5s;
}

.cta-section .cta-buttons .cta-btn {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 14px;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-text-decoration: none;
  text-decoration: none;
}

.cta-section .cta-buttons .cta-btn .btn-text {
  position: relative;
  z-index: 2;
}

.cta-section .cta-buttons .primary {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#34a750), to(#27b94b));
  background: linear-gradient(90deg, #34a750 0%, #27b94b 100%);
  -webkit-box-shadow: 0 10px 30px rgba(37, 106, 242, 0.4), 0 0 0 0 rgba(74, 139, 255, 0.7);
  box-shadow: 0 10px 30px rgba(37, 106, 242, 0.4), 0 0 0 0 rgba(74, 139, 255, 0.7);
  -webkit-animation: glowPulse 2s ease-in-out infinite;
  animation: glowPulse 2s ease-in-out infinite;
}

@-webkit-keyframes glowPulse {

  0%,
  100% {
    -webkit-box-shadow: 0 10px 30px rgba(37, 106, 242, 0.4), 0 0 0 0 rgba(74, 139, 255, 0.7);
    box-shadow: 0 10px 30px rgba(37, 106, 242, 0.4), 0 0 0 0 rgba(74, 139, 255, 0.7);
  }

  50% {
    -webkit-box-shadow: 0 15px 40px rgba(52, 167, 80, 0.6), 0 0 0 16px rgba(74, 139, 255, 0);
    box-shadow: 0 15px 40px rgba(52, 167, 80, 0.6), 0 0 0 16px rgba(74, 139, 255, 0);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    -webkit-box-shadow: 0 10px 30px rgba(37, 106, 242, 0.4), 0 0 0 0 rgba(74, 139, 255, 0.7);
    box-shadow: 0 10px 30px rgba(37, 106, 242, 0.4), 0 0 0 0 rgba(74, 139, 255, 0.7);
  }

  50% {
    -webkit-box-shadow: 0 15px 40px rgba(52, 167, 80, 0.6), 0 0 0 16px rgba(74, 139, 255, 0);
    box-shadow: 0 15px 40px rgba(52, 167, 80, 0.6), 0 0 0 16px rgba(74, 139, 255, 0);
  }
}

.cta-section .cta-buttons .primary .btn-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.cta-section .cta-buttons .primary .btn-arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.cta-section .cta-buttons .primary .btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.4)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  -webkit-transform: skewX(-20deg);
  transform: skewX(-20deg);
  -webkit-transition: left 0.6s ease;
  transition: left 0.6s ease;
}

.cta-section .cta-buttons .primary:hover {
  -webkit-transform: translateY(-4px) scale(1.02);
  transform: translateY(-4px) scale(1.02);
  -webkit-box-shadow: 0 20px 50px rgba(37, 106, 242, 0.6), 0 0 0 8px rgba(74, 139, 255, 0.2);
  box-shadow: 0 20px 50px rgba(37, 106, 242, 0.6), 0 0 0 8px rgba(74, 139, 255, 0.2);
}

.cta-section .cta-buttons .primary:hover .btn-arrow {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

.cta-section .cta-buttons .primary:hover .btn-shine {
  left: 150%;
}

.cta-section .cta-buttons .primary:active {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.cta-section .cta-buttons .secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.cta-section .cta-buttons .secondary .btn-qr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.cta-section .cta-buttons .secondary .btn-qr svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.cta-section .cta-buttons .secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(74, 139, 255, 0.6);
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0 15px 35px rgba(74, 139, 255, 0.2);
  box-shadow: 0 15px 35px rgba(74, 139, 255, 0.2);
}

.cta-section .trust-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.8s ease 0.7s;
  transition: all 0.8s ease 0.7s;
}

.cta-section .trust-row .trust-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-section .trust-row .trust-item .trust-icon {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #4a8bff, #143a7e);
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.cta-section .trust-row .trust-item .trust-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.cta-section.is-visible .cta-badge {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.cta-section.is-visible .cta-title .title-line {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.cta-section.is-visible .cta-title .title-underline {
  -webkit-transform: translateX(-50%) scaleX(1);
  transform: translateX(-50%) scaleX(1);
}

.cta-section.is-visible .cta-stats {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.cta-section.is-visible .cta-buttons {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.cta-section.is-visible .trust-row {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .cta-section {
    padding: 80px 0;
  }

  .cta-section .cta-title .title-line {
    font-size: 32px;
  }

  .cta-section .cta-stats {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px;
  }

  .cta-section .cta-stats .stat-item .stat-num {
    font-size: 36px;
  }

  .cta-section .cta-stats .stat-divider {
    display: none;
  }

  .cta-section .cta-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

/*鍏叡搴曢儴*/
body .footer_nav {
  background-color: #18264b;
  clear: both;
  min-width: 1280px;
}

body .footer_nav .con {
  width: 1280px;
  margin: 0 auto;
}

body .footer_nav .con .footer-menu {
  height: 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

body .footer_nav .con .footer-menu h2 {
  width: 176px;
  height: 44px;
  margin-left: 20px;
  margin-top: 26px;
  background-size: contain;
  background-repeat: no-repeat;
}

body .footer_nav .con .footer-menu h2 img {
  height: 50px;
}

body .footer_nav .con .footer-menu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 590px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

body .footer_nav .con .footer-menu ul li {
  line-height: 90px;
}

body .footer_nav .con .footer-menu ul li a {
  display: inline-block;
  line-height: 50px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}

body .footer_nav .con .footer-contact {
  border-top: solid 1px rgba(255, 255, 255, 0.1);
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  padding: 27px 0 14px 0;
}

body .footer_nav .con .footer-contact ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 43px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

body .footer_nav .con .footer-contact ul li {
  margin-left: 20px;
}

body .footer_nav .con .footer-contact ul li:first-of-type {
  margin-left: 0;
}

body .footer_nav .con .footer-contact ul li:first-of-type h2 {
  background-size: contain;
  background-repeat: no-repeat;
}

body .footer_nav .con .footer-contact ul li:first-of-type h2 img {
  width: 150px;
  -o-object-fit: contain;
  object-fit: contain;
}

body .footer_nav .con .footer-contact ul li:nth-of-type(2) {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 100px;
}

body .footer_nav .con .footer-contact ul li img {
  width: 120px;
  height: 120px;
  margin: 0 10px;
}

body .footer_nav .con .footer-contact ul li span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  margin-top: 10px;
}

body .footer_nav .con .footer-contact ul li p {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}

body .footer_nav .con .footer-contact ul li p img {
  display: inline-block;
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0 3px 0 0;
  vertical-align: -7px;
}

body .footer_nav .con .footer-contact ul li p span {
  display: inline-block;
  font-size: 24px;
  font-weight: 500;
  margin-top: 16px;
  margin-right: 10px;
  color: #ffffff;
  line-height: 23px;
}

body .footer_nav .con .footer-contact ul li p span:last-of-type {
  border-left: solid 1px #ffffff;
  padding-left: 10px;
}

body .footer_nav .con .footer-copyright {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

body .footer_nav .con .footer-copyright p {
  font-size: 14px;
  font-weight: 300;
  color: #ffffff;
  line-height: 46px;
}

body .footer_nav .con .footer-copyright p a {
  color: #ffffff;
  float: left;
}

body .footer_nav .con .footer-copyright p a img {
  width: 15px;
  height: 17px;
  margin: 0 4px;
  margin-top: -2px;
}

._right_fixed_1skuh_128 * {
  margin: 0;
  padding: 0;
}

._right_fixed_1skuh_128 {
  background-color: #fff;
  border-radius: 10px;
  bottom: 100px;
  -webkit-box-shadow: 0 0 20px 1px hsla(0, 0%, 53%, 0.161);
  box-shadow: 0 0 20px 1px rgba(135, 135, 135, 0.16078);
  cursor: pointer;
  position: fixed;
  right: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 85px;
  z-index: 50;
}

._right_fixed_1skuh_128 ul li {
  border-radius: 10px;
  height: 85px;
  margin-top: 15px;
  position: relative;
  width: 85px;
  text-align: center;
  font-size: 0;
}

._right_fixed_1skuh_128 ul li img {
  display: inline-block;
}

._right_fixed_1skuh_128 ul li:last-of-type {
  display: none;
}

._right_fixed_1skuh_128 ul li:first-of-type {
  margin-top: 0;
}

._right_fixed_1skuh_128 ul li img {
  height: 50px;
  margin-top: 6px;
  width: 50px;
}

._right_fixed_1skuh_128 ul li img:nth-of-type(2) {
  display: none;
}

._right_fixed_1skuh_128 ul li p {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

._right_fixed_1skuh_128 ul li ._in_1skuh_165 {
  background-color: #fff;
  border-radius: 0;
  -webkit-box-shadow: 0 0 20px 1px hsla(0, 0%, 53%, 0.161);
  box-shadow: 0 0 20px 1px rgba(135, 135, 135, 0.16078);
  display: none;
  padding: 5px;
  position: absolute;
  right: 85px;
  top: 0;
  min-width: 120px;
}

._right_fixed_1skuh_128 ul li ._in_1skuh_165._tel_1skuh_176 {
  padding: 4px 13px;
}

._right_fixed_1skuh_128 ul li ._in_1skuh_165._tel_1skuh_176 p {
  color: #333;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  white-space: nowrap;
}

._right_fixed_1skuh_128 ul li ._in_1skuh_165._tel_1skuh_176 p:first-of-type {
  font-size: 14px;
  padding-bottom: 6px;
}

._right_fixed_1skuh_128 ul li ._in_1skuh_165 img {
  height: 120px;
  width: 120px;
  display: inline-block;
}

._right_fixed_1skuh_128 ul li:hover {
  background-color: #083a83;
}

._right_fixed_1skuh_128 ul li:hover>img:first-of-type {
  display: none;
}

._right_fixed_1skuh_128 ul li:hover>img:nth-of-type(2) {
  display: inline-block;
}

._right_fixed_1skuh_128 ul li:hover ._in_1skuh_165 {
  display: block;
}

._right_fixed_1skuh_128 ul li:hover>p {
  color: #fff;
}

._right_fixed_1skuh_128 ul li#_gotop_1skuh_1 {
  cursor: pointer;
  display: none;
}

.modal-mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal-mask.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.modal-dialog {
  width: 480px;
  max-height: 90vh;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  -webkit-animation: modalIn 0.25s ease-out;
  animation: modalIn 0.25s ease-out;
}

@-webkit-keyframes modalIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px) scale(0.95);
    transform: translateY(-20px) scale(0.95);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px) scale(0.95);
    transform: translateY(-20px) scale(0.95);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  position: relative;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  padding: 20px 24px;
  text-align: center;
}

.modal-header h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  line-height: 26px;
  display: block;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal-body {
  padding: 24px;
}

.modal-desc {
  text-align: center;
  color: #64748b;
  font-size: 14px;
  margin: 0 0 20px 0;
}

.modal-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.form-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.form-item .form-label {
  width: 90px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 14px;
  color: #334155;
  text-align: right;
}

.form-item .form-label .required {
  color: #ef4444;
  margin-right: 2px;
}

.form-item input[type="text"],
.form-item input[type="tel"],
.form-item select {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #d1dce8;
  border-radius: 6px;
  font-size: 14px;
  color: #334155;
  background: #fff;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
  outline: none;
}

.form-item input[type="text"]:focus,
.form-item input[type="tel"]:focus,
.form-item select:focus {
  border-color: #2563eb;
  -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-item input[type="text"]::-webkit-input-placeholder,
.form-item input[type="tel"]::-webkit-input-placeholder,
.form-item select::-webkit-input-placeholder {
  color: #94a3b8;
}

.form-item input[type="text"]::-moz-placeholder,
.form-item input[type="tel"]::-moz-placeholder,
.form-item select::-moz-placeholder {
  color: #94a3b8;
}

.form-item input[type="text"]:-ms-input-placeholder,
.form-item input[type="tel"]:-ms-input-placeholder,
.form-item select:-ms-input-placeholder {
  color: #94a3b8;
}

.form-item input[type="text"]::-ms-input-placeholder,
.form-item input[type="tel"]::-ms-input-placeholder,
.form-item select::-ms-input-placeholder {
  color: #94a3b8;
}

.form-item input[type="text"]::placeholder,
.form-item input[type="tel"]::placeholder,
.form-item select::placeholder {
  color: #94a3b8;
}

.modal-submit {
  width: 100%;
  margin-top: 8px;
  height: 48px;
  font-size: 16px;
  border-radius: 8px;
  background: #2563eb;
  color: #fff;
  border: none;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.modal-submit:hover {
  background: #1e40af;
}

:root {
  --primary: #143A7e;
  --primary-rgb: 20, 58, 126;
  --secondary: #256af2;
  --white: #ffffff;
  --black: #1a1a2e;
  --light-gray: #f0f4f8;
  --border-gray: #d1dce8;
  --text-gray: #5a6a7a;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 16px;
  color: #1a1a2e;
  color: var(--black);
  line-height: 1.6;
  min-width: 1200px;
  background-color: #ffffff;
  background-color: var(--white);
}

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

ul,
ol {
  list-style: none;
}

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

.container {
  width: 1200px;
  margin: 0 auto;
}

section>div[id] {
  padding: 80px 0;
}