.nml-tg {
    padding: 60px 0;
}

/* Card */
.nml-tg__card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 40px 48px;
    background: #0B1638;
    border: 1px solid #2C3A6B;
    border-radius: 24px;
    box-shadow: 0 0 0 4px rgba(76, 131, 243, 0.08);
    overflow: hidden;
}

/* Decorative background rings (from bg_image, positioned right) */
.nml-tg__bg {
    display: none;
}

.nml-tg__card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -80px;
    width: 320px;
    height: 320px;
    transform: translateY(-50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 40px rgba(255, 255, 255, 0.04), 0 0 0 80px rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

/* Icon */
.nml-tg__icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg, #2AABEE 0%, #229ED9 100%);
    border-radius: 20px;
    overflow: hidden;
}

.nml-tg__icon img {
    display: block;
    max-width: 45px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Body */
.nml-tg__body {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

/* Badge */
.nml-tg__badge {
    width: fit-content;
    background: transparent;
    border: none;
    padding: 0;
    gap: 6px;
}

.nml-tg__badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4AA8F0;
    flex-shrink: 0;
}

.nml-tg__badge span {
    color: #4AA8F0;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* Heading */
.nml-tg__heading {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    color: #FFFFFF;
    margin: 0;
}

.nml-tg__heading span {
    color: #4AA8F0;
}

/* Text */
.nml-tg__text {
    font-size: 15px;
    line-height: 1.5;
    color: #8B93B0;
    margin: 0;
}

/* Button */
.nml-tg__btn {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    background: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    color: #16234F;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.nml-tg__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .nml-tg {
        padding: 32px 0;
    }

    .nml-tg__card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 32px 24px;
        border-radius: 20px;
    }

    .nml-tg__card::after {
        display: none;
    }

    .nml-tg__icon {
        width: 64px;
        height: 64px;
    }

    .nml-tg__body {
        align-items: center;
    }

    .nml-tg__heading {
        font-size: 26px;
    }

    .nml-tg__text {
        font-size: 14px;
    }

    .nml-tg__btn {
        width: 100%;
        padding: 14px 24px;
    }
}
