/* ============================================
   Homepage - index.html
   ============================================ */

.index-page .home-banner {
  background: url("/images/home-top-banner.png") no-repeat center top;
  background-size: cover;
  padding: 40px 0 0 0;
  text-align: center;
  color: #fff;
}

.index-page .home-banner .container {
  height: 100%;
  position: relative;
}

.index-page .banner-ant {
  position: absolute;
  right: 0;
  bottom: 0;
  max-height: 100%;
  max-width: 320px;
  object-fit: contain;
  object-position: right bottom;
  z-index: 0;
}

.index-page .home-banner .el-row {
  position: relative;
  z-index: 1;
}

.index-page .home-banner h1 {
  font-size: 30px;
  font-weight: var(--primary-font-weight);
  margin-bottom: 24px;
}

.index-page .home-steps {
  margin-top: 12px;
  padding: 24px 0;
}

.index-page .home-steps .step-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.index-page .home-steps .step-number {
  font-size: 58px;
  font-weight: var(--primary-font-weight);
  color: #437BFB;
  line-height: 1;
}

.index-page .home-steps .step-info h3 {
  font-size: 24px;
  font-weight: var(--primary-font-weight);
  color: #FFFFFF;
  margin-bottom: 4px;
}

.index-page .home-steps .step-info p {
  font-size: 12px;
  color: #FFFFFF;
  line-height: 1.4;
}

/* Promo Cards */
.index-page .promo-section {
  padding: 20px 0;
}

.index-page .promo-section .el-row {
  display: flex;
  align-items: stretch;
}

.index-page .promo-card {
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  height: 100%;
}

.index-page .promo-card:hover {
  transform: translateY(-2px);
}

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

/* Product Section */
.index-page .product-section {
  padding-top: 20px;
  background-color: var(--content-bg);
}

.index-page .product-col-5 {
  flex: 0 0 20%;
  max-width: 20%;
}

