.block-tco {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    padding: 100px 0;
    background: #ffffff;
}

.tco-container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
}

.tco-header {
    margin-bottom: 60px;
}

.tco-title {
    margin: 0;
    color: #373737;
    font-family: "Nunito", Arial, sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    text-transform: uppercase;
}

.tco-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    padding: 60px;
    border-radius: 30px;
    background: #f8f8f8;
}

.tco-item {
    flex: 1 1 0;
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.tco-item:not(:nth-child(3n)):not(:last-child)::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    width: 1px;
    height: 60px;
    background: #d8d8d8;
    transform: translateY(-50%);
}

.tco-icon-wrap {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tco-icon-img {
    width: auto;
    height: auto;
    max-width: 52px;
    max-height: 52px;
    object-fit: contain;
}

.tco-icon-fallback {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tco-item-title {
    margin: 0;
    color: #373737;
    font-family: "Nunito", Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
}

.tco-item-text {
    margin: 0;
    color: #1f1f1f;
    font-family: "Nunito", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    max-width: 280px;
}

@media (max-width: 1100px) {
    .block-tco {
        padding: 80px 0;
    }

    .tco-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 40px 30px;
        gap: 20px;
    }

    .tco-item::after {
        display: none;
    }

    .tco-item-title {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .block-tco {
        padding: 60px 0;
    }

    .tco-header {
        margin-bottom: 30px;
    }

    .tco-title {
        font-size: 24px;
        line-height: 30px;
    }

    .tco-panel {
        grid-template-columns: 1fr;
        border-radius: 20px;
        padding: 30px 20px;
        gap: 20px;
    }
}
