:root {
  --primary-color: #0469f6;
  --secondary-color: #001087;
  --accent-color: #0144ff;
  --text-dark: #1a1a2e;
  --text-light: #6b7280;
  --white: #ffffff;
  --bg-light: #f8fafc;
  --bg-gray: #e5e7eb;
  --bg-huise:#f4f7f9;
  --gradient-primary: linear-gradient(135deg, #0469f6 0%, #0861dd 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}
/*
  自己额外改的
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.l{
  float: left;
}
.r{
  float: right;
}
.c{
  clear: both;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: Glow Sans, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}
.pdd-t5{
  padding-top: 5%;
}
.pdd-t10{
  padding-top: 10%;
}
.pdd-t15{
  padding-top: 15%;
}
.pdd-t20{
  padding-top: 20%;
}
.pdd-t25{
  padding-top: 25%;
}
.pdd-b5{
  padding-bottom: 5%;
}
.pdd-b10{
  padding-bottom: 10%;
}
.pdd-b15{
  padding-bottom: 15%;
}
.pdd-b20{
  padding-bottom: 20%;
}
.pdd-b25{
  padding-bottom: 25%;
}
.pc_banner2le{width: 100%!important;padding-top: 160px!important;}
/**/

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  z-index: 1000;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo img {
  max-width: 180px;
  height: auto;
  display: block;
  object-fit: contain;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
}

.nav {
  display: flex;
  gap: 80px;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.dropdown-toggle {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-dark);
  transition: var(--transition);
  z-index: 10;
}

.dropdown-toggle:hover {
  color: var(--primary-color);
}

.dropdown-toggle svg {
  transition: var(--transition);
}

.nav-item.dropdown-open .dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link.has-dropdown::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-top-color: var(--text-dark);
}

.nav-link.has-dropdown:hover::after {
  border-top-color: var(--primary-color);
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.nav-link:hover::before {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::before {
  width: 100%;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  min-width: 220px;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: var(--white);
}

.dropdown-item {
  display: flex;
  padding: 12px 25px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  text-align: center;
  align-items: center;

}

.dropdown-item:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

 .dropdown-menu.mega-menu {
   min-width: 820px;
   padding: 22px;
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 22px;
 }

 .dropdown-menu.mega-menu::before {
   left: 35%;
 }

 .mega-group-title {
   font-size: 14px;
   font-weight: 700;
   color: var(--text-dark);
   margin: 0 0 12px;
border-bottom: 1px solid #0469f6;
    padding-bottom: 10px;
    text-align: center;
 }

 .mega-group-items {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }

 .mega-item {
   display: flex;
   gap: 12px;
   padding: 10px 12px;
   border-radius: 12px;
   text-decoration: none;
   color: var(--text-dark);
   transition: var(--transition);
 }

 .mega-item:hover {
   background: var(--bg-light);
 }

 .mega-item-icon {
   width: 34px;
   height: 34px;
/*   border-radius: 10px;
   background: var(--bg-light);*/
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   overflow: hidden;
   margin-right: 10px;
 }

 .mega-item-icon img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }

 .mega-item-text {
   display: flex;
   flex-direction: column;
   gap: 4px;
   min-width: 0;
 }

 .mega-item-title {
   font-size: 15px;
   font-weight: 600;
   color: var(--text-dark);
   line-height: 1.2;
 }

 .mega-item-desc {
   font-size: 13px;
   color: var(--text-light);
   line-height: 1.2;
   display: -webkit-box;
   line-clamp: 2;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
   overflow: hidden;
 }

.header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
}

.language-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: var(--bg-light);
  border: 1px solid var(--bg-gray);
  border-radius: 8px;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn:hover {
  background: var(--bg-gray);
  border-color: var(--primary-color);
}

.lang-current {
  font-weight: 600;
}

.lang-arrow {
  transition: var(--transition);
}

.lang-btn:hover .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: -40px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  min-width: 140px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 100;
  text-align: center;
}

.language-switcher:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

.lang-option:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

.btn {
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary-color);
}

