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

:root {
  --primary-color: #1890ff;
  --secondary-color: #52c41a;
  --text-color: #333;
  --text-light: #666;
  --bg-color: #fff;
  --bg-light: #f5f5f5;
  --border-color: #e8e8e8;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
  --f18: 18px;
  --f16: 16px;
  --f22: 22px;
  --f26: 26px;
  --f39: 39px;
  --f42: 42px;
  --headerHeight: 100px;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  font-size: 14px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* ?????? */
.mouse-spotlight {
  position: fixed;
  width: 16px;
  height: 16px;
  margin-left: -8px;
  margin-top: -8px;
  background: #1c3a83;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.25s ease, height 0.25s ease, margin 0.25s ease;
}

.mouse-spotlight-text {
  font-size: 0;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s ease, font-size 0.2s ease;
  white-space: nowrap;
  pointer-events: none;
}

.mouse-spotlight--expanded {
  width: 54px;
  height: 54px;
  margin-left: -27px;
  margin-top: -27px;
}

.mouse-spotlight--expanded .mouse-spotlight-text {
  font-size: 14px;
  opacity: 1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

a:hover {
  color: var(--primary-color);
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.header .container {
  display: flex;
  align-items: center;
  width: 100%;
}

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#main-content {
  flex: 1;
}

/* Header ?? */
.header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: transform 0.3s ease-in-out, background 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  min-height: 100px;
}

/* ??????????????*/
body.page-index .header {
  background: transparent;
  box-shadow: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

/* ?????????????????????? Banner ?? */
body.page-about .header {
  background: transparent;
  box-shadow: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

body.page-about .header.header-scrolled,
body.page-about .header:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: fixed;
}

body.page-about .navbar-phone .separator {
  color: rgba(255, 255, 255, 0.4);
}

body.page-about .header.header-scrolled .navbar-phone .separator,
body.page-about .header:hover .navbar-phone .separator {
  color: rgba(51, 51, 51, 0.2);
}

body.page-about .navbar-phone {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

body.page-about .header.header-scrolled .navbar-phone,
body.page-about .header:hover .navbar-phone {
  color: #333;
  text-shadow: none;
}

body.page-about .logo {
  color: rgb(228 193 111);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

body.page-about .header.header-scrolled .logo,
body.page-about .header:hover .logo {
  color: rgb(228 193 111);
  text-shadow: none;
}

body.page-about .nav-menu li a {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

body.page-about .header.header-scrolled .nav-menu li a,
body.page-about .header:hover .nav-menu li a {
  color: #333;
  text-shadow: none;
}

body.page-about .nav-menu li a:hover,
body.page-about .nav-menu li a.active {
  color: #fff;
  text-shadow: 0 1px 5px rgba(255, 255, 255, 0.5);
}

body.page-about .header.header-scrolled .nav-menu li a:hover,
body.page-about .header.header-scrolled .nav-menu li a.active,
body.page-about .header:hover .nav-menu li a:hover,
body.page-about .header:hover .nav-menu li a.active {
  color: #1890ff;
  text-shadow: none;
}

body.page-about .nav-item-dropdown-wrapper:hover .nav-link-with-dropdown {
  color: #fff;
  text-shadow: 0 1px 5px rgba(255, 255, 255, 0.5);
}

body.page-about .header.header-scrolled .nav-item-dropdown-wrapper:hover .nav-link-with-dropdown,
body.page-about .header:hover .nav-item-dropdown-wrapper:hover .nav-link-with-dropdown {
  color: #1890ff;
  text-shadow: none;
}

/* ??????????????????? Banner ????????????*/
body.page-solutions .header {
  background: transparent;
  box-shadow: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

body.page-solutions .header.header-scrolled,
body.page-solutions .header:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: fixed;
}

body.page-solutions .navbar-phone,
body.page-solutions .navbar-phone .separator {
  color: rgba(255, 255, 255, 0.9);
}

body.page-solutions .header.header-scrolled .navbar-phone,
body.page-solutions .header.header-scrolled .navbar-phone .separator,
body.page-solutions .header:hover .navbar-phone,
body.page-solutions .header:hover .navbar-phone .separator {
  color: #333;
}

body.page-solutions .logo {
  color: rgb(228 193 111);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

body.page-solutions .header.header-scrolled .logo,
body.page-solutions .header:hover .logo {
  color: rgb(228 193 111);
  text-shadow: none;
}

body.page-solutions .nav-menu li a {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

body.page-solutions .header.header-scrolled .nav-menu li a,
body.page-solutions .header:hover .nav-menu li a {
  color: #333;
  text-shadow: none;
}

body.page-solutions .nav-menu li a:hover,
body.page-solutions .nav-menu li a.active {
  color: #fff;
}

body.page-solutions .header.header-scrolled .nav-menu li a:hover,
body.page-solutions .header.header-scrolled .nav-menu li a.active,
body.page-solutions .header:hover .nav-menu li a:hover,
body.page-solutions .header:hover .nav-menu li a.active {
  color: #1890ff;
  text-shadow: none;
}

body.page-solutions .nav-item-dropdown-wrapper:hover .nav-link-with-dropdown {
  color: #fff;
}

body.page-solutions .header.header-scrolled .nav-item-dropdown-wrapper:hover .nav-link-with-dropdown,
body.page-solutions .header:hover .nav-item-dropdown-wrapper:hover .nav-link-with-dropdown {
  color: #1890ff;
}

/* ??????????????????? Banner ????????????*/
body.page-news .header {
  background: transparent;
  box-shadow: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

body.page-news .header.header-scrolled,
body.page-news .header:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: fixed;
}

body.page-news .navbar-phone,
body.page-news .navbar-phone .separator {
  color: rgba(255, 255, 255, 0.9);
}

body.page-news .header.header-scrolled .navbar-phone,
body.page-news .header.header-scrolled .navbar-phone .separator,
body.page-news .header:hover .navbar-phone,
body.page-news .header:hover .navbar-phone .separator {
  color: #333;
}

body.page-news .logo {
  color: rgb(228 193 111);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

body.page-news .header.header-scrolled .logo,
body.page-news .header:hover .logo {
  color: rgb(228 193 111);
  text-shadow: none;
}

body.page-news .nav-menu li a {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

body.page-news .header.header-scrolled .nav-menu li a,
body.page-news .header:hover .nav-menu li a {
  color: #333;
  text-shadow: none;
}

body.page-news .nav-menu li a:hover,
body.page-news .nav-menu li a.active {
  color: #fff;
}

body.page-news .header.header-scrolled .nav-menu li a:hover,
body.page-news .header.header-scrolled .nav-menu li a.active,
body.page-news .header:hover .nav-menu li a:hover,
body.page-news .header:hover .nav-menu li a.active {
  color: #1890ff;
  text-shadow: none;
}

body.page-news .nav-item-dropdown-wrapper:hover .nav-link-with-dropdown {
  color: #fff;
}

body.page-news .header.header-scrolled .nav-item-dropdown-wrapper:hover .nav-link-with-dropdown,
body.page-news .header:hover .nav-item-dropdown-wrapper:hover .nav-link-with-dropdown {
  color: #1890ff;
}

/* ??????????????????? Banner ????????????*/
body.page-contact .header {
  background: transparent;
  box-shadow: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

body.page-contact .header.header-scrolled,
body.page-contact .header:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: fixed;
}

body.page-contact .navbar-phone,
body.page-contact .navbar-phone .separator {
  color: rgba(255, 255, 255, 0.9);
}

body.page-contact .header.header-scrolled .navbar-phone,
body.page-contact .header.header-scrolled .navbar-phone .separator,
body.page-contact .header:hover .navbar-phone,
body.page-contact .header:hover .navbar-phone .separator {
  color: #333;
}

body.page-contact .logo {
  color: rgb(228 193 111);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

body.page-contact .header.header-scrolled .logo,
body.page-contact .header:hover .logo {
  color: rgb(228 193 111);
  text-shadow: none;
}

body.page-contact .nav-menu li a {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

body.page-contact .header.header-scrolled .nav-menu li a,
body.page-contact .header:hover .nav-menu li a {
  color: #333;
  text-shadow: none;
}

body.page-contact .nav-menu li a:hover,
body.page-contact .nav-menu li a.active {
  color: #fff;
}

body.page-contact .header.header-scrolled .nav-menu li a:hover,
body.page-contact .header.header-scrolled .nav-menu li a.active,
body.page-contact .header:hover .nav-menu li a:hover,
body.page-contact .header:hover .nav-menu li a.active {
  color: #1890ff;
  text-shadow: none;
}

body.page-contact .nav-item-dropdown-wrapper:hover .nav-link-with-dropdown {
  color: #fff;
}

body.page-contact .header.header-scrolled .nav-item-dropdown-wrapper:hover .nav-link-with-dropdown,
body.page-contact .header:hover .nav-item-dropdown-wrapper:hover .nav-link-with-dropdown {
  color: #1890ff;
}

/* ??????????????????? Hero ????????????*/
body.page-products .header {
  background: transparent;
  box-shadow: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

body.page-products .header.header-scrolled,
body.page-products .header:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: fixed;
}

body.page-products .navbar-phone,
body.page-products .navbar-phone .separator {
  color: rgba(255, 255, 255, 0.9);
}

body.page-products .header.header-scrolled .navbar-phone,
body.page-products .header.header-scrolled .navbar-phone .separator,
body.page-products .header:hover .navbar-phone,
body.page-products .header:hover .navbar-phone .separator {
  color: #333;
}

body.page-products .logo {
  color: rgb(228 193 111);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

body.page-products .header.header-scrolled .logo,
body.page-products .header:hover .logo {
  color: rgb(228 193 111);
  text-shadow: none;
}

body.page-products .nav-menu li a {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

body.page-products .header.header-scrolled .nav-menu li a,
body.page-products .header:hover .nav-menu li a {
  color: #333;
  text-shadow: none;
}

body.page-products .nav-menu li a:hover,
body.page-products .nav-menu li a.active {
  color: #fff;
}

body.page-products .header.header-scrolled .nav-menu li a:hover,
body.page-products .header.header-scrolled .nav-menu li a.active,
body.page-products .header:hover .nav-menu li a:hover,
body.page-products .header:hover .nav-menu li a.active {
  color: #1890ff;
  text-shadow: none;
}

body.page-products .nav-item-dropdown-wrapper:hover .nav-link-with-dropdown {
  color: #fff;
}

body.page-products .header.header-scrolled .nav-item-dropdown-wrapper:hover .nav-link-with-dropdown,
body.page-products .header:hover .nav-item-dropdown-wrapper:hover .nav-link-with-dropdown {
  color: #1890ff;
}

/* ???????????????????????????????????????*/
body.page-product-detail .header,
body.page-solution-detail .header,
body.page-news-detail .header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
}

body.page-product-detail .navbar-phone,
body.page-product-detail .navbar-phone .separator,
body.page-solution-detail .navbar-phone,
body.page-solution-detail .navbar-phone .separator,
body.page-news-detail .navbar-phone,
body.page-news-detail .navbar-phone .separator {
  color: #333;
}

body.page-product-detail .logo,
body.page-solution-detail .logo,
body.page-news-detail .logo {
  color: rgb(228 193 111);
  text-shadow: none;
}

body.page-product-detail .nav-menu li a,
body.page-solution-detail .nav-menu li a,
body.page-news-detail .nav-menu li a {
  color: #333;
  text-shadow: none;
}

body.page-product-detail .nav-menu li a:hover,
body.page-product-detail .nav-menu li a.active,
body.page-solution-detail .nav-menu li a:hover,
body.page-solution-detail .nav-menu li a.active,
body.page-news-detail .nav-menu li a:hover,
body.page-news-detail .nav-menu li a.active {
  color: #1890ff;
}

body.page-product-detail .nav-item-dropdown-wrapper:hover .nav-link-with-dropdown,
body.page-solution-detail .nav-item-dropdown-wrapper:hover .nav-link-with-dropdown,
body.page-news-detail .nav-item-dropdown-wrapper:hover .nav-link-with-dropdown {
  color: #1890ff;
}

/* ??????Banner???????????????? */
.solutions-banner {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.solutions-banner-bg {
  position: absolute;
  inset: 0;
  background-color: #1a2332;
  background-image: url(../src/static/solutions/banner-placeholder.jpg);
  background-size: cover;
  background-position: center;
}

.solutions-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
}

.solutions-banner-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 48px 0 56px;
}

.solutions-banner-text {
  text-align: left;
}

.solutions-banner-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.solutions-banner-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ???? Banner????????????????????????????? Banner ?? */
.news-banner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.news-banner-inner {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
}

.news-banner-bg {
  position: absolute;
  inset: 0;
  background-color: #1a2332;
  background-image: url(../src/static/news/banner-placeholder.jpg);
  background-size: cover;
  background-position: center;
}

.news-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
}

.news-banner-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 48px 0 24px;
}

.news-banner-text {
  text-align: left;
}

.news-banner-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.news-banner-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ??????????????Banner????????????????*/
.news-banner-categories {
  background: #fff;
  flex-shrink: 0;
  border-bottom: 1px solid #e8e8e8;
}

.news-category-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 32px;
  margin: 0;
  padding: 18px 0;
  background: transparent;
  border-radius: 0;
}

.news-category-bar .category-item {
  padding: 6px 0;
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 3px solid transparent;
  font-size: 15px;
  color: #808080;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.news-category-bar .category-item:hover {
  color: #333;
}

.news-category-bar .category-item.active {
  color: #d71318;
  border-bottom-color: #d71318;
  font-weight: 500;
  background: transparent;
}

.news-category-bar .category-item.active:hover {
  color: #d71318;
  background: transparent;
}

/* ??????????????????*/
body.page-index .header.header-hidden {
  transform: translateY(-100%);
}

/* ????????????????????*/
body.page-index .header.header-scrolled,
body.page-index .header:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: fixed;
}

.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--headerHeight);
  padding: 0;
}

.navbar-left {
  display: flex;
  align-items: center;
  height: 100%;
  justify-self: start;
  margin-left: 0;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.navbar-phone {
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  align-items: center;
  gap: 10px;
}

.navbar-right {
  justify-self: end;
  margin-left: 48px;
}

.navbar-phone-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0);
  transition: filter 0.3s;
}

/* ?????????? */
body.page-index .navbar-phone .navbar-phone-icon,
body.page-about .navbar-phone .navbar-phone-icon,
body.page-solutions .navbar-phone .navbar-phone-icon,
body.page-news .navbar-phone .navbar-phone-icon,
body.page-contact .navbar-phone .navbar-phone-icon,
body.page-products .navbar-phone .navbar-phone-icon {
  filter: brightness(0) invert(1);
}

/* ????????????*/
body.page-index .header.header-scrolled .navbar-phone .navbar-phone-icon,
body.page-index .header:hover .navbar-phone .navbar-phone-icon,
body.page-about .header.header-scrolled .navbar-phone .navbar-phone-icon,
body.page-about .header:hover .navbar-phone .navbar-phone-icon,
body.page-solutions .header.header-scrolled .navbar-phone .navbar-phone-icon,
body.page-solutions .header:hover .navbar-phone .navbar-phone-icon,
body.page-news .header.header-scrolled .navbar-phone .navbar-phone-icon,
body.page-news .header:hover .navbar-phone .navbar-phone-icon,
body.page-contact .header.header-scrolled .navbar-phone .navbar-phone-icon,
body.page-contact .header:hover .navbar-phone .navbar-phone-icon,
body.page-products .header.header-scrolled .navbar-phone .navbar-phone-icon,
body.page-products .header:hover .navbar-phone .navbar-phone-icon {
  filter: brightness(0);
}

.navbar-phone a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

.navbar-phone a:hover {
  opacity: 0.8;
}

.navbar-phone .separator {
  color: rgba(51, 51, 51, 0.2);
  margin: 0 5px;
  font-weight: 300;
}

body.page-index .navbar-phone .separator {
  color: rgba(255, 255, 255, 0.4);
}

body.page-index .header.header-scrolled .navbar-phone .separator,
body.page-index .header:hover .navbar-phone .separator {
  color: rgba(51, 51, 51, 0.2);
}

body.page-index .navbar-phone {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

body.page-index .header.header-scrolled .navbar-phone,
body.page-index .header:hover .navbar-phone {
  color: #333;
  text-shadow: none;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: bold;
  color: rgb(228 193 111);
  text-decoration: none;
  line-height: 1;
  transition: color 0.3s;
  height: 100%;
}

/* ???Logo???? */
body.page-index .logo {
  color: rgb(228 193 111);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ??????????Logo??????*/
body.page-index .header.header-scrolled .logo,
body.page-index .header:hover .logo {
  color: rgb(228 193 111);
  text-shadow: none;
}

.logo-img {
  width: 250px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 auto;
  vertical-align: middle;
}

.logo-text {
  display: inline-block;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: clamp(10px, 2vw, 30px);
  margin: 0;
  padding: 0;
  justify-self: center;
}

.nav-menu li {
  display: flex;
  align-items: center;
}

/* ???????????header .nav-list>li>a????f18????????????????????? body.page-* ????????*/
.nav-menu li a {
  padding: 0 0.12rem;
  font-size: var(--f18);
  font-weight: 700;
  height: var(--headerHeight);
  line-height: var(--headerHeight);
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  position: relative;
  box-sizing: border-box;
}

.nav-menu li a.nav-link-with-dropdown {
  display: flex;
  align-items: center;
  line-height: 1;
  height: var(--headerHeight);
}

/* ????????????*/
body.page-index .nav-menu li a {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ????????????????????*/
body.page-index .header.header-scrolled .nav-menu li a,
body.page-index .header:hover .nav-menu li a {
  color: #333;
  text-shadow: none;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #1890ff;
}

/* ?????????? */
body.page-index .nav-menu li a:hover,
body.page-index .nav-menu li a.active {
  color: #fff;
  text-shadow: 0 1px 5px rgba(255, 255, 255, 0.5);
}

/* ????????????????????*/
body.page-index .header.header-scrolled .nav-menu li a:hover,
body.page-index .header.header-scrolled .nav-menu li a.active,
body.page-index .header:hover .nav-menu li a:hover,
body.page-index .header:hover .nav-menu li a.active {
  color: #1890ff;
  text-shadow: none;
}

/* ????????????????????? */
.nav-menu>li:not(.nav-item-dropdown-wrapper) {
  position: relative;
}

/* ??????????????????????????????*/
.nav-menu>li:not(.nav-item-dropdown-wrapper)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  height: 3px;
  background: #1890ff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  z-index: 1001;
}

.nav-menu>li:not(.nav-item-dropdown-wrapper):hover::after {
  transform: scaleX(1);
}

.nav-menu li a.admin-link {
  color: #52c41a;
  font-weight: 500;
}

.nav-menu li a.admin-link:hover,
.nav-menu li a.admin-link.active {
  color: #389e0d;
}

/* ?????? */
.nav-item-dropdown-wrapper {
  position: relative;
}

.nav-item-dropdown-wrapper {
  display: flex;
  align-items: center;
}

.nav-link-with-dropdown {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.nav-item-dropdown-wrapper .dropdown-icon {
  margin-left: 4px;
  font-size: 12px;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.nav-item-dropdown-wrapper:hover .dropdown-icon {
  transform: rotate(180deg);
}

.nav-item-dropdown-wrapper:hover .nav-link-with-dropdown {
  color: #1890ff;
}

/* ????????????*/
body.page-index .nav-item-dropdown-wrapper:hover .nav-link-with-dropdown {
  color: #fff;
  text-shadow: 0 1px 5px rgba(255, 255, 255, 0.5);
}

/* ???????????????????? */
body.page-index .header.header-scrolled .nav-item-dropdown-wrapper:hover .nav-link-with-dropdown,
body.page-index .header:hover .nav-item-dropdown-wrapper:hover .nav-link-with-dropdown {
  color: #1890ff;
  text-shadow: none;
}

/* ?????????????????? navbar ??????*/
.nav-item-dropdown-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  /* navbar ??padding-bottom: 15px??????????????*/
  height: 3px;
  background: #1890ff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  z-index: 1001;
}

.nav-item-dropdown-wrapper:hover::after {
  transform: scaleX(1);
}

.dropdown-bridge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: transparent;
  z-index: 998;
}

.dropdown-menu {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  top: var(--dropdown-top, 76px);
  margin-top: 0;
  background: #f6f7f9;
  border-top: 1px solid #eee;
  z-index: 999;
  padding: 0 0 21px;
  box-sizing: border-box;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height 0.7s ease-out, opacity 0.7s ease-out, padding 0.7s ease-out, visibility 0s linear 0.7s;
}

.dropdown-menu.active,
.nav-item-dropdown-wrapper:hover .dropdown-menu {
  max-height: 280px;
  opacity: 1;
  padding: 18px 0 21px;
  visibility: visible;
  transition: max-height 0.7s ease-out, opacity 0.7s ease-out, padding 0.7s ease-out, visibility 0s linear 0s;
}

.dropdown-inner,
.dropdown-menu .container.dropdown-inner {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 32px;
  box-sizing: border-box;
}

.dropdown-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: stretch;
}

/* ????????1/4 + ??1/2 + ??1/4 */
.dropdown-triple {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 140px;
}

.dropdown-part {
  padding: 16px 16px;
  box-sizing: border-box;
}

.dropdown-part-left {
  background: #fff;
  position: relative;
}

.dropdown-part-left::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: #e0e0e0;
}

.dropdown-part-middle {
  background: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.dropdown-part-middle::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: #e0e0e0;
}

.dropdown-part-right {
  background: #f8f9fa;
}

.dropdown-part-title {
  font-size: 25px;
  font-weight: 700;
  color: #1d2d3e;
  margin: 0 0 10px 0;
}

.dropdown-part-desc {
  font-size: 17.5px;
  color: #5b6b7d;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.dropdown-part-link {
  font-size: 17.5px;
  color: #e74c3c;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropdown-part-link:hover {
  text-decoration: underline;
}

.dropdown-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 0 128px;
  justify-content: center;
  align-items: flex-start;
  overflow: visible;
}

.dropdown-col {
  flex: 0 0 auto;
}

.dropdown-col-title {
  font-size: 20px;
  font-weight: 700;
  color: #1d2d3e;
  margin: 0 0 20px 0;
}

.dropdown-col-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 0 auto;
  min-height: 0;
}

/* ??????????????*/
.dropdown-cols .dropdown-col-list {
  gap: 4px;
}

.dropdown-col-list .dropdown-item {
  padding: 0;
}

/* ??????????? flex ??????????????????? */
.dropdown-cols .dropdown-col-list .dropdown-item {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  height: auto;
  min-height: 34px;
  overflow: visible;
}

.dropdown-col-list .dropdown-item-title {
  font-size: 18.75px;
  font-weight: 500;
  margin-bottom: 6px;
}

.dropdown-cols .dropdown-col-list .dropdown-item-title {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-col-list .dropdown-item-desc {
  display: none;
}

.dropdown-placeholder-img {
  min-height: 200px;
  background: #e8ecf0 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='60' viewBox='0 0 80 60'%3E%3Crect fill='%23bdc3c7' width='80' height='60'/%3E%3Ctext fill='%237f8c8d' x='50%25' y='50%25' dominant-baseline='middle' text-anchor='middle' font-size='10' font-family='sans-serif'%3E????3C/text%3E%3C/svg%3E") center center no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

/* ??????????JS ?? img??????SVG ?????????? */
.dropdown-placeholder-img.has-nav-image {
  background: none;
  background-color: #e8ecf0;
}

.dropdown-part-right img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  display: block;
}

.dropdown-side {
  background: linear-gradient(135deg, #eef5ff 0%, #f7fbff 100%);
  border-radius: 12px;
  padding: 28px 22px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.dropdown-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(24, 144, 255, 0.12), transparent 60%);
  pointer-events: none;
}

.dropdown-side-title {
  font-size: 25px;
  font-weight: 600;
  color: #1d2d3e;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.dropdown-side-subtitle {
  font-size: 16.25px;
  color: #5b6b7d;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 70px;
}

.dropdown-item {
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
  display: block;
}

.dropdown-item:hover {
  color: #1890ff;
}

.dropdown-item-title {
  font-size: 22.5px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.dropdown-item-desc {
  font-size: 17.5px;
  color: #666;
  line-height: 1.9;
}

/* ??????????????????????+ ????????
   ?nav-*-categories.js ??.dropdown-item ?? .dropdown-col > .dropdown-col-list ????.dropdown-cols ?????? */
.dropdown-cols .dropdown-item {
  position: relative;
  padding-left: 36px;
  box-sizing: border-box;
}

.dropdown-cols .dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 3px;
  background-color: #e4c16f;
  border-radius: 1px;
  transition: width 0.45s ease;
  pointer-events: none;
}

.dropdown-cols .dropdown-item:hover::before {
  width: 26px;
}

.dropdown-cols .dropdown-item .dropdown-item-title {
  display: inline-block;
  transform: translateX(0);
  transition: color 0.35s ease, transform 0.4s ease;
}

.dropdown-cols .dropdown-item:hover .dropdown-item-title {
  color: #e4c16f;
  transform: translateX(6px);
  overflow: visible;
  text-overflow: clip;
  max-width: none;
}

/* ????????????????????????? */
.dropdown-cols .dropdown-col-list .dropdown-item:hover {
  z-index: 2;
}

.dropdown-cols .dropdown-item:hover {
  color: inherit;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #333;
  transition: transform 0.3s, opacity 0.3s;
  display: block;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* ?????????????????????? */
  .header {
    display: block;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
  }

  /* ??????????? */
  body.page-index .header {
    background: transparent;
    box-shadow: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  /* ?????????????????? */
  body.page-index .header.header-scrolled {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
  }

  /* ???????????????*/
  body.page-about .header {
    background: transparent;
    box-shadow: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  body.page-about .header.header-scrolled {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
  }

  .header .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 100%;
  }

  .header .navbar {
    height: var(--headerHeight);
    padding: 0;
    justify-content: space-between;
  }

  .navbar-right {
    gap: 12px;
  }

  .navbar-phone {
    display: none !important;
  }

  .header .logo {
    color: rgb(228 193 111);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    /* ????????????????4:1 */
    background-image: url(../src/static/logo.png);
    background-size: 180px 45px;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 188px;
    min-height: 45px;
  }

  .header .logo-text {
    color: rgb(228 193 111);
    font-weight: 600;
  }

  /* ??????img?? .logo ??background-image ????????img+filter ???????? */
  .header .logo-img {
    display: none !important;
  }

  .header .nav-menu,
  .header .menu-toggle {
    display: none !important;
  }

  .mobile-category-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-category-btn span {
    width: 22px;
    height: 2px;
    background: #fff;
    display: block;
    transition: transform 0.3s, opacity 0.3s;
  }

  .mobile-category-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-category-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-category-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ????????????????????????????????? */
  .footer .footer-nav {
    display: none !important;
  }

  /* ????????????????????????*/
  #evaluate.about-section {
    display: none !important;
  }

  /* ?????????????????+??+????? */
  #future.about-section {
    display: none !important;
  }

  /* ??????????????/??/??/??/????*/
  .about-benefits-bar {
    display: none !important;
  }

  /* ????????????????/??/??/??/????*/
  .footer-trust-bar {
    display: none !important;
  }

  /* ??????????logo ??????*/
  .footer .footer-logo {
    font-size: 14.4px;
    gap: 8px;
  }

  .footer .footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }
}

/* ????????*/
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.3s;
}

