/* ============================================
   商机合作页面样式 - daili_stripe.css
   ============================================ */

/* === CSS变量 === */
:root {
  --stripe-primary: #0086F1;
  --stripe-primary-dark: #0066cc;
  --stripe-primary-light: rgba(0,134,241,0.1);
  --deep-navy: #1a1f36;
  --body-color: #5a6a7a;
  --label-color: #8898aa;
  --pure-white: #ffffff;
  --stripe-bg-light: #f6f9fc;
  --border-default: #e6ebf0;
  --shadow-ambient: rgba(50,50,93,0.08);
}

/* === 基础布局 === */
.stripe-section {
  padding: 80px 0;
}

.stripe-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.stripe-bg-light {
  background: var(--stripe-bg-light);
}

/* === 标题统一样式 === */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--deep-navy);
  margin: 0 0 12px 0;
}

.section-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--body-color);
  margin: 0 0 20px 0;
}

.title-divider {
  width: 60px;
  height: 4px;
  background: var(--stripe-primary);
  border-radius: 2px;
  margin: 0 auto;
}

.header-badge {
  display: inline-block;
  padding: 14px 36px;
  background: var(--stripe-primary);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.jd-badge {
  background: linear-gradient(135deg, #0086F1 0%, #0066cc 100%);
}

.pudu-badge {
  background: linear-gradient(135deg, #0086F1 0%, #00a8e8 100%);
}

/* === 小组标题 === */
.group-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--deep-navy);
  margin: 0 0 32px 0;
  text-align: center;
}

/* === 区块间距 === */
.target-group,
.benefits-section,
.product-direction,
.support-section {
  margin-bottom: 64px;
}

.target-group:last-child,
.benefits-section:last-child {
  margin-bottom: 48px;
}

/* ============================================
   1. Hero Banner
   ============================================ */
.hero-banner {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero-banner-cangqiong.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,134,241,0.55) 0%, rgba(0,102,204,0.45) 50%, rgba(0,68,153,0.35) 100%);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
    radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 0%, transparent 30%);
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  padding: 40px 0;
}

.hero-badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px 0;
  line-height: 1.2;
}

.hero-desc {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  margin: 0 0 40px 0;
  line-height: 1.6;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #fff;
  color: var(--stripe-primary);
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.visual-card {
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.visual-card:hover {
  transform: translateX(-8px);
}

.vc-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--stripe-primary-light);
  border-radius: 12px;
}

.vc-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--body-color);
}

.vc-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--stripe-primary);
  text-align: right;
}

.vc-text {
  font-size: 14px;
  color: var(--label-color);
  text-align: right;
}

/* ============================================
   2. 洞悉市场
   ============================================ */
.market-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.market-card {
  background: var(--pure-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow-ambient);
  border: 1px solid var(--border-default);
  transition: transform 0.3s ease;
}

.market-card:hover {
  transform: translateY(-5px);
}

.market-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: var(--stripe-primary);
}

.market-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  color: var(--stripe-primary);
  font-size: 16px;
  font-weight: 700;
  border-radius: 50%;
}

.market-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.market-body {
  padding: 28px;
}

.market-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.stat-item {
  text-align: center;
  padding: 16px;
  background: var(--stripe-bg-light);
  border-radius: 8px;
}

.stat-num {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--stripe-primary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--body-color);
}

.market-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 1.7;
  margin: 0 0 20px 0;
}

.market-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  padding: 6px 14px;
  background: var(--stripe-primary-light);
  color: var(--stripe-primary);
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
}

.market-footer {
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, var(--stripe-primary) 0%, var(--stripe-primary-dark) 100%);
  border-radius: 12px;
  margin-top: 48px;
}

.market-footer p {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

/* ============================================
   3. 金蝶商机合伙人
   ============================================ */
.section-jd {
  background: var(--pure-white);
}

/* 适合人群 */
.target-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
}

.target-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

.target-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 20px;
  background: var(--stripe-bg-light);
  border-radius: 12px;
  border: 1px solid var(--border-default);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 0;
}

.target-item:hover {
  background: var(--stripe-primary-light);
  border-color: var(--stripe-primary);
}

.target-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pure-white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,134,241,0.1);
}

.target-text {
  font-size: 17px;
  font-weight: 500;
  color: var(--deep-navy);
}

/* 合作优势 */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  padding: 36px 28px;
  background: var(--stripe-bg-light);
  border-radius: 12px;
  border: 1px solid var(--border-default);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: var(--pure-white);
  border-color: var(--stripe-primary);
  box-shadow: 0 8px 30px rgba(0,134,241,0.15);
}

.benefit-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: var(--stripe-primary);
  border-radius: 8px;
}

.benefit-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #fff;
  color: var(--stripe-primary);
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
}

.benefit-title {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.benefit-desc {
  font-size: 15px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 1.7;
  margin: 0;
}

/* 成功案例 */
.case-showcase {
  margin-top: 48px;
}

.case-box {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 48px;
  background: linear-gradient(135deg, var(--stripe-primary) 0%, var(--stripe-primary-dark) 100%);
  border-radius: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.case-label {
  padding: 12px 24px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  white-space: nowrap;
}

.case-content {
  flex: 1;
}

.case-story {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  margin: 0 0 8px 0;
}

.case-amount {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
}

/* ============================================
   4. 普渡机器人代理招募
   ============================================ */
.section-pudu {
  background: var(--stripe-bg-light);
}

/* 产品方向 */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}

.product-card {
  background: var(--pure-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow-ambient);
  border: 1px solid var(--border-default);
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,134,241,0.2);
}