.btn-white:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition);
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 725px;
  overflow: hidden;
}

.banner-group.mobile {
  display: none;
}

.banner-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-slide.active {
  opacity: 1;
  z-index: 1;
}

.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.banner-image img {
  width: 100%;
  height: 725px;
  object-fit: cover;
  object-position: center;
}

.banner-image.mobile {
  display: none;
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 100%;
  padding: 0 20px;
}

.banner-content h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.banner-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--white);
  transform: scale(1.2);
}

.banner-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 3;
}

.banner-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.banner-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}
@media (max-width: 2560px) {
  .icon_ban{padding-top: 100px;}
  .index_about{
    margin-top: -200px;
  }
  .hero-stats {
    display: flex;
    margin-top: -100px;
    z-index: 10;
    position: relative;
  }
  .section-header1 {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 15%;
  }
}
@media (max-width: 1920px) {
  .index_about{
    margin-top: -285px;
  }
  .hero-stats {
    display: flex;
    margin-top: -180px;
    z-index: 10;
    position: relative;
  }
  .section-header1 {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 23%;
  }
}
@media (max-width: 768px) {
  .banner-group.desktop {
    display: none;
  }

  .banner-group.mobile {
    display: block;
  }

  .banner-image.desktop {
    display: none;
  }
  .banner-image.mobile {
    display: block;
  }
  .hero-banner {
    height: 500px;
  }
  .banner-content h1 {
    font-size: 36px;
  }
  .banner-content p {
    font-size: 16px;
  }
  .banner-arrows {
    padding: 0 15px;
  }
  .banner-arrow {
    width: 40px;
    height: 40px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}



.about-stats {
  margin-top: 0;
  padding: 0px 0px 60px 0px;
}

.about-stats .container {
  background: var(--white);
  border-radius: 50px;
  box-shadow: -1px 2px 15px 1px rgba(0, 0, 0, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px;
}

.stat-item {
  text-align: center;
  padding: 15px 30px 30px 30px;
  min-width: 200px;
}

.stat-number {
  font-size: 3.5em;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 18px;
  color: var(--text-light);
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2,
.section-header1 h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.section-header p,
.section-header1 p {
  font-size: 18px;
  color: var(--text-light);
  /* max-width: 600px; */
  margin: 0 auto;
}

.features {
  background-color: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 100%;
  height: 200px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
  text-align: center;
}

.feature-card p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.85;
}

.advantage-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.advantage-item {
  display: flex;
  gap: 20px;
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.advantage-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

 .advantage-number img {
   max-width: 70%;
   max-height: 70%;
   object-fit: contain;
 }

.advantage-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.advantage-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
}

.products {
  background-color: var(--white);
}

.products-grid {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 5px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.products-grid::-webkit-scrollbar {
  display: none;
}

.products-grid::-webkit-scrollbar-track {
  display: none;
}

.products-grid::-webkit-scrollbar-thumb {
  display: none;
}

.product-card {
  flex: 0 0 auto;
  width: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 40px;
  border-radius: 20px;
  background: var(--bg-light);
  transition: var(--transition);
  scroll-snap-align: start;
}

.product-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.product-card.reverse {
  direction: rtl;
}

.product-card.reverse > * {
  direction: ltr;
}

.product-icon {
  width: 100%;
  /* height: 140px; */
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.product-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.product-content p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.product-features {
  list-style: none;
  margin-bottom: 20px;
}

.product-features>p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}

.product-features>p::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.solutions {
  background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 100%);
  color: var(--white);
}

.solutions .section-header h2 {
  color: var(--white);
}

.solutions .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.solutions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

 .solutions-grid .solution-card {
  flex: 0 0 calc((100% - 60px) / 3);
 }

.solution-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.solution-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}
.solution-card a {
  text-decoration: none;
}

.solution-icon {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.solution-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
  color: var(--white);
}

.solution-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  text-align: center;
}

.other-solutions {
  background: #f8f9fa;
  padding: 80px 0;
}

