/* 仅作用于产品落地内容区，避免覆盖全站 body / 页脚 .foot-msgboard 等公共样式 */
.product-page,
.product-page * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #ff5b03;
  --primary-hover: #e55a10;
  --dark-bg: #2c3e50;
  --darker-bg: #19192d;
  --text-dark: #333333;
  --text-gray: #666666;
  --text-light: #999999;
  --border-color: #e5e5e5;
  --bg-light: #f8f9fa;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-gray);
}

/* Hero Badge */
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b1a 0%, #ff8c42 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-badge-glow {
  display: none;
}

.breadcrumb a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.breadcrumb-separator {
  color: var(--text-light);
}

.breadcrumb-current {
  color: var(--text-dark);
  font-weight: 500;
}

/* Hero Section (Banner) */
.hero {
  background: linear-gradient(135deg, #fff5f0 0%, #ffede4 50%, #fff8f5 100%);
  padding: 20px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}

.hero-left h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 24px;
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tag {
  background: transparent;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 13px;
  color: #FF5B03;
  border: 1px solid #FF5B03;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  padding: 10px 32px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 107, 26, 0.35);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 107, 26, 0.45);
}

.btn-outline {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

/* Form Card */
.form-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  position: sticky;
  top: 20px;
  text-align: center;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #19192d;
  padding: 6px 16px 0;
  font-size: 14px;
  margin-bottom: 10px;
}

.form-badge-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.form-title {
  font-size: 28px;
  font-weight: Bold;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.form-subtitle {
  font-size: 14px;
  color: #ff5b04;
  margin-bottom: 14px;
  display: inline-block;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group select {
  width: 100%;
  background-color: rgba(107, 95, 143, 0.06);
  color: #6b798f;
  padding: 14px 16px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.1);
}

.product-page .form-card .btn-submit {
  width: 100%;
  padding: 10px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}

.product-page .form-card .btn-submit:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 107, 26, 0.35);
}

.form-privacy-note {
  display: none;
  margin: 0;
}

/* Stats Bar */
.stats-bar {
  background: var(--darker-bg);
  padding: 28px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  position: relative;
  text-align: center;
  color: white;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.16);
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #F3F3F3;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 16px;
  color: #999999;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: white;
}



.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-line {
  font-size: 18px;
  color: #FF5B04;
  margin-bottom: 16px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #322F2F;
  margin-bottom: 16px;
}

.mobile-break {
  display: none;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-gray);
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-card {
  background: white;
  border: 1px solid #E5E5E5;
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 19px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* Pricing Card */
.pricing-sidebar {
  width: 100%;
  height: 90%;
  background-image: url("img/bg-2.png");
  background-size: 100% 170px;
  background-position: top;
  background-repeat: no-repeat;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  position: sticky;
  top: 20px;
}

.pricing-title {
  font-size: 24px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #EBEBEB;
  color: var(--text-dark);
}

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border-color);
  font-size: 15px;
}

.price-item:last-child {
  border-bottom: none;
}

.price-label {
  color: #999;
}

.price-value {
  font-weight: 700;
  color: #333333;
}

.price-highlight {
  color: var(--primary-color);
  font-size: 18px;
}

