/* =========================
   Module-02: Service Feature Row
   ========================= */

.b2b-service-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 8px 40px 67px;
  background: #ffffff;
  margin: 24px auto !important;
  box-sizing: border-box;
}

.b2b-service-item {
  display: flex;
  gap: 12px;
  flex: 1;
}

.b2b-service-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.b2b-service-text {
  flex: 1;
}

.b2b-service-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 6px 0;
  line-height: 1.3;
  text-transform: capitalize;
}

.b2b-service-text p {
  font-size: 14px;
  color: #666666;
  margin: 0;
  line-height: 1.6;
}

/* 平板适配 */
@media (max-width: 1024px) {
  .b2b-service-row {
    padding: 35px 25px;
    gap: 28px;
  }
}

/* 手机端 */
@media (max-width: 767px) {
  .b2b-service-row {
    flex-direction: column;
    gap: 30px;
    padding: 30px 60px;
  }

  .b2b-service-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .b2b-service-icon {
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 480px) {
  .b2b-service-row {
    padding: 28px 20px;
  }
}




/* =========================
   Module-03: Logo Carousel
   ========================= */

.b2b-logo-carousel {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 60px 67px;
  gap: 40px;
  overflow: hidden;
  box-sizing: border-box;
}

/* 左侧标题 */
.b2b-logo-carousel__title {
  flex-shrink: 0;
  width: 444px;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  line-height: 1.4;
  white-space: nowrap;
}

/* 右侧轮播外壳 */
.b2b-logo-carousel__track-wrap {
  flex: 1;
  overflow: hidden;
}

/* 轮播轨道 */
.b2b-logo-carousel__track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: b2bLogoScroll 20s linear infinite;
}

/* 鼠标悬停暂停 */
.b2b-logo-carousel__track-wrap:hover .b2b-logo-carousel__track {
  animation-play-state: paused;
}

/* 单个 Logo */
.b2b-logo-carousel__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b2b-logo-carousel__item img {
  height: 30px;
  width: auto;
  opacity: 0.7;
  transition: opacity .25s ease;
  display: block;
}

.b2b-logo-carousel__item img:hover {
  opacity: 1;
}

/* 无缝滚动动画 */
@keyframes b2bLogoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* 平板适配 */
@media (max-width: 1024px) {
  .b2b-logo-carousel {
    padding: 25px 40px;
    gap: 30px;
  }

  .b2b-logo-carousel__title {
    width: 300px;
    font-size: 16px;
  }

  .b2b-logo-carousel__track {
    gap: 40px;
  }

  .b2b-logo-carousel__item img {
    height: 26px;
  }
}

/* 手机端 */
@media (max-width: 767px) {
  .b2b-logo-carousel {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 15px;
    gap: 20px;
  }

  .b2b-logo-carousel__title {
    width: auto;
    white-space: normal;
  }

  .b2b-logo-carousel__track {
    gap: 38px;
    animation-duration: 18s;
  }

  .b2b-logo-carousel__item img {
    height: 24px;
  }
}


/* =========================
   About Section Module-04 CSS
   Popup handled by Woody global popup
   ========================= */

.b2b-about {
  background: #ffffff;
  padding: 40px 67px;
  box-sizing: border-box;
}

.b2b-about__top {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 50px;
}

.b2b-about__video {
  flex: 1;
}

.b2b-about__video iframe {
  width: 100%;
  height: 380px;
  border-radius: 16px;
  border: none;
  display: block;
}

.b2b-about__text {
  flex: 1;
}

.b2b-about__tag {
  color: #007bff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.b2b-about__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 12px;
  color: #111111;
}

.b2b-about__desc {
  font-size: 15px;
  line-height: 1.65;
  color: #555555;
  margin: 0 0 10px;
}

.b2b-about__link {
  color: #007bff;
  font-size: 15px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin: 0 0 15px;
}

.b2b-about__link:hover {
  text-decoration: underline;
}

/* 按钮：调用 Woody 全站 Formspree 弹窗 */
.b2b-about__btn {
  background: #007bff;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  text-align: center;
  border: none;
  transition: all .25s ease;
  line-height: 1.2;
}

.b2b-about__btn::after {
  content: "→";
  font-size: 16px;
  line-height: 1;
}

.b2b-about__btn:hover {
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
}

/* 数据统计 */
.b2b-about__stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
  gap: 24px;
}

.b2b-about__stat {
  flex: 1;
}

.b2b-about__num {
  font-family: 'Inter', 'Noto Sans SC', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
}

.b2b-about__label {
  font-family: 'Inter', 'Noto Sans SC', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #000000;
}

/* 平板适配 */
@media (max-width: 1024px) {
  .b2b-about {
    padding: 30px 40px;
  }

  .b2b-about__top {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }

  .b2b-about__video,
  .b2b-about__text {
    width: 100%;
  }

  .b2b-about__video iframe {
    height: 300px;
  }

  .b2b-about__title {
    font-size: 26px;
  }
}