.other-solutions .section-header h2 {
  color: var(--text-dark);
}

.other-solutions .solution-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.other-solutions .solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.other-solutions .solution-icon {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  background: var(--gradient-primary);
}

.other-solutions .solution-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 15px;
}

.other-solutions .solution-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.other-solutions .solution-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.other-solutions .solution-more {
  display: inline-block;
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  margin-top: auto;
}

.other-solutions .solution-more:hover {
  color: #1a5f7a;
  text-decoration: underline;
}

.partners {
  background: url('../images/b_bg.jpg') no-repeat center center/cover;
  text-align: center;
  padding: 2% 0px;
}

.partners .section-header h2 {
  color: var(--text-dark);
}

.partners .section-header p {
  color: var(--text-light);
}

.partners-grid {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 30px 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.partners-grid::-webkit-scrollbar {
  display: none;
}

.partners-grid::-webkit-scrollbar-track {
  display: none;
}

.partners-grid::-webkit-scrollbar-thumb {
  display: none;
}

.partner-item {
  flex: 0 0 auto;
  width: 200px;
  height: 100px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--bg-gray);
  transition: var(--transition);
  scroll-snap-align: start;
}

.partner-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.partner-item a{
  display: block;
  width: 80%;;
}
.partner-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 0.7;
  transition: var(--transition);
}

.partner-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.slider-container {
  position: relative;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--white);
  border: 1px solid var(--bg-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.slider-arrow:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.slider-arrow:hover svg {
  stroke: var(--white);
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
  stroke: var(--text-dark);
  stroke-width: 2;
  transition: var(--transition);
}

.slider-arrow.prev {
  left: -25px;
}

.slider-arrow.next {
  right: -25px;
}

.cta {
  background: var(--bg-light);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.cta-content p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.contact-section {
  background: var(--bg-light);
  padding: 80px 0;
}

.contact-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.contact-info {
  text-align: center;
  margin-bottom: 40px;
}

.contact-info h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.contact-info p {
  font-size: 16px;
  color: var(--text-light);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid var(--bg-gray);
  border-radius: 8px;
  transition: var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(1, 26, 194, 0.1);
}

.contact-form .btn {
  width: 100%;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 30px 20px;
  }
}

.footer {
  background: #0a1628;
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 110px;
  text-align: center;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 280px;
}

.footer-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 14px;
  text-align: left;
}

.footer-links {
  list-style: none;
  text-align: left;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

 .footer-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
 }

 .footer-group-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 12px;

 }

 .footer-groups .footer-links li {
  margin-bottom: 12px;
 }

 .footer-groups .footer-links a {
  font-size: 15px;
 }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-color);
}

.cookie-consent {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-content {
  background: var(--white);
  border-radius: 50px;
  padding: 25px 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  max-width: 420px;
  position: relative;
}

.cookie-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
}

.cookie-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
}

.cookie-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  padding-right: 30px;
}

.cookie-links {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.cookie-link {
  font-size: 14px;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.cookie-link:hover {
  text-decoration: underline;
}

.cookie-accept {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.cookie-consent.hidden {
  display: none;
}

 .contact-fab {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 9998;
 }

 .contact-fab-main {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
 }

 .contact-fab-main img {
  width: 90%;
  object-fit: contain;
 }

 .contact-fab-items {
  position: absolute;
  right: 0;
  bottom: 64px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
 }

 .contact-fab.open .contact-fab-items {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
 }

 .contact-fab-item {
  position: relative;
  display: flex;
  justify-content: flex-end;
 }

 .contact-fab-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
 }

 .contact-fab-btn img {
  width: 90%;
  object-fit: contain;
 }

 .contact-fab-popover {
  position: absolute;
  right: 58px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  min-width: 140px;
 }

 .contact-fab-item:hover .contact-fab-popover {
  opacity: 1;
  visibility: visible;
 }

 .contact-fab-item.open .contact-fab-popover {
  opacity: 1;
  visibility: visible;
 }

 .contact-fab-qr {
  width: 140px;
  height: 140px;
  object-fit: contain;
  display: block;
 }

 .contact-fab-email {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
  white-space: nowrap;
 }

.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 100%);
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 10px;
}

