/* ============================================================
   七格美国仓 · 产业合伙人计划(/partner.html)专用样式
   ------------------------------------------------------------
   - 仅本页专用;nav / footer / 色变量 / 基础重置 一律在 shared.css。
   - 类名统一 pt- 前缀(与 shows- / mat- 的分页前缀惯例一致),
     不复用 index.html 内联的 .section / .sec-title —— 那是首页的页面专属类,
     跨页复用会变成两处维护。
   - 遵守平衡铁律(2026-07-12):四边等宽 1px、无单边色条、无渐变装饰条;
     层级靠留白 + 字号 + 衬线对比。同色系背景过渡不算装饰条。
   - 主色锚定:金 = 门槛 / 价值 / 落地事务;青 = 能力 / 服务 / 流程。
   ============================================================ */

/* 锚点跳转时给固定导航让位 */
[id] { scroll-margin-top: 88px; }

/* ---------------------------------------------------------- 版式骨架 */
.pt-section { padding: 96px 0; }
.pt-white { background: #fff; }
.pt-tint { background: var(--tint); }
.pt-dark { background: linear-gradient(180deg, #0a1825 0%, var(--dark) 50%, #081523 100%); }

.pt-tc { text-align: center; }
.pt-head { margin-bottom: 52px; }
.pt-eyebrow {
  font-family: 'Bebas Neue', sans-serif; font-size: 15px;
  color: var(--teal); letter-spacing: 5px; margin-bottom: 14px;
}
.pt-eyebrow.is-lt { color: rgba(9,184,160,0.65); }
.pt-title {
  font-family: 'Noto Serif SC', serif; font-size: 38px; font-weight: 700;
  color: var(--dark); letter-spacing: 3px; margin-bottom: 18px;
}
.pt-title.is-lt { color: #fff; }
/* 与全站 .sec-div 同口径:留白占位,不画色条(平衡铁律) */
.pt-div { width: 44px; height: 2.5px; background: transparent; margin: 0 auto 24px; }
.pt-lead {
  font-size: 16px; color: #666; line-height: 2;
  max-width: 760px; margin: 0 auto;
}
.pt-lead.is-lt { color: rgba(255,255,255,0.72); }
.pt-lead strong { color: var(--dark); font-weight: 600; }
.pt-lead.is-lt strong { color: #fff; font-weight: 600; }

/* 卡片基底 —— 统一卡片设计系统 v2.0.1,勿自创。
   本页所有卡片共用这一条,不给每种卡片写一遍背景/边框/圆角。 */
.pt-want-card,
.pt-pillar,
.pt-g4-card,
.pt-duo-col,
.pt-step,
.pt-faq-item {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, #fbfefe 0%, #f4faf9 100%);
  border: 1px solid #d8ecea;
  border-radius: 14px;
  transition: box-shadow 0.35s, transform 0.35s, border-color 0.35s, background 0.35s;
}
.pt-want-card:hover,
.pt-pillar:hover,
.pt-g4-card:hover,
.pt-duo-col:hover,
.pt-step:hover,
.pt-faq-item:hover {
  box-shadow: 0 14px 40px rgba(9,184,160,0.12);
  transform: translateY(-5px);
  border-color: rgba(9,184,160,0.38);
  background: linear-gradient(165deg, #f3fcfa 0%, #e9f6f4 100%);
}

/* ---------------------------------------------------------- HERO */
.pt-hero {
  position: relative;
  background: linear-gradient(160deg, #0b1a2a 0%, var(--dark) 45%, #09202e 100%);
  padding-top: 144px;   /* 固定 nav 72px + 呼吸 72px */
}
.pt-hero-inner {
  display: flex; align-items: center; gap: 56px;
  padding-bottom: 72px;
}
.pt-hero-text { flex: 1 1 auto; min-width: 0; }
.pt-hero-eyebrow {
  font-family: 'Bebas Neue', sans-serif; font-size: 15px;
  color: rgba(9,184,160,0.75); letter-spacing: 5px; margin-bottom: 16px;
}
.pt-hero-title {
  font-family: 'Noto Serif SC', serif; font-size: 46px; font-weight: 700;
  color: #fff; letter-spacing: 3px; line-height: 1.35; margin-bottom: 16px;
}
.pt-hero-sub {
  font-size: 17px; color: var(--gold-light); letter-spacing: 1.5px;
  margin-bottom: 22px; font-weight: 500;
}
.pt-hero-lead {
  font-size: 16px; color: rgba(255,255,255,0.72); line-height: 2;
  max-width: 660px; margin-bottom: 32px;
}
.pt-hero-lead strong { color: #fff; font-weight: 600; }
.pt-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.pt-hero-btn {
  display: inline-block; padding: 13px 30px; border-radius: 999px;
  font-size: 15px; font-weight: 600; letter-spacing: 1px; white-space: nowrap;
  background: var(--teal); color: #06231f;
  border: 1px solid var(--teal);
  transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.pt-hero-btn:hover {
  background: #0acbb0; border-color: #0acbb0;
  transform: translateY(-2px); box-shadow: 0 10px 26px rgba(9,184,160,0.22);
}
.pt-hero-btn-ghost {
  background: transparent; color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.28);
}
.pt-hero-btn-ghost:hover {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.5);
  color: #fff; box-shadow: none;
}
.pt-hero-art {
  flex: 0 0 40%; max-width: 460px; min-width: 0;
  color: var(--teal);
}
.pt-hero-art svg { width: 100%; height: auto; display: block; }

/* 面包屑 —— 贴在 hero 底部,靠 1px 中性细线分隔(与 footer-bottom 同一手法) */
.pt-crumb { position: relative; padding: 16px 0; }
.pt-crumb::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: rgba(255,255,255,0.10);
}
.pt-crumb .container { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.pt-crumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.pt-crumb a:hover { color: var(--teal); }
.pt-crumb span { color: rgba(255,255,255,0.30); }
.pt-crumb .pt-crumb-cur { color: rgba(255,255,255,0.72); }

/* ---------------------------------------------------------- 我们在找谁 */
.pt-want { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pt-want-card { padding: 36px 30px 32px; }
.pt-want-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 34px;
  color: var(--gold); letter-spacing: 2px; line-height: 1; margin-bottom: 14px;
}
.pt-want-h {
  font-family: 'Noto Serif SC', serif; font-size: 22px; font-weight: 700;
  color: var(--dark); letter-spacing: 2px; margin-bottom: 5px;
}
.pt-want-en {
  font-family: 'Bebas Neue', sans-serif; font-size: 12px;
  color: rgba(9,184,160,0.85); letter-spacing: 3.5px; margin-bottom: 16px;
}
.pt-want-desc { font-size: 15px; color: #555; line-height: 2; }

.pt-boundary {
  margin-top: 30px; padding: 30px 34px;
  border: 1px solid #e7ddc2; border-radius: 14px;
  background: linear-gradient(165deg, #fffdf6 0%, #fbf7ea 100%);
}
.pt-boundary-h {
  font-family: 'Noto Serif SC', serif; font-size: 17px; font-weight: 600;
  color: #6a5a30; letter-spacing: 1px; margin-bottom: 14px;
}
.pt-boundary-ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 26px; }
.pt-boundary-ul li {
  position: relative; padding-left: 20px;
  font-size: 15px; color: #6f6141; line-height: 1.9;
}
.pt-boundary-ul li::before {
  content: ''; position: absolute; left: 2px; top: 0.78em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}
.pt-boundary-note {
  margin-top: 16px; font-size: 14px; color: #8a7a52; line-height: 1.9;
}

/* ---------------------------------------------------------- 美国端四柱 */
.pt-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.pt-pillar { display: flex; gap: 24px; padding: 34px 32px; align-items: flex-start; }
.pt-pillar-num {
  flex: 0 0 auto;
  font-family: 'Bebas Neue', sans-serif; font-size: 40px;
  color: rgba(9,184,160,0.9); letter-spacing: 1px; line-height: 1;
}
.pt-pillar-body { min-width: 0; }
.pt-pillar-h {
  font-family: 'Noto Serif SC', serif; font-size: 20px; font-weight: 700;
  color: var(--dark); letter-spacing: 1.5px; margin-bottom: 5px; line-height: 1.5;
}
.pt-pillar-en {
  font-family: 'Bebas Neue', sans-serif; font-size: 12px;
  color: rgba(9,184,160,0.8); letter-spacing: 3.5px; margin-bottom: 14px;
}
.pt-pillar-desc { font-size: 15px; color: #555; line-height: 2; margin-bottom: 16px; }
.pt-pillar-desc strong { color: var(--dark); font-weight: 600; }
.pt-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pt-chips li {
  font-size: 13px; color: #48796f; letter-spacing: 0.5px;
  padding: 5px 13px; border-radius: 999px;
  border: 1px solid #d3e9e6; background: #f7fcfb;
  white-space: nowrap;
}

/* ---------------------------------------------------------- 一揽子落地 */
.pt-grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pt-g4-card { padding: 32px 26px; }
.pt-g4-en {
  font-family: 'Bebas Neue', sans-serif; font-size: 12px;
  color: var(--gold); letter-spacing: 3.5px; margin-bottom: 12px;
}
.pt-g4-h {
  font-family: 'Noto Serif SC', serif; font-size: 19px; font-weight: 700;
  color: var(--dark); letter-spacing: 1.5px; margin-bottom: 12px;
}
.pt-g4-desc { font-size: 15px; color: #555; line-height: 2; }

/* ---------------------------------------------------------- 为什么直播(暗底) */
.pt-why { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pt-why-item {
  padding: 30px 32px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.35s, background 0.35s, transform 0.35s;
}
.pt-why-item:hover {
  border-color: rgba(9,184,160,0.35);
  background: rgba(255,255,255,0.055);
  transform: translateY(-4px);
}
.pt-why-h {
  font-family: 'Noto Serif SC', serif; font-size: 18px; font-weight: 600;
  color: #fff; letter-spacing: 1.2px; margin-bottom: 10px; line-height: 1.6;
}
.pt-why-desc { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 2; }

/* ---------------------------------------------------------- 两端分工 */
.pt-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.pt-duo-col { padding: 36px 34px; }
.pt-duo-en {
  font-family: 'Bebas Neue', sans-serif; font-size: 12px;
  letter-spacing: 3.5px; margin-bottom: 6px;
}
.pt-duo-cn .pt-duo-en { color: var(--gold); }
.pt-duo-us .pt-duo-en { color: rgba(9,184,160,0.85); }
.pt-duo-h {
  font-family: 'Noto Serif SC', serif; font-size: 22px; font-weight: 700;
  color: var(--dark); letter-spacing: 2px; margin-bottom: 18px;
}
.pt-duo-ul li {
  position: relative; padding-left: 20px;
  font-size: 15px; color: #555; line-height: 1.95; margin-bottom: 9px;
}
.pt-duo-ul li:last-child { margin-bottom: 0; }
.pt-duo-ul li::before {
  content: ''; position: absolute; left: 2px; top: 0.78em;
  width: 5px; height: 5px; border-radius: 50%;
}
.pt-duo-cn .pt-duo-ul li::before { background: var(--gold); }
.pt-duo-us .pt-duo-ul li::before { background: var(--teal); }

/* ---------------------------------------------------------- 合作流程 */
.pt-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(196px, 1fr));
  gap: 20px; list-style: none;
}
.pt-step { padding: 30px 24px; }
.pt-step-n {
  font-family: 'Bebas Neue', sans-serif; font-size: 30px;
  color: rgba(9,184,160,0.85); letter-spacing: 2px; line-height: 1; margin-bottom: 12px;
}
.pt-step-h {
  font-family: 'Noto Serif SC', serif; font-size: 18px; font-weight: 700;
  color: var(--dark); letter-spacing: 1.5px; margin-bottom: 9px;
}
.pt-step-desc { font-size: 14px; color: #555; line-height: 1.95; }

/* ---------------------------------------------------------- FAQ */
.pt-faq { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pt-faq-item { padding: 28px 30px; }
.pt-faq-q {
  font-family: 'Noto Serif SC', serif; font-size: 17px; font-weight: 700;
  color: var(--dark); letter-spacing: 1px; line-height: 1.6; margin-bottom: 10px;
}
.pt-faq-a { font-size: 15px; color: #555; line-height: 2; }

/* ---------------------------------------------------------- 结尾 CTA */
.pt-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
  padding: 34px 38px; border-radius: 16px;
  border: 1px solid rgba(184,134,11,0.35);
  background: rgba(184,134,11,0.06);
  transition: border-color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.pt-cta:hover {
  border-color: rgba(184,134,11,0.65);
  background: rgba(184,134,11,0.10);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(184,134,11,0.14);
}
.pt-cta-text { flex: 1 1 auto; min-width: 260px; }
.pt-cta-eyebrow {
  font-family: 'Bebas Neue', sans-serif; font-size: 13px;
  color: var(--gold-light); letter-spacing: 3px; margin-bottom: 8px;
}
.pt-cta-h {
  font-family: 'Noto Serif SC', serif; font-size: 24px; font-weight: 700;
  color: #fff; letter-spacing: 2px; margin-bottom: 10px; line-height: 1.5;
}
.pt-cta-desc { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.95; }
.pt-cta-note { margin-top: 12px; font-size: 13px; color: rgba(255,255,255,0.35); }
.pt-cta-btn {
  flex: 0 0 auto;
  display: inline-block; padding: 14px 32px; border-radius: 999px;
  background: var(--gold-light); color: #2a1f04;
  font-size: 15px; font-weight: 600; letter-spacing: 1px; white-space: nowrap;
  transition: background 0.25s;
}
.pt-cta:hover .pt-cta-btn { background: #e0af1e; }

/* ---------------------------------------------------------- 响应式 */
/* nav 在 1023 以下变 64px 高,hero 顶部留白同步收 */
@media (max-width: 1023px) {
  .pt-hero { padding-top: 118px; }
}
@media (max-width: 1100px) {
  .pt-hero-inner { flex-direction: column; align-items: flex-start; gap: 40px; padding-bottom: 60px; }
  .pt-hero-art { flex: 0 0 auto; width: 100%; max-width: 440px; align-self: center; }
  .pt-hero-lead { max-width: none; }
  .pt-pillars,
  .pt-why,
  .pt-duo,
  .pt-faq { grid-template-columns: 1fr; }
  .pt-grid4 { grid-template-columns: 1fr 1fr; }
  .pt-boundary-ul { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .pt-section { padding: 64px 0; }
  .pt-head { margin-bottom: 40px; }
  .pt-title { font-size: 28px; letter-spacing: 2px; }
  .pt-hero-title { font-size: 30px; letter-spacing: 2px; }
  .pt-hero-sub { font-size: 15px; }
  .pt-hero-ctas { width: 100%; }
  .pt-hero-btn { flex: 1 1 auto; text-align: center; }
  .pt-want,
  .pt-grid4,
  .pt-steps,
  .pt-boundary-ul { grid-template-columns: 1fr; }
  .pt-pillar { flex-direction: column; gap: 12px; padding: 28px 24px; }
  .pt-pillar-num { font-size: 32px; }
  .pt-boundary { padding: 26px 24px; }
  .pt-duo-col { padding: 28px 24px; }
  .pt-faq-item { padding: 24px 24px; }
  .pt-cta { padding: 28px 24px; flex-direction: column; align-items: stretch; }
  .pt-cta-btn { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .pt-hero-title { font-size: 26px; }
  .pt-title { font-size: 24px; }
  .pt-want-h, .pt-duo-h { font-size: 20px; }
  .pt-cta-h { font-size: 20px; }
}

/* 关闭动效偏好:只去位移,不去颜色反馈 */
@media (prefers-reduced-motion: reduce) {
  .pt-want-card, .pt-pillar, .pt-g4-card, .pt-duo-col, .pt-step, .pt-faq-item,
  .pt-why-item, .pt-cta, .pt-hero-btn { transition: none; }
  .pt-want-card:hover, .pt-pillar:hover, .pt-g4-card:hover, .pt-duo-col:hover,
  .pt-step:hover, .pt-faq-item:hover,
  .pt-why-item:hover, .pt-cta:hover, .pt-hero-btn:hover { transform: none; }
}
