/* CHANNEL COOPERATION — 渠道合作页 */
/* 前缀 cc-（channel cooperation） */
.hero{
  padding-bottom: 0;
  margin-bottom: 0;
}

body.cc-page {
  background: var(--slate-50);
}

/* 滚动入场使用全站 base.css 的 .fade / .fade.in，由 main.js 触发 */

/* ── CC-BTN ── */
.cc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--hero-btn-height);
  padding: 0 clamp(20px, calc(100vw * 28 / 1440), 28px);
  border-radius: var(--r8);
  font-size: var(--fs-btn);
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.cc-btn:active {
  transform: scale(0.98);
}

.cc-btn--primary {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.cc-btn--primary:hover {
  background: var(--slate-100);
  color: var(--primary);
}

.cc-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.cc-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.cc-btn--outline {
  background: #fff;
  color: var(--primary);
  border-color: var(--primary);
}

.cc-btn--outline:hover {
  background: rgba(0, 87, 156, 0.06);
}

.cc-btn--fill {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.cc-btn--fill:hover {
  background: var(--primary-container);
  border-color: var(--primary-container);
  color: #fff;
}

.cc-btn--white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.cc-btn--white:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
}

.cc-btn--block {
  width: 100%;
}

.cc-btn-arrow,
.cc-btn-icon {
  flex-shrink: 0;
}

/* ── CC-MAIN / SECTION ── */
.cc-main .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  
}

.cc-section {
  padding: clamp(48px, calc(100vw * 80 / 1440), 80px) 0;
}

.cc-section[data-color] {
  background-color: var(--cc-bg);
}

.cc-section-head {
  text-align: center;
  margin-bottom: clamp(32px, calc(100vw * 48 / 1440), 48px);
}

.cc-section-title {
  font-size: var(--fs-section-title);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  margin: 0;
}

.cc-section-desc {
  margin: clamp(10px, calc(100vw * 14 / 1440), 14px) auto 0;
  font-size: var(--fs-16);
  color: var(--on-surface-variant);
  line-height: 1.65;
}

.cc-section-head--left {
  text-align: left;
  margin-bottom: clamp(24px, calc(100vw * 32 / 1440), 32px);
}

.cc-section-head--left .cc-section-desc {
  margin-left: 0;
}

/* ── CC-SECTION JOIN（签约伙伴查询 + 加入流程） ── */
.cc-section--join {
  background: linear-gradient(180deg, rgba(99, 156, 225, 0.2) 0%, rgba(99, 156, 225, 0.08) 28%, #f8f9fb 72%, #f8f9fb 100%);

}

.cc-partner-search {
  max-width: clamp(480px, calc(100vw * 720 / 1440), 720px);
  margin: 0 auto clamp(40px, calc(100vw * 56 / 1440), 56px);
  text-align: center;
}

.cc-partner-search-form {
  display: flex;
  align-items: center;
  height: 56px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px rgba(0, 87, 156, 0.08);
}

.cc-partner-search-input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  font-size: var(--fs-16);
  color: #4c5b6d;
  outline: none;
  box-sizing: border-box;
  padding: 0 20px;
}

.cc-partner-search-input::placeholder {
  color: #a5b7c9;
}

.cc-partner-search-btn {
  flex-shrink: 0;
  padding: 0 clamp(24px, calc(100vw * 32 / 1440), 32px);
  border: 0;
  border-radius: 999px;
  background: #004074;
  color: #fff;
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  height: 100%;
}

.cc-partner-search-btn:hover {
  background: var(--primary);
}

.cc-partner-search-btn:active {
  opacity: 0.92;
}

.cc-partner-search-hint {
  margin: clamp(8px, calc(100vw * 10 / 1440), 10px) 0 0;
  font-size: var(--fs-12);
  color: #8fa3b8;
  line-height: 1.5;
}