.content-section {
  padding: 60px 0;
}

.content-section .product-card {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 40px;
  scroll-snap-align: none;
}

.content-section .product-card:last-child {
  margin-bottom: 0;
}

.content-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.content-section p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.news-image {
  width: 100%;
  height: 200px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 48px;
}

.news-content {
  padding: 25px;
}

.news-date {
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.news-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.news-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
  padding: 20px 0;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  border: 2px solid var(--bg-gray);
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-dark);
}

.pagination-btn:hover:not(:disabled) {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: var(--white);
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-number {
  width: 40px;
  height: 40px;
  border: 2px solid var(--bg-gray);
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
}

.pagination-number:hover {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: var(--white);
}

.pagination-number.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.pagination-ellipsis {
  padding: 0 8px;
  color: var(--text-light);
  font-weight: 600;
}

.news-detail {
  max-width: 900px;
  margin: 0 auto;
}

.news-detail-header {
  margin-bottom: 50px;
}

.news-detail-image {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--shadow-lg);
}

.news-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-detail-meta {
  text-align: center;
}

.news-detail-category {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.news-detail-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.news-detail-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--text-light);
  font-size: 14px;
}

.news-detail-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-detail-content {
  margin-bottom: 50px;
}

.news-detail-lead {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 40px;
  padding: 30px;
  background: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
}

.news-detail-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 40px 0 20px;
}

.news-detail-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.news-detail-content ul,
.news-detail-content ol {
  margin: 20px 0 20px 30px;
}

.news-detail-content li {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

.news-detail-content strong {
  color: var(--text-dark);
  font-weight: 600;
}

.news-detail-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-top: 2px solid var(--bg-gray);
  border-bottom: 2px solid var(--bg-gray);
  margin-bottom: 50px;
}

.news-detail-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.news-detail-tags .tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--bg-light);
  color: var(--text-dark);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}

.news-detail-tags .tag:hover {
  background: var(--primary-color);
  color: var(--white);
}

.news-detail-share {
  display: flex;
  align-items: center;
  gap: 15px;
}

.news-detail-share span {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
}

.share-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  color: var(--text-dark);
  border-radius: 50%;
  transition: var(--transition);
}

.share-link:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.news-detail-navigation {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
}

.news-detail-navigation .nav-link {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px;
  background: var(--bg-light);
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
}

.news-detail-navigation .nav-link:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.news-detail-navigation .nav-link:hover .nav-label,
.news-detail-navigation .nav-link:hover .nav-title {
  color: var(--white);
}

.news-detail-navigation .nav-link.next {
  flex-direction: row-reverse;
}

.news-detail-navigation .nav-link svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

.news-detail-navigation .nav-link:hover svg {
  color: var(--white);
}

.nav-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-label {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.nav-title {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.4;
}

.related-news {
  background: var(--bg-light);
  padding: 80px 0;
}

.related-news .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 50px;
}

.related-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.related-news-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.related-news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.related-news-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.related-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-news-content {
  padding: 25px;
}

.related-news-date {
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.related-news-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
  line-height: 1.4;
}

.related-news-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--secondary-color);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.about-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  /*box-shadow: var(--shadow-lg);*/
}

.about-image img {
  width: 100%;
  height: auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.value-item {
  text-align: center;
  padding: 30px;
  background: var(--bg-light);
  border-radius: 16px;
}

.value-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  margin: 0 auto 15px;
}