.mobile-drawer.open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-drawer.open .mobile-drawer-backdrop {
  opacity: 1;
}

.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(280px, 85vw);
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 20px 0 0;
}

.mobile-drawer.open .mobile-drawer-panel {
  transform: translateX(0);
}

.mobile-drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: #f0f2f5;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  color: #333;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 60px 24px 24px;
  gap: 0;
}

.mobile-drawer-nav a {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  -webkit-tap-highlight-color: transparent;
}

.mobile-drawer-nav a:active {
  background: #f5f6f8;
}

/* ????????????????????*/
@media (min-width: 769px) {
  .mobile-category-btn {
    display: none !important;
  }

  .mobile-drawer {
    display: none !important;
  }

  /* ??????????logo???????? ??+???? */
  .header .navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-items: center;
  }

  .header .navbar .navbar-left {
    justify-self: start;
  }

  .header .navbar .nav-menu {
    justify-self: center;
  }

  .header .navbar .navbar-right {
    justify-self: end;
  }
}

/* Footer ????????+ ???? + ????*/
.footer {
  background: #000;
  color: #fff;
  padding: 0 0 24px;
  margin-top: 60px;
}

/* ???????????????????????????????? 1380px */
.footer-trust-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(20px, 2.61vw, 36px) 0 clamp(18px, 2.32vw, 32px);
}

.footer-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.45vw, 20px) clamp(8px, 1.16vw, 16px);
  text-align: center;
  align-items: start;
}

.footer-trust-item {
  min-width: 0;
}

.footer-trust-title {
  font-size: clamp(12px, 1.30vw, 18px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 clamp(6px, 0.72vw, 10px);
  line-height: 1.3;
}

.footer-trust-desc {
  font-size: clamp(10px, 0.94vw, 13px);
  color: #9a9a9a;
  line-height: 1.55;
  margin: 0;
}

/* logo + ?? + ?? + ???footer ??????.container?????? section??*/
.footer > .container {
  padding-top: 40px;
}

/* ??????clamp() ??????????5 ??????768px ????????*/

/* ??????????clamp() ???????????? */

@media (max-width: 480px) {
  .footer-trust-bar {
    padding: 24px 0 20px;
  }

  .footer-trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-trust-title {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .footer-trust-desc {
    font-size: 12px;
  }
}

.footer-block {
  margin-bottom: 32px;
}

.footer-block-title {
  font-size: 16.2px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* ??????????*/
.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 40px;
}

.footer-nav-grid a {
  color: #b0b8c0;
  text-decoration: none;
  font-size: 12.6px;
}

.footer-nav-grid a:hover {
  color: #1890ff;
}

/* ??????????*/
.footer-media-icons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  text-decoration: none;
  font-size: 12.6px;
  transition: border-color 0.2s, color 0.2s;
}

.footer-icon:hover {
  border-color: #1890ff;
  color: #1890ff;
}

/* ????????+ ?? */
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #73747c;
  font-size: 12.6px;
  font-style: normal;
}

.footer-contact-line {
  margin: 0 0 8px 0;
}

.footer-copyright {
  margin: 0;
  color: #73747c;
  font-size: 11.7px;
  font-style: normal;
  transition: all 0.5s;
}

/* ??????? logo+?????? ?????flex-wrap:nowrap ??????????????*/
.footer-inner {
  display: flex;
  flex-wrap: nowrap;
  /* column-gap ?????????? 1380px ??48px??69px ??27px??*/
  column-gap: clamp(20px, 3.48vw, 48px);
  row-gap: 40px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.footer-left {
  flex: 0 0 auto;
  min-width: 0;    /* ????flex ???? */
  overflow: hidden;
}

.footer-brand {
  margin-bottom: 24px;
}

/* ????????????????1380px=32px????769px??7.8px????14px??*/
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1.01vw, 14px);
  text-decoration: none;
  color: rgb(228 193 111);
  font-size: clamp(12.6px, 2.088vw, 28.8px);
  font-weight: bold;
  line-height: 1;
}

.footer-logo:hover {
  color: rgb(228 193 111);
  opacity: 0.9;
}

.footer-logo-img {
  width: clamp(56px, 7.25vw, 100px);
  height: clamp(56px, 7.25vw, 100px);
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-logo-text {
  display: inline-block;
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-top {
  display: flex;
  gap: clamp(10px, 1.45vw, 20px);
  align-items: flex-start;
}

.footer-contact-qr {
  flex: 0 0 auto;
  width: clamp(56px, 7.25vw, 100px);
  height: clamp(56px, 7.25vw, 100px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.footer-contact-qr:empty {
  display: none;
}

.footer-contact-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-contact-phone-row {
  margin: 0;
  font-size: 16.2px;
  color: #b0b8c0;
  line-height: 1.5;
}

.footer-contact-phone-row .footer-contact-label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15.3px;
  margin-bottom: 4px;
}

.footer-phone-num {
  font-size: clamp(18.9px, 2.664vw, 36.9px);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.footer-contact-addresses {
  margin-top: 4px;
}

.footer-contact-row {
  margin: 0 0 10px 0;
  /* ??clamp(10px, 1.01vw, 14px) ? 1.3 */
  font-size: clamp(11.7px, 1.179vw, 16.2px);
  color: #b0b8c0;
  line-height: 1.5;
}

.footer-contact-row:last-child {
  margin-bottom: 0;
}

.footer-contact-row .footer-contact-label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15.3px;
  margin-bottom: 2px;
}

.footer-contact-row span[id^="footer-address"] {
  color: #fff;
  font-weight: 500;
}

.footer-nav {
  display: flex;
  flex-wrap: nowrap;     /* ????????????*/
  row-gap: 32px;
  column-gap: clamp(20px, 4.06vw, 56px);
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
  /* ??????????????????*/
  margin-right: clamp(16px, 2.2vw, 36px);
}

.footer-nav-col {
  flex: 0 0 auto;
  min-width: 0;          /* ????????????*/
}

.footer-nav-title {
  margin: 0 0 clamp(10px, 1.16vw, 16px) 0;
  padding-bottom: clamp(6px, 0.87vw, 12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 500;
  white-space: nowrap;
}

/* ??? base.css .foot-nav dt a ?? */
.footer-nav-title a {
  color: #fff;
  font-size: var(--f18);
  font-weight: 500;
  text-decoration: none;
}

.footer-nav-title a:hover {
  color: rgb(228 193 111);
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 0;
}

/* ??? base.css .foot-nav dd?????????????? */
.footer-nav-list a {
  font-size: var(--f16);
  line-height: 2.5em;
  color: #73747c;
  transition: color 0.5s ease;
  text-decoration: none;
  white-space: nowrap;
}

.footer-nav-list a:hover {
  color: rgb(228 193 111);
}

/* ?????????????? JS ?? */
.footer-friend-links {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 12.6px;
  color: #73747c;
  font-style: normal;
}

.footer-friend-links[data-empty="true"] {
  display: none !important;
}

.footer-friend-links-label {
  margin-right: 8px;
  color: #73747c;
  font-style: normal;
}

.footer-friend-links-list {
  display: inline;
}

.footer-friend-links-list a {
  color: #73747c;
  text-decoration: none;
  margin-right: 12px;
  font-style: normal;
  transition: all 0.5s;
}

.footer-friend-links-list a:hover {
  color: rgb(228 193 111);
}

.footer-friend-links:empty,
.footer-friend-links .footer-friend-links-list:empty {
  display: none;
}

/* ????????????????????????????????????????*/
body.page-index .home-sidebar,
body.page-about .home-sidebar,
body.page-solutions .home-sidebar,
body.page-products .home-sidebar,
body.page-news .home-sidebar,
body.page-contact .home-sidebar {
  display: none;
}

@media (min-width: 1025px) {
  body.page-index .home-sidebar,
  body.page-about .home-sidebar,
  body.page-solutions .home-sidebar,
  body.page-products .home-sidebar,
  body.page-news .home-sidebar,
  body.page-contact .home-sidebar {
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    width: 56px;
    background: #dead54;
    border-radius: 8px 0 0 8px;
    overflow: visible;
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.15);
  }

  body.page-index .home-sidebar-wechat-wrap,
  body.page-about .home-sidebar-wechat-wrap,
  body.page-solutions .home-sidebar-wechat-wrap,
  body.page-products .home-sidebar-wechat-wrap,
  body.page-news .home-sidebar-wechat-wrap,
  body.page-contact .home-sidebar-wechat-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 14px 10px;
    color: #fff;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    min-height: 56px;
    cursor: default;
  }

  /* ????????????????????????  body.page-index .home-sidebar-wechat-wrap:hover,
  body.page-about .home-sidebar-wechat-wrap:hover,
  body.page-solutions .home-sidebar-wechat-wrap:hover,
  body.page-products .home-sidebar-wechat-wrap:hover,
  body.page-news .home-sidebar-wechat-wrap:hover,
  body.page-contact .home-sidebar-wechat-wrap:hover {
    background: rgba(0, 0, 0, 0.15);
  }
  */

  body.page-index .home-sidebar-wechat-wrap .home-sidebar-item,
  body.page-about .home-sidebar-wechat-wrap .home-sidebar-item,
  body.page-solutions .home-sidebar-wechat-wrap .home-sidebar-item,
  body.page-products .home-sidebar-wechat-wrap .home-sidebar-item,
  body.page-news .home-sidebar-wechat-wrap .home-sidebar-item,
  body.page-contact .home-sidebar-wechat-wrap .home-sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: none;
    padding: 0;
    min-height: 0;
    cursor: pointer;
  }

  body.page-index .home-sidebar-wechat-popup,
  body.page-about .home-sidebar-wechat-popup,
  body.page-solutions .home-sidebar-wechat-popup,
  body.page-products .home-sidebar-wechat-popup,
  body.page-news .home-sidebar-wechat-popup,
  body.page-contact .home-sidebar-wechat-popup {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 12px;
    padding: 16px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    white-space: nowrap;
    width: max-content;
  }

  /* ??????????????????????????  body.page-index .home-sidebar-wechat-wrap:hover .home-sidebar-wechat-popup,
  body.page-about .home-sidebar-wechat-wrap:hover .home-sidebar-wechat-popup,
  body.page-solutions .home-sidebar-wechat-wrap:hover .home-sidebar-wechat-popup,
  body.page-products .home-sidebar-wechat-wrap:hover .home-sidebar-wechat-popup,
  body.page-news .home-sidebar-wechat-wrap:hover .home-sidebar-wechat-popup,
  body.page-contact .home-sidebar-wechat-wrap:hover .home-sidebar-wechat-popup {
    opacity: 1;
    pointer-events: auto;
  }
  */

  body.page-index .home-sidebar-wechat-title,
  body.page-about .home-sidebar-wechat-title,
  body.page-solutions .home-sidebar-wechat-title,
  body.page-products .home-sidebar-wechat-title,
  body.page-news .home-sidebar-wechat-title,
  body.page-contact .home-sidebar-wechat-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
  }

  body.page-index .home-sidebar-wechat-qr,
  body.page-about .home-sidebar-wechat-qr,
  body.page-solutions .home-sidebar-wechat-qr,
  body.page-products .home-sidebar-wechat-qr,
  body.page-news .home-sidebar-wechat-qr,
  body.page-contact .home-sidebar-wechat-qr {
    display: block;
    width: 200px;
    height: 200px;
    max-width: none;
    object-fit: cover;
    object-position: center;
    background: #f5f5f5;
  }

  body.page-index .home-sidebar-phone-wrap,
  body.page-about .home-sidebar-phone-wrap,
  body.page-solutions .home-sidebar-phone-wrap,
  body.page-products .home-sidebar-phone-wrap,
  body.page-news .home-sidebar-phone-wrap,
  body.page-contact .home-sidebar-phone-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 10px;
    color: #fff;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    min-height: 56px;
    cursor: default;
  }

  /* ????????????????????????  body.page-index .home-sidebar-phone-wrap:hover,
  body.page-about .home-sidebar-phone-wrap:hover,
  body.page-solutions .home-sidebar-phone-wrap:hover,
  body.page-products .home-sidebar-phone-wrap:hover,
  body.page-news .home-sidebar-phone-wrap:hover,
  body.page-contact .home-sidebar-phone-wrap:hover {
    background: rgba(0, 0, 0, 0.15);
  }
  */

  body.page-index .home-sidebar-phone-wrap .home-sidebar-item,
  body.page-about .home-sidebar-phone-wrap .home-sidebar-item,
  body.page-solutions .home-sidebar-phone-wrap .home-sidebar-item,
  body.page-products .home-sidebar-phone-wrap .home-sidebar-item,
  body.page-news .home-sidebar-phone-wrap .home-sidebar-item,
  body.page-contact .home-sidebar-phone-wrap .home-sidebar-item {
    border: none;
    padding: 0;
    min-height: 0;
    cursor: pointer;
  }

  body.page-index .home-sidebar-phone-popup,
  body.page-about .home-sidebar-phone-popup,
  body.page-solutions .home-sidebar-phone-popup,
  body.page-products .home-sidebar-phone-popup,
  body.page-news .home-sidebar-phone-popup,
  body.page-contact .home-sidebar-phone-popup {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 12px;
    padding: 10px 14px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }

  /* ??????????????????????
  body.page-index .home-sidebar-phone-wrap:hover .home-sidebar-phone-popup,
  body.page-about .home-sidebar-phone-wrap:hover .home-sidebar-phone-popup,
  body.page-solutions .home-sidebar-phone-wrap:hover .home-sidebar-phone-popup,
  body.page-products .home-sidebar-phone-wrap:hover .home-sidebar-phone-popup,
  body.page-news .home-sidebar-phone-wrap:hover .home-sidebar-phone-popup,
  body.page-contact .home-sidebar-phone-wrap:hover .home-sidebar-phone-popup {
    opacity: 1;
    pointer-events: auto;
  }
  */

  body.page-index .home-sidebar-item,
  body.page-about .home-sidebar-item,
  body.page-solutions .home-sidebar-item,
  body.page-products .home-sidebar-item,
  body.page-news .home-sidebar-item,
  body.page-contact .home-sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 14px 10px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    min-height: 56px;
  }

  body.page-index a.home-sidebar-item:visited,
  body.page-about a.home-sidebar-item:visited,
  body.page-solutions a.home-sidebar-item:visited,
  body.page-products a.home-sidebar-item:visited,
  body.page-news a.home-sidebar-item:visited,
  body.page-contact a.home-sidebar-item:visited {
    color: #fff;
  }

  body.page-index .home-sidebar-item:last-child,
  body.page-about .home-sidebar-item:last-child,
  body.page-solutions .home-sidebar-item:last-child,
  body.page-products .home-sidebar-item:last-child,
  body.page-news .home-sidebar-item:last-child,
  body.page-contact .home-sidebar-item:last-child {
    border-bottom: none;
  }

  /* ????????????????????????  body.page-index .home-sidebar-item:hover,
  body.page-about .home-sidebar-item:hover,
  body.page-solutions .home-sidebar-item:hover,
  body.page-products .home-sidebar-item:hover,
  body.page-news .home-sidebar-item:hover,
  body.page-contact .home-sidebar-item:hover {
    background: rgba(0, 0, 0, 0.15);
  }
  */

  body.page-index .home-sidebar-icon,
  body.page-about .home-sidebar-icon,
  body.page-solutions .home-sidebar-icon,
  body.page-products .home-sidebar-icon,
  body.page-news .home-sidebar-icon,
  body.page-contact .home-sidebar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
  }

  body.page-index .home-sidebar-icon svg,
  body.page-about .home-sidebar-icon svg,
  body.page-solutions .home-sidebar-icon svg,
  body.page-products .home-sidebar-icon svg,
  body.page-news .home-sidebar-icon svg,
  body.page-contact .home-sidebar-icon svg {
    width: 20px;
    height: 20px;
  }

  body.page-index .home-sidebar-text,
  body.page-about .home-sidebar-text,
  body.page-solutions .home-sidebar-text,
  body.page-products .home-sidebar-text,
  body.page-news .home-sidebar-text,
  body.page-contact .home-sidebar-text {
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
  }

  body.page-index .home-sidebar-back-top .home-sidebar-text,
  body.page-about .home-sidebar-back-top .home-sidebar-text,
  body.page-solutions .home-sidebar-back-top .home-sidebar-text,
  body.page-products .home-sidebar-back-top .home-sidebar-text,
  body.page-news .home-sidebar-back-top .home-sidebar-text,
  body.page-contact .home-sidebar-back-top .home-sidebar-text {
    display: none;
  }
}

