/* Pricing Page Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #F8F9FA;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
  width: 100%;
  min-height: 500px;
  padding: 100px 20px 50px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>') repeat;
  opacity: 0.3;
  z-index: 0;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-phone {
  text-align: right;
  margin-bottom: 35px;
}

.hero-phone span {
  font-size: 17px;
  font-weight: bold;
  color: #eee196;
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 25px;
  display: inline-block;
  backdrop-filter: blur(10px);
}

.hero-content {
  text-align: left;
  color: white;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
  text-shadow: 0 3px 6px rgba(0,0,0,0.12);
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 30px;
  opacity: 0.95;
  font-weight: 400;
}

.hero-description .highlight {
  font-weight: 700;
  color: #FFE066;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-register {
  display: inline-block;
  background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
  color: white;
  padding: 14px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.3px;
}

.btn-register:hover {
  background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
  box-shadow: 0 10px 28px rgba(46, 204, 113, 0.48);
}

.btn-register > .btn-shift {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-register:hover > .btn-shift {
  transform: translateY(-3px);
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.98);
  color: #4A90E2;
  padding: 14px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  letter-spacing: 0.2px;
}

.btn-download:hover {
  background: white;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
  border-color: white;
}

.btn-download > .btn-shift {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.btn-download:hover > .btn-shift {
  transform: translateY(-3px);
}

.btn-download i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-download:hover i {
  transform: scale(1.15);
}

/* Section Common Styles */
.section {
  width: 100%;
  padding: 80px 20px;
}

.section-white {
  background: white;
  position: relative;
  z-index: 2;
}

.section-gray {
  background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
  position: relative;
  z-index: 1;
}

.section-gray::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(74, 144, 226, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(53, 122, 189, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title {
  font-size: 44px;
  color: #1A2332;
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: #95A5A6;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
}

.section-divider {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #4A90E2, #357ABD);
  margin: 25px auto 0;
  border-radius: 3px;
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #4A90E2;
  border-radius: 50%;
  left: -12px;
  top: -2px;
}

.section-divider::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #357ABD;
  border-radius: 50%;
  right: -12px;
  top: -2px;
}

/* Pricing Cards Styles */
.pricing-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.16);
  border-color: #4A90E2;
}

.pricing-card.featured {
  border: 2px solid #4A90E2;
  box-shadow: 0 8px 30px rgba(74, 144, 226, 0.2);
}

.pricing-card.featured:hover {
  box-shadow: 0 12px 40px rgba(74, 144, 226, 0.3);
  border-color: #4A90E2;
}

/* PC端：非featured卡片悬停时，featured卡片恢复默认边框 */
@media (min-width: 769px) {
  .pricing-cards-container:has(.pricing-card:not(.featured):hover) .pricing-card.featured {
    border-color: transparent;
  }
}

/* 移动端：所有卡片都显示蓝色边框 */
@media (max-width: 768px) {
  .pricing-card {
    border: 2px solid #4A90E2;
  }
}

.pricing-card-header {
  margin-bottom: 25px;
  position: relative;
}

.pricing-card-title {
  font-size: 28px;
  font-weight: 700;
  color: #1A2332;
  margin-bottom: 8px;
}

.pricing-card-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
  margin-right: 8px;
}

.pricing-card-badge.recommended {
  background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
  color: white;
}

.pricing-card-badge.enterprise {
  background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
  color: white;
}

.pricing-card-badge.private {
  background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
  color: white;
}

