
.tt-hiw,
.tt-hiw * {
    box-sizing: border-box;
}

.tt-hiw {
    width: min(1200px, calc(100% - 36px));
    margin: 32px auto 56px;
    font-family: Poppins, Arial, sans-serif;
    color: #071a44;
}

.tt-hiw__intro {
    max-width: 820px;
    margin: 0 auto 30px;
    text-align: center;
}

.tt-hiw__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #076cff;
    font-size: 12px;
    font-weight: 700;
}

.tt-hiw__eyebrow .dashicons {
    width: 21px;
    height: 21px;
    font-size: 21px;
}

.tt-hiw__intro h1 {
    margin: 0 0 10px;
    color: #071a44;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.tt-hiw__intro h1 span {
    color: #0872ff;
}

.tt-hiw__intro p {
    margin: 0;
    color: #53627a;
    font-size: 15px;
    line-height: 1.65;
}

.tt-hiw__columns {
    display: grid;
    grid-template-columns: 1fr 1.22fr;
    gap: 16px;
}

.tt-hiw__panel {
    padding: 28px;
    border: 1px solid #dce5f1;
    border-radius: 16px;
    background: #fff;
}

.tt-hiw__panel > h2 {
    margin: 0 0 20px;
    font-size: 21px;
    line-height: 1.3;
}

.tt-hiw__steps {
    position: relative;
}

.tt-hiw__steps::before {
    content: "";
    position: absolute;
    top: 23px;
    bottom: 23px;
    left: 16px;
    width: 2px;
    background: #cfe1ff;
}

.tt-hiw__step {
    position: relative;
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 14px;
    align-items: center;
}

.tt-hiw__step + .tt-hiw__step {
    margin-top: 11px;
}

.tt-hiw__number {
    position: relative;
    z-index: 2;
    display: flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0872ff;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.tt-hiw__step-card,
.tt-hiw__benefit {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    border: 1px solid #dce5f1;
    border-radius: 12px;
    background: #fff;
}

.tt-hiw__icon {
    display: flex;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7e4f7;
    border-radius: 11px;
    background: #f8fbff;
    color: #0872ff;
}

.tt-hiw__icon .dashicons {
    width: 28px;
    height: 28px;
    font-size: 28px;
}

.tt-hiw h3 {
    margin: 0 0 5px;
    color: #071a44;
    font-size: 15px;
    line-height: 1.28;
}

.tt-hiw__step-card p,
.tt-hiw__benefit p,
.tt-hiw__cta p {
    margin: 0;
    color: #65738a;
    font-size: 12.5px;
    line-height: 1.55;
}

.tt-hiw__benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.tt-hiw__benefit {
    min-height: 146px;
    padding: 22px;
}

.tt-hiw__cta {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding: 18px 22px;
    border: 1px solid #dce5f1;
    border-radius: 14px;
    background: #fff;
}

.tt-hiw__cta-copy {
    display: flex;
    gap: 18px;
    align-items: center;
}

.tt-hiw__cta-icon {
    display: flex;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border: 1px solid #cfe1ff;
    border-radius: 50%;
    background: #edf5ff;
    color: #0872ff;
}

.tt-hiw__cta-icon .dashicons {
    width: 31px;
    height: 31px;
    font-size: 31px;
}

.tt-hiw__cta h2 {
    margin: 0 0 5px;
    font-size: 15px;
    line-height: 1.45;
}

.tt-hiw__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 14px;
}

.tt-hiw__button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 26px;
    border: 1px solid #0872ff;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: transform .18s ease, box-shadow .18s ease;
}

.tt-hiw__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(8, 114, 255, .16);
}

.tt-hiw__button--primary {
    background: #0872ff;
    color: #fff !important;
}

.tt-hiw__button--secondary {
    background: #fff;
    color: #0872ff !important;
}

@media (max-width: 980px) {
    .tt-hiw__columns {
        grid-template-columns: 1fr;
    }

    .tt-hiw__cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 680px) {
    .tt-hiw {
        width: min(100% - 22px, 1200px);
        margin-top: 20px;
    }

    .tt-hiw__panel {
        padding: 18px;
    }

    .tt-hiw__benefit-grid {
        grid-template-columns: 1fr;
    }

    .tt-hiw__benefit {
        min-height: 0;
    }

    .tt-hiw__actions {
        width: 100%;
        flex-direction: column;
    }

    .tt-hiw__button {
        width: 100%;
    }
}
