.msp-body {
    overflow-x: hidden;
}

.msp-brand small {
    padding-left: 0;
    margin-top: 4px;
}

.msp-header-cta {
    white-space: nowrap;
}

.msp-hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: 105px 0 90px;
    border-bottom: 1px solid var(--noc-border);
}

.msp-hero::before {
    content: "";
    position: absolute;
    width: 680px;
    height: 680px;
    top: -250px;
    right: -180px;
    border-radius: 50%;
    background: rgba(125, 255, 0, 0.07);
    filter: blur(4px);
    pointer-events: none;
}

.msp-hero::after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    opacity: 0.12;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(125, 255, 0, 0.16) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(125, 255, 0, 0.16) 1px,
            transparent 1px
        );
    background-size: 70px 70px;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 45%,
        black
    );
}

.msp-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(480px, 0.98fr);
    align-items: center;
    gap: 70px;
}

.msp-hero-copy {
    max-width: 760px;
}

.msp-hero-title {
    max-width: 850px;
    font-size: clamp(3.3rem, 6.4vw, 6.8rem);
}

.msp-hero-title span {
    display: block;
}

.msp-hero-description {
    max-width: 690px;
    margin: 28px 0 0;
    color: #c5cec8;
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.75;
}

.msp-hero-actions {
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.msp-trust-line {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 25px;
    color: var(--noc-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.msp-trust-line span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.msp-trust-line i {
    color: var(--noc-green);
}

.msp-command-center {
    position: relative;
}

.msp-command-center::before {
    content: "";
    position: absolute;
    inset: 15% 8%;
    background: rgba(125, 255, 0, 0.16);
    filter: blur(80px);
}

.msp-dashboard-window {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--noc-border-strong);
    border-radius: 12px;
    background:
        radial-gradient(
            circle at top right,
            rgba(125, 255, 0, 0.09),
            transparent 32%
        ),
        rgba(2, 8, 4, 0.96);
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(125, 255, 0, 0.12);
}

.msp-dashboard-head {
    min-height: 74px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--noc-border);
    background: rgba(0, 0, 0, 0.42);
}

.msp-dashboard-head > div {
    display: grid;
    gap: 5px;
}

.msp-dashboard-label {
    color: var(--noc-green);
    font-family: Consolas, monospace;
    font-size: 0.67rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.msp-dashboard-head strong {
    font-size: 0.93rem;
}

.msp-dashboard-body {
    padding: 20px;
}

.msp-health-score {
    min-height: 112px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border: 1px solid var(--noc-border);
    border-radius: 8px;
    background: rgba(125, 255, 0, 0.035);
}

.msp-health-score > div:first-child {
    display: grid;
    gap: 9px;
}

.msp-health-score span {
    color: var(--noc-muted);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.msp-health-score strong {
    color: var(--noc-green);
    font-size: 1.55rem;
}

.msp-health-ring {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border: 7px solid rgba(125, 255, 0, 0.14);
    border-top-color: var(--noc-green);
    border-right-color: var(--noc-green);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(125, 255, 0, 0.13);
}

.msp-health-ring span {
    color: var(--noc-text);
    font-size: 1.2rem;
}

.msp-dashboard-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.msp-dashboard-card {
    min-height: 135px;
    padding: 16px;
    display: grid;
    align-content: start;
    gap: 7px;
    border: 1px solid rgba(125, 255, 0, 0.13);
    border-radius: 7px;
    background: rgba(7, 18, 10, 0.72);
}

.msp-dashboard-icon {
    color: var(--noc-green);
    font-size: 1.45rem;
}

.msp-dashboard-card > span {
    color: var(--noc-muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.msp-dashboard-card strong {
    font-size: 1rem;
}

.msp-dashboard-card small {
    color: #829087;
}

.msp-activity-feed {
    margin-top: 14px;
    overflow: hidden;
    border: 1px solid rgba(125, 255, 0, 0.13);
    border-radius: 7px;
}

.msp-activity-heading,
.msp-activity-row {
    min-height: 42px;
    padding: 9px 13px;
    display: grid;
    align-items: center;
    gap: 10px;
}

.msp-activity-heading {
    grid-template-columns: 1fr auto;
    border-bottom: 1px solid var(--noc-border);
    background: rgba(125, 255, 0, 0.04);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.msp-activity-row {
    grid-template-columns: auto 1fr auto;
    color: var(--noc-muted);
    font-family: Consolas, monospace;
    font-size: 0.68rem;
}

.msp-activity-row + .msp-activity-row {
    border-top: 1px solid rgba(125, 255, 0, 0.07);
}

.msp-activity-row i {
    color: var(--noc-green);
}

.msp-activity-row time {
    color: #69756d;
}

.msp-operations-strip {
    position: relative;
    z-index: 4;
    border-bottom: 1px solid var(--noc-border);
    background: rgba(3, 10, 5, 0.96);
}

.msp-operations-grid {
    min-height: 132px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.msp-operation {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.msp-operation + .msp-operation {
    border-left: 1px solid var(--noc-border);
}

.msp-operation i {
    color: var(--noc-green);
    font-size: 1.8rem;
}

.msp-operation div {
    display: grid;
    gap: 6px;
}

.msp-operation strong {
    text-transform: uppercase;
}

.msp-operation span {
    color: var(--noc-muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.msp-section-heading {
    margin-bottom: 45px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 80px;
}

.msp-section-heading .noc-copy {
    margin: 0;
}

.msp-section-title {
    font-size: clamp(2.4rem, 4.5vw, 4.8rem);
}

.msp-service-grid {
    align-items: stretch;
}

.msp-service-card {
    position: relative;
    min-height: 390px;
}

.msp-card-number {
    position: absolute;
    top: 25px;
    right: 25px;
    color: rgba(125, 255, 0, 0.3);
    font-family: Consolas, monospace;
    font-size: 0.72rem;
}

.msp-service-card h3 {
    margin-top: 24px;
}

.msp-service-card ul {
    margin: 22px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
    list-style: none;
}

.msp-service-card li {
    position: relative;
    padding-left: 19px;
    color: #b8c1bb;
    font-size: 0.88rem;
}

.msp-service-card li::before {
    content: "";
    position: absolute;
    top: 0.53em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--noc-green);
    box-shadow: 0 0 9px rgba(125, 255, 0, 0.6);
}

.msp-problems {
    border-top: 1px solid var(--noc-border);
    border-bottom: 1px solid var(--noc-border);
    background:
        linear-gradient(
            90deg,
            rgba(125, 255, 0, 0.035),
            transparent 50%
        ),
        #030805;
}

.msp-problems-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    align-items: start;
    gap: 90px;
}

.msp-problems-copy {
    position: sticky;
    top: 130px;
}

.msp-problems-copy .noc-copy {
    margin: 25px 0 30px;
}

.msp-problem-list {
    display: grid;
}

.msp-problem-item {
    padding: 27px 0;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 20px;
    border-bottom: 1px solid var(--noc-border);
}

.msp-problem-item:first-child {
    border-top: 1px solid var(--noc-border);
}

.msp-problem-item > span {
    color: var(--noc-green);
    font-family: Consolas, monospace;
    font-weight: 800;
}

.msp-problem-item h3 {
    margin: 0 0 8px;
    text-transform: uppercase;
}

.msp-problem-item p {
    margin: 0;
    color: var(--noc-muted);
    line-height: 1.65;
}

.msp-centered-heading {
    max-width: 950px;
    margin: 0 auto 45px;
    text-align: center;
}

.msp-centered-heading .noc-copy {
    max-width: 760px;
    margin: 22px auto 0;
}

.msp-industry-card {
    min-height: 165px;
    padding: 28px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 18px;
    text-align: center;
    border: 1px solid var(--noc-border);
    border-radius: var(--noc-radius);
    background: rgba(7, 17, 10, 0.72);
    transition: 0.2s;
}

.msp-industry-card:hover {
    transform: translateY(-4px);
    border-color: var(--noc-border-strong);
    box-shadow: var(--noc-shadow);
}

.msp-industry-card i {
    color: var(--noc-green);
    font-size: 2.3rem;
}

.msp-industry-card h3 {
    margin: 0;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.msp-process {
    border-top: 1px solid var(--noc-border);
    background: #030805;
}

.msp-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.msp-process-step {
    position: relative;
    min-height: 320px;
    padding: 32px;
    border-top: 1px solid var(--noc-border);
    border-bottom: 1px solid var(--noc-border);
}

.msp-process-step + .msp-process-step {
    border-left: 1px solid var(--noc-border);
}

.msp-process-step i {
    margin-top: 50px;
    display: block;
    color: var(--noc-green);
    font-size: 2.2rem;
}

.msp-step-number {
    position: absolute;
    top: 25px;
    right: 27px;
    color: rgba(125, 255, 0, 0.34);
    font-family: Consolas, monospace;
    font-size: 0.78rem;
}

.msp-process-step h3 {
    margin: 24px 0 12px;
    text-transform: uppercase;
}

.msp-process-step p {
    margin: 0;
    color: var(--noc-muted);
    line-height: 1.65;
}

.msp-why {
    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(125, 255, 0, 0.075),
            transparent 35%
        );
}

.msp-why-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 80px;
}

.msp-why-panel {
    padding: 45px;
    border: 1px solid var(--noc-border-strong);
    border-radius: 10px;
    background: rgba(4, 13, 7, 0.88);
    box-shadow: var(--noc-shadow);
}

.msp-why-panel .noc-copy {
    margin: 24px 0 0;
}

.msp-readiness-list {
    margin-top: 28px;
    display: grid;
    gap: 14px;
}

.msp-readiness-list div {
    display: flex;
    gap: 12px;
    color: #c5cec8;
    line-height: 1.5;
}

.msp-readiness-list i {
    color: var(--noc-green);
    font-size: 1.2rem;
}

.msp-credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.msp-credentials article {
    min-height: 145px;
    padding: 23px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid var(--noc-border);
    border-radius: 7px;
    background: rgba(7, 17, 10, 0.68);
}

.msp-credentials i {
    color: var(--noc-green);
    font-size: 1.65rem;
}

.msp-credentials article div {
    display: grid;
    gap: 8px;
}

.msp-credentials strong {
    text-transform: uppercase;
}

.msp-credentials span {
    color: var(--noc-muted);
    font-size: 0.84rem;
    line-height: 1.5;
}

.msp-consultation {
    padding-top: 25px;
}

.msp-consultation-panel {
    min-height: 340px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 65px;
    border: 1px solid var(--noc-border-strong);
    border-radius: 12px;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(125, 255, 0, 0.12),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            rgba(12, 31, 17, 0.96),
            rgba(3, 8, 5, 0.98)
        );
    box-shadow: var(--noc-shadow);
}

.msp-consultation-copy p:last-child {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--noc-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.msp-consultation-action {
    display: grid;
    justify-items: start;
    gap: 14px;
}

.msp-consultation-action span {
    color: var(--noc-muted);
    font-size: 0.75rem;
}

.msp-footer {
    margin-top: 65px;
    border-top: 1px solid var(--noc-border);
    background: #010302;
}

.msp-footer-inner {
    padding: 65px 0;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.8fr;
    gap: 70px;
}

.msp-footer-brand img {
    width: 205px;
}

.msp-footer-brand strong {
    margin-top: 16px;
    display: block;
    color: var(--noc-green);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.msp-footer-brand p,
.msp-footer-contact p {
    max-width: 430px;
    color: var(--noc-muted);
    line-height: 1.65;
}

.msp-footer-links,
.msp-footer-contact {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 12px;
}

.msp-footer-links > strong,
.msp-footer-contact > strong {
    margin-bottom: 6px;
    text-transform: uppercase;
}

.msp-footer-links a,
.msp-footer-contact a {
    color: var(--noc-muted);
}

.msp-footer-links a:hover,
.msp-footer-contact a:hover {
    color: var(--noc-green);
}

.msp-footer-bottom {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba(125, 255, 0, 0.1);
    color: #7d8881;
    font-size: 0.75rem;
}

@media (max-width: 1180px) {
    .msp-hero-grid {
        grid-template-columns: 1fr;
    }

    .msp-command-center {
        width: min(720px, 100%);
    }

    .msp-operations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .msp-operation:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--noc-border);
    }

    .msp-operation:nth-child(4) {
        border-top: 1px solid var(--noc-border);
    }

    .msp-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .msp-process-step:nth-child(3) {
        border-left: 0;
    }

    .msp-why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 920px) {
    .msp-header-cta {
        display: none;
    }

    .msp-section-heading,
    .msp-problems-grid,
    .msp-consultation-panel,
    .msp-footer-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .msp-problems-copy {
        position: static;
    }

    .msp-footer-inner {
        gap: 40px;
    }
}

@media (max-width: 680px) {
    .msp-hero {
        min-height: auto;
        padding: 75px 0 65px;
    }

    .msp-hero-title {
        font-size: clamp(2.75rem, 14vw, 4.4rem);
    }

    .msp-hero-actions {
        display: grid;
    }

    .msp-hero-actions .noc-btn {
        width: 100%;
    }

    .msp-dashboard-body {
        padding: 12px;
    }

    .msp-dashboard-grid,
    .msp-operations-grid,
    .msp-process-grid,
    .msp-credentials {
        grid-template-columns: 1fr;
    }

    .msp-operation + .msp-operation {
        border-left: 0;
        border-top: 1px solid var(--noc-border);
    }

    .msp-process-step + .msp-process-step {
        border-left: 0;
    }

    .msp-why-panel,
    .msp-consultation-panel {
        padding: 30px 22px;
    }

    .msp-footer-bottom {
        padding: 22px 0;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Hero dashboard positioning correction */
@media (min-width: 1181px) {
    .msp-hero-grid {
        grid-template-columns:
            minmax(0, 0.92fr)
            minmax(570px, 1.08fr);
        gap: 55px;
    }

    .msp-hero-copy {
        position: relative;
        z-index: 2;
        max-width: 750px;
    }

    .msp-hero-title {
        max-width: 750px;
        font-size: clamp(3.3rem, 5.7vw, 6.3rem);
    }

    .msp-command-center {
        position: relative;
        z-index: 3;
        width: 100%;
        margin-top: 55px;
        transform: translateX(20px);
    }
}
