/* ===== КОМАНДА И ЦЕННОСТИ ===== */
.team-values-section {
    margin: 80px 0;
}

.team-values-container {
    display: flex;
    background-color: white;
    align-items: center;
    gap: 60px;
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
}

.team-values-content {
    flex: 1;
    min-width: 280px;
}

.team-values-content h2 {
    font-size: 56px;
    font-weight: 700;
    color: #A43CCF;
    line-height: 1.0;
    margin-bottom: 25px;
}

.team-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 550px;
}

.team-app-download {
    margin-top: 40px;
    align-self: self-end;
}

.team-app-download p {
    text-align: center;
    font-size: 16px;
    color: #433f45;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-app-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.team-app-icon {
    width: 50px;
    height: 50px;
    background: #f6f6f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-app-icon:hover {
    transform: translateY(-3px);
    background: white;
    box-shadow: 0 10px 20px rgba(164, 60, 207, 0.15);
}

.team-app-icon img {
    object-fit: contain;
    max-width: 70%;
}

.team-values-image {
    flex: 1;
    min-width: 280px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-values-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.team-values-image:hover img {
    transform: scale(1.03);
}

.btn-primary {
    background: #a43ccf;
    color: white;
    border: none;
    padding: 16px 48px 16px 48px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    background: #8a2eb8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 206, 212, 0.6);
}

/* Адаптивность */
@media (max-width: 992px) {
    .team-values-container {
        background-color: white;
        flex-direction: column;
        padding: 40px;
        gap: 40px;
    }

    .team-values-content h2 {
        font-size: 36px;
        text-align: center;
    }

    .team-description {
        font-size: 16px;
        text-align: center;
        max-width: 100%;
    }

    .team-app-icons {
        justify-content: center;
    }

    .btn-primary {
        display: block;
        text-align: center;
        width: fit-content;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .team-values-section {
        margin: 60px 0;
    }

    .team-values-container {
        padding: 30px;
    }

    .team-values-content h2 {
        font-size: 28px;
    }

    .team-description {
        font-size: 14px;
    }

    .team-app-icon {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .team-values-container {
        padding: 25px 20px;
    }

    .team-values-content h2 {
        font-size: 24px;
    }

    .team-description {
        font-size: 13px;
    }
}