﻿.ip-clients-container {
    padding: 80px 0;
}

.ip-clients-header {
    text-align: center;
    margin-bottom: 60px;
}

.ip-clients-title {
    color: #2c3e50;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.ip-clients-subtitle {
    color: #6c757d;
    font-size: 1.3rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.ip-clients-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 30px 20px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .ip-clients-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .ip-clients-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        text-decoration: none;
        color: inherit;
        border-color: #dee2e6;
    }

        .ip-clients-card:hover::before {
            transform: scaleX(1);
        }

.ip-clients-logo {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    font-weight: 700;
    letter-spacing: -1px;
}

.ip-clients-name {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
}

.ip-clients-grid {
    max-width: 1400px;
    margin: 0 auto;
}


@media (max-width: 992px) {
    .ip-clients-title {
        font-size: 2.5rem;
    }

    .ip-clients-container {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .ip-clients-title {
        font-size: 2rem;
    }

    .ip-clients-card {
        padding: 25px 15px;
    }

    .ip-clients-logo {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .ip-clients-name {
        font-size: 1rem;
    }
}
