﻿:root {
  color-scheme: light;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  margin: 0;
  background: #061f43;
}

button {
  font: inherit;
}

[v-cloak] {
  display: none;
}

.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 776;
  margin: 0 auto;
  overflow: hidden;
  background: #075294;
  outline: none;
}

.slides,
.slide,
.slide img {
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
}

.slide img {
  display: block;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  z-index: 2;
  top: 25%;
  left: 8.4%;
  color: #fff;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease 0.18s, transform 0.65s ease 0.18s;
}

.slide.is-active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.slide-content h2 {
  margin: 0 0 8px;
  font-size: clamp(30px, 3.15vw, 60px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 2px;
  white-space: pre-line;
}

.slide-subtitle,
.slide-english {
  margin: 0;
  font-weight: 700;
}

.slide-subtitle {
  font-size: clamp(16px, 1.55vw, 30px);
  line-height: 1.5;
}

.slide-english {
  margin-top: 4px;
  font-family: Arial, sans-serif;
  font-size: clamp(17px, 1.75vw, 34px);
  line-height: 1.35;
  white-space: pre-line;
}

.slide-logo {
  position: absolute;
  z-index: 2;
  bottom: 18.3%;
  left: 8.4%;
  width: 82px;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.98);
}

.slide-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slider-arrow {
  position: absolute;
  z-index: 3;
  right: 56px;
  bottom: 55px;
  width: 48px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 0;
  background: rgba(0, 66, 126, 0.12);
  opacity: 1;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

    .slider-arrow:hover,
    .slider-arrow:focus-visible {
        border-color: #00b9ee;
        background: #00b9ee;
        /*  background: rgba(0, 48, 96, 0.68);
  outline: 2px solid #fff;
  outline-offset: 2px;*/
    }

.slider-arrow--prev {
  right: 118px;
}

.slider-arrow--next {
  right: 56px;
}

.slider-arrow span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.slider-arrow--prev span {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.slider-arrow--next span {
  transform: translate(-65%, -50%) rotate(45deg);
}

.pagination {
  position: absolute;
  z-index: 3;
  bottom: 59px;
  left: 50%;
  display: flex;
  gap: 9px;
  align-items: center;
  transform: translateX(-50%);
}

.pagination-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.pagination-dot.is-active {
  width: 28px;
  background: #00b9ee;
}

.pagination-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .slide-content {
    top: 19%;
    left: 7%;
  }

  .slide-content h2 {
    margin-bottom: 3px;
    font-size: clamp(20px, 5vw, 34px);
  }

  .slide-subtitle {
    font-size: clamp(11px, 2.6vw, 19px);
  }

  .slide-english {
    font-size: clamp(11px, 2.8vw, 20px);
  }

  .slide-logo {
    bottom: 13%;
    left: 7%;
    width: clamp(34px, 8vw, 58px);
  }

  .slider-arrow {
    right: 14px;
    bottom: 12px;
    width: 34px;
    height: 32px;
  }

  .slider-arrow--prev {
    right: 56px;
  }

  .slider-arrow--next {
    right: 14px;
  }

  .pagination {
    bottom: 15px;
    gap: 7px;
  }

  .pagination-dot {
    width: 7px;
    height: 7px;
  }

  .pagination-dot.is-active {
    width: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slide,
  .slider-arrow,
  .pagination-dot {
    transition: none;
  }
}

.business-section {
  width: 100%;
  margin: 0 auto;
  padding: 25px 24px 82px;
  border-top: 28px solid #fff;
  background: #edf6fc;
  color: #111;
}

.business-inner {
  width: min(100%, 1600px);
  margin: 0 auto;
}

.business-header {
  margin-bottom: 58px;
}

.business-header h2 {
  margin: 0 0 12px;
  color: #00a7e1;
  font-size: 27px;
  line-height: 1.2;
}

.business-header p {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 76px 50px;
}

.business-card {
  display: block;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.business-card:link,
.business-card:visited,
.business-card:hover,
.business-card:active {
  color: inherit;
  text-decoration: none;
}

.business-image {
  position: relative;
  width: min(100%, 330px);
  aspect-ratio: 1;
  margin: 0 auto 13px;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.business-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-copy {
  width: min(100%, 330px);
  margin: 0 auto;
}

.business-copy h3 {
  margin: 0 0 4px;
  font-size: 21px;
  line-height: 1.25;
}

.business-copy p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.solutions-section {
  width: 100%;
  margin: 0 auto;
  padding: 55px 24px 80px;
  background: #fff;
  color: #111;
}

.solutions-inner {
  width: min(100%, 1600px);
  margin: 0 auto;
}

.solutions-header {
  margin-bottom: 43px;
}

.solutions-header h2 {
  margin: 0 0 10px;
  color: #00a0e9;
  font-size: 27px;
  line-height: 1.2;
}

.solutions-header p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.solution-card {
  position: relative;
  isolation: isolate;
  padding: 18px;
  border: 1px solid #d6d9de;
  color: #222;
  background: #fff;
  box-shadow: 0 8px 24px rgba(80, 88, 98, 0.16);
  transition: border-color .3s ease, box-shadow .3s ease;
}

.solution-card:hover,
.solution-card:focus-within,
.solution-card:focus-visible {
  border-color: #b9bec6;
  color: #222;
  box-shadow: 0 12px 30px rgba(80, 88, 98, 0.24);
}

.solution-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
}

.solution-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.solution-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.25;
}

.solution-card > p {
  min-height: 114px;
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.75;
}

.solution-more {
    position: absolute;
    left: 56px;
    bottom: 37px;
    z-index: 1;
    display: inline-flex;
    width: 50px;
    height: 50px;
    margin: 0;
    padding: 0 17px;
    align-items: center;
    justify-content: center;
    gap: 0;
    overflow: hidden;
    border: 1px solid #fff;
    border-radius: 999px;
    color: #fff;
    background: transparent;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: width .3s ease, gap .3s ease, color .3s ease, background .3s ease;
}

.solution-more__text {
  width: 0;
  overflow: hidden;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transition: width .3s ease, opacity .2s ease;
}

.solution-more__arrow {
    font-size: 34px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -5px;
    margin-left: 4px;
}

.solution-card:hover .solution-more,
.solution-card:focus-within .solution-more,
.business-card:hover .solution-more,
.business-card:focus-visible .solution-more {
    width: 168px;
    gap: 55px;
    color: #fff;
    border-color: #00a0e9;
    background: #00a0e9;
}

.solution-card:hover .solution-more__text,
.solution-card:focus-within .solution-more__text,
.business-card:hover .solution-more__text,
.business-card:focus-visible .solution-more__text {
  width: 56px;
  opacity: 1;
}

.solution-image {
  position: relative;
  width: min(100%, 330px);
  aspect-ratio: 1;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  background: #f1f4f6;
}

.solution-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-section {
  width: 100%;
  margin: 0 auto;
  padding: 55px 24px 34px;
  background: #fff;
  color: #555;
  text-align: center;
}

.company-inner {
  width: min(100%, 1550px);
  margin: 0 auto;
}

.company-section h2 {
  margin: 0 0 34px;
  color: #00a0e9;
  font-size: clamp(36px, 3.2vw, 60px);
  line-height: 1.2;
}

.company-description {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.8;
}

.company-description p {
  margin: 0;
}

.company-more {
  display: grid;
  width: 230px;
  height: 52px;
  margin: 28px auto 0;
  border-radius: 4px;
  background: #0099d5;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  place-items: center;
}

    .company-more:hover,
    .company-more:focus-visible {
        /* background: #087caf;
  outline: 2px solid #0099d5;
  outline-offset: 3px;
  transform: translateY(-2px);*/
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        transition: all .4s ease;
        background-position-y: center;
        box-shadow: 0 4px 16px 4px rgba(0, 162, 227, .4);
        color: #fff;
    }

.company-banner {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: #e9edf0;
}

.company-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.stats-section {
  width: 100%;
  margin: 0 auto;
  padding: 72px 24px 78px;
  background: linear-gradient(135deg, #0064a9 0%, #0065ab 52%, #0066ad 100%);
  color: #fff;
}

.stats-inner {
  width: min(100%, 1408px);
  margin: 0 auto;
}

.stats-section h2 {
  margin: 0;
  font-size: 37px;
  line-height: 1.25;
  letter-spacing: 1px;
}

.stats-divider {
  height: 1px;
  margin: 28px 0 48px;
  background: rgba(255, 255, 255, 0.22);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 55px;
}

.stat-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 15px;
}

.stat-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stat-number {
  margin: 0;
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
}

.stat-number sup {
  display: inline-block;
  margin-left: 5px;
  font-size: 18px;
  font-weight: 600;
  vertical-align: top;
}

.stat-label {
  margin: 10px 0 0;
  font-size: 17px;
}

.partners-banner {
  display: flex;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}

.partners-banner img {
  display: block;
  width: min(100%, 1408px);
  height: auto;
}

.custom-cta {
  display: flex;
  width: 100%;
  min-height: 405px;
  margin: 0 auto;
  padding: 70px 24px 58px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0064a9 0%, #0065ab 52%, #0066ad 100%);
  color: #fff;
  text-align: center;
}

.custom-cta h2 {
  margin: 0;
  font-size: clamp(42px, 4vw, 72px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 2px;
}

.custom-cta h2 span {
  display: inline-block;
  margin: 0 18px;
  font-weight: 400;
}

.custom-cta-button {
  display: grid;
  width: 300px;
  height: 52px;
  margin-top: 78px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  background: #fff;
  color: #00a7e1;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  place-items: center;
}

    .custom-cta-button:hover,
    .custom-cta-button:focus-visible {
        /*  background: #00a7e1;
  color: #fff;
  outline: 2px solid #fff;
  outline-offset: 3px;
  transform: translateY(-2px);*/

        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        transition: all .4s ease;
        background-position-y: center;
        box-shadow: 0 4px 16px 4px rgba(255, 255, 255, .4);
        background-color: rgba(255,255,255,1);
        color: #00a7e1;
        border-style: solid;
        border-width: 1px;
        border-color: rgba(255,255,255,1)
    }

.site-footer {
  width: 100%;
  margin: 0 auto;
  background: #020307;
  color: #f7f9fc;
}

.footer-inner {
  width: min(calc(100% - 48px), 1408px);
  min-height: 620px;
  margin: 0 auto;
  padding: 52px 0 28px;
}

.footer-brand-row {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 228px;
}

.footer-logo {
    width: 140px;
    margin-left: -8px;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-follow {
  margin: 20px 0 0;
  font-size: 16px;
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

    .footer-socials a {
        width: 30px;
        height: 30px;
        overflow: hidden;
        text-decoration: none;
    }

.footer-socials img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-title {
  margin: 38px 0 0 290px;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.footer-content {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 110px;
  padding-top: 38px;
}

.footer-content h2 {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.2;
}

.footer-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
}

.contact-icon {
    display: block;
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
}

.contact-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #00b9ee;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 48px;
}

.footer-nav-group li {
  margin-bottom: 7px;
  font-size: 15px;
  line-height: 1.35;
}

@media (max-width: 1100px) {
  .business-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .solution-card > p {
    min-height: 0;
  }

  .footer-brand-row {
    grid-template-columns: 260px 1fr;
  }

  .footer-title {
    margin-left: 80px;
  }

  .footer-content {
    grid-template-columns: 360px 1fr;
    gap: 50px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .business-section {
    padding: 28px 20px 55px;
    border-top-width: 14px;
  }

  .business-header {
    margin-bottom: 36px;
  }

  .business-header h2 {
    font-size: 24px;
  }

  .business-header p {
    font-size: 14px;
  }

  .business-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 18px;
  }

  .business-copy h3 {
    font-size: 17px;
  }

  .business-copy p {
    font-size: 12px;
  }

  .solutions-section {
    padding: 42px 20px 55px;
  }

  .solutions-header h2 {
    font-size: 24px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .solution-image {
    width: min(100%, 280px);
  }

  .company-section {
    padding: 42px 20px 38px;
  }

  .company-section h2 {
    margin-bottom: 24px;
    font-size: 32px;
  }

  .company-description {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.75;
  }

  .company-description p {
    display: inline;
  }

  .company-more {
    width: min(100%, 220px);
    margin-top: 30px;
  }

  .stats-section {
    padding: 48px 20px 54px;
  }

  .stats-section h2 {
    font-size: 28px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 24px;
  }

  .stat-number {
    font-size: 34px;
  }

  .partners-banner {
    padding: 0 10px;
  }

  .custom-cta {
    min-height: 260px;
    padding: 48px 20px;
  }

  .custom-cta h2 {
    font-size: 34px;
    letter-spacing: 0;
  }

  .custom-cta h2 span {
    margin: 0 7px;
  }

  .custom-cta-button {
    width: min(100%, 260px);
    margin-top: 48px;
  }

  .footer-inner {
    width: min(calc(100% - 40px), 1408px);
    padding-top: 38px;
  }

  .footer-brand-row,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-brand-row {
    gap: 34px;
    padding-bottom: 34px;
  }

  .footer-title {
    margin: 0;
    font-size: 38px;
  }

  .footer-content {
    gap: 38px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}