/* FAQ Section */
.faq-section {
  padding: 60px 0 30px;
  background: var(--bg-light);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-question {
  padding: 8px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  color: var(--text-dark);
  transition: all 0.3s;
}

.faq-item.active .faq-question {
  color: #FF5B03;
  background: rgba(255, 91, 3, 0.03);
}

.faq-item.active .faq-icon img {
  filter: brightness(0) saturate(100%) invert(33%) sepia(98%) saturate(3575%) hue-rotate(6deg) brightness(101%) contrast(101%);
}

.faq-question:hover {
  background: rgba(255, 91, 3, 0.03);
}

.faq-icon {
  font-size: 20px;
  color: var(--primary-color);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(-10px);
}

.faq-item.active .faq-answer {
  padding: 0 24px 20px;
  max-height: 5000px;
  opacity: 1;
  transform: translateY(0);
}

.faq-item.active .faq-icon {
  height: 20px;
  line-height: 20px;
  transform: rotate(180deg);
  transition: none;
}

.faq-answer p {
  padding: 12px 0 0;
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.8;
}

/* Partners / Plans Section */
.partners-section {
  padding: 60px 0 30px;
  background: white;
}

.partners-wrapper {
  position: relative;
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  align-items: center;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0;
  flex: 1;
}

.partners-grid::-webkit-scrollbar {
  display: none;
}

.partners-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.partners-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.partners-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.partner-logo {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  transition: all 0.3s;
}

.partner-logo:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* Table */
.table-wrapper {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

th {
  background: var(--bg-light);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
}

td {
  font-size: 14px;
  color: var(--text-gray);
}

tr:last-child td {
  border-bottom: none;
}

tr:hover {
  background: #fafafa;
}

.path-tab-btn.active {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(255, 91, 3, 0.08);
}

.opening-plan-section {
  padding: 56px 0 46px;
  background: #fff;
}

.opening-plan-header {
  margin-bottom: 24px;
}

.opening-plan-subtitle {
  color: #666;
  font-size: 16px;
}

.opening-plan-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0 auto 18px;
  max-width: 980px;
  border-bottom: 1px solid #ececec;
}

.opening-plan-tab-btn {
  border-radius: 0;
  border: 0;
  background: transparent;
  color: #888;
  padding: 10px 8px 12px;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-height: 74px;
  position: relative;
}

.opening-plan-tab-btn:hover {
  background: transparent;
  color: #555;
}

.opening-plan-tab-btn.active {
  color: #f01567;
  background: transparent;
}

.opening-plan-tab-btn.active::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -1px;
  height: 2px;
  background: #f01567;
}

.opening-plan-brand-mark {
  width: 76px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  border-radius: 4px;
  color: #454545;
  background: #f4f4f4;
}

.opening-plan-brand-label {
  font-size: 14px;
  line-height: 1.2;
}

.opening-plan-brand-huawei .opening-plan-brand-mark::before {
  content: "HUAWEI";
}

.opening-plan-brand-cisco .opening-plan-brand-mark::before {
  content: "CISCO";
}

.opening-plan-brand-cisp .opening-plan-brand-mark::before {
  content: "CISP";
}

.opening-plan-brand-linux .opening-plan-brand-mark::before {
  content: "Linux";
}

.opening-plan-brand-pmi .opening-plan-brand-mark::before {
  content: "PMI";
}

.opening-plan-brand-default .opening-plan-brand-mark::before {
  content: "SPOTO";
}

.opening-plan-table-wrap {
  margin-top: 0;
  border-radius: 0;
  box-shadow: none;
}

.opening-plan-table th {
  background: #edf0f2;
  color: #3a3a3a;
  font-size: 14px;
}

.opening-plan-table td {
  vertical-align: middle;
  background: #fff;
}

.opening-plan-scroll {
  max-height: 360px;
  overflow-y: auto;
}

.opening-plan-scroll::-webkit-scrollbar {
  width: 6px;
}

.opening-plan-scroll::-webkit-scrollbar-thumb {
  background: #ff1a67;
  border-radius: 999px;
}

.opening-plan-scroll::-webkit-scrollbar-track {
  background: #f4f4f4;
}

.opening-status {
  display: inline-block;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
}

.opening-status.is-hot {
  color: #8a2353;
  background: rgba(240, 21, 103, 0.14);
}

.opening-status.is-open {
  color: #2f8f2f;
  background: rgba(47, 143, 47, 0.12);
}

.opening-status.is-closed {
  color: #8b8b8b;
  background: rgba(139, 139, 139, 0.12);
}

.plan-btn {
  padding: 6px 18px;
  background: #ff1a67;
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
}

.plan-btn:hover {
  background: #e80e5c;
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background: white;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.process-step {
  position: relative;
  text-align: center;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  right: -22px;
  width: 13px;
  height: 80px;
  background: url("img/ic-arrow.png") center / contain no-repeat;
  pointer-events: none;
}

.process-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #fff5f0 0%, #ffede4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 auto 20px;
}

.step-title {
  font-size: 24px;
  font-weight: Bold;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 16px;
  color: #656565;
  line-height: 1.7;
}