/* 伙伴查询结果区 */
.cc-partner-search-feedback {
  margin-top: clamp(10px, calc(100vw * 12 / 1440), 12px);
  min-height: 1.5em;
  font-size: var(--fs-14);
  line-height: 1.6;
  color: var(--on-surface, #1a2332);
  text-align: center;
}

.cc-partner-search-result {
  margin: 0;
  font-weight: 700;
}

.cc-partner-search-result-val {
  color: var(--primary, #00579c);
  font-weight: 600;
}

.cc-partner-search-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8fa3b8;
  font-size: var(--fs-14);
}

.cc-partner-search-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid #d8e2ec;
  border-top-color: var(--primary, #00579c);
  border-radius: 50%;
  animation: cc-partner-spin 0.8s linear infinite;
}

@keyframes cc-partner-spin {
  to {
    transform: rotate(360deg);
  }
}

.cc-partner-search-error {
  margin: 0;
  color: #c62828;
}

.cc-section--join .cc-section-head {
  margin-bottom: clamp(40px, calc(100vw * 86 / 1440), 86px);
}

.cc-section--join .cc-section-title {
  font-size: clamp(28px, calc(100vw * 46 / 1440), 46px);
  font-weight: 700;
  color: var(--on-surface);
}

.cc-zp-icon-title{ color: var(--primary);}

/* ── CC-STEPS ── */
.cc-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, calc(100vw * 20 / 1440), 20px);
  position: relative;
}

.cc-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.8;
}

.cc-step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r8);
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.cc-section--join .cc-step-icon {
  width: auto;
  height: auto;
  margin: 0 auto clamp(16px, calc(100vw * 20 / 1440), 20px);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.cc-section--join .cc-step-icon img {
  display: block;
  width: clamp(72px, calc(100vw * 88 / 1440), 88px);
  height: auto;
  margin: 0 auto;
}

.cc-step-num {
  display: block;
  font-size: var(--fs-12);
  font-weight: 600;
  color: var(--primary-container);
  line-height: 1.4;
  margin-bottom: 6px;
}

.cc-step-title {
  font-size: var(--fs-16);
  font-weight: 600;
  color: var(--primary-container);
  line-height: 1.4;
  margin: 0 0 6px;
}

.cc-section--join .cc-step-title {
  font-size: clamp(16px, calc(100vw * 18 / 1440), 18px);
  font-weight: 600;
  color: var(--primary);
}

.cc-step-desc {
  font-size: var(--fs-12);
  color: var(--on-surface-variant);
  line-height: 1.55;
  margin: 0;
}

.cc-section--join .cc-step-desc {
  font-size: var(--fs-14);
  color: #8fa3b8;
}

/* ── CC-TYPES ── */
.cc-section--types .cc-section-head {
  margin-bottom: clamp(40px, calc(100vw * 56 / 1440), 56px);
}

.cc-section--types .cc-section-title {
  font-size: clamp(28px, calc(100vw * 36 / 1440), 36px);
  font-weight: 700;
  color: var(--on-surface);
}


.cc-types-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, calc(100vw * 24 / 1440), 24px);
}

.cc-section--types .cc-types-grid {
  margin: 0 auto;
  gap: clamp(16px, calc(100vw * 24 / 1440), 24px);
}

.cc-type-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 87, 156, 0.08);
  border-radius: var(--r16);
  background: linear-gradient(121deg, #f7fafc00 14%, #f8fafc 90%), #FFFFFF;
  padding: clamp(28px, calc(100vw * 40 / 1440), 40px) clamp(24px, calc(100vw * 32 / 1440), 32px);
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.cc-type-card--accent {
  background: linear-gradient(127deg, #e2edfa80 19%, #e2edfa00 84%), #FFFFFF;
  border-color: rgba(0, 87, 156, 0.12);
}

.cc-type-card:hover {
  border-color: rgba(0, 87, 156, 0.18);
  box-shadow: 0 12px 40px rgba(0, 87, 156, 0.1);
  transform: translateY(-6px);
}

.cc-type-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.cc-section--types .cc-type-head {
  display: flex;
  align-items: stretch;
  gap: clamp(12px, calc(100vw * 16 / 1440), 16px);
  margin-bottom: clamp(20px, calc(100vw * 28 / 1440), 28px);
  text-align: left;
}

.cc-type-head-icon {
  flex-shrink: 0;
  align-self: stretch;
  width: 100px;
  height: auto;
  object-fit: contain;
  display: block;
}

.cc-type-head-copy {
  flex: 1;
  min-width: 0;
}

.cc-type-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r8);
  background: rgba(0, 87, 156, 0.08);
  color: var(--primary);
}

