/* 核心样式优化：强化痛点视觉冲击+转化按钮醒目度 */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  line-height: 1.7;
  background-color: #f8f9fa;
}

/* 导航栏优化：匹配supplyia商务质感，保留原有逻辑 */
nav {
  background: #fff;
  border-bottom: 1px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}
nav .nav-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav strong {
  font-size: 1.1rem;
  color: #0b4ea2;
}
nav a {
  margin-left: 22px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}
nav a:hover {
  color: #0b4ea2;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* 首屏痛点区：保留原有逻辑，微调视觉 */
header {
  background: linear-gradient(120deg, #0b4ea2, #0f6fdc);
  color: #fff;
  padding: 110px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.12);
}
.header-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
  margin: auto;
}
header h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
  line-height: 1.35;
  font-weight: 700;
}
header h2 {
  font-weight: 400;
  margin-bottom: 28px;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  opacity: 0.98;
}
.pain-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 28px 0 32px;
}
.pain-point {
  background: rgba(255,255,255,0.22);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
}

/* 转化按钮：保留原有逻辑，微调阴影 */
.cta-btn {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 17px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 12px;
  font-size: 1.15rem;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
}
.cta-btn:hover {
  background: #1ebe56;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}

/* 通用区块：匹配supplyia容器宽度 */
section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.3rem);
  margin-bottom: 28px;
  color: #0b4ea2;
  text-align: center;
  position: relative;
  font-weight: 700;
}
.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #0b4ea2;
  margin: 18px auto 0;
  border-radius: 2px;
}

/* 核心定位模块：保留原有，微调内边距 */
.positioning {
  background: #f9fbff;
  padding: 45px;
  border-radius: 12px;
  margin-bottom: 45px;
  border-left: 6px solid #0b4ea2;
}
.positioning h3 {
  color: #0b4ea2;
  margin-top: 0;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

/* 核心价值点列表样式：保留原有 */
.core-value-list {
  margin: 20px 0 0;
  padding-left: 0;
  list-style: none;
}
.core-value-list li {
  margin-bottom: 14px;
  line-height: 1.85;
  padding-left: 30px;
  position: relative;
  font-size: 1.02rem;
}
.core-value-list li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 17px;
}

/* 服务/优势卡片：匹配supplyia卡片样式 */
.services, .features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 35px;
  margin-top: 35px;
}
.card {
  border: 1px solid #e9ecef;
  padding: 35px;
  border-radius: 12px;
  transition: all 0.4s ease;
  background: #fff;
  position: relative;
  overflow: hidden;
}
/* 新增：卡片hover顶部渐变条，匹配supplyia */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0b4ea2, #0f6fdc);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(-6px);
  border-color: #dee2e6;
}
.card:hover::before {
  transform: translateX(0);
}
.card h3 {
  color: #0b4ea2;
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 1.25rem;
  font-weight: 600;
}

/* highlight区块：匹配supplyia浅蓝背景 */
.highlight {
  background: #f0f7ff;
}

/* 转化按钮容器：保留原有 */
.quote-btn-wrap {
  text-align: center;
  margin-top: 55px;
}
.quote-btn {
  background: #0b4ea2;
  color: white;
  padding: 16px 38px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 6px 18px rgba(11, 78, 162, 0.25);
  transition: all 0.3s ease;
  display: inline-block;
}
.quote-btn:hover {
  background: #0f6fdc;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(11, 78, 162, 0.35);
}
.quote-tip {
  margin-top: 18px;
  font-size: 1.02rem;
  color: #555;
  font-weight: 500;
}

/* 信任背书模块：匹配supplyia卡片样式 */
.trust-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  margin-top: 55px;
  text-align: center;
}
.trust-item {
  padding: 30px;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  background: #fff;
  transition: all 0.3s ease;
}
.trust-item:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transform: translateY(-3px);
}
.trust-item h3 {
  color: #0b4ea2;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

/* 流程模块：匹配supplyia流程样式 */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 30px;
  text-align: center;
  margin-top: 35px;
}
.process-step {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.07);
}
.process-step span {
  display: block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: #0b4ea2;
  color: white;
  border-radius: 50%;
  margin: 0 auto 18px;
  font-weight: bold;
  font-size: 1.1rem;
}

