/* cooperation.css */

body {
    background: linear-gradient(135deg, #E0E8FF 0%, #F5FBFF 100%);
}

.cooperation-page {
    padding-top: 140px;
    padding-bottom: 80px;
}

.cooperation-title {
    font-size: 52px;
    font-weight: 300;
    line-height: 1.3;
    color: #465068;
    text-align: left;
    margin-bottom: 40px;
}

.cooperation-title--highlight {
    display: block;
    font-weight: 500;
    background: linear-gradient(90deg, #FA4943 0%, #F69F51 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.cooperation-blocks-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cooperation-block {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.cooperation-block__text {
    flex: 1 1 55%;
}

.cooperation-block__text h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1F2A37;
    margin-top: 0;
    margin-bottom: 20px;
}

.cooperation-block__text p {
    font-size: 18px;
    color: #465068;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cooperation-block__text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.cooperation-block__text li {
    font-size: 18px;
    color: #1F2A37;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.cooperation-block__text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    background: linear-gradient(90deg, #8075F3, #6EEAE4);
    border-radius: 50%;
}

.cooperation-block__stat {
    margin-top: 20px;
}

.stat-number {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(90deg, #FA4943 0%, #F69F51 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.stat-caption {
    font-size: 16px;
    font-weight: 500;
    color: #6B7994;
    margin-top: 8px;
}

.cooperation-block__media {
    flex: 1 1 35%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cooperation-block__media img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
}
.competence__actions {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 48px 0 64px;
  flex-wrap: wrap;
}
.btn-mito,
.btn-immune {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 48px;
  border-radius: 9999px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* первая кнопка: пурпурно-голубой градиент */
.btn-mito {
  background: linear-gradient(90deg, #7465F2 0%, #33C2CC 50%, #00E5FF 100%);
  box-shadow: 0 16px 32px rgba(116, 101, 242, 0.3);
}
.btn-mito:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(116, 101, 242, 0.4);
}

/* вторая кнопка: красно-оранжевый градиент */
.btn-immune {
  background: linear-gradient(90deg, #FB4242 0%, #F6A753 100%);
  box-shadow: 0 16px 32px rgba(251, 66, 66, 0.3);
}
.btn-immune:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(251, 66, 66, 0.4);
}

/* --- Адаптивность --- */

@media (max-width: 992px) {
    .cooperation-block {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }
    .cooperation-block__text {
        flex-basis: auto;
    }
    .cooperation-block__text li {
        padding-left: 25px;
        text-align: left;
    }
    .cooperation-block__media {
        margin-bottom: 20px;
    }
    .competence__actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .cooperation-title {
        font-size: 36px;
    }
    .cooperation-block {
        padding: 30px;
    }
    .cooperation-block__text h2 {
        font-size: 24px;
    }
    .cooperation-block__text p, .cooperation-block__text li {
        font-size: 16px;
    }
    .stat-number {
        font-size: 60px;
    }
    .stat-caption {
        font-size: 14px;
    }
}