.product-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 28px;
  background: var(--stripe-primary);
}

.product-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #fff;
  color: var(--stripe-primary);
  font-size: 15px;
  font-weight: 700;
  border-radius: 50%;
}

.product-title {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.product-icon {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 28px;
  background: var(--stripe-primary-light);
  border-radius: 50%;
}

.product-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 1.7;
  margin: 0 28px 28px;
}

.product-scenes {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 28px 32px;
  flex-wrap: wrap;
}

.scene-tag {
  padding: 6px 12px;
  background: var(--stripe-primary-light);
  color: var(--stripe-primary);
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
}

/* 支持项 */
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.support-item {
  padding: 32px 24px;
  background: var(--pure-white);
  border-radius: 12px;
  border: 1px solid var(--border-default);
  transition: all 0.3s ease;
}

.support-item:hover {
  border-color: var(--stripe-primary);
  box-shadow: 0 8px 30px rgba(0,134,241,0.12);
}

.support-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding: 10px 14px;
  background: var(--stripe-primary);
  border-radius: 8px;
}

.support-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #fff;
  color: var(--stripe-primary);
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
}

.support-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.support-desc {
  font-size: 15px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 1.6;
  margin: 0;
}

/* 代理价值 */
.value-highlight {
  margin-top: 48px;
}

.value-box {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 48px;
  background: var(--pure-white);
  border-radius: 16px;
  border: 2px solid var(--stripe-primary);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.value-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--stripe-primary-light);
  border-radius: 12px;
}

.value-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--stripe-primary);
  margin: 0;
}

.value-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 1.6;
  margin: 0;
  white-space: nowrap;
}

/* ============================================
   5. 我们需要这样的合作伙伴
   ============================================ */
.section-require {
  background: linear-gradient(135deg, var(--stripe-primary) 0%, var(--stripe-primary-dark) 100%);
  padding: 60px 0;
}

.section-require .section-title {
  color: #fff;
}

.section-require .title-divider {
  background: rgba(255,255,255,0.6);
}

.require-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.require-item {
  text-align: center;
  padding: 32px 28px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.require-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #fff;
  color: var(--stripe-primary);
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
}

.require-text {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   6. 成为合作伙伴
   ============================================ */
.apply-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px;
  background: var(--pure-white);
  border-radius: 16px;
  box-shadow: 0 8px 30px var(--shadow-ambient);
  border: 1px solid var(--border-default);
}

.apply-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  padding: 24px;
  background: var(--stripe-bg-light);
  border-radius: 12px;
}

.info-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--stripe-primary);
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--stripe-primary);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  font-size: 15px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 1.6;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.info-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--stripe-primary);
  font-weight: 700;
}

.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--body-color);
  min-width: 80px;
}

.contact-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--deep-navy);
}

.qr-section {
  margin-top: 16px;
  text-align: center;
}

.qr-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--stripe-primary);
  margin: 0 0 12px 0;
}

.qr-img {
  width: 140px;
  height: 140px;
  border-radius: 8px;
}

/* 表单 */
.apply-form {
  padding: 32px;
  background: var(--stripe-bg-light);
  border-radius: 12px;
}

.form-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--deep-navy);
  margin: 0 0 24px 0;
  text-align: center;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-default);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  color: var(--deep-navy);
  background: var(--pure-white);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--stripe-primary);
  box-shadow: 0 0 0 3px rgba(0,134,241,0.1);
}

.form-group input::placeholder {
  color: var(--label-color);
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--stripe-primary);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.submit-btn:hover {
  background: var(--stripe-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,134,241,0.3);
}

/* ============================================
   响应式设计
   ============================================ */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero-content {
    text-align: center;
    padding: 60px 0 20px;
  }
  
  .hero-visual {
    flex-direction: row;
    justify-content: center;
  }
  
  .visual-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
  }
  
  .vc-num, .vc-text {
    text-align: center;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .market-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid,
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .target-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .require-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .apply-wrapper {
    grid-template-columns: 1fr;
  }
  
  .case-box {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  
  .value-box {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .stripe-section {
    padding: 48px 0;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-desc {
    font-size: 16px;
  }
  
  .hero-visual {
    flex-direction: column;
  }
  
  .benefits-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }
  
  .target-grid {
    flex-direction: column;
  }
  
  .target-grid-3 {
    grid-template-columns: 1fr;
  }
  
  .target-item {
    padding: 16px 24px;
  }
  
  .benefit-card,
  .support-item {
    padding: 20px 16px;
  }
  
  .market-footer {
    padding: 20px;
  }
  
  .market-footer p {
    font-size: 16px;
  }
  
  .case-amount {
    font-size: 32px;
  }
  
  .apply-wrapper {
    padding: 24px;
  }
  
  .apply-form {
    padding: 20px;
  }
}