/* coop-process - cooperate/process.html */

.coop-page {
  padding: 0 0 72px;
  clear: both;
}

.coop-page .coop-intro {
  width: 100%;
  max-width: none;
  margin: 40px 0 32px;
}

.coop-page .coop-intro__lead {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.85;
  color: #495057;
}

.coop-page .coop-intro__links {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
  font-family: var(--site-ui-font, 'Segoe UI', system-ui, -apple-system, 'Microsoft YaHei', 'PingFang SC', sans-serif);
}

.coop-page .coop-intro__links a {
  font-weight: 500;
  color: var(--menu-sub-brand, #1d5198);
  text-decoration: none;
}

.coop-page .coop-section-title {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  padding-left: 14px;
  border-left: 4px solid #1d5198;
}

.coop-page .coop-block {
  margin-bottom: 44px;
}

.coop-page .coop-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.coop-page .coop-timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #dce4ee;
}

.coop-page .coop-timeline__item {
  position: relative;
  padding: 0 0 28px 48px;
}

.coop-page .coop-timeline__item:last-child {
  padding-bottom: 0;
}

.coop-page .coop-timeline__item::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: #1d5198;
  border: 3px solid #e8f0fa;
  border-radius: 50%;
  z-index: 1;
}

.coop-page .coop-timeline__item h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
}

.coop-page .coop-timeline__item p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.7;
  color: #6c757d;
}

.coop-page .coop-timeline__item a {
  color: #1d5198;
  font-weight: 600;
}

.coop-page .coop-timeline__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.coop-page .coop-timeline__tag {
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #1d5198;
  background: #e8f0fa;
  border-radius: 5px;
}

.coop-page .coop-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.coop-page .coop-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px dashed #e9ecef;
  font-size: 14px;
  line-height: 1.6;
  color: #495057;
}

.coop-page .coop-checklist li:last-child {
  border-bottom: 0;
}

.coop-page .coop-checklist .bx {
  flex-shrink: 0;
  font-size: 20px;
  color: #2f9e44;
  margin-top: 1px;
}

.coop-page .coop-contact-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
  padding: 22px 24px;
  background: linear-gradient(135deg, #e8f0fa 0%, #f4f7fb 100%);
  border: 1px solid #c5d5eb;
  border-radius: 5px;
}

.coop-page .coop-contact-bar__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #495057;
}

.coop-page .coop-contact-bar__text a,
.coop-page .coop-contact-bar__text strong {
  color: #1d5198;
}

.coop-page .coop-contact-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.coop-page .coop-btn {
  display: inline-block;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}

.coop-page .coop-btn--primary {
  background: #1d5198;
  color: #fff;
}

.coop-page .coop-btn--primary:hover {
  background: #153a6b;
  color: #fff;
}

.coop-page .coop-btn--outline {
  border: 2px solid #1d5198;
  color: #1d5198;
  background: #fff;
}

.coop-page .coop-btn--outline:hover {
  background: #1d5198;
  color: #fff;
}

.coop-page .coop-cta {
  padding: 32px 24px;
  text-align: center;
  background: linear-gradient(135deg, #1d5198 0%, #2a6bb5 100%);
  border-radius: 5px;
  color: #fff;
}

.coop-page .coop-cta h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}

.coop-page .coop-cta p {
  margin: 0 0 18px;
  font-size: 15px;
  opacity: 0.92;
}

.coop-page .coop-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.coop-page .coop-cta .coop-btn--primary {
  background: #fff;
  color: #1d5198;
}

.coop-page .coop-cta .coop-btn--primary:hover {
  background: #f0f4fa;
  color: #1d5198;
}

.coop-page .coop-cta .coop-btn--outline {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
  background: transparent;
}

.coop-page .coop-cta .coop-btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

@media (max-width: 576px) {
  .coop-page .coop-contact-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .coop-page .coop-contact-bar__actions {
    justify-content: center;
  }
}
