/* 渠道合作页 - 复刻 shimo.im/firm/partner 主体内容 */

.partner-page {
  background: #fff;
}

.partner-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.partner-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color: #f0f4fa;
}

.partner-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.6) 100%);
}

.partner-hero-inner {
  position: relative;
  z-index: 1;
  padding: 56px 24px 48px;
}

.partner-hero-title {
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.3;
  color: #41464b;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.partner-hero-desc {
  font-size: 18px;
  line-height: 1.5;
  color: #41464b;
  margin: 28px auto 0;
  max-width: 560px;
}

.partner-hero-action {
  margin-top: 36px;
}

.partner-cta-btn {
  display: inline-block;
  min-width: 200px;
  height: 44px;
  line-height: 44px;
  padding: 0 28px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #4a90e2 0%, #7eb3f5 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 8px 24px rgba(74, 144, 226, 0.35);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.partner-cta-btn:hover {
  box-shadow: 0 10px 28px rgba(74, 144, 226, 0.4);
  transform: translateY(-1px);
}

.partner-section {
  padding: 48px 0 32px;
}

.partner-section-last {
  padding-bottom: 72px;
}

.partner-panel {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 32px;
  border-radius: 20px;
  background: #fafbfd;
  border: 1px solid rgba(47, 94, 245, 0.08);
  box-shadow: 0 12px 40px rgba(19, 36, 84, 0.06);
}

.partner-section-title {
  font-size: clamp(24px, 3vw, 32px);
  color: #1a1d21;
  margin: 0 0 24px;
  font-weight: 600;
}

.partner-intro {
  font-size: 16px;
  line-height: 1.85;
  color: #4a5363;
  margin: 0;
}

.partner-reasons {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 28px;
}

.partner-reason-card {
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e7ecf5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.partner-reason-card:hover {
  border-color: rgba(47, 94, 245, 0.2);
  box-shadow: 0 8px 24px rgba(47, 94, 245, 0.08);
}

.partner-reason-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary, #2f5ef5);
  margin: 0 0 12px;
}

.partner-reason-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #4a5363;
  margin: 0;
}

.partner-benefits {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.partner-benefits li {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(47, 94, 245, 0.08);
  color: #1a1d21;
  font-size: 16px;
  font-weight: 500;
}

.partner-steps {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .partner-steps {
    grid-template-columns: 1fr 1fr;
  }
}

.partner-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e7ecf5;
  font-size: 15px;
  font-weight: 500;
  color: #1a1d21;
}

.partner-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary, #2f5ef5);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}

.partner-section-action {
  text-align: center;
  margin-top: 36px;
}

.partner-section-action .partner-cta-btn {
  min-width: 220px;
}