.cc-type-title {
  font-size: var(--fs-18);
  font-weight: 600;
  color: var(--on-surface);
  line-height: 1.35;
  margin: 0 0 6px;
}

.cc-section--types .cc-type-title {
  font-size: clamp(18px, calc(100vw * 22 / 1440), 22px);
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 clamp(10px, calc(100vw * 14 / 1440), 14px);
}

.cc-type-intro {
  font-size: var(--fs-14);
  color: var(--on-surface-variant);
  line-height: 1.6;
  margin: 0;
}

.cc-section--types .cc-type-intro {
  font-size: var(--fs-14);
  color: #8fa3b8;
  line-height: 1.7;
}

.cc-type-list {
  margin: 0 0 clamp(20px, calc(100vw * 24 / 1440), 24px);
  padding: 0;
  list-style: none;
  flex: 1;
}



.cc-type-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-14);
  color: var(--on-surface-variant);
  line-height: 1.6;
}

.cc-section--types .cc-type-list li {
  color: #5e6978;
}

.cc-type-list li + li {
  margin-top: 10px;
}

.cc-section--types .cc-type-list li + li {
  margin-top: 12px;
}

.cc-type-check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(0, 137, 123, 0.12);
  color: var(--accent-growth-on);
}

.cc-section--types .cc-type-check {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  background: transparent;
  border: 1px solid rgba(0, 87, 156, 0.35);
  color: var(--primary);
}

/* ── CC-INCENTIVE ── */
.cc-section--incentive {
  width: 100%;
  overflow: hidden;
  padding: clamp(40px, calc(100vw * 56 / 1440), 56px) 0;
}

.cc-incentive {
  position: relative;
  overflow: hidden;
  border-radius: var(--r12, 12px);
  background: #0a2d52 url("/static/skin/images/training/channel/jljh-bg.webp") no-repeat center / cover;
}

.cc-incentive-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(24px, calc(100vw * 40 / 1440), 40px);
  padding: clamp(40px, calc(100vw * 56 / 1440), 56px) clamp(28px, calc(100vw * 48 / 1440), 48px);
  align-items: stretch;
  margin: 0 auto;
}

.cc-incentive-main {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cc-incentive-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 14px;
  margin-bottom: clamp(16px, calc(100vw * 20 / 1440), 20px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: var(--fs-12);
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

.cc-incentive-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5eb8ff;
  flex-shrink: 0;
}

.cc-incentive-title {
  font-size: clamp(26px, calc(100vw * 34 / 1440), 34px);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 clamp(12px, calc(100vw * 16 / 1440), 16px);
  color: #fff;
}

.cc-incentive-desc {
  font-size: var(--fs-14);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin: 0 0 clamp(24px, calc(100vw * 32 / 1440), 32px);
  max-width: 520px;
}

.cc-incentive-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, calc(100vw * 28 / 1440), 28px);
  max-width: 420px;
}

.cc-incentive-stat {
  display: block;
}

.cc-incentive-stat-label {
  font-size: clamp(15px, calc(100vw * 17 / 1440), 17px);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
  color: #fff;
  position: relative;
}

.cc-incentive-stat-label::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 4px;
  background: #FFFFFF;
}
.cc-incentive-stat-text {
  font-size: var(--fs-13);
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.cc-incentive-side {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}

.cc-incentive-panel {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--r8);
  padding: clamp(24px, calc(100vw * 28 / 1440), 28px);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0, 30, 60, 0.16);
}

