.your-tools__head {
    text-align: center;
}

.your-tools__title {
    color: #474766;
    font-size: 40px;
    line-height: 120%;
    font-weight: 600;
}

.your-tools__description {
    margin-top: 16px;
    color: #8787AB;
    font-size: 18px;
    line-height: 150%;
}

.your-tools__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.your-tools__card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    background: #FFFFFF;
}

.your-tools__card-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.your-tools__icon-wrap {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
}

.your-tools__icon {
    width: 52px;
    height: 52px;
    object-fit: cover;
    display: block;
}

.your-tools__card-head {
    min-width: 0;
}

.your-tools__card-title {
    color: #474766;
    font-size: 20px;
    line-height: 120%;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.your-tools__card-category {
    margin-top: 4px;
    color: #90A1B9;
    font-size: 14px;
    line-height: 120%;
    font-weight: 600;
    text-transform: uppercase;
}

.your-tools__card-description {
    color: #8787AB;
    font-size: 16px;
    line-height: 150%;
}

.your-tools__badge {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    padding: 6px 11px;
    border: 1px solid #D0FAE5;
    border-radius: 99px;
    background: #ECFDF5;
}

.your-tools__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00BC7D;
    flex-shrink: 0;
}

.your-tools__badge-text {
    color: #009966;
    font-size: 11px;
    line-height: 120%;
    font-weight: 600;
}

.your-tools__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
    padding: 24px 32px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    background: #FFFFFF;
}

.your-tools__footer-title {
    color: #90A1B9;
    font-size: 14px;
    line-height: 120%;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.your-tools__services {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    min-width: 0;
}

.your-tools__service {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    opacity: 0.8;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.your-tools__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    background: #258BFF;
    color: #FFFFFF;
    font-size: 13px;
    line-height: 120%;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.your-tools__button-icon {
    flex-shrink: 0;
}

@media screen and (hover: hover) {
    .your-tools__button:hover {
        background: #489CFF;
    }
}

@media screen and (max-width: 1180px) {
    .your-tools {
        padding: 60px 0;
    }

    .your-tools__title {
        font-size: 34px;
    }

    .your-tools__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .your-tools__footer {
        flex-wrap: wrap;
        justify-content: center;
    }

    .your-tools__footer-title {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 750px) {
    .your-tools {
        padding: 40px 0;
    }

    .your-tools__head {
        text-align: left;
    }

    .your-tools__title {
        font-size: 24px;
    }

    .your-tools__description {
        margin-top: 12px;
        font-size: 16px;
    }

    .your-tools__grid {
        grid-template-columns: 100%;
        gap: 16px;
        margin-top: 24px;
    }

    .your-tools__card {
        padding: 20px;
    }

    .your-tools__card-title {
        font-size: 18px;
    }

    .your-tools__card-description {
        font-size: 15px;
    }

    .your-tools__footer {
        margin-top: 20px;
        padding: 20px;
        gap: 16px;
    }

    .your-tools__services {
        gap: 12px;
        justify-content: flex-start;
    }

    .your-tools__button {
        width: 100%;
        justify-content: center;
    }
}
