/* === Контейнер === */
.td-section {
    padding: 60px 0;
}
body{
    background: linear-gradient(135deg, #eff6ff, #e0f2fe);
}

.td-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Header === */
.td-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.td-label {
    font-size: 14px;
    text-transform: uppercase;
    color: #888;
    margin: 0;
}

.td-title {
    font-size: 36px;
    margin-top: 5px;
    font-weight: 700;
}

.td-close {
    font-size: 16px;
    color: #34ceff;
    text-decoration: none;
    font-weight: 600;
}

/* === Макет === */
.td-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
}

/* === Aside === */

.td-image-wrap {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
}

.td-image {
    width: 100%;
    display: block;
}

.td-image-placeholder {
    background: #f2f2f2;
    padding: 40px;
    text-align: center;
    border-radius: 14px;
}

.td-short {
    margin: 20px 0;
    font-size: 16px;
    line-height: 1.5;
}

.td-services {
    margin-top: 30px;
}

.td-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.td-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.td-service-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.td-service-name {
    font-weight: 500;
    width: 64%;
}

.td-service-price {
    color: #17adf7;
}

/* === Content === */

.td-intro {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.td-keys {
    margin: 30px 0;
    display: grid;
    gap: 20px;
}

.td-key {
    display: flex;
    align-items: center;
    gap: 15px;
}

.td-key-num {
    width: 25px;
    height: 25px;
    border-radius: 12px;
    background: #34ceff7a;
    color: white;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 1px 1px rgb(0 0 0 / 42%);
}

.td-body {
    font-size: 18px;
    line-height: 1.7;
    margin-top: 40px;
}

.td-cta {
    margin-top: 40px;
}

.td-btn {
    display: inline-block;
    background: #ffffff;
    color: #17adf7;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: inset 0px 0px 11px 0px rgb(7 232 255 / 22%);
    border: 1px solid #ffffff00;
}

/* === Other categories === */

.td-other {
    margin-top: 70px;
}

.td-other-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.td-other-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.td-other-card {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.25s;
    color: #000000;
}

.td-other-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.td-other-img-wrap img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.td-other-placeholder {
    width: 100%;
    height: 180px;
    background: #f0f0f0;
}

.td-other-body {
    padding: 16px;
}

.td-other-body h3 {
    margin: 0 0 6px 0;
    font-size: 18px;
}

/* === Mobile === */
@media (max-width: 900px) {
    .td-layout {
        grid-template-columns: 1fr;
    }
}