.pricing-card-price {
  margin-bottom: 15px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-currency {
  font-size: 24px;
  font-weight: 600;
  color: #4A90E2;
}

.price-amount {
  font-size: 56px;
  font-weight: 800;
  color: #1A2332;
  line-height: 1;
}

.price-unit {
  font-size: 16px;
  color: #7F8C8D;
  font-weight: 500;
}

.price-amount-large {
  font-size: 36px;
  font-weight: 900;
  color: #1A2332;
}

.pricing-card-description {
  color: #7F8C8D;
  font-size: 15px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.pricing-card-cta {
  width: 100%;
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.pricing-card-cta > .btn-shift {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  transition: transform 0.3s ease;
}

.pricing-card-cta.primary {
  background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.pricing-card-cta.primary:hover {
  background: linear-gradient(135deg, #357ABD 0%, #2868A8 100%);
  box-shadow: 0 8px 22px rgba(74, 144, 226, 0.42);
}

.pricing-card-cta.primary:hover > .btn-shift {
  transform: translateY(-2px);
}

.pricing-card-cta.secondary {
  background: white;
  color: #4A90E2;
  border: 2px solid #4A90E2;
}

.pricing-card-cta.secondary:hover {
  background: #4A90E2;
  color: white;
  box-shadow: 0 6px 18px rgba(74, 144, 226, 0.32);
}

.pricing-card-cta.secondary:hover > .btn-shift {
  transform: translateY(-2px);
}

.pricing-card-features {
  flex: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #2C3E50;
  line-height: 1.6;
}

.feature-item i {
  color: #2ECC71;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing-contact-section {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  border-radius: 16px;
  border: 2px dashed #E8E8E8;
  position: relative;
}

.pricing-contact-text {
  font-size: 15px;
  color: #2C3E50;
  margin-bottom: 20px;
  line-height: 1.8;
}

.pricing-contact-text strong {
  color: #4A90E2;
  font-weight: 600;
}

.pricing-contact-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-policy-link {
  position: absolute;
  bottom: 15px;
  right: 20px;
}

.policy-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4A90E2;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.policy-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4A90E2, #357ABD);
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.policy-link:hover {
  color: #357ABD;
  background: rgba(74, 144, 226, 0.05);
}

.policy-link:hover::before {
  width: 100%;
}

.policy-link i {
  font-size: 13px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.policy-link:hover i {
  transform: scale(1.1);
}

.contact-btn {
  padding: 12px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-btn > .btn-shift {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease;
}

.contact-btn.qq-btn {
  background: linear-gradient(135deg, #12B7F5 0%, #0E9FD8 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(18, 183, 245, 0.3);
}

.contact-btn.qq-btn:hover {
  background: linear-gradient(135deg, #0E9FD8 0%, #0A8BC4 100%);
  box-shadow: 0 8px 22px rgba(18, 183, 245, 0.42);
}

.contact-btn.qq-btn:hover > .btn-shift {
  transform: translateY(-2px);
}

.contact-btn.wechat-btn {
  background: linear-gradient(135deg, #09BB07 0%, #078D05 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(9, 187, 7, 0.3);
}

.contact-btn.wechat-btn:hover {
  background: linear-gradient(135deg, #078D05 0%, #067104 100%);
  box-shadow: 0 8px 22px rgba(9, 187, 7, 0.42);
}

.contact-btn.wechat-btn:hover > .btn-shift {
  transform: translateY(-2px);
}

/* Mobile Pricing Tabs - 移动端价格Tab */
.pricing-tabs-mobile {
  display: none; /* 默认隐藏，仅在移动端显示 */
  margin-bottom: 30px;
  background: white;
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.pricing-tab {
  flex: 1;
  padding: 12px 16px;
  border: none;
  background: transparent;
  color: #5A6C7D;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.pricing-tab:hover {
  background: #F0F4F8;
  color: #4A90E2;
}

.pricing-tab.active {
  background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

/* Table Styles */
.table-container {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table thead {
  background: linear-gradient(135deg, #4A90E2, #357ABD);
}

.comparison-table th {
  padding: 20px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}

.comparison-table th:first-child {
  text-align: left;
  padding-left: 30px;
}

.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #E8E8E8;
  text-align: center;
  font-size: 15px;
}

.comparison-table td:first-child {
  text-align: left;
  padding-left: 30px;
  font-weight: 500;
  color: #2C3E50;
}

.comparison-table tbody tr:hover {
  background: #F8F9FA;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.table-note {
  margin-top: 20px;
  color: #7F8C8D;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}

/* Package Price table color styles - 套餐价格表格颜色 */
.section-white .comparison-table tbody tr td:nth-child(2) strong {
  color: #4A90E2;
  font-weight: 700;
}

.section-white .comparison-table tbody tr td:nth-child(3) strong {
  color: #E91E63;
  font-weight: 700;
}

/* Version Difference table color styles - 版本差异表格颜色 */
.section-gray .comparison-table tbody tr td:nth-child(2) strong {
  color: #4A90E2;
  font-weight: 700;
}

.section-gray .comparison-table tbody tr td:nth-child(3) strong {
  color: #E91E63;
  font-weight: 700;
}

/* Video Link Styles */
.video-link {
  color: #4A90E2;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}

/* 下划线动画效果 */
.video-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4A90E2, #357ABD);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.video-link:hover {
  color: #357ABD;
}

.video-link:hover::after {
  width: 100%;
}

.video-link i {
  margin-left: 5px;
  font-size: 14px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

/* 悬停时图标动画 */
.video-link:hover i.fa-play-circle {
  transform: scale(1.1);
}

.video-link:hover i.fa-external-link-alt {
  transform: translate(2px, -2px);
}

/* 激活状态 */
.video-link:active {
  transform: translateY(1px);
}

/* Custom Push Cell Styles - PC端单行显示 */
.custom-push-cell {
  line-height: 1.6;
}

.custom-push-cell .push-row {
  display: inline;
  margin-right: 8px;
}

.custom-push-cell .push-row:last-child {
  margin-right: 0;
}

.custom-push-cell .push-link {
  margin-right: 8px;
}

/* Symbol Styles */
.check-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #2ECC71;
  color: white;
  border-radius: 50%;
  font-size: 12px;
}

.optional-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #F39C12;
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
}

.cross-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #E74C3C;
  color: white;
  border-radius: 50%;
  font-size: 12px;
}

/* Contact Icons */
.contact-icons {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-icon.qq {
  background: linear-gradient(135deg, #12B7F5 0%, #0E9FD8 100%);
  color: white;
}

.contact-icon.wechat {
  background: linear-gradient(135deg, #09BB07 0%, #078D05 100%);
  color: white;
}

.contact-icon:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

.contact-icon > .btn-shift {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.contact-icon:hover > .btn-shift {
  transform: translateY(-2px);
}

.contact-icon i {
  font-size: 18px;
}

/* Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 16px;
  padding: 35px 40px;
  max-width: 450px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  border: none;
  background: #F0F4F8;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #5A6C7D;
  font-size: 18px;
}

.modal-close:hover {
  background: #E8E8E8;
  transform: rotate(90deg);
}

.modal-title {
  font-size: 22px;
  font-weight: 700;
  color: #1A2332;
  margin-bottom: 25px;
  text-align: center;
}

.qq-contact-item {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  border: 2px solid #E8E8E8;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.qq-contact-item:hover {
  border-color: #12B7F5;
  box-shadow: 0 4px 12px rgba(18, 183, 245, 0.1);
}

.qq-contact-item:last-child {
  margin-bottom: 0;
}

.qq-info {
  flex: 1;
}

.qq-name {
  font-size: 16px;
  font-weight: 600;
  color: #1A2332;
  margin-bottom: 4px;
}

.qq-number {
  font-size: 18px;
  font-weight: 700;
  color: #12B7F5;
  font-family: 'Courier New', monospace;
}

.copy-btn {
  background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.copy-btn:hover {
  background: linear-gradient(135deg, #357ABD 0%, #2868A8 100%);
  box-shadow: 0 6px 14px rgba(74, 144, 226, 0.32);
}

.copy-btn > .btn-shift {
  display: inline-block;
  transition: transform 0.3s ease;
}

.copy-btn:hover > .btn-shift {
  transform: translateY(-2px);
}

.copy-btn:active > .btn-shift {
  transform: translateY(0);
}

.copy-btn.copied {
  background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
}

.wechat-qr-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.wechat-qr-item {
  text-align: center;
  flex: 0 0 auto;
}

.wechat-qr-name {
  font-size: 16px;
  font-weight: 600;
  color: #1A2332;
  margin-bottom: 12px;
}

.wechat-qr-image {
  width: 160px;
  height: 160px;
  border: 3px solid #E8E8E8;
  border-radius: 12px;
  object-fit: cover;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 56px;
  height: 56px;
  background: #0095FF;
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.8);
  overflow: visible;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top.visible:hover {
  transform: translateY(0) scale(1);
  background: #1AA3FF;
  box-shadow: 0 10px 28px rgba(0, 149, 255, 0.45);
}

.back-to-top.visible:hover > .btn-shift {
  transform: translateY(-5px) scale(1.08);
}

.back-to-top.visible:active {
  transform: translateY(0) scale(1);
  box-shadow: 0 6px 18px rgba(0, 149, 255, 0.35);
}

.back-to-top.visible:active > .btn-shift {
  transform: translateY(-2px) scale(1.02);
}

.back-to-top > .btn-shift {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top svg {
  position: relative;
  z-index: 1;
}

@keyframes back-to-top-ripple {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.85);
    opacity: 0;
  }
}

.back-to-top::before,
.back-to-top::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(0, 149, 255, 0.5);
  pointer-events: none;
  animation: back-to-top-ripple 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.back-to-top::after {
  animation-delay: 1.2s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 100px 20px 40px;
  }
  
  .hero-phone {
    margin-bottom: 25px;
  }
  
  .hero-phone span {
    font-size: 15px;
    padding: 6px 16px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-description {
    font-size: 14px;
  }
  
  .section {
    padding: 60px 20px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  /* 移动端显示Tab导航 */
  .pricing-tabs-mobile {
    display: flex;
    gap: 6px;
  }
  
  /* 移动端价格卡片容器 */
  .pricing-cards-container {
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
  }
  
  /* 移动端：默认隐藏所有卡片 */
  .pricing-cards-container .pricing-card {
    display: none;
  }
  
  /* 移动端：只显示激活的卡片 */
  .pricing-cards-container .pricing-card.active {
    display: block;
  }
  
  .comparison-table {
    font-size: 14px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
  }
  
  .comparison-table th:first-child,
  .comparison-table td:first-child {
    padding-left: 12px;
    min-width: 100px;
    white-space: nowrap;
  }
  
  /* 移动端：自定义推送单元格分三行显示 */
  .custom-push-cell {
    line-height: 1.8;
  }
  
  .custom-push-cell .push-row {
    display: block;
    margin-bottom: 8px;
    margin-right: 0;
  }
  
  .custom-push-cell .push-row:last-child {
    margin-bottom: 0;
  }
  
  .back-to-top {
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
  }
  
  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 90px 15px 35px;
  }
  
  .hero-phone {
    margin-bottom: 20px;
  }
  
  .hero-phone span {
    font-size: 14px;
    padding: 6px 14px;
  }
  
  .hero-title {
    font-size: 26px;
  }
  
  .hero-description {
    font-size: 13px;
  }
  
  .section {
    padding: 50px 15px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .btn-register,
  .btn-download {
    padding: 13px 30px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  
  .pricing-card {
    padding: 30px 20px;
  }
  
  .pricing-card-title {
    font-size: 24px;
  }
  
  .price-amount {
    font-size: 48px;
  }
  
  .pricing-contact-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .contact-btn {
    width: 100%;
    justify-content: center;
  }
  
  .pricing-policy-link {
    position: static;
    margin-top: 15px;
    text-align: center;
  }
  
  .policy-link {
    font-size: 13px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 10px 6px;
    font-size: 13px;
  }
  
  .comparison-table th:first-child,
  .comparison-table td:first-child {
    min-width: 90px;
    white-space: nowrap;
    padding-left: 10px;
  }
  
  /* 移动端：自定义推送单元格分三行显示 */
  .custom-push-cell {
    line-height: 1.8;
  }
  
  .custom-push-cell .push-row {
    display: block;
    margin-bottom: 8px;
    margin-right: 0;
  }
  
  .custom-push-cell .push-row:last-child {
    margin-bottom: 0;
  }
  
  .modal-content {
    padding: 25px 20px;
  }
  
  .modal-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .qq-contact-item {
    padding: 15px;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  
  .qq-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .qq-name {
    margin-bottom: 0;
  }
  
  .qq-name::after {
    content: ':';
  }
  
  .copy-btn {
    padding: 6px 16px;
    font-size: 13px;
  }
  
  .wechat-qr-container {
    gap: 20px;
  }
  
  .wechat-qr-image {
    width: 140px;
    height: 140px;
  }
  
  .back-to-top {
    width: 46px;
    height: 46px;
    bottom: 20px;
    right: 20px;
  }
  
  .back-to-top svg {
    width: 18px;
    height: 18px;
  }
}