/* ??????????.footer-content / .footer-section??*/
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 16.2px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
}

.footer-section a:hover {
  color: #1890ff;
}

/* Banner ???????????? */
.banner.banner-carousel {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  color: #fff;
  overflow: hidden;
  background: #1a1a2e;
}

.banner-carousel-inner {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.banner-carousel-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.3);
}

.banner-carousel-item.active {
  opacity: 1;
  z-index: 1;
  animation: bannerZoomIn 2s ease-out forwards;
  transform: scale(1);
}

@keyframes bannerZoomIn {
  0% {
    transform: scale(1.3);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.banner-slide-media,
.banner-slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-carousel-item.active .banner-slide-media,
.banner-carousel-item.active .banner-slide-video {
  animation: bannerVideoZoomIn 1.2s ease-out forwards;
}

@keyframes bannerVideoZoomIn {
  0% {
    transform: scale(1.3);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Banner ???? */
.banner-sparkles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, rgba(64, 169, 255, 1) 0%, rgba(64, 169, 255, 0.7) 40%, rgba(64, 169, 255, 0.3) 70%, transparent 100%);
  border-radius: 50%;
  box-shadow:
    0 0 8px rgba(64, 169, 255, 0.9),
    0 0 16px rgba(64, 169, 255, 0.6),
    0 0 24px rgba(64, 169, 255, 0.3);
  animation: sparkleRadialOut 8s infinite ease-in-out;
  opacity: 0;
  filter: blur(0.5px);
}

/* ?????????????????????????????*/
.banner-sparkles .sparkle:nth-child(even) {
  animation-name: sparkleRadialIn;
}

/* ????????????????????? */
.banner-sparkles .sparkle.sparkle--inward {
  animation-name: sparkleRadialIn;
}

/* ????????????/ ???????? */
.banner-sparkles .sparkle:nth-child(1) { animation-delay: 0s; }
.banner-sparkles .sparkle:nth-child(2) { animation-delay: 0.1s; }
.banner-sparkles .sparkle:nth-child(3) { animation-delay: 0.2s; }
.banner-sparkles .sparkle:nth-child(4) { animation-delay: 0.3s; }
.banner-sparkles .sparkle:nth-child(5) { animation-delay: 0.4s; }
.banner-sparkles .sparkle:nth-child(6) { animation-delay: 0.5s; }
.banner-sparkles .sparkle:nth-child(7) { animation-delay: 0.6s; }
.banner-sparkles .sparkle:nth-child(8) { animation-delay: 0.7s; }
.banner-sparkles .sparkle:nth-child(9) { animation-delay: 0.8s; }
.banner-sparkles .sparkle:nth-child(10) { animation-delay: 0.9s; }
.banner-sparkles .sparkle:nth-child(11) { animation-delay: 1s; }
.banner-sparkles .sparkle:nth-child(12) { animation-delay: 1.1s; }
.banner-sparkles .sparkle:nth-child(13) { animation-delay: 1.2s; }
.banner-sparkles .sparkle:nth-child(14) { animation-delay: 1.3s; }
.banner-sparkles .sparkle:nth-child(15) { animation-delay: 1.4s; }
.banner-sparkles .sparkle:nth-child(16) { animation-delay: 1.5s; }
.banner-sparkles .sparkle:nth-child(17) { animation-delay: 1.6s; }
.banner-sparkles .sparkle:nth-child(18) { animation-delay: 1.7s; }
.banner-sparkles .sparkle:nth-child(19) { animation-delay: 1.8s; }
.banner-sparkles .sparkle:nth-child(20) { animation-delay: 1.9s; }
.banner-sparkles .sparkle:nth-child(21) { animation-delay: 2s; }
.banner-sparkles .sparkle:nth-child(22) { animation-delay: 2.1s; }
.banner-sparkles .sparkle:nth-child(23) { animation-delay: 2.2s; }
.banner-sparkles .sparkle:nth-child(24) { animation-delay: 2.3s; }
.banner-sparkles .sparkle:nth-child(25) { animation-delay: 2.4s; }
.banner-sparkles .sparkle:nth-child(26) { animation-delay: 2.5s; }
.banner-sparkles .sparkle:nth-child(27) { animation-delay: 2.6s; }
.banner-sparkles .sparkle:nth-child(28) { animation-delay: 2.7s; }
.banner-sparkles .sparkle:nth-child(29) { animation-delay: 2.8s; }
.banner-sparkles .sparkle:nth-child(30) { animation-delay: 2.9s; }
.banner-sparkles .sparkle:nth-child(31) { animation-delay: 3s; }
.banner-sparkles .sparkle:nth-child(32) { animation-delay: 3.1s; }
.banner-sparkles .sparkle:nth-child(33) { animation-delay: 3.2s; }
.banner-sparkles .sparkle:nth-child(34) { animation-delay: 3.3s; }
.banner-sparkles .sparkle:nth-child(35) { animation-delay: 3.4s; }
.banner-sparkles .sparkle:nth-child(36) { animation-delay: 3.5s; }
.banner-sparkles .sparkle:nth-child(37) { animation-delay: 3.6s; }
.banner-sparkles .sparkle:nth-child(38) { animation-delay: 3.7s; }
.banner-sparkles .sparkle:nth-child(39) { animation-delay: 3.8s; }
.banner-sparkles .sparkle:nth-child(40) { animation-delay: 3.9s; }
.banner-sparkles .sparkle:nth-child(41) { animation-delay: 4s; }
.banner-sparkles .sparkle:nth-child(42) { animation-delay: 4.1s; }
.banner-sparkles .sparkle:nth-child(43) { animation-delay: 4.2s; }
.banner-sparkles .sparkle:nth-child(44) { animation-delay: 4.3s; }
.banner-sparkles .sparkle:nth-child(45) { animation-delay: 4.4s; }
.banner-sparkles .sparkle:nth-child(46) { animation-delay: 4.5s; }
.banner-sparkles .sparkle:nth-child(47) { animation-delay: 4.6s; }
.banner-sparkles .sparkle:nth-child(48) { animation-delay: 4.7s; }
.banner-sparkles .sparkle:nth-child(49) { animation-delay: 4.8s; }
.banner-sparkles .sparkle:nth-child(50) { animation-delay: 4.9s; }
.banner-sparkles .sparkle:nth-child(51) { animation-delay: 5s; }
.banner-sparkles .sparkle:nth-child(52) { animation-delay: 5.1s; }
.banner-sparkles .sparkle:nth-child(53) { animation-delay: 5.2s; }
.banner-sparkles .sparkle:nth-child(54) { animation-delay: 5.3s; }
.banner-sparkles .sparkle:nth-child(55) { animation-delay: 5.4s; }
.banner-sparkles .sparkle:nth-child(56) { animation-delay: 5.5s; }
.banner-sparkles .sparkle:nth-child(57) { animation-delay: 5.6s; }
.banner-sparkles .sparkle:nth-child(58) { animation-delay: 5.7s; }
.banner-sparkles .sparkle:nth-child(59) { animation-delay: 5.8s; }
.banner-sparkles .sparkle:nth-child(60) { animation-delay: 5.9s; }
.banner-sparkles .sparkle:nth-child(61) { animation-delay: 6s; }
.banner-sparkles .sparkle:nth-child(62) { animation-delay: 6.1s; }
.banner-sparkles .sparkle:nth-child(63) { animation-delay: 6.2s; }
.banner-sparkles .sparkle:nth-child(64) { animation-delay: 6.3s; }
.banner-sparkles .sparkle:nth-child(65) { animation-delay: 6.4s; }
.banner-sparkles .sparkle:nth-child(66) { animation-delay: 6.5s; }
.banner-sparkles .sparkle:nth-child(67) { animation-delay: 6.6s; }
.banner-sparkles .sparkle:nth-child(68) { animation-delay: 6.7s; }
.banner-sparkles .sparkle:nth-child(69) { animation-delay: 6.8s; }
.banner-sparkles .sparkle:nth-child(70) { animation-delay: 6.9s; }
.banner-sparkles .sparkle:nth-child(71) { animation-delay: 7s; }
.banner-sparkles .sparkle:nth-child(72) { animation-delay: 7.1s; }
.banner-sparkles .sparkle:nth-child(73) { animation-delay: 7.2s; }
.banner-sparkles .sparkle:nth-child(74) { animation-delay: 7.3s; }
.banner-sparkles .sparkle:nth-child(75) { animation-delay: 7.4s; }
.banner-sparkles .sparkle:nth-child(76) { animation-delay: 7.5s; }
.banner-sparkles .sparkle:nth-child(77) { animation-delay: 7.6s; }
.banner-sparkles .sparkle:nth-child(78) { animation-delay: 7.7s; }
.banner-sparkles .sparkle:nth-child(79) { animation-delay: 7.8s; }
.banner-sparkles .sparkle:nth-child(80) { animation-delay: 7.9s; }
.banner-sparkles .sparkle:nth-child(81) { animation-delay: 8s; }
.banner-sparkles .sparkle:nth-child(82) { animation-delay: 8.1s; }
.banner-sparkles .sparkle:nth-child(83) { animation-delay: 8.2s; }
.banner-sparkles .sparkle:nth-child(84) { animation-delay: 8.3s; }
.banner-sparkles .sparkle:nth-child(85) { animation-delay: 8.4s; }
.banner-sparkles .sparkle:nth-child(86) { animation-delay: 8.5s; }
.banner-sparkles .sparkle:nth-child(87) { animation-delay: 8.6s; }
.banner-sparkles .sparkle:nth-child(88) { animation-delay: 8.7s; }
.banner-sparkles .sparkle:nth-child(89) { animation-delay: 8.8s; }
.banner-sparkles .sparkle:nth-child(90) { animation-delay: 8.9s; }
.banner-sparkles .sparkle:nth-child(91) { animation-delay: 9s; }
.banner-sparkles .sparkle:nth-child(92) { animation-delay: 9.05s; }
.banner-sparkles .sparkle:nth-child(93) { animation-delay: 9.1s; }
.banner-sparkles .sparkle:nth-child(94) { animation-delay: 9.15s; }
.banner-sparkles .sparkle:nth-child(95) { animation-delay: 9.2s; }
.banner-sparkles .sparkle:nth-child(96) { animation-delay: 9.25s; }
.banner-sparkles .sparkle:nth-child(97) { animation-delay: 9.3s; }
.banner-sparkles .sparkle:nth-child(98) { animation-delay: 9.35s; }
.banner-sparkles .sparkle:nth-child(99) { animation-delay: 9.4s; }
.banner-sparkles .sparkle:nth-child(100) { animation-delay: 9.45s; }
.banner-sparkles .sparkle:nth-child(101) { animation-delay: 9.5s; }
.banner-sparkles .sparkle:nth-child(102) { animation-delay: 9.55s; }
.banner-sparkles .sparkle:nth-child(103) { animation-delay: 9.6s; }
.banner-sparkles .sparkle:nth-child(104) { animation-delay: 9.65s; }
.banner-sparkles .sparkle:nth-child(105) { animation-delay: 9.7s; }
.banner-sparkles .sparkle:nth-child(106) { animation-delay: 9.75s; }
.banner-sparkles .sparkle:nth-child(107) { animation-delay: 9.8s; }
.banner-sparkles .sparkle:nth-child(108) { animation-delay: 9.85s; }
.banner-sparkles .sparkle:nth-child(109) { animation-delay: 9.9s; }
.banner-sparkles .sparkle:nth-child(110) { animation-delay: 9.95s; }
.banner-sparkles .sparkle:nth-child(111) { animation-delay: 10s; }
.banner-sparkles .sparkle:nth-child(112) { animation-delay: 10.05s; }
.banner-sparkles .sparkle:nth-child(113) { animation-delay: 10.1s; }
.banner-sparkles .sparkle:nth-child(114) { animation-delay: 10.15s; }
.banner-sparkles .sparkle:nth-child(115) { animation-delay: 10.2s; }
.banner-sparkles .sparkle:nth-child(116) { animation-delay: 10.25s; }
.banner-sparkles .sparkle:nth-child(117) { animation-delay: 10.3s; }
.banner-sparkles .sparkle:nth-child(118) { animation-delay: 10.35s; }
.banner-sparkles .sparkle:nth-child(119) { animation-delay: 10.4s; }
.banner-sparkles .sparkle:nth-child(120) { animation-delay: 10.45s; }
.banner-sparkles .sparkle:nth-child(121) { animation-delay: 10.5s; }
.banner-sparkles .sparkle:nth-child(122) { animation-delay: 10.55s; }
.banner-sparkles .sparkle:nth-child(123) { animation-delay: 10.6s; }
.banner-sparkles .sparkle:nth-child(124) { animation-delay: 10.65s; }
.banner-sparkles .sparkle:nth-child(125) { animation-delay: 10.7s; }
.banner-sparkles .sparkle:nth-child(126) { animation-delay: 10.75s; }
.banner-sparkles .sparkle:nth-child(127) { animation-delay: 10.8s; }
.banner-sparkles .sparkle:nth-child(128) { animation-delay: 10.85s; }
.banner-sparkles .sparkle:nth-child(129) { animation-delay: 10.9s; }
.banner-sparkles .sparkle:nth-child(130) { animation-delay: 10.95s; }
.banner-sparkles .sparkle:nth-child(131) { animation-delay: 11s; }
.banner-sparkles .sparkle:nth-child(132) { animation-delay: 11.05s; }
.banner-sparkles .sparkle:nth-child(133) { animation-delay: 11.1s; }
.banner-sparkles .sparkle:nth-child(134) { animation-delay: 11.15s; }
.banner-sparkles .sparkle:nth-child(135) { animation-delay: 11.2s; }
.banner-sparkles .sparkle:nth-child(136) { animation-delay: 11.25s; }
.banner-sparkles .sparkle:nth-child(137) { animation-delay: 11.3s; }
.banner-sparkles .sparkle:nth-child(138) { animation-delay: 11.35s; }
.banner-sparkles .sparkle:nth-child(139) { animation-delay: 11.4s; }
.banner-sparkles .sparkle:nth-child(140) { animation-delay: 11.45s; }
.banner-sparkles .sparkle:nth-child(141) { animation-delay: 11.5s; }
.banner-sparkles .sparkle:nth-child(142) { animation-delay: 11.55s; }
.banner-sparkles .sparkle:nth-child(143) { animation-delay: 11.6s; }
.banner-sparkles .sparkle:nth-child(144) { animation-delay: 11.65s; }
.banner-sparkles .sparkle:nth-child(145) { animation-delay: 11.7s; }
.banner-sparkles .sparkle:nth-child(146) { animation-delay: 11.75s; }
.banner-sparkles .sparkle:nth-child(147) { animation-delay: 11.8s; }
.banner-sparkles .sparkle:nth-child(148) { animation-delay: 11.85s; }
.banner-sparkles .sparkle:nth-child(149) { animation-delay: 11.9s; }
.banner-sparkles .sparkle:nth-child(150) { animation-delay: 11.95s; }
.banner-sparkles .sparkle:nth-child(151) { animation-delay: 12s; }
.banner-sparkles .sparkle:nth-child(152) { animation-delay: 12.05s; }
.banner-sparkles .sparkle:nth-child(153) { animation-delay: 12.1s; }
.banner-sparkles .sparkle:nth-child(154) { animation-delay: 12.15s; }
.banner-sparkles .sparkle:nth-child(155) { animation-delay: 12.2s; }
.banner-sparkles .sparkle:nth-child(156) { animation-delay: 12.25s; }
.banner-sparkles .sparkle:nth-child(157) { animation-delay: 12.3s; }
.banner-sparkles .sparkle:nth-child(158) { animation-delay: 12.35s; }
.banner-sparkles .sparkle:nth-child(159) { animation-delay: 12.4s; }
.banner-sparkles .sparkle:nth-child(160) { animation-delay: 12.45s; }
.banner-sparkles .sparkle:nth-child(161) { animation-delay: 12.5s; }
.banner-sparkles .sparkle:nth-child(162) { animation-delay: 12.55s; }
.banner-sparkles .sparkle:nth-child(163) { animation-delay: 12.6s; }
.banner-sparkles .sparkle:nth-child(164) { animation-delay: 12.65s; }
.banner-sparkles .sparkle:nth-child(165) { animation-delay: 12.7s; }
.banner-sparkles .sparkle:nth-child(166) { animation-delay: 12.75s; }
.banner-sparkles .sparkle:nth-child(167) { animation-delay: 12.8s; }
.banner-sparkles .sparkle:nth-child(168) { animation-delay: 12.85s; }
.banner-sparkles .sparkle:nth-child(169) { animation-delay: 12.9s; }
.banner-sparkles .sparkle:nth-child(170) { animation-delay: 12.95s; }
.banner-sparkles .sparkle:nth-child(171) { animation-delay: 13s; }
.banner-sparkles .sparkle:nth-child(172) { animation-delay: 13.05s; }
.banner-sparkles .sparkle:nth-child(173) { animation-delay: 13.1s; }
.banner-sparkles .sparkle:nth-child(174) { animation-delay: 13.15s; }
.banner-sparkles .sparkle:nth-child(175) { animation-delay: 13.2s; }
.banner-sparkles .sparkle:nth-child(176) { animation-delay: 13.25s; }
.banner-sparkles .sparkle:nth-child(177) { animation-delay: 13.3s; }
.banner-sparkles .sparkle:nth-child(178) { animation-delay: 13.35s; }
.banner-sparkles .sparkle:nth-child(179) { animation-delay: 13.4s; }
.banner-sparkles .sparkle:nth-child(180) { animation-delay: 13.45s; }

/* ????????????????*/
.sparkle-1 { left: 62%; top: 50%; }
.sparkle-3 { left: 61.3%; top: 54.1%; }
.sparkle-5 { left: 59.2%; top: 57.7%; }
.sparkle-7 { left: 56%; top: 60.4%; }
.sparkle-9 { left: 52%; top: 61.8%; }
.sparkle-11 { left: 48%; top: 61.8%; }
.sparkle-13 { left: 44%; top: 60.4%; }
.sparkle-15 { left: 40.8%; top: 57.7%; }
.sparkle-17 { left: 40.8%; top: 54.1%; }
.sparkle-19 { left: 38%; top: 50%; }
.sparkle-21 { left: 40.8%; top: 45.9%; }
.sparkle-23 { left: 40.8%; top: 42.3%; }
.sparkle-25 { left: 44%; top: 39.6%; }
.sparkle-27 { left: 48%; top: 38.2%; }
.sparkle-29 { left: 52%; top: 38.2%; }
.sparkle-31 { left: 56%; top: 39.6%; }
.sparkle-33 { left: 59.2%; top: 42.3%; }
.sparkle-35 { left: 61.3%; top: 45.9%; }
/* ??????37??9???? 16%??????????*/
.sparkle-37 { left: 65.4%; top: 54.1%; }
.sparkle-39 { left: 61.3%; top: 61.3%; }
.sparkle-41 { left: 54.1%; top: 65.4%; }
.sparkle-43 { left: 45.9%; top: 65.4%; }
.sparkle-45 { left: 38.7%; top: 61.3%; }
.sparkle-47 { left: 36.6%; top: 54.1%; }
.sparkle-49 { left: 38.7%; top: 45.9%; }
.sparkle-51 { left: 45.9%; top: 38.7%; }
.sparkle-53 { left: 54.1%; top: 34.6%; }
.sparkle-55 { left: 61.3%; top: 38.7%; }
.sparkle-57 { left: 64.3%; top: 45.9%; }
.sparkle-59 { left: 65.4%; top: 52.4%; }

/* ????????????????????*/
.sparkle-2 { left: 89.4%; top: 56.8%; }
.sparkle-4 { left: 84.6%; top: 70%; }
.sparkle-6 { left: 75.7%; top: 80.6%; }
.sparkle-8 { left: 63.7%; top: 87.6%; }
.sparkle-10 { left: 50%; top: 90%; }
.sparkle-12 { left: 36.3%; top: 87.6%; }
.sparkle-14 { left: 24.3%; top: 80.6%; }
.sparkle-16 { left: 15.4%; top: 70%; }
.sparkle-18 { left: 10.6%; top: 56.8%; }
.sparkle-20 { left: 10.6%; top: 43.2%; }
.sparkle-22 { left: 15.4%; top: 30%; }
.sparkle-24 { left: 24.3%; top: 19.4%; }
.sparkle-26 { left: 36.3%; top: 12.4%; }
.sparkle-28 { left: 50%; top: 10%; }
.sparkle-30 { left: 63.7%; top: 12.4%; }
.sparkle-32 { left: 75.7%; top: 19.4%; }
.sparkle-34 { left: 84.6%; top: 30%; }
.sparkle-36 { left: 89.4%; top: 43.2%; }
/* ????????38??0???? 30%???????????? */
.sparkle-38 { left: 80%; top: 50%; }
.sparkle-40 { left: 76%; top: 65%; }
.sparkle-42 { left: 65%; top: 76%; }
.sparkle-44 { left: 50%; top: 80%; }
.sparkle-46 { left: 35%; top: 76%; }
.sparkle-48 { left: 24%; top: 65%; }
.sparkle-50 { left: 20%; top: 50%; }
.sparkle-52 { left: 24%; top: 35%; }
.sparkle-54 { left: 35%; top: 24%; }
.sparkle-56 { left: 50%; top: 20%; }
.sparkle-58 { left: 65%; top: 24%; }
.sparkle-60 { left: 76%; top: 35%; }

/* ????????????sparkle--inward??*/
.sparkle-61 { left: 5%; top: 50%; }
.sparkle-62 { left: 12%; top: 22%; }
.sparkle-63 { left: 12%; top: 78%; }
.sparkle-64 { left: 25%; top: 8%; }
.sparkle-65 { left: 25%; top: 92%; }
.sparkle-66 { left: 50%; top: 5%; }
.sparkle-67 { left: 50%; top: 95%; }
.sparkle-68 { left: 75%; top: 8%; }
.sparkle-69 { left: 75%; top: 92%; }
.sparkle-70 { left: 88%; top: 22%; }
.sparkle-71 { left: 88%; top: 78%; }
.sparkle-72 { left: 95%; top: 50%; }
.sparkle-73 { left: 8%; top: 38%; }
.sparkle-74 { left: 8%; top: 62%; }
.sparkle-75 { left: 92%; top: 38%; }
.sparkle-76 { left: 92%; top: 62%; }
.sparkle-77 { left: 18%; top: 32%; }
.sparkle-78 { left: 18%; top: 68%; }
.sparkle-79 { left: 82%; top: 32%; }
.sparkle-80 { left: 82%; top: 68%; }
.sparkle-81 { left: 35%; top: 12%; }
.sparkle-82 { left: 35%; top: 88%; }
.sparkle-83 { left: 65%; top: 12%; }
.sparkle-84 { left: 65%; top: 88%; }
.sparkle-85 { left: 42%; top: 6%; }
.sparkle-86 { left: 42%; top: 94%; }
.sparkle-87 { left: 58%; top: 6%; }
.sparkle-88 { left: 58%; top: 94%; }
.sparkle-89 { left: 6%; top: 28%; }
.sparkle-90 { left: 6%; top: 72%; }

/* ????????1??0 ????????????????*/
.sparkle-91 { left: 63.5%; top: 48.8%; }
.sparkle-92 { left: 90.9%; top: 55.6%; }
.sparkle-93 { left: 60%; top: 52.9%; }
.sparkle-94 { left: 86.1%; top: 71.4%; }
.sparkle-95 { left: 60.7%; top: 56.5%; }
.sparkle-96 { left: 74.4%; top: 79.4%; }
.sparkle-97 { left: 57.5%; top: 59.2%; }
.sparkle-98 { left: 65.2%; top: 89%; }
.sparkle-99 { left: 50.7%; top: 60.6%; }
.sparkle-100 { left: 51.5%; top: 88.8%; }
.sparkle-101 { left: 49.5%; top: 60.6%; }
.sparkle-102 { left: 35%; top: 89%; }
.sparkle-103 { left: 45.5%; top: 59.2%; }
.sparkle-104 { left: 25.8%; top: 79.4%; }
.sparkle-105 { left: 39.5%; top: 56.5%; }
.sparkle-106 { left: 16.9%; top: 71.4%; }
.sparkle-107 { left: 42.3%; top: 52.9%; }
.sparkle-108 { left: 9.3%; top: 55.6%; }
.sparkle-109 { left: 39.5%; top: 48.8%; }
.sparkle-110 { left: 12.1%; top: 44.6%; }
.sparkle-111 { left: 39.5%; top: 44.7%; }
.sparkle-112 { left: 16.9%; top: 28.8%; }
.sparkle-113 { left: 42.3%; top: 41.1%; }
.sparkle-114 { left: 23%; top: 20.8%; }
.sparkle-115 { left: 45.5%; top: 38.4%; }
.sparkle-116 { left: 37.8%; top: 11.2%; }
.sparkle-117 { left: 46.7%; top: 37%; }
.sparkle-118 { left: 51.5%; top: 11.4%; }
.sparkle-119 { left: 53.5%; top: 37%; }
.sparkle-120 { left: 62.4%; top: 11.2%; }
.sparkle-121 { left: 57.5%; top: 38.4%; }
.sparkle-122 { left: 77.2%; top: 20.8%; }
.sparkle-123 { left: 57.9%; top: 41.1%; }
.sparkle-124 { left: 86.1%; top: 28.8%; }
.sparkle-125 { left: 62.8%; top: 44.7%; }
.sparkle-126 { left: 88.1%; top: 44.6%; }
.sparkle-127 { left: 66.9%; top: 52.9%; }
.sparkle-128 { left: 81.5%; top: 48.8%; }
.sparkle-129 { left: 60%; top: 60.1%; }
.sparkle-130 { left: 77.5%; top: 66.4%; }
.sparkle-131 { left: 55.6%; top: 64.2%; }
.sparkle-132 { left: 63.7%; top: 74.8%; }
.sparkle-133 { left: 47.4%; top: 64.2%; }
.sparkle-134 { left: 51.5%; top: 81.4%; }
.sparkle-135 { left: 37.4%; top: 60.1%; }
.sparkle-136 { left: 36.5%; top: 74.8%; }
.sparkle-137 { left: 38.1%; top: 52.9%; }
.sparkle-138 { left: 22.7%; top: 66.4%; }
.sparkle-139 { left: 40.2%; top: 44.7%; }
.sparkle-140 { left: 21.5%; top: 48.8%; }
.sparkle-141 { left: 44.6%; top: 37.5%; }
.sparkle-142 { left: 25.5%; top: 36.4%; }
.sparkle-143 { left: 55.6%; top: 33.4%; }
.sparkle-144 { left: 33.7%; top: 22.8%; }
.sparkle-145 { left: 62.8%; top: 37.5%; }
.sparkle-146 { left: 51.5%; top: 21.4%; }
.sparkle-147 { left: 63%; top: 44.7%; }
.sparkle-148 { left: 66.5%; top: 22.8%; }
.sparkle-149 { left: 66.9%; top: 51.2%; }
.sparkle-150 { left: 74.7%; top: 36.4%; }
.sparkle-151 { left: 6.5%; top: 48.8%; }
.sparkle-152 { left: 13.5%; top: 20.8%; }
.sparkle-153 { left: 10.7%; top: 76.8%; }
.sparkle-154 { left: 26.5%; top: 9.4%; }
.sparkle-155 { left: 26.5%; top: 90.8%; }
.sparkle-156 { left: 48.7%; top: 3.8%; }
.sparkle-157 { left: 51.5%; top: 93.8%; }
.sparkle-158 { left: 76.5%; top: 9.4%; }
.sparkle-159 { left: 73.7%; top: 90.8%; }
.sparkle-160 { left: 89.5%; top: 20.8%; }
.sparkle-161 { left: 89.5%; top: 76.8%; }
.sparkle-162 { left: 93.7%; top: 51.4%; }
.sparkle-163 { left: 9.5%; top: 36.8%; }
.sparkle-164 { left: 9.5%; top: 60.8%; }
.sparkle-165 { left: 90.7%; top: 36.8%; }
.sparkle-166 { left: 93.5%; top: 63.4%; }
.sparkle-167 { left: 19.5%; top: 30.8%; }
.sparkle-168 { left: 16.7%; top: 66.8%; }
.sparkle-169 { left: 83.5%; top: 30.8%; }
.sparkle-170 { left: 83.5%; top: 69.4%; }
.sparkle-171 { left: 33.7%; top: 10.8%; }
.sparkle-172 { left: 36.5%; top: 86.8%; }
.sparkle-173 { left: 66.5%; top: 10.8%; }
.sparkle-174 { left: 63.7%; top: 89.4%; }
.sparkle-175 { left: 43.5%; top: 4.8%; }
.sparkle-176 { left: 43.5%; top: 92.8%; }
.sparkle-177 { left: 56.7%; top: 4.8%; }
.sparkle-178 { left: 59.5%; top: 95.4%; }
.sparkle-179 { left: 7.5%; top: 26.8%; }
.sparkle-180 { left: 4.7%; top: 70.8%; }

/* ????????/????????????????*/
.sparkle-small {
  width: 3px;
  height: 3px;
  box-shadow:
    0 0 4px rgba(0, 123, 255, 0.8),
    0 0 8px rgba(0, 123, 255, 0.4);
}

@keyframes sparkleRadialOut {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.25);
  }

  15% {
    opacity: 1;
    transform: translate(4px, -18px) scale(1);
  }

  35% {
    opacity: 0.9;
    transform: translate(-6px, -45px) scale(1.08);
  }

  55% {
    opacity: 0.55;
    transform: translate(8px, -75px) scale(1.12);
  }

  75% {
    opacity: 0.25;
    transform: translate(-4px, -105px) scale(0.85);
  }

  100% {
    opacity: 0;
    transform: translate(0, -130px) scale(0.3);
  }
}

