.th-control {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(76px, 8vw, 124px) 0;
    color: #fff;
    background:
        linear-gradient(110deg, rgba(3, 21, 46, .98) 0%, rgba(5, 35, 72, .94) 55%, rgba(3, 25, 52, .88) 100%),
        url("../image/city-highway.jpg") center / cover no-repeat;
}

.th-control::before {
    position: absolute;
    z-index: -1;
    top: -180px;
    left: 36%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(37, 139, 255, .18);
    filter: blur(90px);
    content: "";
}

.th-control__layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: clamp(54px, 8vw, 118px);
    align-items: center;
}

.th-control__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #77bdff;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.th-control__eyebrow::before {
    width: 28px;
    height: 2px;
    border-radius: 2px;
    background: #55dc8b;
    content: "";
}

.th-control h2 {
    max-width: 620px;
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(38px, 4.3vw, 64px);
    font-weight: 760;
    letter-spacing: -.045em;
    line-height: 1.04;
}

.th-control__lead {
    max-width: 610px;
    margin: 0 0 34px;
    color: rgba(230, 240, 252, .8);
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.75;
}

.th-control__cta {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid rgba(150, 201, 255, .28);
    border-radius: 14px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(12px);
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.th-control__cta:hover {
    transform: translateY(-2px);
    border-color: rgba(150, 201, 255, .55);
    color: #fff;
    background: rgba(30, 126, 240, .24);
}

.th-control__outcomes {
    display: grid;
    gap: 14px;
}

.th-control__card {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 20px;
    padding: 26px 28px;
    border: 1px solid rgba(180, 215, 255, .16);
    border-radius: 20px;
    background: linear-gradient(120deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .045));
    box-shadow: 0 18px 50px rgba(0, 10, 29, .18), inset 0 1px 0 rgba(255, 255, 255, .1);
    backdrop-filter: blur(16px);
    transition: transform .25s ease, border-color .25s ease;
}

.th-control__card:hover {
    transform: translateX(-6px);
    border-color: rgba(104, 180, 255, .38);
}

.th-control__number {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(112, 190, 255, .24);
    border-radius: 14px;
    color: #72bdff;
    background: rgba(35, 127, 231, .12);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

.th-control__card h3 {
    margin: 1px 0 8px;
    color: #fff;
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 720;
    line-height: 1.25;
}

.th-control__card p {
    margin: 0;
    color: rgba(224, 236, 249, .72);
    font-size: 14px;
    line-height: 1.65;
}

@media (max-width: 991px) {
    .th-control__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 575px) {
    .th-control {
        padding: 68px 0;
    }

    .th-control__card {
        grid-template-columns: 42px 1fr;
        gap: 14px;
        padding: 22px 18px;
    }

    .th-control__number {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .th-control__card,
    .th-control__cta {
        transition: none;
    }
}
