/* TTR Services Page — professional card grid */

.ttr-services-page {
    padding: 55px 0 80px;
    background: #fff;
}

.ttr-services-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 14px;
}

.ttr-services-hero-lines {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    max-width: 180px;
}

.ttr-services-hero-lines.is-right {
    justify-content: flex-end;
}

.ttr-services-hero-lines .line {
    display: block;
    height: 3px;
}

.ttr-services-hero-lines .line-red {
    width: 42px;
    background: #e53935;
}

.ttr-services-hero-lines .line-blue {
    width: 120px;
    background: #1e2a44;
}

.ttr-services-hero-title {
    margin: 0;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    color: #1e2a44;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.02em;
}

.ttr-services-hero-subtitle {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
    color: #5a6578;
    font-size: 18px;
    line-height: 1.6;
}

.ttr-services-card-grid {
    margin-top: 8px;
}

.ttr-service-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-height: 190px;
    height: 100%;
    padding: 22px 20px;
    margin-bottom: 28px;
    background: #fff;
    border: 1px solid #e3e8ef;
    box-shadow: 0 8px 24px rgba(30, 42, 68, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ttr-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(30, 42, 68, 0.1);
}

.ttr-service-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #1e2a44;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 28px;
}

.ttr-service-card-content {
    flex: 1;
    min-width: 0;
}

.ttr-service-card-title {
    margin: 4px 0 14px;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
    color: #1e2a44;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.ttr-service-card-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ttr-service-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.ttr-service-card-list li:last-child {
    margin-bottom: 0;
}

.ttr-service-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e53935;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 9px;
}

.ttr-service-card-list a {
    color: #3d4658;
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ttr-service-card-list a:hover {
    color: #e53935;
}

@media (max-width: 991px) {
    .ttr-services-hero-title {
        font-size: 28px;
    }

    .ttr-services-hero-lines {
        max-width: 90px;
    }

    .ttr-services-hero-lines .line-blue {
        width: 60px;
    }
}

@media (max-width: 767px) {
    .ttr-services-page {
        padding-top: 40px;
    }

    .ttr-services-hero {
        flex-direction: column;
        gap: 10px;
    }

    .ttr-services-hero-lines {
        display: none;
    }

    .ttr-services-hero-title {
        font-size: 24px;
    }

    .ttr-services-hero-subtitle {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .ttr-service-card {
        min-height: 0;
        padding: 18px 16px;
    }

    .ttr-service-card-icon {
        width: 62px;
        height: 62px;
        font-size: 24px;
    }
}
