/* ==================== Solutions 页专属样式（sol-page 命名空间，避免与全局 style.css 冲突） ==================== */

/* 解决方案页取消一屏一功能吸附，恢复普通滚动（首页等其他页面不受影响） */
html,
html:root {
  scroll-snap-type: none !important;
  scroll-behavior: auto;
}

.sol-page .tftech-section,
.sol-page .tftech-hero,
.sol-page .tftech-banner,
.sol-page .tftech-cta,
.sol-page .tftech-footer {
  min-height: auto;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
  overflow: visible;
  transform: none;
  opacity: 1;
}
/* hero 保持 100vh 全屏视觉，但关闭滚动吸附 */
.sol-page .tftech-hero {
  height: 100vh;
  min-height: 600px;
  scroll-snap-align: none;
}

/* section-head 标题：2.2rem + 下边距 12px（原全局为 1.8rem） */
.sol-page .tftech-section-head {
  margin-bottom: 48px;
}

.sol-page .tftech-section-head h2 {
  margin: 0 0 12px;
  font-family: inherit;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--tftech-foreground);
  line-height: 1.2;
}

.sol-page .tftech-section-kicker {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tftech-primary);
  margin-bottom: 14px;
}

/* 设计稿中 divider 无样式，不显示 */
.sol-page .tftech-section-head .tftech-section-divider {
  display: none;
}

/* 设计稿中 section-desc 为普通段落样式（无特殊定义），保持居中 */
.sol-page .tftech-section-head .tftech-section-desc {
  margin: 16px auto 0;
  font-size: 1rem;
  color: var(--tftech-foreground);
  line-height: 1.7;
}