.cc-incentive-panel-title {
  font-size: var(--fs-16);
  font-weight: 600;
  color: #fff;
  margin: 0 0 18px;
}

.cc-incentive-flow {
  margin: 0 0 clamp(20px, calc(100vw * 24 / 1440), 24px);
  padding: 0;
  list-style: none;
  flex: 1;
}

.cc-incentive-flow li {
  display: flex;
  gap: 12px;
  font-size: var(--fs-14);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.cc-incentive-flow li + li {
  margin-top: 16px;
}

.cc-incentive-flow-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  font-size: var(--fs-13);
  font-weight: 700;
  margin-top: 1px;
}

.cc-incentive-panel .cc-btn--white {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  border-radius: var(--r8, 8px);
  font-size: var(--fs-16);
  font-weight: 600;
  background: #fff;
  color: var(--primary, #00579c);
  border-color: #fff;
}

.cc-incentive-panel .cc-btn--white:hover {
  background: #f0f7ff;
  color: var(--primary, #00579c);
}

/* ── CC-NEWS ── */
.cc-section--news {
  background: #F8FAFC;
}

.cc-section--news .cc-news-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(10px, calc(100vw * 14 / 1440), 14px);
  margin-bottom: clamp(32px, calc(100vw * 48 / 1440), 48px);
}

.cc-news-title {
  font-size: clamp(28px, calc(100vw * 36 / 1440), 36px);
  font-weight: 700;
  color: var(--on-surface);
  line-height: 1.3;
  margin: 0;
}

.cc-news-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-14);
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.cc-news-more-icon {
  flex-shrink: 0;
}

.cc-news-more:hover {
  color: var(--primary-container);
}

.cc-section--news .cc-news-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: clamp(16px, calc(100vw * 24 / 1440), 24px);

  margin: 0 auto;
  align-items: stretch;
}

.cc-news-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-12);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 12px;
}

.cc-news-tag-en {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.cc-news-tag-arrow {
  flex-shrink: 0;
}

.cc-news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(0, 87, 156, 0.08);
  border-radius: var(--r16);
  box-shadow: 0 8px 32px rgba(0, 87, 156, 0.06);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.cc-news-card:hover {
  border-color: rgba(0, 87, 156, 0.16);
  box-shadow: 0 12px 40px rgba(0, 87, 156, 0.1);
  transform: translateY(-6px);
}

.cc-news-card--media {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  padding: 32px;
  border-radius: 12px;
  background: #FFFFFF;
   
}

.cc-news-card-media {
  min-height: 100%;
  background: var(--slate-100);
  overflow: hidden;
}

.cc-news-card-media img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 12px
}

.cc-news-card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(20px, calc(100vw * 28 / 1440), 28px);
}

.cc-news-card--media .cc-news-card-body {
  padding: 0;
}

.cc-news-item-title {
  font-size: clamp(16px, calc(100vw * 18 / 1440), 18px);
  font-weight: 600;
  color: var(--on-surface);
  line-height: 1.5;
  margin: 0 0 10px;
}

.cc-news-item-desc {
  font-size: var(--fs-14);
  color: #8fa3b8;
  line-height: 1.65;
  margin: 0 0 auto;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.cc-news-date {
  display: block;
  margin-top: clamp(16px, calc(100vw * 20 / 1440), 20px);
  font-size: var(--fs-12);
  color: #b0bec9;
  line-height: 1.4;
}

/* ── CC-CTA ── */
.cc-cta {
  width: 100%;

  padding: clamp(56px, calc(100vw * 80 / 1440), 80px) 0;
  text-align: center;
  background: #eef6fc url("/static/skin/images/training/channel/join-bg.webp") no-repeat center / cover;
  box-sizing: border-box;
  overflow: hidden;
}

.cc-cta .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.cc-cta-title {
  font-size: clamp(28px, calc(100vw * 36 / 1440), 36px);
  font-weight: 700;
  color: var(--on-surface);
  line-height: 1.3;
  margin: 0 0 clamp(12px, calc(100vw * 16 / 1440), 16px);
}

.cc-cta-desc {
  font-size: var(--fs-16);
  color: #8fa3b8;
  line-height: 1.7;
  margin: 0 auto clamp(28px, calc(100vw * 36 / 1440), 36px);
  max-width: clamp(480px, calc(100vw * 640 / 1440), 640px);
}

.cc-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, calc(100vw * 16 / 1440), 16px);
}

