@import url("base.css");
@import url("header.css");
@import url("footer.css");
@import url("consultation.css");
.container {
  border-top: 1px solid transparent;
  width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  height: 520px;
  background: url("../images/hero-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  text-align: left;
}

.hero h1 {
  width: 680px;
  margin-top: 200px;
  font-size: 48px;
  font-weight: 600;
  line-height: 64px;
  letter-spacing: 0em;
  color: #061b1f;
}

.hero p {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0em;
  margin-top: 24px;
  font-variation-settings: "opsz" auto;
  color: rgba(6, 27, 31, 0.6);
}
/* Product Application Section */
.product-application {
  height: 728px;

  background: linear-gradient(180deg, #f7f9ff 0%, rgba(241, 252, 253, 1) 100%);
}

.product-application h2 {
  margin-top: 64px;
  margin-bottom: 16px;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  line-height: 48px;
  letter-spacing: 0em;
  color: #061b1f;
}
.product-application p {
  text-align: center;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;
  color: rgba(6, 27, 31, 0.6);
}
.tabs {
  margin-top: 2rem;
  text-align: center;
}

.tab-buttons {
  display: inline-block;
  margin-bottom: 56px;
  background: #f0f2f5;
  border-radius: 8px;
}

.tab-btn {
  background: none;
  border: none;
  padding: 8px 32px;
  cursor: pointer;
  font-size: 1.1rem;
  color: #333;
  position: relative;
  border-radius: 8px;
}

.tab-btn.active {
  background: #1818f5;
  color: #fff;
}

.tab-btn.active::after {
  content: none;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s;
}

.tab-pane.active {
  display: block;
}

.tab-pane-content {
  display: flex;
  align-items: start;
  justify-content: space-between;
  text-align: left;
  gap: 2rem;
}

.tab-pane-content .text {
  flex: 1;
  .item {
    display: flex;
    align-items: start;
    justify-content: flex-start;
    gap: 12px;
    h4 {
      font-size: 16px;
      font-weight: 500;
      line-height: 24px;
      letter-spacing: 0em;
    }
    p {
      margin-top: 10px;
    }
  }
  .icon {
    margin-top: 6px;
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    opacity: 1;
    background: linear-gradient(180deg, #1818f5 0%, #00d4ff 100%);
    backdrop-filter: blur(24px);
    transform: rotate(45deg);
  }
}

.tab-pane-content .text h3 {
  font-size: 32px;
  font-weight: bold;
  line-height: 40px;
  letter-spacing: 0em;
  color: #061b1f;
  margin-bottom: 1rem;
}

.tab-pane-content .text p {
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  font-variation-settings: "opsz" auto;
  color: rgba(6, 27, 31, 0.6);
  margin-bottom: 2rem;
}

.tab-pane-content .image {
  flex: 1;
}

.tab-pane-content .image img {
  max-width: 100%;
  border-radius: 8px;
}
/* Technical Highlights Section */
.technical-highlights {
  padding: 80px 0;
  background: #f4f8fb; /* Light background */
}

.technical-highlights h2 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #061b1f;
  margin-bottom: 60px;
}

.highlights-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.highlight-item {
  flex: 1;
  text-align: center;
}

.highlight-item .icon-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-item .icon-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.highlight-item h3 {
  font-size: 18px;
  font-weight: bold;
  color: #061b1f;
  margin-bottom: 16px;
  line-height: 1.4;
}

.highlight-item p {
  font-size: 14px;
  color: rgba(6, 27, 31, 0.6);
  line-height: 24px;
  text-align: left;
}

/* Product Value Section */
.product-value {
  padding: 80px 0;
  background: #fff;
}

.product-value h2 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #061b1f;
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.value-item.active {
  background: linear-gradient(180deg, #f5faff 0%, #ffffff 100%);
  box-shadow: 0 4px 20px rgba(24, 24, 245, 0.1);
  border: 1px solid #e6f0ff;
  border-bottom: 4px solid #1818f5;
  position: relative;
}

.value-item .icon-wrapper {
  width: 80px;
  height: 80px;
  margin-right: 24px;
  flex-shrink: 0;
}

.value-item .icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.value-item .text-wrapper h3 {
  font-size: 20px;
  font-weight: bold;
  color: #061b1f;
  margin-bottom: 12px;
}

.value-item.active .text-wrapper h3 {
  color: #1818f5;
}

.value-item .text-wrapper p {
  font-size: 14px;
  color: rgba(6, 27, 31, 0.6);
  line-height: 24px;
}

/* Product Scenarios */
.product-scenarios {
  padding: 80px 0;
  background-color: #061b1f;
  color: #fff;
  text-align: center;
}

.product-scenarios .container {
  overflow: hidden;
  position: relative;
}

.product-scenarios h2 {
  font-size: 36px;
  margin-bottom: 60px;
  font-weight: normal;
  color: #fff;
  letter-spacing: 2px;
}

.scenarios-slider {
  position: relative;
  padding-bottom: 80px; /* Space for controls */
}

.scenarios-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 248px;
}

.scenarios-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.scenarios-swiper .swiper-slide:hover img {
  transform: scale(1.05);
}

.scenarios-swiper .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: #fff;
  padding: 20px 20px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
}

/* Navigation Buttons */
.scenarios-slider .swiper-button-prev,
.scenarios-slider .swiper-button-next {
  top: auto;
  bottom: 0;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  svg {
    width: 20px;
    height: 20px;
  }
}

.scenarios-slider .swiper-button-prev:hover,
.scenarios-slider .swiper-button-next:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.scenarios-slider .swiper-button-prev {
  left: 0;
}

.scenarios-slider .swiper-button-next {
  left: 56px;
}

/* Pagination Progressbar */
.scenarios-slider .swiper-pagination {
  top: auto;
  bottom: 16px;
  left: auto;
  right: 0;
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
}

.scenarios-slider
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  background: #fff;
}