/* 悬浮联系按钮：保留原有，微调样式 */
.float-contact {
  position: fixed;
  bottom: 35px;
  right: 35px;
  z-index: 100;
  box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}
.float-contact a {
  background: #25D366;
  color: white;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}
.float-contact a:hover {
  background: #1ebe56;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25);
}
.float-contact svg {
  margin-right: 12px;
  width: 22px;
  height: 22px;
}

/* 痛点对比表格样式：保留原有，优化样式 */
.pain-table-wrap {
  margin: 45px 0;
  overflow-x: auto;
}
.pain-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}
.pain-table th, .pain-table td {
  padding: 20px 18px;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
  font-size: 0.98rem;
}
.pain-table th {
  background: #0b4ea2;
  color: #fff;
  font-weight: bold;
  font-size: 1.02rem;
}
.pain-table tr:last-child td {
  border-bottom: none;
}
.pain-table tr:hover {
  background: #f9fbff;
}

/* 痛点模块样式：优化内边距和圆角 */
.pain-trap, .pain-solution, .pain-value {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 35px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border: 1px solid #e9ecef;
}
.pain-trap h3, .pain-solution h3, .pain-value h3 {
  color: #0b4ea2;
  margin-top: 0;
  font-size: 1.5rem;
  margin-bottom: 22px;
  font-weight: 600;
}
.pain-trap ul, .pain-value ul {
  padding-left: 25px;
  margin: 0;
}
.pain-trap li, .pain-value li {
  margin-bottom: 18px;
  line-height: 1.85;
  font-size: 1.02rem;
}

/* 痛点总结模块：优化内边距 */
.pain-summary {
  background: linear-gradient(120deg, #0b4ea2, #0f6fdc);
  color: #fff;
  padding: 35px;
  border-radius: 12px;
  margin: 45px 0;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.9;
  font-weight: 500;
}

/* 移动端适配：保留原有，微调细节 */
@media (max-width: 768px) {
  header {
    padding: 80px 20px;
  }
  .pain-points {
    gap: 12px;
  }
  .pain-point {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
  .cta-btn {
    padding: 16px 30px;
    font-size: 1.05rem;
  }
  section {
    padding: 60px 20px;
    margin-bottom: 15px;
  }
  .positioning {
    padding: 30px;
  }
  .services, .features {
    gap: 25px;
  }
  .card {
    padding: 25px;
  }
  .trust-item {
    padding: 25px 20px;
  }
  .float-contact {
    bottom: 25px;
    right: 25px;
  }
  .float-contact a {
    padding: 14px 22px;
    font-size: 0.95rem;
  }
  .pain-trap, .pain-solution, .pain-value {
    padding: 30px 25px;
  }
  .pain-table th, .pain-table td {
    padding: 15px 12px;
    font-size: 0.92rem;
  }
  .pain-summary {
    padding: 30px 25px;
    font-size: 1.05rem;
  }
  .core-value-list li {
    font-size: 0.98rem;
    padding-left: 26px;
  }
  .core-value-list li::before {
    font-size: 15px;
  }
  nav .nav-wrap {
    padding: 15px 20px;
  }
  nav strong {
    font-size: 0.95rem;
  }
  nav a {
    margin-left: 15px;
    font-size: 0.9rem;
  }
}

/* 页脚1：黄色页脚（原site-footer），调整联系方式为统一信息 */
.site-footer {
  background: #ffcc33;
  color: #222;
  padding: 70px 25px 40px;
  font-size: 14px;
  margin-top: 20px;
}
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 35px;
}
.footer-col h4 {
  font-size: 19px;
  margin-bottom: 20px;
  font-weight: bold;
  padding-bottom: 8px;
  border-bottom: 2px solid #0b4ea2;
  display: inline-block;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}

/* 页脚2：最底部的版权联系方式区块（统一合并） */
.bottom-footer {
  background: #0b4ea2;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
  margin-top: 0;
}
.bottom-footer p {
  margin: 0;
  line-height: 1.8;
  font-size: 1rem;
}
.bottom-footer a {
  color: #e0efff;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.bottom-footer a:hover {
  color: #fff;
  text-decoration: none;
}
.bottom-footer .contact-line {
  margin-bottom: 15px;
}
.bottom-footer .year-line {
  margin-bottom: 20px;
  font-size: 1rem;
}

.footer-main {
    max-width: 1200px;
    margin: auto;
}

.footer-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo-area {
    margin-bottom: 30px;
}

.footer-brand {
    font-size: 24px;
    color: #0b4ea2;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.footer-tagline {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    margin: 0;
}

.social-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    font-size: 18px;
}

