/* ============================================================
   IT Realms — msp.css
   Cinematic managed services page styles
   ============================================================ */

/* ============================================================
   MSP HERO — full-screen cinematic
   ============================================================ */

.msp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #050510;
}

.msp-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.2) saturate(0.8);
  transition: transform 10s ease;
}

.msp-hero:hover .msp-hero-bg {
  transform: scale(1.04);
}

.msp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(5,5,16,0.98) 0%,
    rgba(5,5,16,0.75) 45%,
    rgba(5,5,16,0.92) 100%
  );
}

.msp-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(38,204,202,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38,204,202,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* Pulse ring accent — top-right */
.msp-hero-pulse {
  position: absolute;
  top: 80px;
  right: 80px;
  width: 200px;
  height: 200px;
  pointer-events: none;
}

.msp-hero-pulse::before,
.msp-hero-pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(38,204,202,0.15);
  animation: mspPulse 4s ease-in-out infinite;
}

.msp-hero-pulse::after {
  animation-delay: 2s;
  inset: 20px;
}

@keyframes mspPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0.1; }
}

.msp-hero-content {
  position: relative;
  z-index: 4;
  padding: 160px 5% 100px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.msp-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
}

.msp-hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--teal);
  flex-shrink: 0;
}

.msp-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 32px;
  max-width: 860px;
}

.msp-hero-title em {
  color: var(--teal);
  font-style: normal;
}

.msp-hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.48);
  max-width: 560px;
  margin-bottom: 52px;
}

/* SLA badges row */
.msp-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 56px;
}

.msp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(38,204,202,0.18);
  border-radius: 100px;
  background: rgba(38,204,202,0.04);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.msp-hero-badge:hover {
  border-color: rgba(38,204,202,0.4);
  color: var(--teal);
}

.msp-hero-badge svg,
.msp-hero-badge i {
  width: 12px;
  height: 12px;
  color: var(--teal);
}

/* KPI strip at bottom */
.msp-hero-kpis {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
  background: rgba(255,255,255,0.02);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.msp-hero-kpi {
  padding: 22px 36px;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}

.msp-hero-kpi:last-child { border-right: none; }

.msp-hero-kpi-num {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--teal);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.msp-hero-kpi-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .msp-hero-content { padding: 130px 5% 72px; }
  .msp-hero-kpis { flex-wrap: wrap; }
  .msp-hero-kpi { flex: 1; min-width: 110px; padding: 16px 18px; }
  .msp-hero-pulse { display: none; }
}


/* ============================================================
   MSP ADVANTAGE — split layout enhancement
   ============================================================ */

.msp-advantage {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.msp-advantage::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(38,204,202,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}
.msp-advantage > * { position: relative; z-index: 1; }

.msp-advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.msp-advantage-text .section-eyebrow { margin-bottom: 16px; }

.msp-advantage-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0d1b2e;
  margin-bottom: 28px;
  line-height: 1.12;
}

.msp-advantage-text h2 em {
  color: var(--teal);
  font-style: normal;
}

.msp-advantage-text p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(13,27,46,0.5);
  margin-bottom: 16px;
}

/* Value pillars */
.msp-value-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(13,27,46,0.08);
  border-radius: 14px;
  overflow: hidden;
}

.msp-value-pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 28px;
  border-bottom: 1px solid rgba(13,27,46,0.08);
  background: #fafafa;
  transition: background 0.3s ease;
}

.msp-value-pillar:last-child { border-bottom: none; }

.msp-value-pillar:hover {
  background: rgba(38,204,202,0.04);
}

.msp-value-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(38,204,202,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.msp-value-pillar:hover .msp-value-pillar-icon {
  background: rgba(38,204,202,0.16);
}

.msp-value-pillar-icon svg,
.msp-value-pillar-icon i {
  width: 20px;
  height: 20px;
}

.msp-value-pillar-body h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d1b2e;
  margin-bottom: 6px;
}

.msp-value-pillar-body p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(13,27,46,0.5);
  margin: 0;
}

@media (max-width: 860px) {
  .msp-advantage-grid { grid-template-columns: 1fr; gap: 48px; }
}


/* ============================================================
   SERVICE DOMAINS — reuses srv-card-grid from services.css
   ============================================================ */

.msp-domains {
  padding: 120px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}
.msp-domains::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 43px, rgba(38,204,202,0.04) 43px, rgba(38,204,202,0.04) 44px),
    repeating-linear-gradient(90deg, transparent 0, transparent 43px, rgba(38,204,202,0.04) 43px, rgba(38,204,202,0.04) 44px);
  pointer-events: none;
  z-index: 0;
}

