/* ==========================
   Phase Bar
========================== */

.phase-wrapper {
  background: linear-gradient(90deg, #012a73, #001f63);
  border-radius: 10px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.phase-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 20px;
}

.phase-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.4);
}

.phase-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border: 3px solid #f4c430;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phase-icon i {
  font-size: 28px;
  color: #f4c430;
}

.phase-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.5px;
}

.phase-date {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-top: 4px;
}

.phase-date sup {
  font-size: 12px;
}

/* ==========================
   Section Title
========================== */

.title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 28px 0 22px;
}

.title-wrapper h3 {
  margin: 0;
  color: #0b2c85;
  font-size: 38px;
  font-weight: 800;
  text-transform: uppercase;
}

.title-wrapper .line {
  width: 300px;
  height: 2px;
  background: #d6a84f;
}

/* ==========================
   Benefit Cards
========================== */

.benefit-card {
  height: 100%;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  min-width: 58px;
}

.benefit-icon i {
  font-size: 52px;
  color: #0b2c85;
}

.benefit-content h4 {
  color: #0b2c85;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
}

.benefit-content p {
  margin: 0;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

/* ==========================
   Responsive
========================== */

@media (max-width: 992px) {
  .phase-wrapper {
    flex-direction: column;
  }

  .phase-divider {
    width: 100%;
    height: 1px;
  }

  .title-wrapper .line {
    width: 100px;
  }

  .title-wrapper h2 {
    font-size: 26px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .phase-title {
    font-size: 20px;
  }

  .phase-date {
    font-size: 16px;
  }

  .benefit-content h4 {
    font-size: 18px;
  }

  .benefit-icon i {
    font-size: 42px;
  }
}
.business-support-section {
  background: #fff;
}

.support-card {
  border: 1px solid #d9e2ef;
  border-radius: 16px;
  background: #fff;
  height: 100%;
  padding: 18px;
}

/* Heading */

.support-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.support-heading h3 {
  margin: 0;
  color: #062d82;
  font-size: 30px;
  font-weight: 800;
  white-space: nowrap;
}

.support-heading span {
  flex: 1;
  height: 2px;
  background: #d9a23d;
}

.support-heading i {
  font-size: 42px;
  color: #062d82;
}

/* Left Grid */

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e3e8f0;
  border-left: 1px solid #e3e8f0;
}

.grid-item {
  min-height: 95px;
  border-right: 1px solid #e3e8f0;
  border-bottom: 1px solid #e3e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 10px;
}

.grid-item i {
  font-size: 42px;
  color: #062d82;
  margin-bottom: 8px;
}

.grid-item p {
  margin: 0;
  color: #062d82;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.market-visit {
  grid-column: span 2;
}

/* Workflow */

.workflow-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 25px 10px;
}

.workflow-step {
  text-align: center;
}

.workflow-step i {
  font-size: 42px;
  color: #062d82;
  margin-bottom: 10px;
}

.workflow-step p {
  margin: 0;
  color: #062d82;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.arrow {
  color: #d89b27;
  font-size: 28px;
  font-weight: bold;
}

/* Responsive */

@media (max-width: 991px) {
  .workflow-wrapper {
    gap: 15px;
    justify-content: center;
  }

  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .market-visit {
    grid-column: span 2;
  }

  .support-heading h3 {
    font-size: 22px;
  }
}
/* ===========================
   SPECIAL BENEFITS
=========================== */

.special-benefits-section {
  background: #fff;
  border: 1px solid #e0e5ee;
  border-radius: 18px;
  padding: 25px;
}

/* SAME HEADING STYLE AS PREVIOUS SECTIONS */

.title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 25px;
}

.title-wrapper h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 800;
  color: #062d82;
  text-transform: uppercase;
}

.title-wrapper .line {
  width: 150px;
  height: 2px;
  background: #d7a33d;
}

/* BENEFIT CARDS */

.benefit-box {
  height: 100%;
  background: #fff;
  border: 1px solid #dfe5ee;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.benefit-icon {
  text-align: center;
  margin-bottom: 15px;
}

.benefit-icon i {
  font-size: 40px;
  color: #062d82;
}

.benefit-box h4 {
  text-align: center;
  color: #d61c1c;
  font-size: 18px !important;
  font-weight: 700;
  line-height: 1.4;
  min-height: 80px;
}

.benefit-box hr {
  border-color: #dfe5ee;
  opacity: 1;
  margin: 15px 0;
}

.benefit-box ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.benefit-box ul li {
  color: #222;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 2px;
}

.visit-text {
  font-size: 16px;
  color: #222;
  line-height: 2;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .title-wrapper h2 {
    font-size: 30px;
  }

  .title-wrapper .line {
    width: 80px;
  }

  .benefit-box h4 {
    min-height: auto;
  }
}

/* ============================
   PHASE & PRODUCT CATEGORIES
============================ */

.phase-category-section {
  background: #fff;
}

.phase-category-card {
  display: flex;
  align-items: center;
  border: 1px solid #e5c889;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
  background: #fff;
  height: 170px;
}

/* LEFT PHASE BOX */

.phase-box {
  height: 170px;
  width: 190px;
  min-width: 190px;
  background: #062d82;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
}

.phase-icon {
  width: 52px;
  height: 52px;
  border: 3px solid #f4b321;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phase-icon i {
  color: #f4b321;
  font-size: 26px;
}

.phase-info h3 {
  color: #fff;
  font-size: 18px !important;
  font-weight: 800;
  margin-bottom: 5px;
}

.phase-info p {
  color: #fff;
  margin: 0;
  font-size: 14px !important;
  font-weight: 600;
  line-height: 1.4;
}

/* RIGHT CONTENT */

.category-content {
  flex: 1;
  padding: 12px 16px;
  color: #17337d;
  font-size: 15px;
  line-height: 1.6;
  /* font-weight: 600; */
}

/* TITLE */

.title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}

.title-wrapper h2 {
  margin: 0;
  color: #062d82;
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
}

.title-wrapper .line {
  width: 230px;
  height: 2px;
  background: #d7a33d;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .phase-category-card {
    height: auto;
    flex-direction: column;
  }

  .phase-box {
    width: 100%;
    min-width: 100%;
  }

  .title-wrapper h2 {
    font-size: 28px;
    text-align: center;
  }

  .title-wrapper .line {
    width: 60px;
  }
}
#yiwu-wholesale-market-page .support-grid {
  grid-template-columns: repeat(5, 1fr);
}

#yiwu-wholesale-market-page .benefit-box h4 {
  min-height: 48px;
}
#yiwu-wholesale-market-page .phase-box {
  min-width: 220px;
}