/* ?????? sparkleRadialOut ????????????????????*/
@keyframes sparkleRadialIn {
  0% {
    opacity: 0;
    transform: translate(0, -130px) scale(0.3);
  }

  15% {
    opacity: 0.3;
    transform: translate(-4px, -105px) scale(0.85);
  }

  35% {
    opacity: 0.55;
    transform: translate(8px, -75px) scale(1.12);
  }

  55% {
    opacity: 0.9;
    transform: translate(-6px, -45px) scale(1.08);
  }

  75% {
    opacity: 1;
    transform: translate(4px, -18px) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.25);
  }
}

/* ?????? */
.sparkle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 123, 255, 1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: sparkleTwinkle 2s infinite ease-in-out;
}

@keyframes sparkleTwinkle {

  0%,
  100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(0.6);
  }

  25% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.2);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.8);
  }

  75% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.3);
  }
}

.banner-carousel-content {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: min(720px, 85vw);
  padding: 0 clamp(32px, 5vw, 64px);
  pointer-events: none;
  text-align: left;
}

.banner-carousel .banner-title {
  font-size: clamp(24px, 4.5vw, 52px);
  font-weight: bold;
  margin-bottom: clamp(14px, 2vh, 24px);
  color: #e67e22;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  white-space: pre-line;
  word-wrap: break-word;
  overflow-wrap: break-word;
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}

.banner-carousel .banner-subtitle {
  font-size: clamp(14px, 1.8vw, 20px);
  margin-bottom: 0;
  color: #fff;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  white-space: pre-line;
  word-wrap: break-word;
  overflow-wrap: break-word;
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.45s ease-out 0.08s, transform 0.45s ease-out 0.08s;
}

.banner-carousel-content.banner-text-visible .banner-title,
.banner-carousel-content.banner-text-visible .banner-subtitle {
  opacity: 1;
  transform: translateX(0);
}

/* ???????????????????????????????????? */
body.page-index #banner-carousel .banner-carousel-dots {
  position: absolute;
  bottom: clamp(20px, 3.5vh, 36px);
  right: clamp(20px, 3.5vw, 52px);
  left: auto !important;
  width: auto;
  max-width: none;
  margin: 0;
  transform: none !important;
  z-index: 4;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  pointer-events: auto;
}

body.page-index #banner-carousel .banner-dot {
  box-sizing: border-box;
  width: 32px;
  min-width: 32px;
  height: 4px;
  min-height: 4px;
  padding: 0;
  border-radius: 2px;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

body.page-index #banner-carousel .banner-dot:hover {
  background: rgba(255, 255, 255, 0.55);
}

body.page-index #banner-carousel .banner-dot.active {
  background: #e67e22;
  box-shadow: 0 0 12px rgba(230, 126, 34, 0.55);
  opacity: 1;
}

/* ?? Banner ??????????????*/
body.page-index #banner-carousel .banner-corner-float {
  position: absolute;
  left: clamp(16px, 3vw, 40px);
  bottom: clamp(20px, 4vh, 48px);
  z-index: 3;
  pointer-events: none;
  line-height: 0;
}

body.page-index #banner-carousel .banner-corner-float img {
  display: block;
  width: clamp(40px, 5.5vw, 64px);
  height: auto;
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
  animation: bannerCornerBob 2.2s ease-in-out infinite;
}

@keyframes bannerCornerBob {
  0%,
  100% {
    transform: translateY(0);
  }

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

@media (prefers-reduced-motion: reduce) {
  body.page-index #banner-carousel .banner-corner-float img {
    animation: none;
  }
}