/* 手机适配 */
@media (max-width: 767px) {
  .b2b-about {
    padding: 25px 15px;
  }

  .b2b-about__top {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 35px;
  }

  .b2b-about__video {
    width: 100%;
  }

  .b2b-about__video iframe {
    height: 220px;
  }

  .b2b-about__text {
    width: 100%;
    text-align: left;
  }

  .b2b-about__title {
    font-size: 22px;
  }

  .b2b-about__btn {
    display: inline-flex;
    width: fit-content;
  }

  .b2b-about__stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .b2b-about__stat {
    width: 100%;
    text-align: center;
  }

  .b2b-about__num {
    font-size: 26px;
  }

  .b2b-about__label {
    font-size: 15px;
  }
}

/* =========================
   Main Products Module-05 CSS
   Popup handled by Woody global popup
   ========================= */

.b2b-products {
  background: #f8f9fa;
  padding: 60px 71px;
  margin: 0 auto;
  box-sizing: border-box;
}

.b2b-products__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.b2b-products__heading {
  max-width: 720px;
}

.b2b-products__tag {
  color: #007bff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.b2b-products__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #111111;
  line-height: 1.25;
}

.b2b-products__desc {
  color: #555555;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* 按钮：调用 Woody 全站 Formspree 弹窗 */
.b2b-products__popup-btn {
  background: #007bff;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  line-height: 1.2;
  white-space: nowrap;
}

.b2b-products__popup-btn::after {
  content: "→";
  font-size: 16px;
  line-height: 1;
}

.b2b-products__popup-btn:hover {
  background: #000000;
  color: #ffffff;
  text-decoration: none;
}

/* 产品列表 */
.b2b-products__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.b2b-products__item {
  overflow: hidden;
}

.b2b-products__img-link {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
}

.b2b-products__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform .4s ease;
}

.b2b-products__item:hover .b2b-products__img {
  transform: scale(1.05);
}

.b2b-products__item-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #111111;
  line-height: 1.35;
}

.b2b-products__item-desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.5;
  margin: 0 0 12px;
}

.b2b-products__link {
  color: #007bff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.b2b-products__link:hover {
  text-decoration: underline;
}

