/* ========== СТРАНИЦА "О КООПЕРАТИВЕ" ========== */
.page-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    margin-top: 0;
}

.page-hero__container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero__title {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-hero__subtitle {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Миссия и ценности */
.mission {
    padding: 4rem 0;
}

.mission__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.mission__quote {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    color: #0B4F3A;
    line-height: 1.4;
    margin: 2rem 0 1rem;
    font-style: italic;
}

.mission__desc {
    color: #5a5a5a;
    font-size: 1.1rem;
}

.values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.value-item {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s, color 0.3s;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: rgba(11, 79, 58, 0.05);
    color: #0B4F3A;
}

/* Индивидуальные цвета для каждой иконки ценностей */
.value-item:nth-child(1) .value-icon {
    background: rgba(249, 168, 38, 0.1);
    color: #F9A826;
}
.value-item:nth-child(2) .value-icon {
    background: rgba(11, 79, 58, 0.1);
    color: #0B4F3A;
}
.value-item:nth-child(3) .value-icon {
    background: rgba(230, 126, 34, 0.1);
    color: #E67E22; /* терракотовый */
}
.value-item:nth-child(4) .value-icon {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db; /* синий акцент */
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-item h4 {
    font-family: 'Merriweather', serif;
    color: #0B4F3A;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #5a5a5a;
    font-size: 0.95rem;
}

/* Сильные стороны */
.strengths {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.strengths__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.strength-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.strength-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.strength-icon {
    font-size: 2.5rem;
    color: #0B4F3A;
    margin-bottom: 1rem;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.strength-card:hover .strength-icon {
    color: #F9A826;
    transform: scale(1.15);
}

.strength-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    color: #0B4F3A;
    margin-bottom: 0.75rem;
}

.strength-card p {
    color: #5a5a5a;
    font-size: 0.95rem;
}

/* Возможности для партнёров */
.membership {
    padding: 4rem 0;
}

.membership__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.membership__lead {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.membership__list {
    list-style: none;
    margin-bottom: 2rem;
}

.membership__list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.membership__list i {
    color: #0B4F3A;
    font-size: 1.2rem;
}

.membership__note {
    background: #e8f3e8;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #0B4F3A;
    margin-bottom: 2rem;
}

.btn--primary {
    background-color: #0B4F3A;
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn--primary:hover {
    background-color: #0a3e2e;
}

.btn--outline {
    background: transparent;
    color: #0B4F3A;
    border: 2px solid #0B4F3A;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    margin-left: 1rem;
}

.btn--outline:hover {
    background-color: #0B4F3A;
    color: #fff;
}

.membership__types {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.type-card {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #0B4F3A;
}

.type-card h4 {
    font-family: 'Merriweather', serif;
    color: #0B4F3A;
    margin-bottom: 0.5rem;
}

/* Органы управления */
.management {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.management__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.management-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.management-icon {
    font-size: 2.5rem;
    color: #0B4F3A;
    margin-bottom: 1rem;
}

.management-item h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    color: #0B4F3A;
    margin-bottom: 0.5rem;
}

.management-item p {
    color: #5a5a5a;
    font-size: 0.9rem;
}

/* Инфраструктура */
.infrastructure {
    padding: 4rem 0;
}

.infra__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}

.infra-item {
    background: #f9f9f9;
    padding: 2rem 1rem;
    border-radius: 8px;
}

.infra-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #0B4F3A;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.infra-label {
    font-size: 0.95rem;
    color: #5a5a5a;
}

/* Команда */
.team {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-member {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    text-align: center;
    padding-bottom: 1.5rem;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #ddd; /* временно, пока нет фото */
    transition: filter 0.3s;
}

.team-member:hover .member-photo {
    filter: brightness(1.05);
}

.team-member h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    color: #0B4F3A;
    margin: 1rem 0 0.25rem;
}

.member-post {
    font-size: 0.9rem;
    color: #F9A826;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.member-desc {
    color: #5a5a5a;
    font-size: 0.9rem;
    padding: 0 1rem;
}

.team-note {
    margin-top: 2rem;
    text-align: center;
    font-style: italic;
    color: #0B4F3A;
}

/* Приглашение */
.invite {
    padding: 4rem 0;
    background: linear-gradient(rgba(11, 79, 58, 0.9), rgba(11, 79, 58, 0.9)), url('/assets/img/invite-bg.jpg') center/cover;
    color: #fff;
    text-align: center;
}

.invite__title {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.invite__text {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.invite__buttons .btn--primary {
    background-color: #fff;
    color: #0B4F3A;
}

.invite__buttons .btn--primary:hover {
    background-color: #f0f0f0;
}

.invite__buttons .btn--outline {
    border-color: #fff;
    color: #fff;
}

.invite__buttons .btn--outline:hover {
    background-color: #fff;
    color: #0B4F3A;
}

/* Адаптация */
@media (max-width: 992px) {
    .mission__wrapper,
    .membership__content {
        grid-template-columns: 1fr;
    }

    .strengths__grid,
    .management__grid,
    .team__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values {
        grid-template-columns: 1fr;
    }

    .strengths__grid,
    .management__grid,
    .team__grid {
        grid-template-columns: 1fr;
    }

    .page-hero__title {
        font-size: 2rem;
    }
}