/* ===== Module: Hero Section ===== */
.page-tai-xiu__hero-section {
  padding: 10px 16px 0;
}

.page-tai-xiu__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.page-tai-xiu__hero-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 17/5;
  object-fit: cover;
  border-radius: 12px;
}

.page-tai-xiu__hero-content {
  max-width: 1200px;
  margin: 24px auto 0;
  text-align: center;
}

.page-tai-xiu__hero-title {
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #FFF6D6;
  margin: 0 0 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-tai-xiu__hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #FFF6D6;
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
}

.page-tai-xiu__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-tai-xiu__btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-tai-xiu__btn--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-tai-xiu__btn--secondary {
  background: transparent;
  color: #FFD36B;
  border: 2px solid #FFD36B;
}

.page-tai-xiu__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 211, 107, 0.5);
}

/* ===== Module: Logo Grid ===== */
.page-tai-xiu__partners-section {
  padding: 60px 16px 0;
}

.page-tai-xiu__section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFF6D6;
  margin-bottom: 36px;
}

.page-tai-xiu__logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.page-tai-xiu__logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 280px;
  width: 100%;
  box-sizing: border-box;
}

.page-tai-xiu__logo-image {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  object-fit: contain;
  background-color: #111111;
  border-radius: 8px;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #3A2A12;
  transition: box-shadow .3s ease;
}

.page-tai-xiu__logo-image:hover {
  box-shadow: 0 0 20px rgba(255, 211, 107, 0.3);
}

.page-tai-xiu__logo-cta {
  padding: 10px 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease;
  display: inline-block;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-tai-xiu__logo-cta:hover {
  transform: scale(1.05);
}

.page-tai-xiu__logo-item:nth-child(5) {
  grid-column: 2;
}

.page-tai-xiu__logo-item:nth-child(6) {
  grid-column: 3;
}

/* ===== Module: Guide Section ===== */
.page-tai-xiu__guide-section {
  padding: 60px 16px 72px;
}

.page-tai-xiu__guide-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.page-tai-xiu__guide-title {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
  color: #FFD36B;
  margin-bottom: 18px;
}

.page-tai-xiu__guide-desc {
  text-align: center;
  line-height: 1.8;
  color: #FFF6D6;
  max-width: 850px;
  margin: 0 auto 50px;
}

.page-tai-xiu__guide-step {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 16px;
  padding: 28px;
}

.page-tai-xiu__guide-text {
  flex: 1 1 300px;
}

.page-tai-xiu__guide-step-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #FFD36B;
  margin-bottom: 14px;
}

.page-tai-xiu__guide-text p {
  line-height: 1.8;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-tai-xiu__guide-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-tai-xiu__guide-btn:hover {
  transform: scale(1.03);
}

.page-tai-xiu__guide-figure {
  flex: 1 1 350px;
  margin: 0;
}

.page-tai-xiu__guide-figure img {
  width: 100%;
  height: auto;
  max-width: 800px;
  aspect-ratio: 2/1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #3A2A12;
}

/* ===== Module: FAQ ===== */
.page-tai-xiu__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  margin-bottom: 16px;
  padding: 0 20px;
}

.page-tai-xiu__faq-question {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 600;
  font-size: 1.05rem;
  color: #FFF6D6;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.page-tai-xiu__faq-question::-webkit-details-marker {
  display: none;
}

.page-tai-xiu__faq-toggle {
  color: #FFD36B;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 400;
}

.page-tai-xiu__faq-answer {
  padding-bottom: 20px;
  color: #FFF6D6;
  line-height: 1.7;
}

/* ===== Responsive: Tablet & Mobile ===== */
@media (max-width: 1024px) {
  .page-tai-xiu__logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .page-tai-xiu__logo-item:nth-child(5),
  .page-tai-xiu__logo-item:nth-child(6) {
    grid-column: auto;
  }
  
  .page-tai-xiu__hero-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .page-tai-xiu__hero-section {
    padding: 10px 10px 0;
  }
  
  .page-tai-xiu__hero-image {
    aspect-ratio: 2/1;
  }
  
  .page-tai-xiu__hero-content {
    margin-top: 18px;
  }
  
  .page-tai-xiu__hero-title {
    font-size: 1.35rem;
  }
  
  .page-tai-xiu__hero-subtitle {
    font-size: 1rem;
  }
  
  .page-tai-xiu__logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
  }
  
  .page-tai-xiu__logo-item:nth-child(5),
  .page-tai-xiu__logo-item:nth-child(6) {
    grid-column: auto;
  }
  
  .page-tai-xiu__logo-cta {
    font-size: 0.9rem;
    padding: 8px 18px;
  }
  
  .page-tai-xiu__section-title {
    font-size: 1.5rem;
  }
  
  .page-tai-xiu__guide-step {
    padding: 20px;
  }
  
  .page-tai-xiu__guide-title {
    font-size: 1.5rem;
  }
  
  .page-tai-xiu__guide-figure {
    flex-basis: 100%;
  }
  
  .page-tai-xiu__guide-figure img {
    aspect-ratio: 2/1;
  }
  
  .page-tai-xiu img {
    max-width: 100%;
    height: auto;
  }
  
  .page-tai-xiu__btn {
    width: auto;
    max-width: 100%;
    padding: 12px 24px;
  }

  .page-tai-xiu__guide-btn {
    width: auto;
    max-width: 100%;
    padding: 10px 20px;
  }

  .page-tai-xiu__logo-cta {
    width: auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-tai-xiu__hero-actions {
    flex-direction: column;
  }
  
  .page-tai-xiu__btn {
    width: 100%;
    justify-content: center;
  }
  
  .page-tai-xiu__guide-step {
    flex-direction: column;
  }

  .page-tai-xiu__logo-cta {
    width: 100%;
  }
}