.banner-carousel-prev,
.banner-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-carousel-prev:hover,
.banner-carousel-next:hover {
  background: rgba(0, 0, 0, 0.6);
}

.banner-carousel-prev {
  left: 20px;
}

.banner-carousel-next {
  right: 20px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@media (max-width: 768px) {
  .banner.banner-carousel {
    min-height: 100vh;
    height: 100vh;
  }

  .banner-carousel-content {
    padding: 0 clamp(24px, 4vw, 40px);
  }

  .banner-carousel .banner-title {
    font-size: clamp(20px, 5vw, 32px);
  }

  .banner-carousel .banner-subtitle {
    font-size: clamp(12px, 2.5vw, 16px);
  }

  .banner-carousel-prev {
    left: 12px;
  }

  .banner-carousel-next {
    right: 12px;
  }

  .banner-carousel-prev,
  .banner-carousel-next {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  body.page-index #banner-carousel .banner-carousel-dots {
    bottom: 16px;
    right: 16px;
    gap: 6px;
  }

  body.page-index #banner-carousel .banner-dot {
    width: 24px;
    min-width: 24px;
    height: 3px;
    min-height: 3px;
  }

  /* ??????????*/
  .sparkle {
    width: 4px;
    height: 4px;
    box-shadow:
      0 0 6px rgba(0, 123, 255, 0.8),
      0 0 12px rgba(0, 123, 255, 0.5);
  }

  .sparkle-small {
    width: 2px;
    height: 2px;
    box-shadow:
      0 0 3px rgba(0, 123, 255, 0.8),
      0 0 6px rgba(0, 123, 255, 0.4);
  }
}

/* ??????????????????????*/
.home-stats {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.home-stats::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(200, 180, 160, 0.3) 0%, rgba(200, 180, 160, 0.15) 50%, rgba(200, 180, 160, 0.3) 100%);
}

.home-stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 24px;
}

.home-stats-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0;
}

.home-stats-item {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  position: relative;
}

.home-stats-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background: var(--border-color);
}

.home-stats-item-header {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}

.home-stats-item-number {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
}

.home-stats-item-unit {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.home-stats-item-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .home-stats {
    display: none;
  }

  .home-stats-inner {
    padding: 32px 16px;
  }

  .home-stats-list {
    flex-direction: column;
  }

  .home-stats-item:not(:last-child)::after {
    display: none;
  }

  .home-stats-item:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
  }

  .home-stats-item-number {
    font-size: 28px;
  }

  .home-stats-item-unit {
    font-size: 16px;
  }
}

/* ???? */
.features {
  padding: 80px 0;
  background: var(--bg-light);
}

