.nsr-cta {
    margin: 28px 0 8px;
    padding: 0;
}

.nsr-cta-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 28px 32px;
    border-radius: 18px;
    border: 1px solid #3a3a3a;
    background:
        radial-gradient(140% 220% at 100% 0%, rgba(37, 211, 102, .07), transparent 55%),
        linear-gradient(180deg, #2b2b2b, #1e1e1e);
    box-shadow: 0 4px 24px -8px rgba(0, 0, 0, .5);
    overflow: hidden;
}

.nsr-cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #ffc857;
    margin-bottom: 12px;
}

.nsr-cta-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #ffc857;
    box-shadow: 0 0 0 4px rgba(255, 200, 87, .18);
    animation: nsr-cta-pulse 2.2s ease-in-out infinite;
}

@keyframes nsr-cta-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(255, 200, 87, .18); }
    50%      { box-shadow: 0 0 0 7px rgba(255, 200, 87, .08); }
}

.nsr-cta-title {
    margin: 0 0 8px;
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 700;
    line-height: 1.3;
    color: #e4e3e3;
    letter-spacing: -.005em;
}

.nsr-cta-sub {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #9e9e9e;
    max-width: 56ch;
}

.nsr-cta-btns {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.nsr-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .15s ease, box-shadow .15s ease,
                background-color .15s ease, color .15s ease, border-color .15s ease;
}

.nsr-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.nsr-btn-icon {
    flex-shrink: 0;
}

.nsr-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    text-align: left;
}

.nsr-btn-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .01em;
}

.nsr-btn-hint {
    font-size: 11px;
    font-weight: 500;
    opacity: .8;
    letter-spacing: .02em;
}

.nsr-btn-wa {
    background: #25d366;
    color: #0a1208;
    box-shadow: 0 10px 24px -12px rgba(37, 211, 102, .65);
}

.nsr-btn-wa:hover {
    background: #1fbf5b;
    color: #0a1208;
    box-shadow: 0 14px 28px -12px rgba(37, 211, 102, .75);
}

.nsr-btn-email {
    background: transparent;
    color: #e4e3e3;
    border: 2px solid #4a4a4a;
}

.nsr-btn-email:hover {
    color: #e4e3e3;
    border-color: #e4e3e3;
    background: rgba(255, 255, 255, .04);
}

@media (max-width: 760px) {
    .nsr-cta {
        margin: 20px 0 4px;
    }

    .nsr-cta-inner {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 22px 20px;
        border-radius: 16px;
    }

    .nsr-cta-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .nsr-btn {
        justify-content: center;
        padding: 14px 18px;
    }
}