.services-hub {
    padding: clamp(40px, 6vw, 80px) 0;
    background-color: var(--bg);
    overflow: hidden
}

.services-hub__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px
}

.services-hub__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 16px;
    color: var(--text);
    line-height: 1.1;
    word-wrap: break-word;
    overflow-wrap: break-word
}

.services-hub__desc {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text2);
    margin: 0
}

.services-grid {
    display: grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap: 22px
}

.inv-card-static {
    border: 1px solid rgba(42, 42, 42, .14);
    border-radius: 15px;
    background: #fff;
    overflow: hidden;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 0
}

.inv-card-static:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08)
}

.inv-card-static__img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 0;
    /*background: #f6f6f6;*/
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inv-card-static__img img {
    max-width: 100%;
    max-height: 100%;
    /*object-fit: cover;*/
    display: block;
}

.inv-card-static__name {
    font-weight: 600;
    line-height: 1.35;
    color: var(--text);
    margin: 0;
    font-size: 16px;
    flex-grow: 1;
    word-wrap: break-word
}

.inv-card-static__footer {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(42, 42, 42, 0.08)
}

.inv-card-static__price {
    font-weight: 700;
    font-size: 24px;
    color: var(--text);
    white-space: nowrap
}

.inv-card-static__period {
    font-size: 13px;
    color: var(--text2);
    opacity: 0.8;
    font-weight: 500
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns:repeat(3, minmax(0, 1fr))
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: 16px
    }

    .services-hub__title {
        font-size: 24px !important;
        line-height: 1.2
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns:minmax(0, 1fr);
        width: 100%
    }

    .services-hub {
        padding: 30px 0
    }
}