@media (max-width: 768px) {
  .features {
    padding: 36px 0 40px;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* ????????????????10px */
@media (min-width: 768px) {
  .features .container {
    max-width: none;
    padding-left: 10px;
    padding-right: 10px;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-item {
  text-align: center;
  padding: 30px;
  background: var(--bg-color);
  border-radius: 8px;
  transition: all 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f2f7ff;
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(24, 144, 255, 0.12);
}

.feature-icon-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
}

.feature-item:hover .feature-icon {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(24, 144, 255, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.feature-desc {
  color: var(--text-light);
  line-height: 1.8;
}

/* ???????? ? SERVICES???? padding ?????????? 1680px??????24px??*/
.home-services {
  padding: 120px max(48px, calc((100% - 1680px) / 2)) 80px;
  background: linear-gradient(to bottom, #fafafa 0%, #fff 100%);
  overflow: visible;
}

.home-services-header {
  text-align: center;
  margin-bottom: 48px;
}

/* ????????????? .s-tt h5??????/??/?????????????????? */
.home-services-title,
.home-cases-title,
.home-solutions-title,
.home-news-title,
.home-partners-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25em 0.4em;
  font-size: var(--f39);
  font-weight: 700;
  line-height: 1.5;
  color: #333;
  margin-bottom: 12px;
  letter-spacing: 0;
}

.home-services-title-accent,
.home-cases-title-accent,
.home-solutions-title-accent,
.home-news-title-accent,
.home-partners-title-accent {
  color: #26689e;
  font-weight: 700;
  text-transform: uppercase;
}

/* ?????????????.s-tt p */
.home-services-subtitle,
.home-cases-subtitle,
.home-solutions-subtitle,
.home-news-subtitle,
.home-partners-subtitle {
  color: #b9b9b9;
  font-size: var(--f18);
  line-height: 1.5;
  margin-top: 0.05rem;
}

.home-services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 100%;
  margin: 0 auto;
}

.home-section-card {
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

/* ???????? */
.home-section-card[data-type="solution"] {
  background-color: #e8e8e8;
}

.home-section-card[data-type="product"] {
  background-color: #eeeeee;
}

.home-section-card[data-type="news"] {
  background-color: #e8e8e8;
}

.home-section-card:hover,
.home-section-card.is-hovered {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

/* ??????????????????????1/3)??(2/3) */
.home-section-card-top {
  position: relative;
  min-height: 160px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(38 104 158);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-color 0.3s ease;
}

.home-section-card:hover .home-section-card-top,
.home-section-card.is-hovered .home-section-card-top {
  background-color: rgb(222 173 84) !important;
  background-image: none !important;
}

/* ????????????????1/3 */
.home-section-card-top-img {
  flex: 0 0 0;
  width: 0;
  min-height: 0;
  overflow: hidden;
  position: relative;
  background-color: transparent;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: none;
}

.home-section-card:hover .home-section-card-top-img,
.home-section-card.is-hovered .home-section-card-top-img {
  flex: 0 0 33.333%;
  width: 33.333%;
  min-height: 160px;
  background-color: rgb(222 173 84);
}

.home-section-card-top-img .home-section-card-top-mask {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
}

.home-section-card-top-mask {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.home-section-card:hover .home-section-card-top > .home-section-card-top-mask,
.home-section-card.is-hovered .home-section-card-top > .home-section-card-top-mask {
  opacity: 0;
}

/* ??????????????????????*/
.home-section-card:hover .home-section-card-top-img .home-section-card-top-mask,
.home-section-card.is-hovered .home-section-card-top-img .home-section-card-top-mask {
  opacity: 0;
}

.home-section-card-top-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  text-align: center;
  transition: none;
}

.home-section-card:hover .home-section-card-top-inner,
.home-section-card.is-hovered .home-section-card-top-inner {
  flex: 0 0 66.666%;
  text-align: left;
  padding-left: 20px;
}

.home-section-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.home-section-card-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  margin-bottom: 16px;
}

.home-section-card-more {
  display: none;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}

.home-section-card-more:hover {
  color: #fff;
  text-decoration: underline;
}

/* ?????? */
.home-section-card-bottom {
  padding: 0 24px 20px;
  transition: background-color 0.3s ease-in-out;
  position: relative;
  min-height: 200px;
}

/* ??????????????? #eeeeee */
.home-section-card[data-type="product"] .home-section-card-bottom {
  background-color: #eeeeee;
}

/* ?????????????????? #e8e8e8 */
.home-section-card[data-type="solution"] .home-section-card-bottom,
.home-section-card[data-type="news"] .home-section-card-bottom {
  background-color: #e8e8e8;
}

/* ????????????*/
.home-section-card:hover .home-section-card-bottom,
.home-section-card.is-hovered .home-section-card-bottom {
  background-color: #ffffff !important;
}

/* ?????????????????? */
.home-section-card-list-view {
  display: block;
}
.home-section-card-grid-view {
  display: none;
}
.home-section-card:hover .home-section-card-list-view,
.home-section-card.is-hovered .home-section-card-list-view {
  display: none;
}
.home-section-card:hover .home-section-card-grid-view,
.home-section-card.is-hovered .home-section-card-grid-view {
  display: block;
}

.home-section-card-categories {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-section-card-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 0;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: color 0.2s, padding-left 0.2s;
}

.home-section-card-cat:last-child {
  border-bottom: none;
}

.home-section-card-cat:hover {
  color: var(--primary-color);
  padding-left: 6px;
}

.home-section-card-cat-arrow {
  color: #999;
  font-size: 14px;
}

/* ?????? + 3x2 ???? */
.home-section-card-desc {
  font-size: var(--f16);
  line-height: 1.85;
  color: #8c8c8c;
  text-align: left;
  margin: 0 0 21px;
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.home-section-card-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.home-section-card-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 10px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-size: 13px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.home-section-card-icon-item:hover {
  border-color: rgba(192, 57, 43, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  color: var(--primary-color, #c0392b);
}

.home-section-card-icon-item--nolink {
  cursor: default;
}

.home-section-card-icon-item--nolink:hover {
  border-color: #eee;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  color: #333;
}

.home-section-card-icon-item-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-section-card-icon-item-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.home-section-card-icon-item-icon-placeholder {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 6px;
}

.home-section-card-icon-item-text {
  line-height: 1.35;
  word-break: break-all;
}

/* ?????????? */
.home-section-card-grid-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 14px 0 4px;
}

.home-section-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}

.home-section-card-dot:hover {
  border-color: var(--primary-color, #c0392b);
  background: rgba(192, 57, 43, 0.3);
}

.home-section-card-dot.active {
  background: var(--primary-color, #c0392b);
  border-color: var(--primary-color, #c0392b);
}

@media (max-width: 900px) {
  .home-services-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .home-section-card-top {
    min-height: 140px;
  }
}

@media (max-width: 768px) {
  .home-services {
    display: none;
  }
}

@media (max-width: 600px) {
  .home-services {
    padding: 80px 16px 60px;
  }

  .home-section-card-top {
    padding: 22px 18px;
  }

  .home-section-card-bottom {
    padding: 0 18px 18px;
  transition: background-color 0.3s ease-in-out;
}

/* ??????????*/
.home-section-card:hover .home-section-card-bottom,
.home-section-card.is-hovered .home-section-card-bottom {
  background-color: #ffffff;
  }

  .home-section-card-title {
    font-size: 18px;
  }
}

/* ???????? SERVICES ??????*/
.home-partners {
  padding: 60px max(48px, calc((100% - 1680px) / 2)) 80px;
  background: #fff;
  overflow: hidden;
}

.home-partners-header {
  text-align: center;
  margin-bottom: 40px;
}

/* ????????PRODUCTS????SERVICES ??????*/
.home-cases {
  padding: 60px max(48px, calc((100% - 1680px) / 2)) 80px;
  background: #fff;
}

.home-cases-header {
  text-align: center;
  margin-bottom: 32px;
}

.home-cases-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.home-cases-tab {
  font-size: 15px;
  color: #333;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}

.home-cases-tab:hover {
  color: #c0392b;
}

.home-cases-tab.active {
  color: #c0392b;
  font-weight: 500;
}

.home-cases-tab.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  height: 3px;
  background: #c0392b;
}

.home-cases-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 29px;
  max-width: 100%;
  margin: 0 auto;
}

/* ??????????????????3??????????2????????3????????0??2??*/
.home-cases-card:nth-child(10n+1),
.home-cases-card:nth-child(10n+2) {
  grid-column: span 3;
}

.home-cases-card:nth-child(10n+3),
.home-cases-card:nth-child(10n+4),
.home-cases-card:nth-child(10n+5) {
  grid-column: span 2;
}

.home-cases-card:nth-child(10n+6),
.home-cases-card:nth-child(10n+7) {
  grid-column: span 3;
}

.home-cases-card:nth-child(10n+8),
.home-cases-card:nth-child(10n+9),
.home-cases-card:nth-child(10n+10) {
  grid-column: span 2;
}

.home-cases-card {
  position: relative;
  display: block;
  height: 336px;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.home-cases-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.home-cases-card-bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #2c3e50;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.home-cases-card:hover .home-cases-card-bg {
  transform: scale(1.12);
  filter: blur(5px);
}

.home-cases-card-mask {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

/* ??????????logo */
main.products-page .home-cases-card .home-cases-card-logo {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  width: 86px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
  pointer-events: none;
}

.home-cases-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  transition: transform 0.4s ease;
}

.home-cases-card:hover .home-cases-card-content {
  transform: scale(0.96);
  transform-origin: bottom center;
}

.home-cases-card-title {
  font-size: 18px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.home-cases-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #999;
  padding: 48px 0;
}

@media (max-width: 768px) {
  .home-services-title,
  .home-cases-title,
  .home-solutions-title,
  .home-news-title,
  .home-partners-title {
    font-size: clamp(22px, 5.5vw, var(--f39));
  }

  .home-services-subtitle,
  .home-cases-subtitle,
  .home-solutions-subtitle,
  .home-news-subtitle,
  .home-partners-subtitle {
    font-size: 15px;
  }

  .home-cases {
    padding: 40px 16px 60px;
  }

  .home-cases-filter {
    gap: 6px 16px;
    margin-bottom: 28px;
  }

  .home-cases-tab {
    font-size: 14px;
  }

  /* ????????????????????*/
  .home-cases-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-cases-card:nth-child(10n+1),
  .home-cases-card:nth-child(10n+2),
  .home-cases-card:nth-child(10n+3),
  .home-cases-card:nth-child(10n+4),
  .home-cases-card:nth-child(10n+5),
  .home-cases-card:nth-child(10n+6),
  .home-cases-card:nth-child(10n+7),
  .home-cases-card:nth-child(10n+8),
  .home-cases-card:nth-child(10n+9),
  .home-cases-card:nth-child(10n+10) {
    grid-column: span 1;
  }

  .home-cases-card {
    height: 220px;
  }

  .home-cases-card-title {
    font-size: 15px;
  }
}

/* ??????????SOLUTION??????SERVICES ??????*/
.home-solutions {
  padding: 60px max(48px, calc((100% - 1680px) / 2)) 80px;
  background: linear-gradient(to bottom, #fff 60px, transparent 60px),
    #f2f2f2 url(../src/static/home/solutions-bg.jpg) center center / cover no-repeat;
}

.home-solutions-header {
  text-align: center;
  margin-bottom: 40px;
  background: #fff;
  padding: 32px 48px;
  margin-left: -48px;
  margin-right: -48px;
}

.home-solutions-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}

.home-solutions-dots-bg {
  position: absolute;
  left: 86px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 360px;
  background-image: radial-gradient(circle, #ccc 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  background-position: 0 0;
  pointer-events: none;
  z-index: 0;
}

.home-solutions-prev {
  flex-shrink: 0;
  order: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #e0e0e0;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.home-solutions-next {
  flex-shrink: 0;
  order: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #e0e0e0;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.home-solutions-prev:hover,
.home-solutions-next:hover {
  background: #c0392b;
  color: #fff;
}

.home-solutions-prev span,
.home-solutions-next span {
  display: block;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.home-solutions-viewport {
  flex: 1;
  min-width: 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  order: 2;
  container-type: inline-size;
  container-name: solutions-viewport;
}

.home-solutions-track {
  display: flex;
  gap: 58px;
  width: max-content;
  transition: transform 0.35s ease-out;
}

@container solutions-viewport (min-width: 1px) {
  .home-solutions-card {
    flex: 0 0 calc((100cqw - 58px) / 2 );
    max-width: calc((100cqw - 58px) / 2 );
    aspect-ratio: 781 / 461;
  }
}

.home-solutions-card {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s, transform 0.3s;
}

.home-solutions-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.home-solutions-card-img {
  flex: 0 0 42%;
  min-height: 0;
  background-color: #2c3e50;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px 0 0 12px;
}

.home-solutions-card-body {
  flex: 1;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.home-solutions-card-title {
  font-size: var(--f26);
  font-weight: 600;
  color: #343333;
  margin: 0 0 24px;
  line-height: 1.5em;
  height: 3em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 98%;
}

.home-solutions-card-desc {
  font-size: var(--f16);
  color: #5f6368;
  line-height: 2em;
  margin-top: 0.1rem;
  margin-bottom: 24px;
  height: 4em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-solutions-card-footer-wrap {
  margin-top: auto;
  height: 33.333%;
  min-height: 144px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.home-solutions-card-hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 0;
  flex-shrink: 0;
}

.home-solutions-card-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  flex: 1;
  min-height: 0;
}

.home-solutions-card-tag-label {
  font-size: 16.8px;
  line-height: 1.5;
  color: #9ea1ab;
}

.home-solutions-card-tag {
  font-size: var(--f16);
  line-height: 1.5;
  color: #000000;
  font-weight: 500;
  margin-bottom: 0.03rem;
}

.home-solutions-card-cta {
  display: flex;
  align-items: center;
  gap: var(--f16);
  margin-left: auto;
  font-size: var(--f16);
  color: #000000;
  font-weight: 500;
}

.home-solutions-card:hover .home-solutions-card-cta {
  color: #c0392b;
}

.home-solutions-empty {
  width: 100%;
  text-align: center;
  color: #999;
  padding: 48px 0;
}

@media (max-width: 768px) {
  .home-solutions {
    display: none;
  }
}

/* ?????????NEWS???? padding ?????????? 1680px??????24px??*/
.home-news {
  padding: clamp(72px, 8vw, 120px) max(48px, calc((100% - 1680px) / 2)) clamp(48px, 5vw, 80px);
  background: #fff url(../src/static/home/news-bg.jpg) center center / cover no-repeat;
}

.home-news-header {
  text-align: center;
  margin-bottom: 32px;
}

.home-news-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.home-news-tab {
  font-size: 15px;
  color: #333;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}

.home-news-tab:hover {
  color: #c0392b;
}

.home-news-tab.active {
  color: #c0392b;
  font-weight: 500;
}

.home-news-tab.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  height: 3px;
  background: #c0392b;
}

.home-news-grid {
  display: flex;
  /* ????????????3 ????= 3 * var(--home-news-grid-gap) */
  --home-news-grid-gap: clamp(20px, 2.5vw, 44px);
  gap: var(--home-news-grid-gap);
  max-width: 100%;
  margin: 0 auto 40px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.home-news-card {
  flex: 0 0 calc((100% - 3 * var(--home-news-grid-gap)) / 4);
  min-width: 0;
  width: calc((100% - 3 * var(--home-news-grid-gap)) / 4);
  aspect-ratio: 368 / 462;
  height: auto;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}

.home-news-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.home-news-more-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.home-news-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.home-news-arrow:hover {
  background: #f5f5f5;
  color: #c0392b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.home-news-card-img-wrap {
  width: 100%;
  aspect-ratio: 368 / 200;
  height: auto;
  flex-shrink: 0;
  overflow: hidden;
  background: #f0f0f0;
}

.home-news-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-news-card-body {
  padding: 20px;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.home-news-card-date {
  font-size: 13px;
  color: #999;
  margin-bottom: 10px;
}

.home-news-card-title {
  font-size: var(--f22);
  font-weight: 700;
  color: #333;
  line-height: 1.6em;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  font-size: 13px;
  color: #999;
  position: relative;
  padding-top: 12px;
}

.home-news-card-footer::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -4px;
  height: 1px;
  background: #ddd;
}

.home-news-card-views {
  color: #999;
}

.home-news-card-link {
  color: #999;
  text-decoration: none;
}

.home-news-card:hover .home-news-card-link {
  color: #c0392b;
}

.home-news-more-bar {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}

.home-news-more-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 32px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #666;
  font-size: 15px;
  transition: border-color 0.2s, color 0.2s;
}

.home-news-more-link:hover {
  border-color: #c0392b;
  color: #c0392b;
}

.home-news-more-prev,
.home-news-more-next {
  font-size: 18px;
  font-weight: 600;
}

.home-news-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #999;
  padding: 48px 0;
}

@media (max-width: 768px) {
  .home-news {
    padding: clamp(48px, 14vw, 80px) 16px 60px;
  }

  .home-news-filter {
    gap: 6px 16px;
    margin-bottom: 28px;
  }

  .home-news-tab {
    font-size: 14px;
  }

  /* ????????????flex ?? + grid ??????column??*/
  .home-news-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
    max-width: 100%;
    overflow: visible;
    scroll-behavior: auto;
  }

  .home-news-grid .home-news-card:nth-child(n+5) {
    display: flex;
  }

  .home-news-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    flex-direction: row;
    align-items: stretch;
    background: #f5f5f5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }

  .home-news-arrow-prev,
  .home-news-arrow-next {
    display: none;
  }

  .home-news-card-img-wrap {
    display: none;
  }

  .home-news-card-body {
    padding: 16px 20px;
    flex: 1;
    min-height: 0;
  }

  .home-news-card-date {
    order: 2;
    margin-bottom: 0;
    margin-top: 8px;
    font-size: 13px;
    color: #666;
  }

  .home-news-card-title {
    order: 1;
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    -webkit-line-clamp: 2;
  }

  .home-news-card-footer {
    display: none;
  }
}

/* ????????????????CTA ??*/
.home-ready {
  padding: 80px 24px 100px;
  background: #fff;
}

.home-ready-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.home-ready-title {
  font-size: 64px;
  font-weight: 700;
  color: #333;
  margin: 0 0 28px;
  line-height: 1.3;
}

.home-ready-desc {
  font-size: 32px;
  color: #666;
  line-height: 1.8;
  margin: 0 0 48px;
}

.home-ready-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.home-ready-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: #333;
}

.home-ready-btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 32px;
  color: #333;
  text-decoration: none;
  border: 1px solid #333;
  border-radius: 6px;
  background: #fff;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.home-ready-btn:hover {
  background: #333;
  color: #fff;
}

@media (max-width: 768px) {
  .home-ready {
    padding: 56px 16px 72px;
  }

  .home-ready-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .home-ready-desc {
    font-size: 14px;
    margin-bottom: 36px;
  }

  .home-ready-btn {
    padding: 12px 28px;
    font-size: 15px;
  }
}

.home-partners-marquee {
  overflow: hidden;
  width: 100%;
  margin-bottom: 16px;
}

.home-partners-marquee:last-child {
  margin-bottom: 0;
}

.home-partners-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  padding: 0 24px;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.home-partners-row1 .home-partners-track {
  animation-name: home-partners-marquee-left;
  animation-duration: 20s;
}

.home-partners-row2 .home-partners-track {
  animation-name: home-partners-marquee-right;
  animation-duration: 20s;
}

@keyframes home-partners-marquee-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes home-partners-marquee-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.home-partners-item {
  flex-shrink: 0;
  width: 300px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 28px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s;
}

.home-partners-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.home-partners-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 600px) {
  .home-partners {
    padding: 40px 16px 60px;
  }

  .home-partners-item {
    width: 240px;
    height: 120px;
    padding: 14px 20px;
  }
}

/* ???? */
.btn-primary {
  padding: 15px 40px;
  font-size: 16px;
  border-radius: 25px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(24, 144, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateX(0) translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 144, 255, 0.4);
  background: #40a9ff;
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 50px;
  font-size: 16px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 30px;
}

/* ??????????781:461 ????????????min-height */
main.solutions-page .home-solutions-card {
  aspect-ratio: 781 / 461;
}

main.solutions-page .home-solutions-card-img,
main.solutions-page .home-solutions-card-body {
  min-height: 0;
}

/* ?????????????????????? aspect-ratio ??min-height ?? */

/* ?????????????????????????? */
main.products-page .solutions-grid.home-cases-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 29px;
  max-width: 1680px;
  margin: 0 auto;
}

main.products-page .solutions-grid .solution-card:nth-child(5n+1),
main.products-page .solutions-grid .solution-card:nth-child(5n+2) {
  grid-column: span 3;
}

main.products-page .solutions-grid .solution-card:nth-child(5n+3),
main.products-page .solutions-grid .solution-card:nth-child(5n+4),
main.products-page .solutions-grid .solution-card:nth-child(5n+5) {
  grid-column: span 2;
}

/* ????????& ????????????????????height:336px??   ?????span 3?? 796:388??????span 2?? 520:388 */
#home-cases .home-cases-grid .home-cases-card,
main.products-page .home-cases-grid .home-cases-card {
  height: auto;
}

/* ??????? 1,2,6,7?? 10 ???? */
#home-cases .home-cases-grid .home-cases-card:nth-child(10n+1),
#home-cases .home-cases-grid .home-cases-card:nth-child(10n+2),
#home-cases .home-cases-grid .home-cases-card:nth-child(10n+6),
#home-cases .home-cases-grid .home-cases-card:nth-child(10n+7),
main.products-page .home-cases-grid .home-cases-card:nth-child(10n+1),
main.products-page .home-cases-grid .home-cases-card:nth-child(10n+2),
main.products-page .home-cases-grid .home-cases-card:nth-child(10n+6),
main.products-page .home-cases-grid .home-cases-card:nth-child(10n+7) {
  aspect-ratio: 796 / 388;
}

/* ??????? 3,4,5,8,9,10 */
#home-cases .home-cases-grid .home-cases-card:nth-child(10n+3),
#home-cases .home-cases-grid .home-cases-card:nth-child(10n+4),
#home-cases .home-cases-grid .home-cases-card:nth-child(10n+5),
#home-cases .home-cases-grid .home-cases-card:nth-child(10n+8),
#home-cases .home-cases-grid .home-cases-card:nth-child(10n+9),
#home-cases .home-cases-grid .home-cases-card:nth-child(10n+0),
main.products-page .home-cases-grid .home-cases-card:nth-child(10n+3),
main.products-page .home-cases-grid .home-cases-card:nth-child(10n+4),
main.products-page .home-cases-grid .home-cases-card:nth-child(10n+5),
main.products-page .home-cases-grid .home-cases-card:nth-child(10n+8),
main.products-page .home-cases-grid .home-cases-card:nth-child(10n+9),
main.products-page .home-cases-grid .home-cases-card:nth-child(10n+0) {
  aspect-ratio: 520 / 388;
}

/* ????????????????????? */
main.products-page .product-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

main.products-page .product-card .solution-card-img-wrap {
  flex: 1 1 100%;
  min-height: 260px;
}

main.products-page .product-card .product-card-name {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 16px 20px;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  z-index: 1;
  transition: transform 0.3s ease;
}

main.products-page .product-card:hover .solution-card-img-wrap .solution-img {
  filter: blur(3px);
  transform: scale(1.02);
}

main.products-page .product-card .solution-card-img-wrap .solution-img {
  transition: filter 0.3s ease, transform 0.3s ease;
}

main.products-page .product-card:hover .product-card-name {
  transform: translateX(10px);
}

.solution-card {
  display: flex;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s, transform 0.3s;
}

.solution-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.solution-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.solution-card-link .solution-link {
  color: #1a1a1a;
}

.solution-card-link:hover .solution-link {
  color: #1890ff;
}

.solution-card-img-wrap {
  flex: 0 0 40%;
  min-width: 0;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  background: #f5f5f5;
}

.solution-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.solution-content {
  flex: 1;
  min-width: 0;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
}

.solution-title {
  font-size: 32.4px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #1a1a1a;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.solution-desc {
  font-size: 25.2px;
  color: #666;
  line-height: 1.65;
  margin: 0 0 14px 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.solution-link {
  align-self: flex-end;
  margin-top: auto;
  font-size: 25.2px;
  color: #1a1a1a;
  font-weight: 500;
}

.solution-link:hover {
  color: #1890ff;
}

/* ?????????????????????????????????????? */
main.products-page {
  position: relative;
  background: #fff;
}

main.products-page::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 72vh;
  z-index: 0;
  background: linear-gradient(to bottom, #7b9aa8 0%, #9ab0ba 18%, #b8c9d0 38%, #d4e0e5 58%, #e8eef1 78%, #fff 100%);
}

main.products-page::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 72vh;
  z-index: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255, 255, 255, 0.06) 40px,
    rgba(255, 255, 255, 0.06) 41px
  );
  pointer-events: none;
}

main.products-page > .products-hero,
main.products-page > .products-content-wrap {
  position: relative;
  z-index: 1;
}

/* ????????????????????????????????? */
main.products-page .products-hero-inner,
main.products-page .products-content-wrap {
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* ????products-content-wrap ?????????????? */
main.products-page .products-hero-categories {
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

main.products-page .products-content-wrap {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* ???? Hero?????????????? */
.products-hero {
  width: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
  overflow: visible;
}

.products-hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 288px;
  padding-bottom: 0;
}

.products-hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.products-hero-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.12em;
  margin: 0 0 auto 0;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.products-hero-categories {
  margin-top: auto;
  padding-top: 32px;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
}

.products-category-bar {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 12px 16px;
  background: #f9f9f9;
  border-radius: 8px;
}

/* products ??????????? .category-filter ??????????*/
main.products-page .products-hero-categories {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

main.products-page .products-category-bar.category-filter {
  width: 100% !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 0 !important;
  margin: 0 !important;
  margin-top: 0 !important;
  padding: 12px 16px !important;
  background: #f9f9f9 !important;
  border-radius: 8px !important;
  box-sizing: border-box;
}

.products-category-bar .category-item {
  display: inline-flex;
  align-items: center;
  padding: 14px 22px;
  background: #f8f8f8;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.products-category-bar .category-item:hover {
  background: #eee;
  color: #333;
}

.products-category-bar .category-item.active {
  background: #e60012;
  color: #fff;
}

.products-category-bar .category-item.active:hover {
  background: #cc0010;
  color: #fff;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
}

.category-item {
  padding: 10px 24px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
  color: #666;
}

.category-item:hover {
  border-color: #1890ff;
  color: #1890ff;
}

.category-item.active {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}

/* ??????????????space-between????????????*/
.solutions-page #solution-category-filter.category-filter {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}

.solutions-page #solution-category-filter.category-filter .category-item {
  flex: 0 1 auto;
  white-space: nowrap;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: var(--bg-color);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-color);
}

.card-text {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

/* ????????????????????????????*/
main.news-page .news-grid .home-news-card {
  width: 100%;
  flex: none;
}

/* ??????????????= 368:462????????200 */
main.news-page .news-grid .home-news-card {
  aspect-ratio: 368 / 462 !important;
  height: auto !important;
}
main.news-page .news-grid .home-news-card .home-news-card-img-wrap {
  aspect-ratio: 368 / 200 !important;
  height: auto !important;
}
main.news-page .news-grid .home-news-card .home-news-card-title {
  font-size: var(--f22);
  line-height: 1.6em;
  -webkit-line-clamp: 2;
}

/* ??????????????????????????+??/?? */
.news-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s, transform 0.25s;
  border: none;
}

.news-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.news-card:focus {
  outline: none;
}

.news-card:focus-visible {
  outline: 2px solid #1890ff;
  outline-offset: 2px;
}

.news-card,
.news-card * {
  text-decoration: none;
}

.news-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eee;
}

.news-card-tag {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 4px 10px;
  background: #d71318;
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
  border-radius: 0 0 4px 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.news-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card-body {
  background: #fff;
  padding: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.news-card-date {
  font-size: 13px;
  color: #999;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.news-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #333;
  margin: 0 0 14px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #999;
  margin-top: auto;
  flex-shrink: 0;
  border-top: 1px solid #000;
  padding-top: 14px;
}

.news-card-read {
  flex-shrink: 0;
}

.news-card-link:hover {
  color: #1890ff;
}

/* ???? */
.list-pagination {
  margin-top: 40px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.list-pagination .pagination-btn,
.list-pagination .pagination-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--bg-color);
  color: var(--text-color);
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.list-pagination .pagination-btn:hover:not(:disabled),
.list-pagination .pagination-num:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.list-pagination .pagination-num.active {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: #fff;
}

.list-pagination .pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.list-pagination .pagination-ellipsis {
  padding: 0 4px;
  color: var(--text-light);
}

.news-item {
  display: flex;
  gap: 20px;
  background: var(--bg-color);
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.news-item.news-card {
  display: block;
  padding: 0;
  gap: 0;
  background: #f8f8f8;
}

.news-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateX(5px);
}

.news-item.news-card:hover {
  transform: translateY(-2px);
}

.news-img-wrap {
  width: 200px;
  height: 140px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

/* ??????????????*/
.news-detail-cover-wrap {
  margin: 30px 0;
  overflow: visible;
  line-height: 0;
}

.news-detail-cover-wrap .news-detail-cover {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 12px;
}

/* ????????????????*/
.solution-detail-cover-wrap {
  margin: 30px 0;
  overflow: visible;
  line-height: 0;
}

.solution-detail-cover-wrap .solution-detail-cover {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 12px;
}

.news-content {
  flex: 1;
  min-width: 0;
}

.news-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}

.news-title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-date {
  color: var(--text-light);
  font-size: 12px;
  margin-bottom: 8px;
}

.news-summary {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ??????Banner???????????????????????????*/
.contact-banner {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.contact-banner-bg {
  position: absolute;
  inset: 0;
  background-color: #1a2332;
  background-image: url(../src/static/contact/banner-placeholder.jpg);
  background-size: cover;
  background-position: center;
}

.contact-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
}

.contact-banner-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 48px 0 56px;
}

.contact-banner-text {
  text-align: left;
}

.contact-banner-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.contact-banner-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ?????????????? .n-contact .lxhead h5 ???--f42??? 1.5???? */
.contact-header {
  text-align: center;
  padding: 40px max(48px, calc((100% - 1680px) / 2)) 24px;
  box-sizing: border-box;
}

.contact-company-name {
  font-size: var(--f42);
  line-height: 1.5;
  font-weight: 700;
  color: #111;
  margin: 0 0 12px 0;
}

/* ???? .n-contact .lxhead p ???--f16??? 1.5?position ??????? */
.contact-tagline {
  font-size: var(--f16);
  line-height: 1.5;
  position: relative;
  color: #666;
  margin: 0;
  padding: 0;
}

/* ????????????????????????????? */
.contact-container {
  padding: 0 max(48px, calc((100% - 1680px) / 2)) 60px;
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* ??????????????*/
.contact-address-section {
  padding: 48px 0 72px;
}

/* ????.container.contact-container ?????????? */
.contact-address-section .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 80%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.contact-address-title {
  margin: 0 0 28px;
  font-size: 42px;
  line-height: 1.2;
  color: #111;
  font-weight: 700;
  text-align: center;
}

.contact-address-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  /* ????????????????? */
  transform: translateZ(0);
  backface-visibility: hidden;
  /* ????????????????????????? */
  filter: contrast(1.06) saturate(1.02);
  image-rendering: auto;
}

/* ????????? 30%????? 70%??????????????????? */
.contact-address-map-wrap {
  position: relative;
  width: 70%;
  max-width: 100%;
  margin: 0 auto;
}

.contact-address-overlay-card {
  position: absolute;
  top: 56px;
  left: 54%;
  transform: translateX(-50%);
  width: min(86%, 520px);
  background: rgba(255, 255, 255, 0.96);
  padding: 18px 20px 16px;
  box-sizing: border-box;
}

.contact-address-overlay-card h3 {
  margin: 0 0 10px;
  font-size: 32px;
  line-height: 1.25;
  color: #111;
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 2px solid #444;
}

.contact-address-overlay-card p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: #555;
}

.contact-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-card-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ????????????flex??px ????080808??6px???????? 400 ?? */
.contact-card-left .contact-row {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--f16);
  line-height: 1.5;
  color: #080808;
}

.contact-card-left .contact-row .contact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.contact-card-left .contact-row .contact-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.contact-card-left .contact-row .contact-label {
  flex-shrink: 0;
  color: #080808;
}

.contact-card-left .contact-row .contact-value {
  color: #080808;
}

/* ????????????????????????*/
#contact-project-phones,
#contact-aftersales-phone {
  font-weight: 700;
}

/* ????400 ????????????*/
.contact-hotline {
  flex-wrap: nowrap;
  align-items: center;
  gap: 5px;
  min-width: 0;
}

.contact-hotline .contact-label {
  flex-shrink: 0;
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .contact-hotline {
    flex-wrap: wrap;
  }
}

.contact-phone-hotline {
  font-size: 52px;
  font-weight: bold;
  color: #c53030;
  text-decoration: none;
  letter-spacing: 2px;
}

.contact-phone-hotline:hover {
  text-decoration: underline;
}

.contact-card-left .contact-service-row {
  align-items: flex-start;
}

.contact-card-left .contact-service-row .contact-label {
  margin-top: 2px;
}

.contact-service-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-service-btn {
  padding: 16px 32px;
  background: #f0f0f0;
  border-radius: 8px;
  font-size: 26px;
  color: #333;
  cursor: default;
  transition: background 0.2s;
}

.contact-service-btn:hover {
  background: #e5e5e5;
}

/* ?????????????????????*/
.contact-card-right {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
}

.contact-wechat-block {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 18px;
  flex: 1 1 0;
  min-width: 0;
}

.contact-qr-wrap {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 5px;
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-qr {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-wechat-text {
  flex: 1;
  min-width: 0;
}

/* ????? h6???? */
.contact-wechat-title {
  color: #434343;
  font-size: var(--f22);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.05rem;
}

.contact-wechat-text p {
  color: #a0a0a0;
  font-size: var(--f16);
  line-height: 1.625em;
  margin: 0 0 4px 0;
}

.contact-wechat-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .contact-container {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-address-section .container {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 28px;
  }

  .contact-card-right {
    flex-direction: column;
    gap: 24px;
  }

  .contact-card-left .contact-row {
    font-size: var(--f16);
    gap: 5px;
  }

  .contact-card-left .contact-row .contact-icon {
    width: 22px;
    height: 22px;
  }

  .contact-card-left .contact-row .contact-icon img {
    width: 18px;
    height: 18px;
  }

  .contact-phone-hotline {
    font-size: 28px;
  }

  /* ?????????????????????*/
  .contact-wechat-block {
    flex: none;
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .contact-qr-wrap {
    width: 100px;
    height: 100px;
  }

  .contact-wechat-title {
    font-size: var(--f22);
  }

  .contact-header {
    padding: 28px 16px 20px;
  }

  .contact-company-name {
    font-size: 22px;
  }

  .contact-tagline {
    font-size: 13px;
  }

  .contact-banner {
    min-height: 60vh;
  }

  .contact-banner-content {
    padding: 32px 0 40px;
  }

  .contact-banner-title {
    font-size: 28px;
  }

  .contact-banner-subtitle {
    font-size: 16px;
  }
}

/* ???? */
.pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.pagination-btn {
  padding: 8px 16px;
  border: 1px solid #e8e8e8;
  background: #fff;
  color: #333;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
}

.pagination-btn:hover:not(:disabled) {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.pagination-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-ellipsis {
  padding: 8px 4px;
  color: #999;
}

/* ????????????????About ????*/
.about-page {
  flex: 1;
  background: #fff;
  min-height: 100vh;
}

/* ?? Banner */
.about-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.about-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #1a365d 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-banner-bg.has-image {
  background-color: #1a365d;
}

.about-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.about-banner-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 20px 70px;
}

.about-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.about-banner-left {
  flex: 1;
  min-width: 0;
}

.about-banner-title {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 12px 0;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.about-banner-title-line {
  width: 60px;
  height: 4px;
  background: #e74c3c;
  margin: 0 0 24px 0;
  border-radius: 2px;
}

.about-banner-subtitle {
  font-size: 20px;
  opacity: 0.95;
  margin: 0 0 20px 0;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.about-banner-body {
  font-size: 15px;
  line-height: 1.9;
  opacity: 0.92;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  white-space: pre-wrap;
  max-width: 640px;
}

.about-banner-right {
  flex-shrink: 0;
  width: 320px;
}

.about-banner-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}

.about-banner-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.about-banner-stat-num {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.about-banner-stat-unit {
  font-size: 18px;
  font-weight: 600;
  opacity: 0.95;
  margin-left: 2px;
}

.about-banner-stat-label {
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.4;
}

.about-hero-title {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 20px 0;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.about-hero-sub {
  font-size: 20px;
  opacity: 0.95;
  margin: 0 0 36px 0;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.about-hero-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #e67e22;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s;
}

.about-hero-btn:hover {
  background: #d35400;
  color: #fff;
  transform: translateY(-2px);
}

.about-hero-phone {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 1px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ?? section */
.about-section {
  padding: 70px 0;
  position: relative;
  background: #fff;
}

.about-section-light {
  background: #fafafa;
}

/* ???? ??????????????+2?3 ???? */
.about-values-head {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  line-height: 1.35;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px 4px;
}

#values .about-section-head-highlight {
  color: rgb(38 104 158);
}

.about-values-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #e74c3c;
  border-radius: 50%;
  margin-left: 4px;
}

.about-values-sub {
  font-size: 16px;
  color: #666;
  text-align: left;
  margin: 0 0 32px 0;
  line-height: 1.7;
}

.about-values-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.about-values-big {
  flex: 0 0 calc(50% - 12px);
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 0;
}

.about-values-big .about-values-card-bg {
  position: absolute;
  inset: 0;
}

.about-values-big .about-values-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-values-big:hover .about-values-card-bg img {
  transform: scale(1.06);
}

.about-values-big .about-values-card-overlay {
  position: absolute;
  inset: 0;
  /* ??????????????????????*/
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.72) 28%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.08) 78%,
    transparent 100%
  );
  transition: opacity 0.3s ease;
}

.about-values-big:hover .about-values-card-overlay {
  opacity: 1;
}

.about-values-big .about-values-card-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-values-quad {
  flex: 0 0 calc(50% - 12px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-values-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-values-card-bg {
  position: absolute;
  inset: 0;
}

.about-values-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-values-card:hover .about-values-card-bg img {
  transform: scale(1.06);
}

.about-values-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.72) 28%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.08) 78%,
    transparent 100%
  );
  transition: opacity 0.3s ease;
}

.about-values-card:hover .about-values-card-overlay {
  opacity: 1;
}

.about-values-card-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-values-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.about-values-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* ???????????????? */
#values .about-values-card-bg img,
#values .about-values-big .about-values-card-bg img {
  filter: brightness(0.9);
}

.about-section-gray {
  background: #f0f2f5;
}

/* ??????????????????????????*/
.about-section-timeline {
  position: relative;
  overflow: hidden;
}

.about-section-timeline-bg {
  position: absolute;
  inset: 0;
  background-color: #e8ecf1;
  background-image: url(../src/static/about/timeline-bg-placeholder.jpg);
  background-size: cover;
  background-position: center bottom;
}

.about-section-timeline-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(248, 249, 250, 0.97) 0%, rgba(248, 249, 250, 0.92) 50%, rgba(230, 234, 239, 0.6) 100%);
}