.value-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.value-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    margin: 0 auto 30px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .products-grid {
    gap: 20px;
  }

  .product-card {
    width: 400px;
    grid-template-columns: 1fr;
  }

  .product-card.reverse {
    direction: ltr;
  }

  .solutions-grid {
    display: flex;
  }

  .solutions-grid .solution-card {
    flex: 0 0 calc((100% - 30px) / 2);
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-detail-title {
    font-size: 32px;
  }

  .news-detail-image {
    height: 300px;
  }

  .related-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-detail-navigation {
    flex-direction: column;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
    min-width: 90%;
  }

  .nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 0px;
    box-shadow: var(--shadow-lg);
    z-index: 900;
    overflow-y: auto;
    /*height: 100%;*/
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
  }

  .nav.active {
    display: flex;
  }

  .nav-item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-link {
    width: auto;
    flex: 1;
    justify-content: flex-start;
    padding: 12px 0;
  }

  .nav-link::before {
    display: none;
  }

  .nav-link.active::before {
    display: none;
  }

  .nav-link.has-dropdown::after {
    display: none;
  }

  .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
    transform: none;
    margin-left: auto;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 0;
    visibility: hidden;
    box-shadow: none;
    width: 100%;
    padding: 0px;
    margin-top: 6px;
    flex-basis: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-item.dropdown-open .dropdown-menu {
    max-height: 2000px;
    opacity: 1;
    visibility: visible;
    transform:translateX(0%) translateY(0)
  }

  .dropdown-menu.mega-menu {
    min-width: 0;
    padding: 0px;
    display: block;
  }

  .dropdown-menu.mega-menu::before {
    display: none;
  }

  .mega-group {
    padding: 10px 0;
  }

  .mega-group-title {
    text-align: left;
  }

  .mega-group-items {
    gap: 6px;
  }

  .dropdown-item {
    padding: 12px 15px;
    border-radius: 8px;
  }

  .dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
  }

  .mobile-menu-btn {
    display: flex;
  }

  .header-actions {
    display: flex;
    gap: 10px;
  }

  .header-actions .btn.btn-primary {
    display: none;
  }

  .lang-btn {
    padding: 10px 12px;
  }

  .lang-dropdown {
    right: 0;
    left: auto;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-stats {
    padding: 0px 0px 40px 0px;
  }

  .about-stats .container {
    border-radius: 20px;
    width: 90%
  }

.content-section{
  padding: 40px 0px;
}

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 15px;
  }

  .stat-item {
    padding: 10px;
    min-width: auto;
  }

  .stat-number {
    font-size: 2em;
  }

  .stat-label {
    font-size: 12px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantage-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .advantage-item {
    padding: 20px;
  }

  .advantage-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .advantage-content h3 {
    font-size: 18px;
  }

  .advantage-content p {
    font-size: 14px;
  }

  .solutions-grid {
    gap: 20px;
  }
  .solutions-grid .solution-card {
    flex: 0 0 100%;
  }

  .other-solutions .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .other-solutions .solution-card {
    padding: 30px 25px;
  }

  .other-solutions .solution-icon {
    width: 70px;
    height: 70px;
  }

  .other-solutions .solution-card h3 {
    font-size: 18px;
  }

  .other-solutions .solution-card p {
    font-size: 14px;
  }

  .other-solutions .solution-more {
    font-size: 14px;
  }

  .partners-grid {
    gap: 25px;
    padding: 25px 10px;
  }

  .partner-item {
    width: 180px;
    height: 90px;
    padding: 18px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pagination {
    gap: 6px;
    margin-top: 40px;
  }

  .pagination-btn,
  .pagination-number {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .pagination-ellipsis {
    padding: 0 6px;
  }

  .news-detail-title {
    font-size: 28px;
  }

  .news-detail-image {
    height: 250px;
  }

  .news-detail-lead {
    font-size: 16px;
    padding: 20px;
  }

  .news-detail-content h2 {
    font-size: 22px;
  }

  .news-detail-content p,
  .news-detail-content li {
    font-size: 15px;
  }

  .news-detail-footer {
    flex-direction: column;
    gap: 20px;
  }

  .news-detail-share {
    width: 100%;
    justify-content: space-between;
  }

  .related-news-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: 1;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
  }

  .footer-column {
    flex: 1;
    min-width: 120px;
  }

  .footer-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .section-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .wap_gao{height: auto!important; }
  .wap_banner2le{width: 100%!important;padding-top: 120px!important;padding-bottom: 20px;}
  .product-detail-banner2-le h1{font-size: 2.5rem!important}
  .product-detail-banner2 {
    height: auto;
  }
  .product-detail-banner2-le,
  .product-detail-banner2-ri {
    width: 100%;
    float: none;
  }
  .product-detail-banner2-ri {
    padding-top: 0;
  }
  .product-detail-banner2-ri img {
    width: 100%;
    height: auto;
    display: block;
  }
  .hero-content h1 {
    font-size: 32px;
  }
    .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 3%;
    font-size:1em;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .product-card {
    width: 320px;
    padding: 25px;
  }

  .partners-grid {
    gap: 20px;
    padding: 20px 5px;
  }

  .partner-item {
    width: 160px;
    height: 80px;
    padding: 15px;
  }

  .other-solutions .solutions-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .other-solutions .solution-card {
    padding: 25px 20px;
  }

  .other-solutions .solution-icon {
    width: 60px;
    height: 60px;
  }

  .other-solutions .solution-card h3 {
    font-size: 17px;
  }

  .other-solutions .solution-card p {
    font-size: 13px;
  }

  .other-solutions .solution-more {
    font-size: 13px;
  }
}

.product-detail-banner {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.product-detail-banner2 {
  background-color: var(--bg-huise);
  position: relative;
  height: 500px;
  overflow: hidden;
}
.product-detail-banner3 {
  background-color: var(--bg-huise);
  position: relative;
  height: 320px;
  overflow: hidden;
}
.product-detail-banner2-le {
    width: 60%;
    padding-top: 200px;
}
.product-detail-banner2-le h1 {
    font-size: 3rem;
    line-height: 3.4rem;
    letter-spacing: -.01em;
    margin-bottom: 1.5rem;
}
.product-detail-banner2-le p {
    margin-bottom: 2.5rem;
    font-size:16px;
}
.product-detail-banner2-ri {
    width: 40%;
    padding-top: 100px;
}

.product-detail-banner .banner-image {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
}

.product-detail-banner .banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-banner .banner-image.mobile {
  display: none;
}

.product-detail-banner .banner-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-banner .banner-content h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--gradient-primary);
  margin: 80px 0px 20px 0px;
  text-align: left;
}