.contact-link {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.contact-link:hover {
    color: #0b4ea2;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #0b4ea2;
    transition: width 0.3s ease;
}

.contact-link:hover::after {
    width: 100%;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #0b4ea2;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link:hover {
    color: #0b4ea2;
    transform: translateX(5px);
}

.footer-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
}

.service-tag {
    background: rgba(11, 78, 162, 0.1);
    color: #0b4ea2;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(11, 78, 162, 0.2);
    transition: all 0.3s ease;
}

.service-tag:hover {
    background: #0b4ea2;
    color: white;
    transform: translateY(-2px);
}

.business-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card, .hours-info {
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    border-left: 3px solid #0b4ea2;
}

.info-line {
    margin: 8px 0;
    font-size: 13px;
    line-height: 1.4;
}

.info-line strong {
    color: #0b4ea2;
    font-weight: 600;
}

.footer-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.copyright {
    font-size: 14px;
    color: #666;
}

.footer-links-small {
    display: flex;
    gap: 20px;
}

.footer-link-small {
    color: #555;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer-link-small:hover {
    color: #0b4ea2;
    text-decoration: underline;
}

/* 改造后的深蓝色页脚样式 */
.legal-footer {
    background: linear-gradient(135deg, #0b4ea2 0%, #083e8a 100%);
    color: white;
    padding: 40px 25px;
    margin-top: 20px;
}

.legal-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.company-info {
    margin-bottom: 30px;
}

.company-name {
    font-size: 18px;
    margin: 0 0 10px 0;
    font-weight: 600;
    color: white;
}

.company-tag {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.contact-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.contact-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.badge-icon {
    font-size: 18px;
}

.badge-text {
    font-size: 14px;
    font-weight: 500;
}

.verification-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.verify-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.verify-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.verify-icon {
    font-size: 16px;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.legal-link:hover {
    color: white;
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .footer-row {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* ========== B2B专业风格页脚设计 ========== */
/* 基于北美和欧洲B2B市场偏好的配色方案 */

/* Footer 核心容器样式 - 深色专业背景 */
.brand-footer {
    background: linear-gradient(145deg, #1a365d 0%, #2d3748 100%) !important;
    color: #e2e8f0 !important;
    padding: 60px 0 30px !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Footer 主内容区容器 */
.footer-main {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
}

/* 列布局 - 响应式网格 */
.footer-row {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr !important;
    gap: 50px !important;
    margin-bottom: 40px !important;
}

/* 品牌区域 - 专业感设计 */
.footer-logo-area .footer-brand {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 12px !important;
    letter-spacing: -0.5px !important;
}

.footer-logo-area .footer-tagline {
    font-size: 1rem !important;
    color: #a0aec0 !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
    max-width: 280px !important;
}

/* 联系信息卡片 */
.social-contact {
    margin-top: 25px !important;
    padding: 20px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    border-left: 4px solid #4299e1 !important;
}

.contact-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 12px 0 !important;
    padding: 8px 0 !important;
}

.contact-icon {
    width: 36px !important;
    height: 36px !important;
    background: rgba(66, 153, 225, 0.15) !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1rem !important;
    color: #4299e1 !important;
}

.contact-link {
    color: #e2e8f0 !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.contact-link:hover {
    color: #90cdf4 !important;
    transform: translateX(2px) !important;
}

/* 链接区域标题 */
.footer-heading {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
    color: #ffffff !important;
    position: relative !important;
    padding-bottom: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.footer-heading::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 30px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #4299e1 0%, #38b2ac 100%) !important;
    border-radius: 2px !important;
}

/* 链接列布局 */
.footer-links {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
}

.footer-links .footer-link:hover {
    color: #4299e1 !important;
    padding-left: 5px !important;
}

/* 服务标签云设计 */
.service-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 5px !important;
}

.service-tag {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #e2e8f0 !important;
    font-weight: 500 !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    transition: all 0.2s ease !important;
}

.service-tag:hover {
    background: rgba(66, 153, 225, 0.2) !important;
    border-color: #4299e1 !important;
    transform: translateY(-2px) !important;
}

/* 联系详情区域 */
.business-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 25px !important;
}

.info-card, .hours-info {
    padding: 20px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.info-line {
    color: #cbd5e0 !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    margin-bottom: 10px !important;
    font-weight: 400 !important;
}

.info-line strong {
    color: #ffffff !important;
    font-weight: 600 !important;
    margin-right: 8px !important;
}

/* 分割线 */
.footer-divider {
    height: 1px !important;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%) !important;
    margin: 40px 0 30px !important;
}

/* 底部版权区域 */
.footer-bottom {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-top: 25px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
}

.copyright {
    color: #a0aec0 !important;
    font-size: 0.85rem !important;
    font-weight: 400 !important;
}

.footer-links-small {
    display: flex !important;
    gap: 25px !important;
}

.footer-link-small {
    color: #cbd5e0 !important;
    font-size: 0.85rem !important;
    text-decoration: none !important;
    font-weight: 400 !important;
    transition: all 0.2s ease !important;
}

.footer-link-small:hover {
    color: #4299e1 !important;
}

/* ========== 法律信息页脚 ========== */
.legal-footer {
    background: #1a202c !important;
    color: #e2e8f0 !important;
    padding: 40px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.legal-container {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
    text-align: center !important;
}

.company-info {
    margin-bottom: 30px !important;
}

.company-name {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 8px !important;
    letter-spacing: -0.3px !important;
}

.company-tag {
    color: #a0aec0 !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    margin-bottom: 20px !important;
}

/* 联系徽章设计 */
.contact-badges {
    display: flex !important;
    justify-content: center !important;
    gap: 25px !important;
    margin: 25px 0 !important;
    flex-wrap: wrap !important;
}

.contact-badge {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 20px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.2s ease !important;
}

.contact-badge:hover {
    background: rgba(66, 153, 225, 0.1) !important;
    border-color: rgba(66, 153, 225, 0.3) !important;
    transform: translateY(-2px) !important;
}

.badge-icon {
    font-size: 1.1rem !important;
    color: #4299e1 !important;
}

.badge-text {
    color: #e2e8f0 !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
}

/* 验证链接区域 */
.verification-links {
    display: flex !important;
    justify-content: center !important;
    gap: 20px !important;
    margin: 30px 0 !important;
    flex-wrap: wrap !important;
}

.verify-link {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 20px !important;
    background: rgba(66, 153, 225, 0.1) !important;
    border: 1px solid rgba(66, 153, 225, 0.3) !important;
    border-radius: 8px !important;
    color: #4299e1 !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.verify-link:hover {
    background: rgba(66, 153, 225, 0.2) !important;
    transform: translateY(-2px) !important;
}

.verify-icon {
    font-size: 1rem !important;
}

/* 法律链接区域 */
.legal-links {
    display: flex !important;
    justify-content: center !important;
    gap: 30px !important;
    margin-top: 30px !important;
    padding-top: 25px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.legal-link {
    color: #cbd5e0 !important;
    font-size: 0.85rem !important;
    text-decoration: none !important;
    font-weight: 400 !important;
    transition: all 0.2s ease !important;
}

.legal-link:hover {
    color: #4299e1 !important;
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
}