.msp-domains-ghost {
  position: absolute;
  right: -1%;
  bottom: -0.15em;
  font-family: var(--font-heading);
  font-size: 20vw;
  font-weight: 900;
  color: rgba(13,27,46,0.015);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 2;
}

.msp-domains .ui-container {
  position: relative;
  z-index: 3;
}

.msp-section-header {
  text-align: center;
  margin-bottom: 72px;
}

.msp-section-header .section-eyebrow { justify-content: center; margin-bottom: 16px; }

.msp-section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0d1b2e;
  line-height: 1.12;
}

.msp-section-header h2 em {
  color: var(--teal);
  font-style: normal;
}


/* ============================================================
   SLA TIER CARDS — enhanced
   ============================================================ */

.msp-tiers {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.msp-tiers::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0, transparent 18px,
    rgba(38,204,202,0.04) 18px, rgba(38,204,202,0.04) 19px
  );
  pointer-events: none;
  z-index: 0;
}
.msp-tiers > * { position: relative; z-index: 1; }

.msp-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(13,27,46,0.07);
  border: 1px solid rgba(13,27,46,0.07);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 72px;
}

.msp-tier-card {
  position: relative;
  background: #ffffff;
  padding: 48px 36px;
  transition: background 0.3s ease;
}

.msp-tier-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(13,27,46,0.08);
  transition: background 0.3s ease;
}

.msp-tier-card--featured {
  background: #f0f4f8;
}

.msp-tier-card--featured::before {
  background: linear-gradient(to right, var(--teal), rgba(38,204,202,0.3));
}

.msp-tier-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--teal);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.msp-tier-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
  display: block;
}

.msp-tier-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0d1b2e;
  margin-bottom: 6px;
}

.msp-tier-target {
  font-size: 0.82rem;
  color: rgba(13,27,46,0.4);
  margin-bottom: 32px;
}

.msp-tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.msp-tier-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(13,27,46,0.55);
  line-height: 1.5;
}

.msp-tier-features i,
.msp-tier-features svg {
  width: 14px;
  height: 14px;
  color: var(--teal);
  flex-shrink: 0;
}

.msp-tier-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.25s ease;
  border: 1px solid rgba(38,204,202,0.3);
  color: var(--teal);
  background: rgba(38,204,202,0.05);
}

.msp-tier-cta:hover {
  background: var(--teal);
  color: var(--dark);
  border-color: var(--teal);
}

.msp-tier-card--featured .msp-tier-cta {
  background: var(--teal);
  color: var(--dark);
  border-color: var(--teal);
}

.msp-tier-card--featured .msp-tier-cta:hover {
  background: var(--teal-bright, #2dfcf9);
}

@media (max-width: 900px) {
  .msp-tier-grid { grid-template-columns: 1fr; border-radius: 12px; }
}


/* ============================================================
   ITIL TIMELINE — enhanced
   ============================================================ */

.msp-itil {
  padding: 120px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}
.msp-itil::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg, transparent 0, transparent 72px,
    rgba(38,204,202,0.05) 72px, rgba(38,204,202,0.05) 73px
  );
  pointer-events: none;
  z-index: 0;
}

.msp-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(13,27,46,0.08);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 72px;
  position: relative;
  z-index: 2;
}

.msp-timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(13,27,46,0.08);
  background: #fafafa;
  transition: background 0.3s ease;
}

.msp-timeline-item:last-child { border-bottom: none; }

.msp-timeline-item:hover {
  background: rgba(38,204,202,0.03);
}

.msp-timeline-num {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  border-right: 1px solid rgba(13,27,46,0.08);
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(38,204,202,0.25);
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.msp-timeline-item:hover .msp-timeline-num {
  color: rgba(38,204,202,0.6);
}

.msp-timeline-body {
  padding: 32px 40px;
}

.msp-timeline-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d1b2e;
  margin-bottom: 10px;
}

.msp-timeline-text {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(13,27,46,0.5);
  margin: 0;
}

@media (max-width: 640px) {
  .msp-timeline-item { grid-template-columns: 72px 1fr; }
  .msp-timeline-num { font-size: 1.4rem; padding: 24px 16px; }
  .msp-timeline-body { padding: 24px 20px; }
}


/* ============================================================
   NOC/SOC DEEP DIVE — enhanced two-cards
   ============================================================ */

.msp-deep-dive {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.msp-deep-dive::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0, transparent 14px,
    rgba(38,204,202,0.04) 14px, rgba(38,204,202,0.04) 15px,
    transparent 15px, transparent 28px,
    rgba(255,230,37,0.03) 28px, rgba(255,230,37,0.03) 29px
  );
  pointer-events: none;
  z-index: 0;
}
.msp-deep-dive > * { position: relative; z-index: 1; }

.msp-deep-dive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(13,27,46,0.07);
  border: 1px solid rgba(13,27,46,0.07);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 72px;
}