.cc-btn--cta-primary {
  background: #004074;
  color: #fff;
  border-color: #004074;
  min-height: 48px;
  padding: 0 clamp(20px, calc(100vw * 28 / 1440), 28px);
  border-radius: var(--r8);
  font-size: var(--fs-16);
  font-weight: 600;
}

.cc-btn--cta-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.cc-btn-cta-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
}

.cc-btn-cta-icon svg {
  width: 55%;
  height: 55%;
  transform: rotate(-35deg);
}

.cc-btn--cta-outline {
  background: rgba(255, 255, 255, 0.45);
  color: var(--primary);
  border-color: rgba(0, 87, 156, 0.35);
  min-height: 48px;
  padding: 0 clamp(24px, calc(100vw * 32 / 1440), 32px);
  border-radius: var(--r8);
  font-size: var(--fs-16);
  font-weight: 500;
}

.cc-btn--cta-outline:hover {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--primary);
  color: var(--primary);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cc-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cc-incentive-inner {
    grid-template-columns: 1fr;
    max-width: none;
    padding: 32px 24px;
  }

  .cc-incentive-side {
    justify-content: stretch;
  }

  .cc-incentive-panel {
    max-width: none;
  }

  .cc-section--news .cc-news-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .cc-news-card--media {
    grid-template-columns: 1fr;
  }

  .cc-news-card-media img {
    min-height: 180px;
  }
}

@media (max-width: 768px) {
  .cc-page .hero {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .cc-section {
    padding: 40px 0;
  }

  .cc-partner-search-form {
    flex-direction: row;
    align-items: center;
    height: 48px;
    gap: 0;
    padding: 0;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
  }

  .cc-partner-search-input {
    flex: 1;
    min-width: 0;
    height: 100%;
    padding: 0 16px;
    text-align: left;
    background: #fff;
    border-radius: 999px 0 0 999px;
    box-shadow: 0 8px 32px rgba(0, 87, 156, 0.08);
  }

  .cc-partner-search-btn {
    flex-shrink: 0;
    width: auto;
    height: 100%;
    padding: 0 24px;
    border-radius: 0 999px 999px 0;
  }

  .cc-section--join .cc-section-title {
    font-size: clamp(24px, 6vw, 28px);
  }

  .cc-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .cc-types-grid {
    grid-template-columns: 1fr;
  }

  .cc-section--types .cc-type-list {
    max-width: none;
  }

  .cc-section--types .cc-section-title {
    font-size: clamp(24px, 6vw, 28px);
  }

  .cc-incentive-stats {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .cc-incentive-title {
    font-size: clamp(22px, 5.5vw, 28px);
  }

  .cc-section--news .cc-news-title {
    font-size: clamp(24px, 6vw, 28px);
  }

  .cc-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cc-cta-actions .cc-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-slide-bg img {
      object-fit:cover;
      object-position: 80% 50%;
      opacity: 0.5;
  }
  .hero-slide{
    min-height: 180px;
  }
  .hero .hero-slide-inner{
    min-height: 100%;
  }
  .cc-zp-icon-icon img{
     width: 50px;
     height: 50px;
  }

  .cc-zp-icon-title{
     font-size: var(--fs-16);
  }

  .cc-zp-icon-desc{
    font-size: var(--fs-12);
  }

}