/* 平板 */
@media (max-width: 1024px) {
  .b2b-products {
    padding: 50px 40px;
  }

  .b2b-products__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 手机 */
@media (max-width: 767px) {
  .b2b-products {
    padding: 30px 15px;
  }

  .b2b-products__top {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .b2b-products__title {
    font-size: 26px;
  }

  .b2b-products__popup-btn {
    width: fit-content;
  }

  .b2b-products__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .b2b-products__img {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .b2b-products__list {
    grid-template-columns: 1fr;
  }

  .b2b-products__img {
    height: 200px;
  }
}

/* =========================
   Products 3 Columns Module-06 CSS
   Popup handled by Woody global popup
   ========================= */

.b2b-products-3 {
  background: #ffffff;
  padding: 60px 71px;
  margin: 0 auto;
  box-sizing: border-box;
}

.b2b-products-3__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.b2b-products-3__heading {
  max-width: 720px;
}

.b2b-products-3__tag {
  color: #007bff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.b2b-products-3__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #111111;
  line-height: 1.25;
}

.b2b-products-3__desc {
  color: #555555;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* 按钮：调用 Woody 全站 Formspree 弹窗 */
.b2b-products-3__popup-btn {
  background: #007bff;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  line-height: 1.2;
  white-space: nowrap;
}

.b2b-products-3__popup-btn::after {
  content: "→";
  font-size: 16px;
  line-height: 1;
}

.b2b-products-3__popup-btn:hover {
  background: #000000;
  color: #ffffff;
  text-decoration: none;
}

/* 产品网格 */
.b2b-products-3__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.b2b-products-3__card {
  width: 100%;
}

.b2b-products-3__img-link {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
}

.b2b-products-3__img {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.b2b-products-3__card:hover .b2b-products-3__img {
  transform: scale(1.05);
}

.b2b-products-3__item-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #111111;
  line-height: 1.35;
}

.b2b-products-3__item-desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.5;
  margin: 0 0 12px;
}

.b2b-products-3__link {
  color: #007bff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.b2b-products-3__link:hover {
  text-decoration: underline;
}

/* 平板 */
@media (max-width: 1024px) {
  .b2b-products-3 {
    padding: 50px 40px;
  }

  .b2b-products-3__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 手机 */
@media (max-width: 767px) {
  .b2b-products-3 {
    padding: 30px 15px;
  }

  .b2b-products-3__top {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .b2b-products-3__title {
    font-size: 26px;
  }

  .b2b-products-3__popup-btn {
    width: fit-content;
  }

  .b2b-products-3__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
  }

  .b2b-products-3__img {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .b2b-products-3__grid {
    grid-template-columns: 1fr;
  }

  .b2b-products-3__img {
    height: 200px;
  }
}



/* =========================
   Module-07: Product Main Feature
   ========================= */

.b2b-feature {
  background: #ffffff;
  padding: 60px 71px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* 顶部标题区 */
.b2b-feature__header {
  margin-bottom: 50px;
}

.b2b-feature__tag {
  color: #007bff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.b2b-feature__title {
  font-size: 42px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 15px;
  line-height: 1.2;
}

.b2b-feature__desc {
  font-size: 18px;
  color: #555555;
  line-height: 1.6;
  max-width: 80%;
  margin: 0;
}

/* 4列布局 */
.b2b-feature__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
}

.b2b-feature__card {
  box-sizing: border-box;
}

/* 图标 */
.b2b-feature__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.b2b-feature__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .25s ease;
}

.b2b-feature__icon img:hover {
  transform: scale(1.15);
}

.b2b-feature__card-title {
  font-size: 18px;
  font-weight: 600;
  color: #111111;
  margin: 0 0 12px;
  line-height: 1.35;
}

.b2b-feature__card-desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

/* 平板适配 */
@media (max-width: 1024px) {
  .b2b-feature__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .b2b-feature__desc {
    max-width: 100%;
  }
}

/* 手机适配 */
@media (max-width: 767px) {
  .b2b-feature {
    padding: 30px 15px;
  }

  .b2b-feature__header {
    margin-bottom: 35px;
  }

  .b2b-feature__title {
    font-size: 28px;
  }

  .b2b-feature__desc {
    font-size: 16px;
  }

  .b2b-feature__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}


/* Modules-08-外层容器，和其它模块保持统一边距 */
.why-us-wrap {
  background: #f8f9fa;
  padding: 60px 71px;
  margin: 0 auto;
  border-radius: 16px;
}

/* 标题区 */
.why-us-header {
  margin-bottom: 40px;
}

.why-us-tag {
  color: #007bff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.why-us-title {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin: 0 0 15px;
  line-height: 1.2;
}

.why-us-desc {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  max-width: 60%;
}

/* 4列布局 */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* 卡片 */
.why-us-card {
  background: #007bff;
  color: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.why-us-card:hover {
  transform: translateY(-8px);
}

/* 图标 */
.why-us-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.why-us-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* 标题 */
.why-us-card-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.4;
}

/* 描述 */
.why-us-card-desc {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* 平板 */
@media (max-width: 1024px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-desc {
    max-width: 100%;
  }
}

/* 手机 */
@media (max-width: 767px) {

  .why-us-wrap {
    padding: 30px 15px;
  }

  .why-us-title {
    font-size: 28px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .why-us-desc {
    font-size: 16px;
  }
}



/* =========================
  Modules-09 MANUFACTURING PROCESS
========================= */

.process-wrap {
  background: #ffffff;
  padding: 60px 71px;
  margin: 0 auto;
}

/* 标题区 */
.process-header {
  margin-bottom: 40px;
}

.process-tag {
  color: #007bff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.process-title {
  font-size: 48px;
  font-weight: 700;
  color: #111;
  margin: 0 0 15px;
  line-height: 1.2;
}

.process-desc {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  max-width: 80%;
}

/* 横向画廊 */
.process-gallery {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: 497px;
  gap: 12px;
}

/* 单个项目 */
.process-item {
  width: 95px;
  height: 100%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: width 0.6s ease;
  cursor: pointer;
  flex-shrink: 0;
}

/* 背景图 */
.process-bg {
  position: absolute;
  inset: 0;
  background: url('https://beyouboss.com/wp-content/uploads/2026/05/s8Img.jpg') center center / cover no-repeat;
  filter: brightness(0.85);
  transition: all 0.6s ease;
  z-index: 1;
}

/* 竖排标题 */
.rotate-title {
  position: absolute;
  left: 50%;
  top: 80px;
  white-space: nowrap;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  transform: translate(-50%, 0) rotate(90deg);
  z-index: 3;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.process-item.active .rotate-title {
  opacity: 0;
}

/* 内容区域 */
.process-content {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 2;
  color: #fff;
}

/* 文案动画 */
.text-block {
  opacity: 0;
  transform: translateY(90px);
  transition: all 0.7s ease;
  margin-bottom: 20px;
}

.process-item.active .text-block {
  opacity: 1;
  transform: translateY(-200px);
}

.text-block h3 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px;
}

.text-block p {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  max-width: 500px;
  margin: 0;
}

/* 按钮 */
.process-btn {
  display: none;
  padding: 14px 28px;
  background: #007bff;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.process-item.active .process-btn {
  display: inline-block;
}

.process-btn:hover {
  background: #000;
  color: #fff;
}

/* 展开状态 */
.process-item.active {
  width: 784px;
}

.process-item.active .process-bg {
  filter: brightness(1.1);
}

/* 平板 */
@media (max-width: 1024px) {

  .process-gallery {
    height: 380px;
  }

  .process-item.active {
    width: 500px;
  }

  .process-desc {
    max-width: 100%;
  }

  .process-item.active .text-block {
    transform: translateY(0) !important;
  }
}

/* 手机 */
@media (max-width: 767px) {

  .process-wrap {
    padding: 30px 15px;
  }

  .process-title {
    font-size: 32px;
  }

  .process-gallery {
    flex-direction: column;
    height: auto;
    gap: 15px;
  }

  .process-item {
    width: 100%;
    height: 100px;
  }

  .process-item.active {
    width: 100%;
    height: 400px;
  }

  .rotate-title {
    display: none;
  }
}


/* =========================
   Modules-10-WORKSHOP SECTION
========================= */

.factory-workshop-section {
  background: #ffffff;
  padding: 60px 71px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: visible !important;
}

/* 标题区 */
.workshop-header {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.workshop-tag {
  color: #007bff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.workshop-title {
  font-size: 48px;
  font-weight: 700;
  color: #111;
  margin: 0;
  line-height: 1.2;
  white-space: pre-line;
}

/* 轮播容器 */
.carousel-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  z-index: 1;
}

/* 轮播轨道 */
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* 单张图片 */
.carousel-slide {
  min-width: 100%;
  height: 500px;
  background: url('https://beyouboss.com/wp-content/uploads/2026/05/s9Img.jpg') center center / cover no-repeat;
}

/* 箭头 */
.carousel-arrow {
  position: absolute;
  top: 175px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: #007bff;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 9999;
}

.carousel-arrow.next {
  right: 70px;
}

.carousel-arrow.prev {
  right: 139px;
}

.carousel-arrow:hover {
  background: #eeeeee;
  color: #007bff;
}

/* 底部内容 */
.carousel-footer {
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-text {
  max-width: 500px;
}

.footer-title {
  font-size: 24px;
  font-weight: 600;
  color: #111;
  margin: 0 0 10px;
}

.footer-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* 按钮 */
.book-btn {
  padding: 14px 28px;
  background: #007bff;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-bottom: 68px;
}

.book-btn:hover {
  background: #000;
  color: #fff;
}

/* 平板 */
@media (max-width: 1024px) {

  .factory-workshop-section {
    padding: 40px 20px;
  }

  .workshop-title {
    font-size: 32px;
  }

  .carousel-slide {
    height: 350px;
  }

  .carousel-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .carousel-arrow {
    top: 90px;
    width: 60px;
    height: 60px;
  }

  .book-btn {
    margin-bottom: 0;
  }
}

/* 手机 */
@media (max-width: 767px) {

  .workshop-title {
    font-size: 28px;
  }

  .carousel-slide {
    height: 260px;
  }

  .carousel-arrow {
    top: 105px;
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .carousel-arrow.prev {
    right: 80px;
  }

  .carousel-arrow.next {
    right: 20px;
  }

  .footer-title {
    font-size: 22px;
  }
}



/* =========================
   Modules-11-QUALITY CONTROL SECTION
========================= */

.quality-control-section {
  background: #ffffff;
  padding: 60px 71px;
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 100%;
  margin: 0 auto;
}

/* 左侧视频区域 */
.video-container {
  flex: 1;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.video-cover {
  width: 100%;
  height: 500px;
  background: url('https://beyouboss.com/wp-content/uploads/2026/05/s10Img.jpg') center center / cover no-repeat;
  filter: brightness(0.85);
}

/* 播放按钮 */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 2px solid rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.play-button::after {
  content: "▶";
  color: #007bff;
  font-size: 24px;
  margin-left: 4px;
}

.play-button:hover {
  background: #ffffff;
  transform: translate(-50%, -50%) scale(1.1);
}

/* 右侧内容 */
.text-container {
  flex: 1;
}

.text-tag {
  color: #007bff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.text-title {
  font-size: 48px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin: 0 0 30px;
}

.text-desc {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 40px;
}

/* 按钮 */
.cta-button {
  display: inline-block;
  padding: 16px 32px;
  background: #007bff;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #000;
  color: #fff;
}

/* 平板 */
@media (max-width: 1024px) {

  .quality-control-section {
    flex-direction: column;
    padding: 40px 20px;
    gap: 40px;
  }

  .video-container,
  .text-container {
    width: 100%;
  }

  .video-cover {
    height: 350px;
  }

  .text-title {
    font-size: 32px;
  }
}

/* 手机 */
@media (max-width: 767px) {

  .quality-control-section {
    padding: 30px 15px;
  }

  .video-cover {
    height: 250px;
  }

  .play-button {
    width: 65px;
    height: 65px;
  }

  .play-button::after {
    font-size: 20px;
  }

  .text-title {
    font-size: 28px;
  }

  .text-desc {
    font-size: 16px;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
}



/* =========================
  Modules-12 QUALITY CONTROL IMAGE SECTION
========================= */

.quality-control-section {
  background: #ffffff;
  padding: 60px 71px;
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 100%;
  margin: 0 auto;
}

/* 左侧文案 */
.text-container {
  flex: 1;
}

.text-tag {
  color: #007bff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.text-title {
  font-size: 48px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin: 0 0 30px;
}

.text-desc {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 40px;
}

/* CTA按钮 */
.cta-button {
  display: inline-block;
  padding: 16px 32px;
  background: #007bff;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #000;
  color: #fff;
}

/* 右侧图片 */
.image-container {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
}

.image-cover {
  width: 100%;
  height: 500px;
  background: url('https://beyouboss.com/wp-content/uploads/2026/05/s10Img2.jpg') center center / cover no-repeat;
}

/* 平板 */
@media (max-width: 1024px) {

  .quality-control-section {
    flex-direction: column;
    padding: 40px 20px;
    gap: 40px;
  }

  .text-container,
  .image-container {
    width: 100%;
  }

  .image-cover {
    height: 350px;
  }

  .text-title {
    font-size: 32px;
  }
}

/* 手机 */
@media (max-width: 767px) {

  .quality-control-section {
    padding: 30px 15px;
    gap: 30px;
  }

  .text-title {
    font-size: 28px;
  }

  .text-desc {
    font-size: 16px;
  }

  .image-cover {
    height: 250px;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
}



/* =========================
   Modules-13-INDUSTRY SHOWCASE SECTION
========================= */

.industry-showcase-section {
  background: #ffffff;
  padding: 60px 71px;
  max-width: 100%;
  margin: 0 auto;
}

/* 标题区 */
.section-header {
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin: 0 0 20px;
  text-align: center;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* 主图 */
.main-image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.main-bg-image {
  width: 100%;
  height: 500px;
  background: url('https://beyouboss.com/wp-content/uploads/2026/05/s11Img.jpg') center center / cover no-repeat;
}

/* 图片文案 */
.overlay-content {
  position: absolute;
  top: 60px;
  left: 40px;
  color: #fff;
}

.overlay-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 15px;
}

.overlay-text {
  font-size: 14px;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 0 30px;
}

.overlay-btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.overlay-btn:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}

/* 底部标签栏 */
.industry-tabs {
  display: flex;
  background: #fff;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
}

/* 蓝色高亮块 */
.tab-highlight {
  position: absolute;
  top: -18px;
  bottom: -18px;
  left: 0;
  width: calc(100% / 6);
  background: #007bff;
  border-radius: 16px;
  transition: left 0.3s ease;
  z-index: 0;
}

/* 标签 */
.tab-item {
  flex: 1;
  padding: 30px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.tab-item.active {
  color: #fff;
}

.tab-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.tab-item.active .tab-icon {
  filter: brightness(0) invert(1);
}

.tab-label {
  font-size: 14px;
  font-weight: 500;
}

/* 平板 */
@media (max-width: 1024px) {

  .industry-showcase-section {
    padding: 40px 20px;
  }

  .section-title {
    font-size: 28px;
  }

  .main-bg-image {
    height: 350px;
  }

  .overlay-content {
    top: 30px;
    left: 20px;
  }

  .overlay-title {
    font-size: 24px;
  }

  .industry-tabs {
    flex-wrap: wrap;
  }

  .tab-item {
    flex: 1 1 33.333%;
    padding: 20px 10px;
  }

  .tab-highlight {
    display: none;
  }

  .tab-item.active {
    background: #007bff;
    border-radius: 16px;
  }
}

/* 手机 */
@media (max-width: 767px) {

  .industry-showcase-section {
    padding: 30px 15px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .main-bg-image {
    height: 260px;
  }

  .overlay-content {
    top: 20px;
    left: 20px;
  }

  .overlay-title {
    font-size: 22px;
  }

  .overlay-text {
    max-width: 220px;
    font-size: 13px;
  }

  .tab-item {
    flex: 1 1 50%;
  }
}



/* =========================
  Modules-14 APPLICATION / INDUSTRIES
========================= */

.industries-section {
  background: #f8f9fc;
  padding: 60px 71px;
  border-radius: 20px;
  max-width: 100%;
  margin: 0 auto;
}

/* 标题区 */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  text-align: left;
}

.header-left {
  max-width: 50%;
}

.section-tag {
  color: #007bff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin: 0;
}

.header-right {
  max-width: 35%;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-top: -20px;
}

/* 行业卡片 */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.industry-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.industry-image {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-title {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0 0 8px;
}

.industry-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* 分隔线 */
.divider-line {
  width: 100%;
  height: 1px;
  background: #ddd;
  margin: 30px 0;
}

/* 更多应用 */
.more-applications {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.app-label {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px 40px;
  width: 100%;
}

.app-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-check-icon {
  width: 16px;
  height: 16px;
  border: 1.5px solid #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-check-icon::after {
  content: "✓";
  font-size: 10px;
  font-weight: bold;
  color: #111;
}

.app-item a {
  color: #111;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.app-item a:hover {
  color: #007bff;
}

/* 平板 */
@media (max-width: 1024px) {

  .industries-section {
    padding: 40px 20px;
  }

  .section-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .header-left,
  .header-right {
    max-width: 100%;
  }

  .header-right {
    margin-top: 0;
  }

  .section-title {
    font-size: 28px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .more-applications {
    flex-direction: column;
    gap: 20px;
  }

  .app-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 手机 */
@media (max-width: 767px) {

  .industries-section {
    padding: 30px 15px;
  }

  .section-title {
    font-size: 26px;
  }

  .industry-image {
    height: 180px;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .app-grid {
    grid-template-columns: 1fr;
  }

  .app-item a {
    font-size: 15px;
  }
}


/* =========================
  Modules-15-APPLICATION INDUSTRIES
========================= */

.application-industries-section{
    background:#f8f9fc;
    padding:60px 71px;
    border-radius:20px;
    max-width:100%;
    margin:0 auto;
}

/* 顶部标题区 */

.application-industries-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.application-industries-left{
    width:55%;
}

.application-industries-tag{
    color:#007bff;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:10px;
}

.application-industries-title{
    font-size:42px;
    font-weight:700;
    color:#111;
    line-height:1.2;
    margin:0;
}

.application-industries-right{
    width:35%;
}

.application-industries-right p{
    font-size:16px;
    color:#555;
    line-height:1.6;
    margin:0;
}

/* 行业卡片 */

.application-industries-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:40px;
}

.application-industry-card{
    display:flex;
    flex-direction:column;
}

.application-industry-image{
    width:100%;
    height:220px;
    border-radius:16px;
    overflow:hidden;
    margin-bottom:15px;
}

.application-industry-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.application-industry-title{
    font-size:18px;
    font-weight:600;
    color:#111;
    margin:0 0 8px;
}

.application-industry-desc{
    font-size:14px;
    color:#555;
    line-height:1.6;
    margin:0;
}

/* 分隔线 */

.application-divider{
    height:1px;
    background:#dcdcdc;
    margin:30px 0;
}

/* 更多应用 */

.application-more-wrap{
    display:flex;
    gap:40px;
    align-items:flex-start;
}

.application-more-label{
    font-size:18px;
    font-weight:600;
    color:#111;
    white-space:nowrap;
}

.application-more-grid{
    flex:1;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px 40px;
}

.application-more-item{
    display:flex;
    align-items:center;
    gap:8px;
}

.application-check{
    width:16px;
    height:16px;
    border:1.5px solid #111;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.application-check:before{
    content:"✓";
    font-size:10px;
    font-weight:700;
}

.application-more-item a{
    color:#111;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    transition:0.3s;
}

.application-more-item a:hover{
    color:#007bff;
}

/* 平板 */

@media(max-width:1024px){

.application-industries-section{
    padding:40px 20px;
}

.application-industries-header{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
}

.application-industries-left,
.application-industries-right{
    width:100%;
}

.application-industries-title{
    font-size:30px;
}

.application-industries-grid{
    grid-template-columns:repeat(2,1fr);
}

.application-more-wrap{
    flex-direction:column;
    gap:20px;
}

.application-more-grid{
    grid-template-columns:repeat(2,1fr);
}

}

/* 手机 */

@media(max-width:767px){

.application-industries-section{
    padding:30px 15px;
}

.application-industries-title{
    font-size:26px;
}

.application-industries-grid{
    grid-template-columns:1fr;
}

.application-industry-image{
    height:220px;
}

.application-more-grid{
    grid-template-columns:1fr;
}

}



/* =========================
   Modules16-PROCESS WORKFLOW SECTION
========================= */

.workflow-process-section{
    background:#ffffff;
    padding:60px 71px;
    display:flex;
    gap:100px;
    max-width:100%;
    margin:0 auto;
}

/* 左侧 */

.workflow-process-text{
    flex:1;
}

.workflow-process-tag{
    color:#007bff;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:10px;
}

.workflow-process-title{
    font-size:48px;
    font-weight:700;
    color:#111;
    line-height:1.2;
    margin:0 0 30px;
}

.workflow-process-desc{
    font-size:18px;
    color:#555;
    line-height:1.7;
    margin:0;
}

/* 右侧步骤 */

.workflow-steps{
    flex:1.2;
    position:relative;
}

/* 竖线 */

.workflow-steps::before{
    content:'';
    position:absolute;
    left:20px;
    top:0;
    bottom:0;
    width:1px;
    background:#007bff;
}

/* 单项 */

.workflow-step-item{
    display:flex;
    gap:24px;
    margin-bottom:30px;
    align-items:flex-start;
}

.workflow-step-number-wrap{
    position:relative;
    z-index:2;
}

.workflow-step-number{
    width:40px;
    height:40px;
    border-radius:50%;
    border:1px solid #007bff;
    background:#fff;
    color:#007bff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    font-weight:500;
    transition:.3s;
}

.workflow-step-item.active .workflow-step-number{
    background:#007bff;
    color:#fff;
}

/* 内容 */

.workflow-step-content{
    flex:1;
}

.workflow-step-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.workflow-step-title{
    font-size:24px;
    font-weight:600;
    color:#111;
    margin:0;
}

.workflow-step-icon{
    font-size:14px;
    color:#111;
    transition:.3s;
    user-select:none;
}

.workflow-step-item.active .workflow-step-icon{
    transform:rotate(180deg);
}

/* 折叠内容 */

.workflow-step-details{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.workflow-step-item.active .workflow-step-details{
    max-height:220px;
}

.workflow-step-details p{
    font-size:16px;
    color:#555;
    line-height:1.7;
    margin:12px 0 0;
}

/* 平板 */

@media(max-width:1024px){

.workflow-process-section{
    flex-direction:column;
    gap:40px;
    padding:40px 20px;
}

.workflow-process-title{
    font-size:32px;
}

}

/* 手机 */

@media(max-width:767px){

.workflow-process-section{
    padding:30px 15px;
}

.workflow-process-title{
    font-size:26px;
}

.workflow-process-desc{
    font-size:16px;
}

.workflow-step-title{
    font-size:20px;
}

}




/* Modules-17-模块容器 */
.contact-faq-section {
  background: #007bff;
  padding: 60px 71px;
  display: flex;
  align-items: flex-start;
  gap: 80px;
  max-width: 100%;
  margin: 0 auto;
}

/* 左侧表单容器 */
.form-container {
  flex: 1;
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-top: 10px;
}

.contact-left .sub-title {
  font-size: 14px;
  color: #007bff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contact-left .main-title {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}
.contact-left .desc {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* 表单样式 */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 16px;
  background: #f5f7fa;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  color: #333;
}
.form-textarea {
  height: 140px;
  resize: vertical;
}
.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #007bff;
  border: 1px solid #007bff;
  padding: 10px 16px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}
.upload-btn:hover {
  background: #007bff;
  color: #fff;
}
.submit-btn {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.submit-btn:hover {
  background: #000;
}

#filePreview {
  margin-top:8px;
  font-size:13px;
  color:#333;
}
#filePreview img{
  max-width:120px;
  border-radius:6px;
  margin-top:5px;
}

/* 右侧 FAQ 容器 */
.faq-container {
  flex: 1;
}
.faq-title {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
}
.faq-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin: 0 0 40px;
}

/* FAQ 列表 */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-height: 568px;
}
.faq-item {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  flex-shrink: 0;
}
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
}
.faq-number {
  font-size: 16px;
  font-weight: 500;
  color: #555;
  margin-right: 15px;
}
.faq-question {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  margin: 0;
}

/* FAQ 按钮修复 */
.faq-toggle-btn {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  border-radius: 50%;
  background: #eee;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.faq-toggle-icon {
  font-size: 16px;
  color: #555;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item.active .faq-toggle-btn {
  background: #007bff;
}
.faq-item.active .faq-toggle-icon {
  color: #fff;
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 200px;
}
.faq-answer-text {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  padding: 0 24px 18px;
  margin: 0;
}

/* 响应式 */
@media (max-width: 1024px) {
  .contact-faq-section {
    flex-direction: column;
    padding: 40px 20px;
    gap: 40px;
  }
  .form-container,
  .faq-container {
    width: 100%;
  }
  .faq-title {
    font-size: 36px;
  }
  .faq-list {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .submit-btn {
    width: 100%;
  }
}




/* Modules-18-testimonial 模块容器 */
.testimonial-section {
  background: #ffffff;
  padding: 70px 80px;
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1600px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* 左侧文字区 */
.testimonial-left {
  flex: 0 0 32%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-icon {
  font-size: 100px;
  font-weight: 900;
  color: #007bff;
  line-height: 0.8;
  margin: 0 0 20px 0;
  display: block;
}
.testimonial-title {
  font-size: 52px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin: 0 0 25px 0;
}
.testimonial-desc {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 50px 0;
}

/* 箭头按钮 */
.testimonial-arrows {
  display: flex;
  gap: 18px;
}
.arrow-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: none;
  background: #007bff;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.arrow-btn:hover {
  background: #ffffff;
  color: #007bff;
  border: 1px solid #007bff;
}

/* 右侧轮播区 */
.testimonial-right {
  flex: 0 0 65%;
  overflow: hidden;
  position: relative;
}
.testimonial-slider {
  display: flex;
  transition: transform 0.6s ease;
  width: 300%;
}
.testimonial-card {
  flex: 0 0 50%;
  padding: 0 15px;
  box-sizing: border-box;
}
.card-inner {
  background: #fff;
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
  height: 100%;
  box-sizing: border-box;
}
.stars {
  color: #007bff;
  font-size: 20px;
  margin-bottom: 25px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 35px 0;
}
.client-info {
  display: flex;
  align-items: center;
  gap: 22px;
}
.client-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.client-name {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin: 0 0 6px 0;
}
.client-title {
  font-size: 16px;
  color: #666;
  margin: 0;
}

/* 响应式适配 */
@media (max-width: 1200px) {
  .testimonial-section {
    flex-direction: column;
    padding: 50px 20px;
    gap: 40px;
  }
  .testimonial-left,
  .testimonial-right {
    flex: 0 0 100%;
    width: 100%;
  }
  .testimonial-title {
    font-size: 36px;
  }
  .testimonial-card {
    flex: 0 0 100%;
  }
}



/* Modules-19 */
.resource-section {
  background: #ffffff;
  padding: 70px 80px;
  max-width: 1600px;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}

.resource-header {
  margin-bottom: 60px;
}

.resource-title {
  font-size: 48px;
  font-weight: 700;
  color: #111;
  margin: 0 0 20px;
}

.resource-subtitle {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  max-width: 60%;
  margin: 0 auto;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.resource-card {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.card-image-wrap {
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: #f9fafc;
  transition: transform 0.4s ease;
}

.resource-card:hover .card-image {
  transform: scale(1.05);
}

.card-footer {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex: 1;
}

.card-content {
  flex: 1;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin: 0 0 15px;
  transition: color 0.3s ease;
}

.card-links,
.card-text {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.card-links a {
  display: block;
  color: #111;
  text-decoration: underline;
  margin: 5px 0;
  transition: color 0.3s ease;
}

.card-arrow {
  background: #001f3f;
  width: 61px;
  height: 225px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.card-arrow a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.resource-card:hover .card-title {
  color: #007bff;
}

.resource-card:hover .card-arrow {
  background: #007bff;
}

.resource-card:hover .card-arrow a {
  color: #fff;
}

.resource-card:hover .card-links a {
  color: #007bff;
}

@media (max-width: 1024px) {
  .resource-section {
    padding: 50px 20px;
  }

  .resource-subtitle {
    max-width: 100%;
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }
}



/* Modules-20 */
.blog-section {
  background: #ffffff;
  padding: 70px 80px;
  max-width: 1600px;
  margin: 0 auto;
  box-sizing: border-box;
}

.blog-header {
  margin-bottom: 60px;
}

.blog-title {
  font-size: 56px;
  font-weight: 700;
  color: #111;
  margin: 0 0 20px;
}

.blog-subtitle {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  max-width: 50%;
  margin: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.card-image-wrap {
  overflow: hidden;
  border-radius: 16px;
}

.card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .card-image {
  transform: scale(1.05);
}

.card-content {
  padding: 25px 0;
}

.card-post-title {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin: 0 0 15px;
}

.card-excerpt {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 0 0 20px;
}

.card-link {
  font-size: 16px;
  font-weight: 500;
  color: #007bff;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.card-link::after {
  content: "↗";
}

@media (max-width: 1024px) {
  .blog-section {
    padding: 50px 20px;
  }
  .blog-subtitle {
    max-width: 100%;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}




/* Modules-20 */
/* =========================
   CTA Banner Module CSS
   Popup handled by Woody global popup
   ========================= */

.b2b-cta-banner {
  max-width: 1600px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

/* 背景图 + 半透明遮罩 */
.b2b-cta-banner__bg {
  width: 100%;
  height: 500px;
  background-image: url('https://beyouboss.com/wp-content/uploads/2026/05/s20BG.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.b2b-cta-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 31, 63, 0.6);
}

/* 文字内容区 */
.b2b-cta-banner__content {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  z-index: 1;
  max-width: 550px;
}

.b2b-cta-banner__title {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 20px;
}

.b2b-cta-banner__desc {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
  margin: 0 0 30px;
}

/* 按钮：调用 Woody 全站 Formspree 弹窗 */
.b2b-cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: #111111;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all .25s ease;
  line-height: 1.2;
}

.b2b-cta-banner__btn::after {
  content: "→";
  font-size: 18px;
  line-height: 1;
}

.b2b-cta-banner__btn:hover {
  background: #000000;
  color: #ffffff;
  text-decoration: none;
}

/* 平板适配 */
@media (max-width: 1024px) {
  .b2b-cta-banner__bg {
    height: 400px;
  }

  .b2b-cta-banner__content {
    left: 30px;
    max-width: 90%;
  }

  .b2b-cta-banner__title {
    font-size: 36px;
  }
}

/* 手机适配 */
@media (max-width: 600px) {
  .b2b-cta-banner {
    border-radius: 12px;
  }

  .b2b-cta-banner__bg {
    height: 350px;
  }

  .b2b-cta-banner__content {
    left: 20px;
    right: 20px;
    max-width: none;
  }

  .b2b-cta-banner__title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .b2b-cta-banner__desc {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .b2b-cta-banner__btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}




/* Modules-21 */
.founder-message-section {
  background: #ffffff;
  padding: 70px 71px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  max-width: 1600px;
  margin: 0 auto;
}

.founder-left {
  flex: 1;
  position: relative;
}

.founder-title {
  font-size: 56px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin: 0 0 30px;
}

.founder-text {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 20px;
}

.founder-text:last-of-type {
  margin-bottom: 40px;
}

.founder-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.founder-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.founder-name {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin: 0 0 5px;
}

.founder-position {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.founder-left::after {
  content: "“";
  position: absolute;
  bottom: 0;
  right: 20px;
  font-size: 120px;
  color: #eee;
  line-height: 1;
  opacity: 0.6;
}

.founder-right {
  flex: 1;
}

.message-form {
  background: #fff;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 30px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
  font-size: 16px;
  outline: none;
  background: transparent;
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.form-icon {
  position: absolute;
  right: 0;
  bottom: 12px;
  color: #999;
}

.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #007bff;
  color: #007bff;
  background: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upload-btn:hover {
  background: #007bff;
  color: #fff;
}

.upload-btn input {
  display: none;
}

#filePreview {
  margin-top:8px;
  font-size:13px;
  color:#333;
}

#filePreview img {
  max-width:120px;
  border-radius:6px;
}

.submit-btn {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #000;
}

@media (max-width: 1024px) {
  .founder-message-section {
    flex-direction: column;
    padding: 40px 20px;
    gap: 40px;
  }
  .founder-title {
    font-size: 36px;
  }
  .message-form {
    padding: 30px;
  }
  .form-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .submit-btn {
    width: 100%;
  }
}