.about-section-timeline-inner {
  position: relative;
  z-index: 1;
}

.about-timeline-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.about-timeline-head-left {
  flex: 1;
  min-width: 0;
}

.about-timeline-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

#progress .about-section-head-highlight {
  color: rgb(38 104 158);
}

.about-timeline-sub {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.about-timeline-head-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-timeline-prev,
.about-timeline-next {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  font-size: 22px;
  line-height: 1;
  color: #333;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.about-timeline-prev:hover,
.about-timeline-next:hover {
  background: rgb(38 104 158);
  color: #fff;
}

.about-timeline-wrap {
  overflow: hidden;
  position: relative;
}

.about-timeline-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.about-timeline-slide {
  flex: 0 0 25%; /* JS ???? 4 ??????*/
  min-width: 0;
  padding: 24px 0 40px;
  border-left: 3px solid #e74c3c;
  padding-left: 24px;
  margin-left: 8px;
  position: relative;
}

.about-timeline-slide::before {
  content: '';
  position: absolute;
  left: -11px;
  top: 32px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e74c3c;
}

.about-timeline-year {
  font-size: 36px;
  font-weight: 700;
  color: #e74c3c;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.about-timeline-slide-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.about-timeline-slide-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ???????????????????? */
.about-section-future {
  position: relative;
  overflow: hidden;
}

.about-future-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0a0e1a 0%, #1a2332 50%, #0d1219 100%);
  background-image: url(../src/static/about/future-bg-placeholder.jpg);
  background-size: cover;
  background-position: center;
}

.about-section-future-inner {
  position: relative;
  z-index: 1;
  padding: 56px 0 64px;
  text-align: center;
}

.about-future-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px 0;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.about-future-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #e74c3c;
  border-radius: 50%;
}

.about-future-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin: 0 auto 40px;
  max-width: 640px;
}

.about-future-media {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  background: #1a2332;
}

.about-future-media-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.about-future-media video {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

/* ??????????????????*/
.about-benefits-bar {
  background: #1a1a1a;
  padding: 14px 0;
}

.page-about .footer {
  margin-top: 0;
}

.about-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px 16px;
}

.about-benefits-item {
  flex: 1;
  min-width: 0;
  max-width: 220px;
  text-align: center;
  position: relative;
}

.about-benefits-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-benefits-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(0.6);
}

.about-benefits-title {
  font-size: 20px;
  font-weight: 700;
  color: #b0b0b0;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.about-benefits-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  margin: 0;
}

/* ???? ?????????????? 3 ?????? 1 ??*/
.about-testimonial-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.about-testimonial-head-left {
  flex: 1;
  min-width: 0;
}

.about-testimonial-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

#evaluate .about-section-head-highlight {
  color: rgb(38 104 158);
}

.about-testimonial-sub {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.about-testimonial-head-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-testimonial-prev,
.about-testimonial-next {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  font-size: 22px;
  line-height: 1;
  color: #333;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.about-testimonial-prev:hover,
.about-testimonial-next:hover {
  background: rgb(38 104 158);
  color: #fff;
}

.about-testimonial-wrap {
  overflow: hidden;
}

.about-testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.about-testimonial-card {
  flex: 0 0 33.333%; /* JS ???? 3 ??????*/
  min-width: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}

.about-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.about-testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.about-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-testimonial-info {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-testimonial-name {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
}

.about-testimonial-dept {
  font-size: 13px;
  color: #888;
}

.about-testimonial-text {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* ???? ?????????? */
.about-section-standard {
  position: relative;
  overflow: hidden;
}

.about-section-standard-bg {
  position: absolute;
  inset: 0;
  background-color: #f0f2f5;
  background-image: url(../src/static/about/standard-bg-placeholder.jpg);
  background-size: cover;
  background-position: center;
}

.about-section-standard-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
}

.about-section-standard-inner {
  position: relative;
  z-index: 1;
}

.about-section-standard .about-section-head,
.about-section-standard .about-section-sub {
  text-align: left;
}

.about-section-standard .about-section-sub {
  margin-left: 0;
  margin-right: 0;
}

/* ???? ????????+??????????????2/3????1/3 ????*/
.about-section-mission {
  position: relative;
  overflow: hidden;
}

.about-section-mission-bg {
  position: absolute;
  inset: 0;
  background-color: #e8ecf1;
  background-image: url(../src/static/about/mission-bg-placeholder.jpg);
  background-size: cover;
  background-position: center;
}

.about-section-mission-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-mission-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.about-mission-left {
  flex: 1;
  min-width: 0;
}

.about-mission-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  line-height: 1.3;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 4px;
}

.about-section-mission .about-section-head-highlight {
  color: rgb(38 104 158);
}

.about-mission-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #e74c3c;
  border-radius: 50%;
  margin-left: 4px;
}

.about-mission-sub {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.about-mission-center {
  position: relative;
  width: 66.666%; /* ???????????????? */
  max-width: 648px; /* ??3 ????????*/
  margin-left: 0;
  margin-right: auto;
}

.about-mission-carousel-prev,
.about-mission-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  font-size: 22px;
  line-height: 1;
  color: #333;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.about-mission-carousel-prev {
  left: -12px;
}

.about-mission-carousel-next {
  right: -12px;
}

.about-mission-carousel-prev:hover,
.about-mission-carousel-next:hover {
  background: rgb(38 104 158);
  color: #fff;
}

.about-mission-carousel-wrap {
  overflow: hidden;
  width: 100%; /* ??.about-mission-center ??????3 ??*/
}

.about-mission-track {
  display: flex;
  gap: 24px;
  align-items: stretch;
  transition: transform 0.4s ease;
  width: max-content; /* JS ?? 6 ??????? */
}

.about-mission-track .about-mission-card {
  flex: 0 0 200px; /* ???about-mission-carousel.js ???????? */
  min-width: 0;
}

.about-mission-card {
  flex: 0 0 200px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: background-color 0.25s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.about-mission-card:hover {
  background-color: rgb(228 193 111);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.about-mission-card-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f5f5f5;
}

.about-mission-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-mission-card-title {
  padding: 14px 12px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
  text-align: center;
}

.about-mission-right {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.about-mission-trophy {
  max-width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  object-position: bottom right;
}

.about-section-label {
  font-size: 14px;
  color: #e67e22;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 12px 0;
}

.about-section-head {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  line-height: 1.35;
}

.about-section-head-center {
  text-align: center;
}

.about-section-sub {
  font-size: 16px;
  color: #666;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.about-section-desc {
  max-width: 900px;
  margin: 0 auto 50px;
}

/* ????*/
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-stat {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.about-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.about-stat-num {
  font-size: 42px;
  font-weight: 700;
  color: #e67e22;
  display: block;
  line-height: 1.2;
}

.about-stat-unit {
  font-size: 16px;
  color: #666;
  margin-left: 2px;
}

.about-stat-label {
  display: block;
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

/* ?????????????? + ??????*/
.about-section-vision {
  position: relative;
  overflow: hidden;
}

.about-section-vision-bg {
  position: absolute;
  inset: 0;
  background-color: #e8eef5;
  background-image: url(../src/static/about/vision-bg-placeholder.jpg);
  background-size: cover;
  background-position: center;
}

/* ??0.85 ????????????????????????????????*/
.about-section-vision-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.38) 0%,
    rgba(255, 255, 255, 0.22) 45%,
    rgba(255, 255, 255, 0.35) 100%
  );
}

.about-section-vision-inner {
  position: relative;
  z-index: 1;
}

.about-section-vision .about-section-head,
.about-section-vision .about-section-sub {
  text-align: left;
}

.about-section-vision .about-section-sub {
  margin-left: 0;
  margin-right: 0;
}

.about-section-vision .about-feature-list {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  justify-content: space-between;
  flex-wrap: wrap;
  /* ???????????????????????????????*/
  row-gap: 20px;
  column-gap: 0;
}

.about-section-vision .about-feature-item {
  align-items: center;
  flex: 0 0 auto;
  text-align: center;
}

.about-section-vision .about-feature-icon {
  width: 64px;
  height: 64px;
}

/* ?????? ? ??????????????? */
.about-section-vision .about-feature-item span {
  color: #3e3e3e;
  font-size: var(--f18);
  line-height: 1.2em;
  font-weight: bold;
  transition: color 0.25s ease;
}

.about-section-vision .about-feature-item:hover span {
  color: rgb(228 193 111);
}

.about-section-head-highlight {
  color: rgb(38 104 158);
}

/* ???????????????*/
.about-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
}

.about-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #333;
  cursor: default;
  transition: color 0.25s ease;
}

.about-feature-item::before {
  display: none;
}

.about-feature-item:hover span {
  color: rgb(228 193 111);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.about-feature-item:hover .about-feature-icon {
  transform: translateY(-6px);
}

/* ?????? */
/* ??????????2 ??? ?????????*/
.about-standard-carousel {
  position: relative;
  max-width: 1400px;
  margin-left: 0;
  margin-right: auto;
}

.about-standard-carousel-wrap {
  overflow: hidden;
}

.about-standard-track {
  display: flex;
  width: 300%;
  transition: transform 0.4s ease;
}

.about-standard-column {
  flex: 0 0 11.111%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 4px;
  box-sizing: border-box;
}

.about-standard-carousel-prev,
.about-standard-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  font-size: 24px;
  line-height: 1;
  color: #333;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.about-standard-carousel-prev:hover,
.about-standard-carousel-next:hover {
  background: rgb(38 104 158);
  color: #fff;
  box-shadow: 0 4px 16px rgba(38, 104, 158, 0.3);
}

.about-standard-carousel-prev {
  left: -20px;
}

.about-standard-carousel-next {
  right: -20px;
}

.about-standard-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.about-standard-carousel-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: #d0d0d0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.about-standard-carousel-dot:hover {
  background: #999;
}

.about-standard-carousel-dot.active {
  background: rgb(38 104 158);
  transform: scale(1.2);
}

.about-standard-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 28px 22px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.about-standard-item:hover {
  background-color: rgb(228 193 111);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ?????? src/static/about/standard-icons/??????????*/
.about-standard-item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  filter: brightness(0);
}

.about-standard-item-text {
  flex: 1;
  min-width: 0;
}

.about-standard-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px 0;
  line-height: 1.4;
  display: inline-block;
  transition: transform 0.3s ease;
}

.about-standard-item:hover .about-standard-item-text h4 {
  transform: translateX(6px);
}

.about-standard-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* ???? content-list ???????? */
.content-list-min {
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-color);
  position: relative;
  letter-spacing: 2px;
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--primary-color), transparent);
  border-radius: 2px;
}

.content-list {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.content-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.content-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
  border-color: rgba(24, 144, 255, 0.2);
}

.content-item.image-only {
  padding: 0;
}

.content-item.image-only .item-image {
  width: 100%;
}

.content-item.image-only .item-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.content-item.text-only {
  padding: 30px;
}

.content-item.image-text {
  display: flex;
  padding: 0;
  gap: 0;
}

.content-item.image-text .item-image {
  flex: 0 0 45%;
  max-width: 45%;
  overflow: hidden;
}

.content-item.image-text .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-item.image-text:hover .item-image img {
  transform: scale(1.05);
}

.content-item.image-text .item-text {
  flex: 1;
  padding: 50px;
  display: flex;
  align-items: center;
  line-height: 2.2;
  color: var(--text-light);
  font-size: 16px;
  background: linear-gradient(to right, #ffffff 0%, #fafafa 100%);
}

.item-image {
  width: 100%;
  overflow: hidden;
}

.item-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-item:hover .item-image img {
  transform: scale(1.02);
}

.item-text {
  padding: 40px;
  line-height: 2.2;
  color: var(--text-light);
  font-size: 16px;
}

.item-text p {
  margin-bottom: 1em;
}

.item-text p:last-child {
  margin-bottom: 0;
}

.empty-state {
  padding: 100px 0;
}

/* ??????*/
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* ???? ? ?????????????????????????????*/
  .about-section-vision .about-feature-list {
    justify-content: space-between;
    width: 100%;
    row-gap: 18px;
  }
}