.product-detail-banner .banner-content p {
  font-size: 22px;
  color: var(--gradient-primary);
  max-width: 800px;
  text-align: left;
}
.bannercontentp{
  width: 75%!important;
}
.banner-slogan {
  background-color: #d6daf5;
  padding: 20px 0;
}

.slogan-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.slogan-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

.slogan-icon {
  flex-shrink: 0;
  background: #0469f6;
    border-radius: 10px;
    color: #fff;
}

.product-description {
  padding: 80px 0;
}

.product-description .section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 60px;
  text-align: center;
}

.description-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.description-block:last-child {
  margin-bottom: 0;
}

.description-block.reverse {
  direction: rtl;
}

.description-block.reverse > * {
  direction: ltr;
}

.description-image {
  border-radius: 20px;
  overflow: hidden;
  /*box-shadow: var(--shadow-lg);*/
}

.description-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.description-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.description-text p {
  font-size: 22px;
  color: var(--text-light);
  line-height: 1.9;
}

.product-advantages {
  padding: 80px 0;
  background: var(--bg-light);
}

.product-advantages .section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 50px;
  text-align: center;
}

.advantages-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.advantage-item {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.advantage-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.advantage-item .advantage-icon {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.advantage-item .advantage-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advantage-item .advantage-text {
  flex: 1;
}

.advantage-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.advantage-item p {
  font-size: 18px;
  /* color: var(--text-light); */
  line-height: 1.6;
}

.cta-section {
  padding: 80px 0;
  background: var(--gradient-primary);
}

.cta-section .cta-content {
  text-align: center;
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.cta-section .btn {
  background: var(--white);
  color: var(--primary-color);
}

.cta-section .btn:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

@media (max-width: 1024px) {
  .product-detail-banner {
    height: 450px;
  }

  .product-detail-banner .banner-content h1 {
    font-size: 40px;
  }

  .product-detail-banner .banner-content p {
    font-size: 16px;
  }

  .banner-slogan {
    padding: 30px 0;
  }

  .slogan-list {
    gap: 40px;
  }

  .slogan-item {
    font-size: 16px;
  }

  .advantages-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantage-item {
    padding: 30px 20px;
  }

  .advantage-item .advantage-icon {
    width: 80px;
    height: 80px;
  }

  .advantage-item h3 {
    font-size: 17px;
  }

  .advantage-item p {
    font-size: 13px;
  }

  .description-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .description-block.reverse {
    direction: ltr;
  }

  .description-image img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .product-detail-banner {
    height: 400px;
  }

  .product-detail-banner .banner-image.desktop {
    display: none;
  }

  .product-detail-banner .banner-image.mobile {
    display: block;
  }

  .product-detail-banner .banner-content h1 {
    font-size: 32px;
  }

  .product-detail-banner .banner-content p {
    font-size: 15px;
  }

  .product-description,
  .product-advantages,
  .cta-section {
    padding: 50px 0;
  }

  .product-description .section-title,
  .product-advantages .section-title,
  .cta-section h2 {
    font-size: 28px;
  }

  .advantage-item {
    padding: 25px 15px;
  }

  .advantage-item .advantage-icon {
    width: 70px;
    height: 70px;
  }

  .advantage-item h3 {
    font-size: 16px;
  }

  .advantage-item p {
    font-size: 13px;
  }

  .description-block {
    gap: 30px;
    margin-bottom: 50px;
  }

  .description-image img {
    height: 250px;
  }

  .description-text h3 {
    font-size: 22px;
  }

  .description-text p {
    font-size: 15px;
  }

  .cta-section p {
    font-size: 16px;
  }
  .product-detail-banner2 {
      height: auto;
      padding-bottom: 20px;
  }
  .product-detail-banner2-le {
      width: 100%;
      padding-top: 120px;
  }
  .product-detail-banner2-ri {
    width: 100%;
    padding-top: 30px;
  }
}

@media (max-width: 480px) {
  .product-detail-banner {
    height: 350px;
  }

  .product-detail-banner .banner-content h1 {
    font-size: 28px;
  }

  .product-detail-banner .banner-content p {
    font-size: 14px;
  }

  .banner-slogan {
    padding: 25px 0;
  }

  .slogan-list {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .slogan-item {
    font-size: 14px;
    width: calc(50% - 10px);
  }

  .advantages-list {
    grid-template-columns: 1fr;
  }

  .advantage-item {
    padding: 25px 15px;
  }

  .advantage-item .advantage-icon {
    width: 70px;
    height: 70px;
  }

  .advantage-item h3 {
    font-size: 16px;
  }

  .advantage-item p {
    font-size: 13px;
  }

  .description-block {
    gap: 20px;
    margin-bottom: 40px;
  }

  .description-image img {
    /*height: 200px;*/
  }

  .description-text h3 {
    font-size: 20px;
  }

  .description-text p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .cookie-consent {
    bottom: 15px;
    left: 15px;
    right: 15px;
  }

  .cookie-content {
    padding: 20px 25px;
    max-width: none;
    border-radius: 25px;
  }

  .cookie-close {
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
  }

  .cookie-text {
    font-size: 13px;
    margin-bottom: 15px;
    padding-right: 25px;
  }

  .cookie-links {
    gap: 10px;
    margin-bottom: 15px;
  }

  .cookie-link {
    font-size: 13px;
  }

  .cookie-accept {
    padding: 10px 25px;
    font-size: 13px;
  }
  .feature-icon{
    height: auto
  }
  .news-image{
    height: auto;
  }
  .news-content{
    padding: 15px;
  }
  .section-header1{
        padding-top: 60%;
        margin-bottom: 30px;
  }
  .feature-card{
    padding: 10px;
  }
  .solution-card{
    padding: 20px;
  }

}