.msp-deep-card {
  background: #ffffff;
  padding: 52px 44px;
  position: relative;
  transition: background 0.3s ease;
}

.msp-deep-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--teal), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.msp-deep-card:hover::before {
  transform: scaleX(1);
}

.msp-deep-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(38,204,202,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 28px;
}

.msp-deep-card-icon svg,
.msp-deep-card-icon i {
  width: 26px;
  height: 26px;
}

.msp-deep-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0d1b2e;
  margin-bottom: 16px;
}

.msp-deep-card-text {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(13,27,46,0.5);
  margin-bottom: 28px;
}

.msp-deep-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.msp-deep-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(13,27,46,0.55);
}

.msp-deep-card-list i,
.msp-deep-card-list svg {
  width: 14px;
  height: 14px;
  color: var(--teal);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .msp-deep-dive-grid { grid-template-columns: 1fr; }
  .msp-deep-card { padding: 40px 28px; }
}


/* ============================================================
   BACKUP RECOVERY — dark split layout
   ============================================================ */

.msp-backup {
  padding: 120px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}
.msp-backup::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 100% 0%, rgba(38,204,202,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 0% 100%, rgba(255,230,37,0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.msp-backup > * { position: relative; z-index: 1; }

.msp-backup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.msp-backup-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0d1b2e;
  margin-bottom: 24px;
  line-height: 1.12;
}

.msp-backup-text h2 em { color: var(--teal); font-style: normal; }

.msp-backup-text p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(13,27,46,0.5);
  margin-bottom: 16px;
}

.msp-recovery-tiers {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(13,27,46,0.08);
  border-radius: 14px;
  overflow: hidden;
}

.msp-recovery-tier {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(13,27,46,0.08);
  background: #fafafa;
  transition: background 0.3s ease;
}

.msp-recovery-tier:last-child { border-bottom: none; }
.msp-recovery-tier:hover { background: rgba(38,204,202,0.03); }

.msp-recovery-tier-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.msp-recovery-tier-header i,
.msp-recovery-tier-header svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}

.msp-recovery-tier-header strong {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0d1b2e;
}

.msp-recovery-tier p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(13,27,46,0.45);
  margin: 4px 0 0;
}

@media (max-width: 860px) {
  .msp-backup-grid { grid-template-columns: 1fr; gap: 48px; }
}


/* ============================================================
   CTA — replaced with space section (handled by ui-lib.css)
   ============================================================ */

/* ============================================================
   SHARED SECTION HEADER
   ============================================================ */

.msp-section { padding: 120px 0; }
.msp-section--dark { background: #f8fafc; }
.msp-section--mid { background: #ffffff; }


/* ============================================================
   RESPONSIVE — Mobile & Tablet
   ============================================================ */
@media (max-width: 1024px) {
  .msp-section { padding: 88px 0; }
}
@media (max-width: 768px) {
  .msp-section { padding: 64px 0; }
  .msp-hero-content { padding: 100px 6% 80px; }
  .msp-hero-kpis { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .msp-tier-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 580px) {
  .msp-section { padding: 48px 0; }
  .msp-hero-kpi { min-width: 120px; }
  .msp-advantage-grid { grid-template-columns: 1fr; }
  .msp-timeline-item { gap: 16px; }
  .msp-timeline-num { width: 36px; height: 36px; font-size: 0.9rem; }
}
@media (max-width: 480px) {
  .msp-hero-kpis { gap: 16px; }
  .msp-deep-card { padding: 24px 18px; }
}

/* ============================================================
   ADVANTAGE — photo visual column
   ============================================================ */
.msp-advantage-grid {
  grid-template-columns: 1fr 340px 1fr;
}
.msp-advantage-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  align-self: stretch;
  min-height: 360px;
}
.msp-advantage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.msp-advantage-img-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(6,6,18,0.88);
  border: 1px solid rgba(38,204,202,0.3);
  border-radius: 30px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.msp-advantage-img-badge svg { width: 14px; height: 14px; }

/* ── Backup — photo column ── */
.msp-backup-grid {
  grid-template-columns: 380px 1fr 1fr;
}
.msp-backup-visual {
  border-radius: 14px;
  overflow: hidden;
  align-self: stretch;
  min-height: 300px;
}
.msp-backup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1100px) {
  .msp-advantage-grid { grid-template-columns: 1fr 1fr; }
  .msp-advantage-visual { display: none; }
  .msp-backup-grid { grid-template-columns: 1fr 1fr; }
  .msp-backup-visual { display: none; }
}
@media (max-width: 860px) {
  .msp-advantage-grid { grid-template-columns: 1fr; }
  .msp-backup-grid { grid-template-columns: 1fr; }
}