@media (max-width: 768px) {
  .home-sections-container {
    gap: 60px;
    padding: 40px 0;
  }

  .home-section .section-cursor {
    left: -30px;
    height: 40px;
  }

  .home-section::after {
    bottom: -30px;
    width: 100px;
  }

  .home-section {
    min-height: 450px;
    margin: 0 20px;
    border-radius: 12px;
  }

  .home-section:hover {
    transform: translateY(-4px);
  }

  /* ????????????????????? hover */
  .home-section .section-slide-content {
    width: 50%;
    right: 0;
    padding: 40px 25px;
    border-radius: 0 12px 12px 0;
  }

  .home-section .section-slide-content .slide-title {
    font-size: 28px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    opacity: 1;
    transform: translateX(0);
  }

  .home-section .section-slide-content .slide-subtitle {
    font-size: 15px;
    margin-bottom: 25px;
    opacity: 1;
    transform: translateX(0);
  }

  .home-section .section-slide-content .btn-primary {
    padding: 12px 30px;
    font-size: 14px;
    opacity: 1;
    transform: translateX(0);
  }

  .about-page {
    background: #fff;
  }

  .about-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-banner-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-banner-title {
    font-size: 28px;
    text-align: center;
  }

  .about-banner-title-line {
    margin-left: auto;
    margin-right: auto;
  }

  .about-banner-subtitle {
    font-size: 17px;
    text-align: center;
  }

  .about-banner-body {
    text-align: center;
    max-width: 100%;
  }

  .about-banner-right {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .about-banner-stats {
    gap: 20px 24px;
  }

  .about-banner-stat {
    align-items: center;
  }

  .about-banner-stat-num {
    font-size: 28px;
  }

  .solutions-banner {
    min-height: 60vh;
  }

  .solutions-banner-content {
    padding: 32px 0 40px;
  }

  .solutions-banner-title {
    font-size: 28px;
  }

  .solutions-banner-subtitle {
    font-size: 16px;
  }

  .news-banner {
    min-height: 60vh;
  }

  .news-banner-content {
    padding: 32px 0 40px;
  }

  .news-banner-title {
    font-size: 28px;
  }

  .news-banner-subtitle {
    font-size: 16px;
  }

  .news-banner-categories .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .news-category-bar {
    gap: 6px 20px;
    padding: 14px 0;
  }

  .news-category-bar .category-item {
    font-size: 14px;
  }

  .about-hero {
    padding: 50px 20px 44px;
  }

  .about-hero-title {
    font-size: 28px;
  }

  .about-hero-sub {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .about-hero-phone {
    font-size: 15px;
  }

  .about-section {
    padding: 50px 0;
  }

  .about-section-head {
    font-size: 24px;
  }

  .about-section-sub {
    margin-bottom: 28px;
  }

  .about-values-head {
    font-size: 24px;
  }

  .about-values-sub {
    margin-bottom: 24px;
  }

  .about-values-row {
    flex-direction: column;
    gap: 16px;
  }

  .about-values-big,
  .about-values-quad {
    flex: 0 0 auto;
    width: 100%;
  }

  .about-values-big {
    min-height: 240px;
  }

  .about-values-quad {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .about-section-mission-inner {
    gap: 24px;
  }

  .about-timeline-head-row {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 20px;
  }

  .about-timeline-head-right {
    justify-content: flex-end;
  }

  .about-timeline-title {
    font-size: 22px;
  }

  .about-timeline-year {
    font-size: 28px;
  }

  .about-timeline-slide {
    padding: 20px 0 32px;
    padding-left: 20px;
    margin-left: 4px;
  }

  .about-timeline-slide::before {
    left: -9px;
    top: 28px;
    width: 12px;
    height: 12px;
  }

  .about-testimonial-head-row {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .about-testimonial-head-right {
    justify-content: flex-end;
  }

  .about-testimonial-title {
    font-size: 22px;
  }

  .about-testimonial-card {
    padding: 20px 18px;
  }

  .about-testimonial-avatar {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }

  .about-section-future-inner {
    padding: 40px 0 48px;
  }

  .about-future-title {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .about-future-desc {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .about-benefits-bar {
    padding: 10px 0;
  }

  .about-benefits-list {
    justify-content: center;
    gap: 28px 24px;
  }

  .about-benefits-item {
    max-width: 160px;
  }

  .about-benefits-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .about-benefits-title {
    font-size: 18px;
  }

  .about-benefits-desc {
    font-size: 12px;
  }

  .about-mission-top {
    flex-direction: column;
    align-items: stretch;
  }

  .about-mission-title {
    font-size: 22px;
  }

  .about-mission-carousel-prev {
    left: 4px;
  }

  .about-mission-carousel-next {
    right: 4px;
  }

  .about-mission-cards {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .about-mission-card {
    flex: 0 0 160px;
  }

  .about-mission-right {
    justify-content: center;
  }

  .about-mission-trophy {
    max-height: 180px;
    margin: 0 auto;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .about-stat-num {
    font-size: 32px;
  }

  /* ???????????????????????????????? */
  .about-standard-carousel-wrap {
    overflow: visible;
  }

  .about-standard-track {
    width: 100% !important;
    transform: none !important;
    transition: none !important;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 16px;
  }

  .about-standard-column {
    display: contents;
    padding: 0;
    gap: 0;
  }

  .about-standard-column-clone {
    display: none !important;
  }

  .about-standard-carousel-prev {
    left: 8px;
  }

  .about-standard-carousel-next {
    right: 8px;
  }

  .about-standard-item {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 20px 16px;
    gap: 12px;
  }

  .about-standard-item-icon {
    width: 40px;
    height: 40px;
  }

  .about-standard-item h4 {
    font-size: 15px;
  }

  .page-title {
    font-size: 36px;
    margin-bottom: 40px;
    letter-spacing: 1px;
  }

  .page-title::after {
    width: 60px;
    height: 3px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
    padding-bottom: 15px;
  }

  .content-list {
    gap: 25px;
  }

  .content-item.image-text {
    flex-direction: column;
  }

  .content-item.image-text .item-image {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .content-item.image-text .item-text {
    padding: 30px 20px;
    font-size: 15px;
    background: #fff;
  }

  .item-text {
    padding: 30px 20px;
    font-size: 15px;
  }

  .content-item {
    border-radius: 8px;
  }

  .news-item {
    flex-direction: column;
  }

  .news-img-wrap {
    width: 100%;
    height: 180px;
  }

  .news-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* ?????????????????????? 5 ???? span??*/
  main.products-page .solutions-grid.home-cases-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  main.products-page .solutions-grid .solution-card:nth-child(5n+1),
  main.products-page .solutions-grid .solution-card:nth-child(5n+2),
  main.products-page .solutions-grid .solution-card:nth-child(5n+3),
  main.products-page .solutions-grid .solution-card:nth-child(5n+4),
  main.products-page .solutions-grid .solution-card:nth-child(5n+5) {
    grid-column: span 1;
  }

  /* ????????aspect-ratio ??????????????*/
  main.products-page .home-cases-grid .home-cases-card,
  main.products-page .home-cases-grid .home-cases-card:nth-child(n) {
    aspect-ratio: unset;
    height: 220px;
  }

  .solutions-grid .home-solutions-card {
    flex-direction: column;
  }

  .solutions-grid .home-solutions-card-img {
    flex: none;
    width: 100%;
    min-height: 280px;
    border-radius: 12px 12px 0 0;
  }

  .solutions-grid .home-solutions-card-body {
    min-height: auto;
  }

  .solution-card {
    flex-direction: column;
  }

  .solution-card-img-wrap {
    flex: none;
    width: 100%;
    height: 400px;
    border-radius: 8px 8px 0 0;
  }

  .solution-img {
    min-height: 400px;
  }

  .solution-content {
    padding: 20px;
  }

  .category-filter {
    gap: 10px;
    padding: 15px;
  }

  /* ?????????????????????*/
  .solutions-page #solution-category-filter.category-filter {
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }

  .solutions-page #solution-category-filter.category-filter .category-item {
    flex: 0 0 auto;
  }

  .category-item {
    padding: 8px 16px;
    font-size: 13px;
  }

  main.products-page {
    padding-top: 56px;
  }

  .products-hero {
    min-height: 160px;
  }

  .products-hero-inner {
    padding-top: 80px;
  }

  .products-hero-title {
    font-size: 24px;
    margin-left: 0;
  }

  .products-hero-subtitle {
    font-size: 11px;
    margin-left: 0;
  }

  .products-hero-categories {
    width: 100%;
    margin-left: 0;
    padding-top: 16px;
  }

  .products-category-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding-bottom: 4px;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .products-category-bar::-webkit-scrollbar {
    height: 4px;
  }

  .products-category-bar::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
  }

  .products-category-bar .category-item {
    flex: 0 0 auto;
    padding: 8px 14px;
    font-size: 13px;
  }

  .solutions-page .container,
  .products-list .container,
  .news-page .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-title {
    font-size: 24px;
    padding-left: 0;
    padding-right: 0;
  }

  .footer {
    padding: 0 0 16px;
    margin-top: 40px;
  }

  .footer > .container {
    padding-top: 32px;
  }

  .footer-trust-bar {
    padding: 28px 0 24px;
  }

  .footer-content {
    gap: 24px;
    margin-bottom: 24px;
  }

  .footer-section h3 {
    font-size: 14.4px;
  }
}

/* ??????480px??*/
@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-standard-carousel-prev,
  .about-standard-carousel-next {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .about-feature-list {
    flex-direction: row;
    justify-content: center;
    gap: 16px 24px;
  }

  .about-section-vision .about-feature-list {
    justify-content: space-between;
    row-gap: 16px;
    column-gap: 0;
  }

  .about-feature-icon {
    width: 32px;
    height: 32px;
  }

  .about-section-vision .about-feature-icon {
    width: 44px;
    height: 44px;
  }

  .about-feature-item span {
    font-size: 14px;
  }

  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .contact-phone-hotline {
    font-size: 24px;
  }

  .contact-card-left .contact-row {
    font-size: var(--f16);
  }

  .page-title {
    font-size: 28px;
  }
}

/* ========== ??????????????????????========== */
@media (max-width: 768px) {
  body {
    background: #f5f6f8;
  }

  #app>main,
  #main-content {
    background: #f5f6f8;
  }

  .banner {
    border-radius: 0 0 20px 20px;
    overflow: hidden;
  }

  .banner-content {
    padding: 0 24px;
  }

  .home-section {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: #fff;
  }

  .solutions-page .container,
  .products-list .container,
  .news-page .container {
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .section-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid #1890ff;
    display: inline-block;
  }

  .section-subtitle {
    font-size: 14px;
    color: #666;
    margin-top: -16px;
    margin-bottom: 24px;
  }

  .category-filter {
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 0 24px;
  }

  .solutions-page #solution-category-filter.category-filter {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 16px 0 24px;
  }

  .solutions-page #solution-category-filter.category-filter .category-item {
    flex: 0 0 auto;
  }

  .category-item {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s;
  }

  .category-item.active {
    background: #1890ff;
    color: #fff;
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.35);
  }

  .category-item:active {
    transform: scale(0.98);
  }

  .solutions-grid .solution-card,
  .news-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .solutions-grid .solution-card:active,
  .news-item:active {
    transform: scale(0.99);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  }

  .news-item {
    padding: 20px;
    gap: 16px;
  }

  .news-item.news-card {
    padding: 0;
    background: #f8f8f8;
  }

  .news-card-body {
    padding: 16px;
  }

  .news-card-title {
    font-size: 16px;
  }

  .news-img-wrap {
    border-radius: 12px;
    overflow: hidden;
  }

  .news-title a {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.45;
  }

  .news-date {
    font-size: 13px;
    color: #8c8c8c;
  }

  .news-summary {
    font-size: 14px;
    color: #595959;
    -webkit-line-clamp: 2;
  }

  .contact-page {
    background: #f5f6f8;
  }

  .contact-header {
    padding: 32px 16px 24px;
  }

  .contact-company-name {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
  }

  .contact-tagline {
    color: #666;
    font-size: 13px;
  }

  .contact-card {
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }

  .contact-banner {
    border-radius: 0 0 20px 20px;
  }

  .about-page {
    background: #f5f6f8;
  }

  .about-section {
    padding: 40px 0;
  }

  .content-item {
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .content-item:hover {
    transform: none;
  }

  .page-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
  }

  .page-title::after {
    background: linear-gradient(90deg, transparent, #1890ff, transparent);
  }

  .footer {
    background: #000;
    padding: 0 16px 24px;
    margin-top: 48px;
    border-radius: 24px 24px 0 0;
  }

  .footer > .container {
    padding-top: 32px;
  }

  .footer-trust-bar {
    padding: 24px 0 20px;
  }

  .footer-content {
    gap: 28px;
  }

  .footer-section h3 {
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
  }

  /* ??????????????????? */
  .footer-section ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 8px 16px;
  }

  .footer-section ul li {
    margin-bottom: 0;
  }

  .footer-section a,
  .footer-section li {
    color: #b0b8c0;
    font-size: 12.6px;
  }

  .footer-bottom {
    margin-top: 24px;
    padding-top: 20px;
    color: #8a95a0;
    font-size: 11.7px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 20px;
  }

  .category-item {
    padding: 8px 16px;
    font-size: 13px;
  }

  .contact-card {
    border-radius: 16px;
  }
}

/* Service Section Three-Column Layout???????????????? */
.home-services-cards {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 100%;
    margin: 0 auto;
}

.home-section-card {
    flex: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.home-section-card-bottom {
    padding: 20px;
  transition: background-color 0.3s ease-in-out;
}

/* ??????????*/
.home-section-card:hover .home-section-card-bottom,
.home-section-card.is-hovered .home-section-card-bottom {
  background-color: #ffffff;
    transition: background-color 0.3s ease;
}

/* Middle Column (Assuming 3 columns) */
.home-section-card:nth-child(2) .home-section-card-bottom {
    background-color: #eeeeee;
}

/* Side Columns */
.home-section-card:first-child .home-section-card-bottom,
.home-section-card:last-child .home-section-card-bottom {
    background-color: #e8e8e8;
}

/* Hover Effects */
.home-section-card:hover,
.home-section-card.is-hovered {
    transform: translateY(-10px) scale(1.05);
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.home-section-card:hover .home-section-card-bottom,
.home-section-card.is-hovered .home-section-card-bottom {
    background-color: #ffffff;
}



/* FIX: Increase specificity for home services cards */

#home-services-cards {
    display: flex !important;
    justify-content: center !important;
    gap: 0 !important;
    max-width: 100%;
    margin: 0 auto;
}

#home-services-cards .home-section-card {
    flex: 1 !important;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    margin: 0 !important;
}

#home-services-cards .home-section-card .home-section-card-bottom {
    padding: 20px;
    min-height: 240px;
  transition: background-color 0.3s ease-in-out;
}

/* ??????????*/
.home-section-card:hover .home-section-card-bottom,
.home-section-card.is-hovered .home-section-card-bottom {
  background-color: #ffffff;
    transition: background-color 0.3s ease;
    height: 100%;
}

/* Middle Column */
#home-services-cards .home-section-card:nth-child(2) .home-section-card-bottom {
    background-color: #eeeeee !important;
}

/* Side Columns */
#home-services-cards .home-section-card:first-child .home-section-card-bottom,
#home-services-cards .home-section-card:last-child .home-section-card-bottom {
    background-color: #e8e8e8 !important;
}

/* Hover Effects */
#home-services-cards .home-section-card:hover,
#home-services-cards .home-section-card.is-hovered {
    transform: translateY(-10px) scale(1.05) !important;
    z-index: 100 !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
}

#home-services-cards .home-section-card:hover .home-section-card-bottom,
#home-services-cards .home-section-card.is-hovered .home-section-card-bottom {
    background-color: #ffffff !important;
}

/* ?????????? = ????????? stretch ??????????????????*/
#home-services-cards.home-services-cards--accordion {
  flex-wrap: nowrap;
  align-items: stretch;
  max-width: 100%;
  overflow: visible;
  padding: 24px 0;
  /* ?????????473:547??????????1/5+?? ????????min-height ?? */
  min-height: min(clamp(320px, 38vw, 600px), 600px);
}

/* ????????????stretch ???aspect-ratio ????????flex-basis ???? */
#home-services-cards.home-services-cards--accordion .home-section-card {
  min-width: 0;
  flex: 1 1 0 !important;
  /* ???? aspect-ratio?? align-items:stretch ?????? */
  display: flex;
  flex-direction: column;
  transform: none !important;
  transition:
    box-shadow 0.2s ease,
    flex-grow 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    flex-shrink 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    flex-basis 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* ???????? 28%??????? 18%????? 100%????????? */
#home-services-cards.home-services-cards--accordion.has-selection {
  justify-content: center;
}

#home-services-cards.home-services-cards--accordion.has-selection .home-section-card:not(.is-hovered) {
  flex: 0 0 18% !important;
}

#home-services-cards.home-services-cards--accordion.has-selection .home-section-card.is-hovered {
  flex: 0 0 28% !important;
}

/* ????????????????10px????????flex stretch ?????????????? */
#home-services-cards.home-services-cards--accordion .home-section-card.is-hovered {
  transform: none !important;
  position: relative;
  z-index: 200 !important;
  margin-top: -20px !important;
  margin-bottom: -20px !important;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.16),
    0 10px 20px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

/* ???????? :hover ??????????? .is-hovered ???????????????????? bug */
#home-services-cards.home-services-cards--accordion .home-section-card:hover:not(.is-hovered) {
  transform: none !important;
  z-index: 1 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

/* ????????:hover ???? */
#home-services-cards.home-services-cards--accordion .home-section-card:hover:not(.is-hovered) .home-section-card-top {
  background-color: rgb(38 104 158) !important;
  background-image: inherit !important;
}

/* ????????:hover ??????*/
#home-services-cards.home-services-cards--accordion .home-section-card:hover:not(.is-hovered) .home-section-card-top > .home-section-card-top-mask {
  opacity: 1 !important;
}

/* ???????? :hover ?? */
#home-services-cards.home-services-cards--accordion .home-section-card:hover:not(.is-hovered) .home-section-card-top-img {
  flex: 0 0 0 !important;
  width: 0 !important;
  min-height: 0 !important;
}

/* ???????? :hover ???? */
#home-services-cards.home-services-cards--accordion .home-section-card:hover:not(.is-hovered) .home-section-card-top-inner {
  flex: 1 !important;
  text-align: center !important;
  padding-left: 0 !important;
}

/* ????????:hover ???? */
#home-services-cards.home-services-cards--accordion .home-section-card:hover:not(.is-hovered) .home-section-card-bottom {
  background-color: inherit !important;
}

/* ??/????????:hover ?? */
#home-services-cards.home-services-cards--accordion .home-section-card:hover:not(.is-hovered) .home-section-card-list-view {
  display: block !important;
}
#home-services-cards.home-services-cards--accordion .home-section-card:hover:not(.is-hovered) .home-section-card-grid-view {
  display: none !important;
}

#home-services-cards.home-services-cards--accordion .home-section-card:not(.is-hovered) {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

/* ?????????????? */
#home-services-cards .home-section-card:nth-child(odd) .home-section-card-bottom {
  background-color: #e8e8e8 !important;
}

#home-services-cards .home-section-card:nth-child(even) .home-section-card-bottom {
  background-color: #eeeeee !important;
}

.home-section-card[data-type="service4"],
.home-section-card[data-type="service5"] {
  background-color: #e8e8e8;
}

/* SERVICES ?????????+80px????+40 / ?? +40?????? aspect-ratio???????? */
#home-services-cards:not(.home-services-cards--accordion) .home-section-card-top {
  min-height: 200px;
}

#home-services-cards:not(.home-services-cards--accordion) .home-section-card:hover .home-section-card-top-img,
#home-services-cards:not(.home-services-cards--accordion) .home-section-card.is-hovered .home-section-card-top-img {
  min-height: 200px;
}

@media (max-width: 900px) {
  #home-services-cards:not(.home-services-cards--accordion) .home-section-card-top {
    min-height: 180px;
  }

  #home-services-cards:not(.home-services-cards--accordion) .home-section-card:hover .home-section-card-top-img,
  #home-services-cards:not(.home-services-cards--accordion) .home-section-card.is-hovered .home-section-card-top-img {
    min-height: 180px;
  }
}

/* ??????????stretch ??????1/3??????*/
#home-services-cards.home-services-cards--accordion .home-section-card-top {
  min-height: 0 !important;
  flex: 0 0 33.333%;
  align-items: stretch;   /* ??? stretch????????????????*/
}

/* ???????? 20px?margin:-20px 0????????? 20px ????   ???????H+40)????H+40)?33.333% + 6.667px = H/3 + 13.333 + 6.667 = H/3 + 20px??   ?????????? */
#home-services-cards.home-services-cards--accordion .home-section-card.is-hovered .home-section-card-top {
  flex: 0 0 calc(33.333% + 6.667px) !important;
}

/* ???????????????? min-height:160px????????????? */
#home-services-cards.home-services-cards--accordion .home-section-card:hover .home-section-card-top-img,
#home-services-cards.home-services-cards--accordion .home-section-card.is-hovered .home-section-card-top-img {
  align-self: stretch;
  max-height: 100%;
  min-height: 0 !important;
}

#home-services-cards.home-services-cards--accordion .home-section-card .home-section-card-bottom {
  min-height: 0 !important;
  flex: 1 1 66.667%;
  box-sizing: border-box;
  padding: 20px 20px 12px;
}

/* ?????????????????20px ??40px??*/
#home-services-cards.home-services-cards--accordion .home-section-card.is-hovered .home-section-card-bottom {
  padding-top: 40px;
}

#home-services-cards.home-services-cards--accordion .home-section-card-grid-pagination {
  padding: 10px 0 0;
}

/* ????????????????????????????????? */
#home-services-cards.home-services-cards--accordion .home-section-card {
  border-radius: 0 !important;
}

#home-services-cards.home-services-cards--accordion .home-section-card:first-child {
  border-radius: 8px 0 0 8px !important;
}

#home-services-cards.home-services-cards--accordion .home-section-card:last-child {
  border-radius: 0 8px 8px 0 !important;
}

#home-services-cards.home-services-cards--accordion .home-section-card.is-hovered {
  border-radius: 8px !important;
}

/* Services ??????????????????.mouse-spotlight???????#1c3a83??4px ?????14px??*/
.home-section-card-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 16px;
  height: 16px;
  margin-left: -8px;
  margin-top: -8px;
  background: #1c3a83;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  opacity: 0;
  transition:
    width 0.25s ease,
    height 0.25s ease,
    margin 0.25s ease,
    opacity 0.2s ease;
}

.home-section-card-cursor.is-visible {
  opacity: 1;
  width: 54px;
  height: 54px;
  margin-left: -27px;
  margin-top: -27px;
}

.home-section-card-cursor-text {
  font-size: 0;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s ease, font-size 0.2s ease;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.home-section-card-cursor.is-visible .home-section-card-cursor-text {
  font-size: 14px;
  opacity: 1;
}