/* Reviews Section */
.reviews-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.reviews-count {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-count h3 {
  font-size: 36px;
  color: #333333;
  font-weight: 700;
  margin-bottom: 8px;
}

.reviews-highlight {
  color: #ff5b04;
  font-style: italic;
}

.reviews-subtitle {
  font-size: 16px;
  color: #666666;
  line-height: 1.8;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.review-video-wrap {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 14px;
}

.review-video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 10px;
  background: #000;
}

.review-stars {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffb800;
  font-size: 16px;
  margin-bottom: 12px;
}

.review-pass-tag {
  background: #ffede5;
  border-radius: 13px 13px 13px 13px;
  color: #ff5b04;
  font-size: 14px;
  line-height: 1;
  padding: 6px 10px;
}

.review-text {
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 16px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: #FFEADF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF5B04;
  font-weight: 600;
  font-size: 16px;
}

.author-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
}

.author-date {
  font-size: 13px;
  color: var(--text-light);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #ff6b1a 0%, #ff8533 100%);
  padding: 100px 0 ;
  text-align: center;
  color: white;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-white {
  width: 218px;
  background: white;
  color: var(--primary-color);
  padding: 16px 40px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-transparent {
  width: 218px;
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 14px 38px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.btn-transparent:hover {
  background: white;
  color: var(--primary-color);
}

.btn-transparent:hover img {
  filter: brightness(0) saturate(100%) invert(44%) sepia(84%) saturate(2950%)
    hue-rotate(8deg) brightness(101%) contrast(103%);
}

/* Tabs & Icons */
.reviews-section .tabs {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  gap: 0;
  border-bottom: 2px solid #e5e5e5;
}

.reviews-section .tab-btn {
  flex: 1 1 50%;
  width: 50%;
  background: transparent;
  border: none;
  color: #666666;
  cursor: pointer;
  text-align: center;
  padding: 0;
}

.reviews-section .tab-btn span {
  position: relative;
  display: inline-block;
  padding: 8px 0 14px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}

.reviews-section .tab-btn.active span {
  color: #ff5b04;
  font-weight: 700;
}

.reviews-section .tab-btn.active span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: #ff5b04;
}

.icon-tabs {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
}

.icon-tab {
  text-align: center;
  cursor: pointer;
}

.icon-tab-icon {
  width: 72px;
  height: 72px;
  background: var(--bg-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 28px;
  transition: all 0.3s;
}

.icon-tab:hover .icon-tab-icon {
  background: linear-gradient(135deg, #fff5f0 0%, #ffede4 100%);
  transform: translateY(-4px);
}

.icon-tab-label {
  font-size: 14px;
  color: var(--text-gray);
}

/* Header */
.header {
  background: #FF5B03;
  color: white;
  padding: 12px 0;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Floating Consult Button - mobile only */
.floating-consult {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  padding: 12px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(255,255,255,0.95) 60%, rgba(255,255,255,0));
}

.floating-consult-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  border-radius: 12px;
  background: var(--primary-color);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 91, 3, 0.38);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    padding: 40px 0 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-left h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-tags {
    flex-wrap: wrap;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .form-card,
  .pricing-sidebar {
    position: static;
    max-width: 100%;
    margin: 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-number {
    font-size: 36px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .step-number {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .partners-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    overflow-x: auto;
  }

  .partners-btns {
    justify-content: center;
    margin-top: 16px;
  }

  .table-wrapper {
    overflow-x: auto;
  }

  table {
    min-width: 700px;
  }

  .opening-plan-section {
    padding: 36px 0 28px;
  }

  .opening-plan-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px 0;
    border-bottom: 0;
  }

  .opening-plan-tab-btn.active::after {
    left: 24%;
    right: 24%;
  }
}

@media (max-width: 768px) {
  /* 容器样式 */
  .container {
    max-width: 100%;
    padding: 0 16px;
    margin: 0 auto;
  }

  /* 1. 顶部导航栏 */
  .header {
    background: #FF5B03;
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  /* 2. Hero区域 */
  .hero {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFEDE4 100%);
    padding: 20px 0 40px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .form-card {
    width: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 24px;
  }

  .form-card h3 {
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-group input,
  .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-size: 14px;
  }

  .product-page .form-card .btn-submit {
    width: 100%;
    padding: 10px 14px;
    border: none;
    border-radius: 10px;
    background: #FF5B03;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
  }

  .form-privacy-note {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #999999;
    text-align: center;
    line-height: 1.5;
  }

  .breadcrumb {
    font-size: 12px;
    margin-bottom: 16px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B1A 0%, #FF8C42 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 16px;
  }

  .hero-left h1 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
  }

  .hero-tags .tag {
    background: #FF5B03;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
  }

  .hero-buttons .btn.btn-primary {
    background: #FF5B03;
    color: white;
  }

  .hero-buttons .btn-outline {
    background: white;
    color: #333;
    border: 1px solid #E5E5E5;
  }

  /* 3. 统计数据区域 */
  .stats-bar {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFEDE4 100%);
    padding: 40px 0;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-item {
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
  }

  .stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #FF5B03;
    margin-bottom: 4px;
  }

  .stat-label {
    font-size: 13px;
    color: #666;
  }

  /* 4. 课程特色区域 */
  .features-section {
    padding: 40px 0;
    background: white;
  }

  .section-header {
    text-align: center;
    margin-bottom: 32px;
  }

  .section-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
  }

  .section-subtitle {
    font-size: 12px;
    color: #999999;
    line-height: 1.7;
  }

  .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 20px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }

  .feature-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
  }

  .feature-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
  }

  /* 5. 合作伙伴区域 */
  .partners-section {
    padding: 40px 0;
    background: white;
  }

  .partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .partner-logo {
    background: #F8F9FA;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    padding: 12px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
  }

  /* 6. 表格区域 */
  .table-wrapper {
    overflow-x: auto;
    margin-top: 24px;
  }

  table {
    min-width: 600px;
    width: 100%;
    border-collapse: collapse;
  }

  th,
  td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #E5E5E5;
  }

  th {
    background: #F8F9FA;
    font-weight: 600;
    font-size: 13px;
    color: #333;
  }

  td {
    font-size: 13px;
    color: #666;
  }

  /* 7. FAQ区域 */
  .faq-section {
    padding: 40px 0;
    background: #F8F9FA;
  }

  .faq-list {
    max-width: 100%;
  }

  .faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 12px;
  }

  .faq-question {
    padding: 8px 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    color: #333;
  }

  .faq-answer {
    padding: 0 16px 8px;
    font-size: 13px;
    color: #666;
    line-height: 1.7;
  }

  /* 8. 流程步骤区域 */
  .process-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFEDE4 100%);
  }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .process-step {
    border-radius: 12px;
    padding: 20px;
    text-align: center;
  }


  .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B1A 0%, #FF8C42 100%);
    color: white;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
  }

  .step-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
  }

  .step-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
  }

  /* 9. 学员评价区域 */
  .reviews-section {
    padding: 40px 0;
    background: white;
  }

  .reviews-count {
    text-align: center;
    margin-bottom: 24px;
  }

  .reviews-count h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 16px;
  }

  .review-stars {
    margin-bottom: 12px;
  }

  .review-text {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 12px;
  }

  .review-author {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B1A 0%, #FF8C42 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
  }

  .author-name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
  }

  .author-date {
    font-size: 11px;
    color: #999;
  }

  /* 10. CTA区域 */
  .cta-section {
    background: linear-gradient(135deg, #FF5B03 0%, #FF8C42 100%);
    padding: 40px 0;
    color: white;
    text-align: center;
  }

  .cta-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .cta-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
    opacity: 0.9;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn-white {
    background: white;
    color: #FF5B03;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .btn-transparent {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* 12. 响应式调整 */
  @media (max-width: 375px) {
    .hero-left h1 {
      font-size: 24px;
    }

    .section-title {
      font-size: 20px;
    }

    .stat-number {
      font-size: 24px;
    }

    .cta-title {
      font-size: 20px;
    }
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 20px 0 40px;
  }

  .hero-left h1 {
    font-size: 24px;
  }

  .section-title {
    font-size: 22px;
  }

  .stats-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 32px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .icon-tabs {
    gap: 32px;
  }

  .form-card {
    padding: 24px 20px;
  }

  .pricing-sidebar {
    padding: 20px;
  }

  .hero-buttons .btn {
    padding: 10px 24px;
  }
}

/* Mobile visual alignment with provided design */
@media (max-width: 768px) {
  body {
    background: #ffffff;
  }

  .hero {
    padding: 18px 0 26px;
  }

  .mobile-break {
    display: block;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 10px;
    font-size: 14px;
    padding: 3px 12px;
    color: #FF5B04;
    background: transparent;
    border: 1px solid #FF5B04;
  }

  .hero-badge-glow {
    display: inline-block;
    position: relative;
    width: 12px;
    height: 12px;
    margin-right: 8px;
    border-radius: 50%;
    background: radial-gradient(
      circle,
      #00dc5d 0 36%,
      rgba(0, 220, 93, 0.3) 36% 100%
    );
    flex: 0 0 12px;
  }

  .hero-badge-glow::after {
    content: none;
  }

  .hero-left h1 {
    text-align: center;
    width: 100%;
    font-size: 36px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 14px;
    text-align: center;
  }

  .hero-tags {
    margin-bottom: 14px;
    gap: 6px;
    justify-content: center;
  }

  .hero-tags .tag {
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
    padding: 7px 9px;
    background: white;
    color: #FF5B04;
    border: 1px solid #FF5B04;
  }

  .hero-buttons {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .hero-buttons .btn {
    border-radius: 30px;
    min-height: 42px;
    font-size: 14px;
    background-color: transparent;
    color: #FF5B04;
    border: 1px solid #FF5B04;
  }

  .form-card {
    border-radius: 14px;
    padding: 18px 16px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  }

  .form-title {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .form-subtitle {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .form-group {
    margin-bottom: 12px;
  }

  .form-group input,
  .form-group select {
    height: 42px;
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 9px;
  }

  .product-page .form-card .btn-submit {
    border-radius: 10px;
    font-size: 14px;
    box-shadow: 0px 7px 14px 0px #F9CBB1;
  }

  .stats-bar {
    background: #10111c;
    padding: 20px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    position: relative;
  }

  .stats-grid::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
  }

  .stat-item {
    border-radius: 10px;
    padding: 14px 8px;
  }

  .stat-number {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 2px;
  }

  .stat-label {
    color: #aeb1ca;
    font-size: 12px;
  }

  .features-section .container > div {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .features-section {
    padding: 28px 0;
  }

  .features-section .section-subtitle[style] {
    margin: 0 0 24px 0 !important;
  }

  .features-section .container > div > div:last-child {
    display: block !important;
    align-items: stretch !important;
  }

  .features-section .pricing-sidebar {
    height: auto;
  }

  .feature-card {
    border-radius: 10px;
    padding: 16px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 6px;
    align-items: center;
  }

  .feature-card .feature-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-bottom: 0;
    width: 42px;
    height: 42px;
  }

  .feature-card .feature-title,
  .feature-card .feature-desc {
    grid-column: 2;
    margin-bottom: 0;
  }

  .feature-desc {
    font-size: 11px;
    line-height: 1.62;
  }

  .pricing-sidebar {
    padding: 18px 23px;
    border-radius: 12px;
    background-size: 100% 130px;
  }

  .pricing-sidebar .btn.btn-primary {
    border-radius: 10px;
  }

  .pricing-title {
    font-size: 24px;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  .price-item {
    font-size: 16px;
    padding: 10px 0;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-line {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .section-title {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 8px;
  }

  .section-subtitle {
    line-height: 1.62;
  }

  .faq-section,
  .partners-section,
  .process-section,
  .reviews-section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .process-grid {
    margin-top: 24px;
  }

  .process-step:not(:last-child)::after {
    top: 50%;
    transform: translateY(-50%);
  }

  .process-step.process-step-no-after::after {
    display: none;
  }

  .tabs {
    gap: 10px;
    margin-bottom: 20px;
  }

  .tab-btn {
    font-size: 16px;
    padding: 6px 8px;
  }

  .reviews-count h3 {
    font-size: 24px;
    line-height: 1.35;
  }

  .review-card {
    border-radius: 10px;
    padding: 14px;
  }

  .review-text {
    font-size: 13px;
  }

  .author-avatar {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .cta-section {
    padding: 30px 0;
  }

  .cta-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .cta-subtitle {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .cta-buttons {
    gap: 10px;
  }

  .btn-white,
  .btn-transparent {
    max-width: none;
    width: 100%;
    border-radius: 10px;
    font-size: 14px;
    padding: 12px 14px;
  }

  .floating-consult {
    display: block;
  }
}


@media (max-width: 768px) {
  .site-header,
  .site-footer {
    display: none;
  }
}

/* Isolate landing-page styles from global common CSS */
.product-page {
  font-family: "SourceHanSansCN-Bold", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: #fff;
}

.product-page .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-page .hero,
.product-page .hero * {
  box-sizing: border-box;
}

.product-page .hero-tags {
  display: flex !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

.product-page .hero-tags .tag {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 4px 16px !important;
  border-radius: 20px !important;
  border: 1px solid #ff5b03 !important;
  background: transparent !important;
  color: #ff5b03 !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  white-space: nowrap;
}

.product-page .form-card input,
.product-page .form-card select,
.product-page .form-card button {
  font-size: 14px;
  line-height: normal;
}

.product-page .form-card .form-group input,
.product-page .form-card .form-group select,
.product-page .form-card .form-group select option {
  color: #333333 !important;
}

.product-page .form-card input::placeholder {
  color: #9aa3b2 !important;
  opacity: 1;
}

.product-page .form-card input::-webkit-input-placeholder {
  color: #9aa3b2 !important;
}

.product-page .form-card input::-moz-placeholder {
  color: #9aa3b2 !important;
  opacity: 1;
}

.product-page .form-card input:-ms-input-placeholder {
  color: #9aa3b2 !important;
}

.product-page .form-card .form-title {
  font-size: 28px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  color: #333333 !important;
  margin-bottom: 14px !important;
  text-align: center !important;
  width: 100%;
  display: block;
}

.product-page .pricing-sidebar,
.product-page .pricing-sidebar * {
  font-family: "SourceHanSansCN-Bold", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif !important;
}

.product-page .pricing-title {
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  color: #333333 !important;
}

.product-page .price-item {
  font-size: 15px !important;
  line-height: 1.6 !important;
}

.product-page .price-label {
  font-size: 15px !important;
  font-weight: 400 !important;
  color: #999999 !important;
}

.product-page .price-value {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #333333 !important;
}

.product-page a {
  text-decoration: none;
}

/* 全站 style.css 有 a:hover { color:#ec0000 }，会污染 Hero 区按钮；在此强制还原 */
.product-page .hero-buttons a.btn {
  text-decoration: none !important;
}

.product-page .hero-buttons a.btn.btn-primary {
  color: #fff !important;
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.product-page .hero-buttons a.btn.btn-primary:hover {
  color: #fff !important;
  background: var(--primary-hover) !important;
  border-color: var(--primary-hover) !important;
}

.product-page .hero-buttons a.btn.btn-outline {
  color: var(--primary-color) !important;
  background: #fff !important;
  border: 2px solid var(--primary-color) !important;
}

.product-page .hero-buttons a.btn.btn-outline:hover {
  color: #fff !important;
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

/* 侧栏「立即报名」同为 <a class="btn btn-primary">，需压住全站 a:hover */
.product-page .pricing-sidebar a.btn {
  text-decoration: none !important;
}

.product-page .pricing-sidebar a.btn.btn-primary {
  color: #fff !important;
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.product-page .pricing-sidebar a.btn.btn-primary:hover {
  color: #fff !important;
  background: var(--primary-hover) !important;
  border-color: var(--primary-hover) !important;
}

.product-page img {
  max-width: 100%;
  height: auto;
}

.product-page .btn,
.product-page .btn-primary,
.product-page .btn-outline,
.product-page .btn-submit,
.product-page .btn-white,
.product-page .btn-transparent {
  font-family: "SourceHanSansCN-Bold", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif !important;
}

.product-page .section-title {
  font-weight: 700 !important;
  color: #322f2f !important;
}

/* 模块4 FAQ：主标题内高亮 span 与外侧同字号（避免全站 span 字号规则压低中间段） */
.product-page .faq-section .section-title span {
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  font-family: inherit !important;
  vertical-align: baseline;
}

.product-page .section-title .faq-title-highlight {
  color: #ff5b04 !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

.product-page .section-subtitle,
.product-page .feature-desc,
.product-page .review-text,
.product-page .faq-answer p,
.product-page .cta-subtitle {
  color: #666666 !important;
}

.product-page .tab-btn {
  font-weight: 600 !important;
}

.product-page .review-pass-tag {
  font-weight: 700 !important;
}

.product-page .faq-question,
.product-page .faq-question span {
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
}

.product-page .reviews-count h3,
.product-page .reviews-count h3 .reviews-highlight {
  font-size: 36px !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
}

.product-page .cta-section .cta-subtitle {
  color: rgba(255, 255, 255, 0.95) !important;
}

.kaibanjihua .tab-wrap .list .item a{
  height: 80px!important;
}

.home_title{
  padding: 35px 0!important;
}
