/* Extracted from server-management.php style block 1 */
/* ============================================================
   SERVER MANAGEMENT PAGE - v2.0
   Shared section patterns borrowed from migration.php
   ============================================================ */
 
/* Scope everything so nothing bleeds to global */
body.sm-page { margin:0; padding:0; }
 
/* ---- shared bg tokens ---- */
body .sm { background: #f4f6f9; }
body .sm-dark { background: linear-gradient(145deg,#060e1a,#0b1623); }
 
/* ============================================================
   BREADCRUMB
============================================================ */
body .sm-breadcrumb {
  background: #f4f6f9;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
body .sm-breadcrumb ol { list-style:none; margin:0; padding:0; display:flex; flex-wrap:wrap; gap:4px; align-items:center; }
body .sm-breadcrumb li { font-size:12px; color:#9ca3af; display:flex; align-items:center; gap:4px; }
body .sm-breadcrumb li a { color:#6b7280; text-decoration:none; }
body .sm-breadcrumb li a:hover { color:#2563EB; }
body .sm-breadcrumb li + li::before { content:'/'; color:#d1d5db; margin-right:4px; }
 
/* ============================================================
   HERO
============================================================ */
body .sm-hero {
  position: relative;
  background: linear-gradient(145deg, #060e1a 0%, #0d1b2e 55%, #091525 100%);
  overflow: hidden;
  padding: 0;
}
body .sm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  z-index: 0;
}
body .sm-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 5% 65%, rgba(37,99,235,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 90% 20%, rgba(56,189,248,0.15) 0%, transparent 65%),
    radial-gradient(ellipse 35% 45% at 55% 90%, rgba(37,99,235,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
body .sm-hero-inner {
  position: relative;
  z-index: 2;
  padding: 72px 0 60px;
}
body .sm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.35);
  color: #93C5FD;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
body .sm-hero h1 {
  font-size: clamp(28px,4.5vw,52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  letter-spacing: 0;
  margin-bottom: 16px;
}
body .sm-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #60b4e8, #38BDF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body .sm-hero h1 span {
  background: linear-gradient(90deg, #93C5FD, #2563EB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body .sm-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.70);
  line-height: 1.78;
  margin-bottom: 30px;
  max-width: 510px;
}
body .sm-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
body .sm-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #2563EB, #1d4ed8);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,99,235,0.40);
  transition: all 0.25s ease;
  letter-spacing: 0.2px;
}
body .sm-btn-primary:hover { color:#fff; text-decoration:none; transform:translateY(-2px); box-shadow:0 10px 32px rgba(37,99,235,0.50); }
body .sm-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
}
body .sm-btn-secondary:hover { color:#fff; text-decoration:none; background:rgba(255,255,255,0.12); transform:translateY(-2px); }
 
/* hero trust pills */
body .sm-trust-pills { display:flex; gap:10px; flex-wrap:wrap; }
body .sm-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid;
}
body .sm-pill--blue   { background:rgba(37,99,235,0.10);   border-color:rgba(37,99,235,0.35);   color:#93C5FD; }
body .sm-pill--green  { background:rgba(5,150,105,0.10);   border-color:rgba(5,150,105,0.35);   color:#34d399; }
body .sm-pill--orange { background:rgba(255,107,0,0.10);   border-color:rgba(255,107,0,0.30);   color:#ffaa55; }
body .sm-pill--purple { background:rgba(124,58,237,0.10);  border-color:rgba(124,58,237,0.30);  color:#a78bfa; }
 
/* Hero Status Panel */
body .sm-status-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 20px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.40);
  margin: 0 auto;
}
body .sm-panel-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
body .sm-chrome-dots { display:flex; gap:5px; }
body .sm-chrome-dots span { width:8px; height:8px; border-radius:50%; }
body .sm-chrome-dots span:nth-child(1) { background:#FF5F57; }
body .sm-chrome-dots span:nth-child(2) { background:#FFBD2E; }
body .sm-chrome-dots span:nth-child(3) { background:#28CA41; }
body .sm-panel-label {
  flex:1; text-align:center; font-size:10px; color:rgba(255,255,255,0.35); font-weight:500;
}
body .sm-panel-metric {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 9px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 8px;
}
body .sm-panel-metric--ok   { border-color:rgba(5,150,105,0.25);  background:rgba(5,150,105,0.06); }
body .sm-panel-metric--warn { border-color:rgba(217,119,6,0.30);  background:rgba(217,119,6,0.07); }
body .sm-panel-metric--live { border-color:rgba(37,99,235,0.30);  background:rgba(37,99,235,0.07); }
body .sm-panel-metric i { font-size:13px; width:16px; text-align:center; }
body .sm-panel-metric--ok   i { color:#34d399; }
body .sm-panel-metric--warn i { color:#fbbf24; }
body .sm-panel-metric--live i { color:#93C5FD; }
body .sm-panel-metric span  { font-size:11.5px; font-weight:600; }
body .sm-panel-metric--ok   span { color:#34d399; }
body .sm-panel-metric--warn span { color:#fbbf24; }
body .sm-panel-metric--live span { color:#93C5FD; }
body .sm-panel-stat-row {
  display:flex; gap:8px; margin-top:10px;
}
body .sm-panel-stat {
  flex:1;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:8px;
  padding:9px 8px;
  text-align:center;
}
body .sm-panel-stat strong { display:block; font-size:16px; font-weight:900; color:#38BDF8; line-height:1; }
body .sm-panel-stat span   { font-size:9px; color:rgba(255,255,255,0.30); font-weight:600; text-transform:uppercase; letter-spacing:0.5px; margin-top:3px; display:block; }
 
/* ============================================================
   SHARED SECTION LABELS / TITLES
============================================================ */
body .sm-section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 14px;
  border-radius: 20px;
  background: rgba(37,99,235,0.10);
  border: 1px solid rgba(37,99,235,0.25);
  color: #2563EB;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
body .sm-section-title {
  font-size: clamp(24px,3.8vw,40px);
  font-weight: 800;
  color: #1a2234;
  line-height: 1.18;
  margin-bottom: 14px;
  letter-spacing: 0;
}
body .sm-section-sub {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.72;
}
 
/* ============================================================
   PLANS SECTION
============================================================ */
body .sm-plans-section {
  background: #fff;
  padding: 80px 0;
}
body .sm-plans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
body .sm-plan-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(15,23,42,0.08);
  border: 1px solid rgba(148,163,184,0.26);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  background: linear-gradient(180deg,#fff 0%,#fbfcff 100%);
  display: flex;
  flex-direction: column;
}
body .sm-plan-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37,99,235,0.24);
  box-shadow: 0 20px 50px rgba(15,23,42,0.12);
}
body .sm-plan-header {
  padding: 28px 24px 24px;
  border-bottom: 1px solid rgba(148,163,184,0.18);
  position: relative;
  min-height: 242px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
body .sm-plan-header--dark {
  background: linear-gradient(145deg,#13243a,#173554);
  border-bottom-color: rgba(255,255,255,0.10);
}
body .sm-plan-pop-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(90deg,#FF6C2C,#ff9a5c);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255,108,44,0.35);
}
body .sm-plan-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22);
}
body .sm-plan-icon-img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}
body .sm-plan-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  border: 1px solid;
}
body .sm-plan-name {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.32;
  min-height: 54px;
}
body .sm-plan-name--light { color: #1a2234; }
body .sm-plan-name--dark  { color: #fff; }
body .sm-plan-price {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}
body .sm-plan-period {
  font-size: 13px;
  font-weight: 400;
  color: #9ca3af;
  margin-left: 2px;
}
body .sm-plan-period--dark { color: rgba(255,255,255,0.40); }
body .sm-plan-body {
  padding: 24px 24px 26px;
  background: #fff;
  display: flex;
  flex-direction: column;
  flex: 1;
}
body .sm-plan-body--dark {
  background: #14253b;
}
body .sm-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}
body .sm-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(148,163,184,0.17);
  font-size: 13.5px;
  color: #374151;
  line-height: 1.5;
}
body .sm-plan-body--dark .sm-plan-features li {
  border-bottom-color: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.78);
}
body .sm-plan-features li:last-child { border-bottom: none; }
body .sm-plan-features li i { font-size: 13px; margin-top: 2px; flex-shrink:0; }
body .sm-plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.25s ease;
}
body .sm-plan-cta:hover { color:#fff; text-decoration:none; transform:translateY(-2px); }
body .sm-plan-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 11.5px;
  color: #9ca3af;
  margin-top: 10px;
}
body .sm-plan-body--dark .sm-plan-guarantee { color: rgba(255,255,255,0.30); }
 
/* ============================================================
   EMERGENCY / ON-DEMAND SECTION
============================================================ */
body .sm-emergency-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(160deg, #060e1a 0%, #0b1623 55%, #091525 100%);
  overflow: hidden;
}
body .sm-emergency-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
body .sm-emergency-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 0% 50%, rgba(220,38,38,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 100% 50%, rgba(37,99,235,0.15) 0%, transparent 65%);
  pointer-events: none;
}
body .sm-emergency-section .sm-section-label {
  background: rgba(220,38,38,0.12);
  border-color: rgba(220,38,38,0.30);
  color: #fca5a5;
}
body .sm-emergency-section .sm-section-title { color: #fff; }
body .sm-emergency-section .sm-section-sub   { color: rgba(255,255,255,0.55); }
body .sm-em-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}
body .sm-em-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.40); }
body .sm-em-card-head { padding: 28px 28px 22px; position: relative; }
body .sm-em-card-head--core     { background: linear-gradient(145deg, #1e1b4b, #2563EB); }
body .sm-em-card-head--advanced { background: linear-gradient(145deg, #450a0a, #DC2626); }
body .sm-em-head-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
}
body .sm-em-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
}
body .sm-em-card-title { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 6px; line-height: 1.2; }
body .sm-em-card-sub   { font-size: 13.5px; color: rgba(255,255,255,0.60); margin: 0 0 18px; }
body .sm-em-price { display: flex; align-items: baseline; gap: 4px; }
body .sm-em-price-val    { font-size: 40px; font-weight: 900; color: #fff; line-height: 1; }
body .sm-em-price-period { font-size: 14px; color: rgba(255,255,255,0.50); font-weight: 400; }
body .sm-em-card-body {
  background: rgba(255,255,255,0.03);
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.07);
}
body .sm-em-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
body .sm-em-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13.5px;
  color: rgba(255,255,255,0.80);
}
body .sm-em-features li:last-child { border-bottom: none; }
body .sm-em-features li i { font-size: 13px; flex-shrink: 0; width: 16px; text-align: center; }
body .sm-em-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
  margin-top: auto;
}
body .sm-em-cta:hover { color: #fff; text-decoration: none; transform: translateY(-2px); }
body .sm-em-cta--core     { background: linear-gradient(135deg,#2563EB,#38BDF8); box-shadow: 0 6px 20px rgba(37,99,235,0.45); }
body .sm-em-cta--advanced { background: linear-gradient(135deg,#DC2626,#ef4444); box-shadow: 0 6px 20px rgba(220,38,38,0.45); }
body .sm-em-cta--core:hover     { box-shadow: 0 10px 28px rgba(37,99,235,0.55); }
body .sm-em-cta--advanced:hover { box-shadow: 0 10px 28px rgba(220,38,38,0.55); }
body .sm-em-strip {
  position: relative;
  z-index: 1;
  margin-top: 44px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
body .sm-em-strip-text strong { display: block; font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 4px; }
body .sm-em-strip-text span   { font-size: 13.5px; color: rgba(255,255,255,0.50); }
body .sm-em-strip-badges { display: flex; gap: 10px; flex-wrap: wrap; }
body .sm-em-strip-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
}
body .sm-em-strip-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  background: #fff;
  color: #1a2234;
  font-size: 13.5px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
body .sm-em-strip-cta:hover { color: #2563EB; text-decoration: none; transform: translateY(-2px); }
@media (max-width: 767px) {
  body .sm-em-strip { flex-direction: column; text-align: center; }
  body .sm-em-strip-badges { justify-content: center; }
}
 
/* ============================================================
   TRUST / WHY CHOOSE
============================================================ */
body .sm-trust-section {
  background: #f4f6f9;
  padding: 80px 0;
}
body .sm-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
body .sm-trust-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid rgba(148,163,184,0.25);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-bottom: 0;
  min-height: 228px;
}
body .sm-trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.10);
}
body .sm-trust-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
body .sm-trust-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a2234;
  margin-bottom: 8px;
  line-height: 1.4;
}
body .sm-trust-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}
 
/* ============================================================
   ENVIRONMENTS SECTION
============================================================ */
body .sm-env-section {
  background: #fff;
  padding: 80px 0;
}
body .sm-env-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.07);
  height: 100%;
  margin-bottom: 24px;
}
body .sm-env-header {
  padding: 26px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
body .sm-env-header--linux { background: linear-gradient(145deg,#060e1a,#0d1b2e); }
body .sm-env-header--win   { background: linear-gradient(145deg,#0f172a,#1e3a5f); }
body .sm-env-header-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
}
body .sm-env-header h3 { font-size:18px; font-weight:800; color:#fff; margin-bottom:4px; }
body .sm-env-header p  { font-size:13px; color:rgba(255,255,255,0.50); margin:0; }
body .sm-env-body { padding:24px; background:#fff; }
body .sm-os-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
body .sm-os-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 9px;
  background: #f8f9fb;
  border: 1px solid rgba(0,0,0,0.06);
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  transition: all 0.2s ease;
}
body .sm-os-item:hover { background:#fff; box-shadow:0 4px 14px rgba(0,0,0,0.08); transform:translateX(3px); }
body .sm-os-item i { font-size:15px; flex-shrink:0; }
 
/* ============================================================
   SERVICES GRID
============================================================ */
body .sm-services-section {
  background: #f4f6f9;
  padding: 80px 0;
}
body .sm-service-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.07);
  height: 100%;
  margin-bottom: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
body .sm-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.10);
}
body .sm-service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  margin-bottom: 16px;
}
body .sm-service-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a2234;
  margin-bottom: 14px;
}
body .sm-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
body .sm-service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #6b7280;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
body .sm-service-list li:last-child { border-bottom: none; }
body .sm-service-list li i { font-size:12px; flex-shrink:0; }
 
/* ============================================================
   COMPARISON - Feature-first layout
   UnderHost column is dominant; unmanaged is the warning column
============================================================ */
body .sm-compare-section {
  background: #fff;
  padding: 80px 0;
}
 
/* Outer wrapper - two panels side by side */
body .sm-compare-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.12);
  margin-top: 44px;
}
 
/* ---- LEFT: Unmanaged panel (muted warning) ---- */
body .sm-compare-panel {
  display: flex;
  flex-direction: column;
}
body .sm-compare-panel--unmanaged {
  background: #f8f9fb;
  border-right: 1px solid rgba(0,0,0,0.07);
}
body .sm-compare-panel--managed {
  background: linear-gradient(160deg,#0b1623 0%,#0f1e35 100%);
  position: relative;
  overflow: hidden;
}
body .sm-compare-panel--managed::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(37,99,235,0.25) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(56,189,248,0.12) 0%, transparent 65%);
  pointer-events: none;
}
 
/* Panel headers */
body .sm-compare-panel-head {
  padding: 28px 28px 22px;
  position: relative;
  z-index: 1;
}
body .sm-compare-panel--unmanaged .sm-compare-panel-head {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
body .sm-compare-panel--managed .sm-compare-panel-head {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
 
body .sm-compare-head-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}
body .sm-compare-head-icon--danger {
  background: rgba(220,38,38,0.10);
  border: 1px solid rgba(220,38,38,0.22);
  color: #DC2626;
}
body .sm-compare-head-icon--managed {
  background: rgba(37,99,235,0.18);
  border: 1px solid rgba(37,99,235,0.35);
  color: #93C5FD;
}
 
body .sm-compare-head-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}
body .sm-compare-panel--unmanaged .sm-compare-head-title { color: #374151; }
body .sm-compare-panel--managed  .sm-compare-head-title { color: #fff; }
 
body .sm-compare-head-sub {
  font-size: 13px;
  margin: 0;
}
body .sm-compare-panel--unmanaged .sm-compare-head-sub { color: #9ca3af; }
body .sm-compare-panel--managed  .sm-compare-head-sub { color: rgba(255,255,255,0.45); }
 
/* Recommended badge */
body .sm-compare-rec-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  border-radius: 20px;
  background: linear-gradient(90deg,#2563EB,#38BDF8);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(37,99,235,0.40);
}
 
/* Row list inside each panel */
body .sm-compare-rows {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
body .sm-compare-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 28px;
  border-bottom: 1px solid;
  transition: background 0.2s ease;
}
body .sm-compare-panel--unmanaged .sm-compare-row {
  border-bottom-color: rgba(0,0,0,0.06);
}
body .sm-compare-panel--managed .sm-compare-row {
  border-bottom-color: rgba(255,255,255,0.06);
}
body .sm-compare-row:last-child { border-bottom: none; }
body .sm-compare-panel--unmanaged .sm-compare-row:hover { background: rgba(0,0,0,0.02); }
body .sm-compare-panel--managed  .sm-compare-row:hover { background: rgba(255,255,255,0.03); }
 
/* Row icon */
body .sm-compare-row-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}
body .sm-compare-row-icon--no  { background:rgba(220,38,38,0.10); color:#DC2626; }
body .sm-compare-row-icon--meh { background:rgba(217,119,6,0.10);  color:#D97706; }
body .sm-compare-row-icon--yes { background:rgba(5,150,105,0.15);  color:#34d399; }
 
/* Row text */
body .sm-compare-row-label {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
  line-height: 1.3;
}
body .sm-compare-panel--unmanaged .sm-compare-row-label { color: #374151; }
body .sm-compare-panel--managed  .sm-compare-row-label { color: #fff; }
 
body .sm-compare-row-detail {
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}
body .sm-compare-panel--unmanaged .sm-compare-row-detail { color: #9ca3af; }
body .sm-compare-panel--managed  .sm-compare-row-detail { color: rgba(255,255,255,0.50); }
 
/* Panel footer CTA (managed only) */
body .sm-compare-panel-foot {
  padding: 22px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}
body .sm-compare-foot-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 8px;
  background: linear-gradient(135deg,#2563EB,#38BDF8);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,99,235,0.45);
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}
body .sm-compare-foot-cta:hover { color:#fff; text-decoration:none; transform:translateY(-2px); box-shadow:0 10px 28px rgba(37,99,235,0.55); }
 
/* Savings bar below the panels */
body .sm-compare-savings {
  margin-top: 20px;
  background: linear-gradient(135deg,#f0f9ff,#e0f2fe);
  border: 1px solid rgba(37,99,235,0.14);
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
}
body .sm-compare-stat { flex: 1; min-width: 140px; padding: 8px 16px; }
body .sm-compare-stat strong { display:block; font-size:26px; font-weight:900; color:#2563EB; line-height:1; margin-bottom:4px; }
body .sm-compare-stat span   { font-size:12.5px; color:#6b7280; }
body .sm-compare-stat-divider { width:1px; height:44px; background:rgba(37,99,235,0.15); flex-shrink:0; }
 
@media (max-width: 767px) {
  body .sm-compare-wrap  { grid-template-columns: 1fr; }
  body .sm-compare-panel--unmanaged { border-right:none; border-bottom:1px solid rgba(0,0,0,0.07); }
  body .sm-compare-stat-divider { display:none; }
  body .sm-compare-row { padding: 14px 20px; }
}
 
/* ============================================================
   CERTIFICATIONS
============================================================ */
body .sm-certs-section {
  background: #f4f6f9;
  padding: 80px 0;
}
body .sm-certs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
body .sm-cert-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px 18px 20px;
  text-align: center;
  border: 1px solid rgba(148,163,184,0.26);
  margin-bottom: 0;
  min-height: 184px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
body .sm-cert-card:hover {
  transform:translateY(-5px);
  border-color: rgba(37,99,235,0.22);
  box-shadow:0 14px 36px rgba(15,23,42,0.10);
}
body .sm-cert-media {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(148,163,184,0.16);
}
body .sm-cert-card img { max-height:76px; max-width:150px; width:auto; object-fit:contain; }
body .sm-cert-body { margin-top:auto; }
body .sm-cert-card h4 { font-size:14px; font-weight:800; color:#1a2234; margin:0 0 5px; line-height:1.35; }
body .sm-cert-card p  { font-size:12.5px; color:#8b95a5; margin:0; line-height:1.45; }
 
/* ============================================================
   TESTIMONIALS
============================================================ */
body .sm-testimonials-section {
  background: #fff;
  padding: 80px 0;
}
body .sm-testi-card {
  background: #f8f9fb;
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.07);
  height: 100%;
  margin-bottom: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
body .sm-testi-card:hover { transform:translateY(-5px); box-shadow:0 14px 40px rgba(0,0,0,0.10); }
body .sm-testi-card.sm-testi-featured {
  background: linear-gradient(145deg,#0b1623,#111827);
  border-color: rgba(37,99,235,0.30);
}
body .sm-testi-stars { display:flex; gap:3px; margin-bottom:14px; }
body .sm-testi-stars i { color:#f59e0b; font-size:13px; }
body .sm-testi-quote {
  font-size: 14px;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 20px;
  font-style: italic;
}
body .sm-testi-featured .sm-testi-quote { color: rgba(255,255,255,0.80); }
body .sm-testi-author { display:flex; align-items:center; gap:12px; }
body .sm-testi-avatar {
  width:40px; height:40px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:13px; font-weight:800; color:#fff;
  flex-shrink:0;
}
body .sm-testi-author-name  { font-size:14px; font-weight:700; color:#1a2234; display:block; }
body .sm-testi-author-role  { font-size:12px; color:#9ca3af; }
body .sm-testi-featured .sm-testi-author-name { color:#fff; }
body .sm-testi-featured .sm-testi-author-role { color:rgba(255,255,255,0.45); }
body .sm-testi-trust-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
body .sm-testi-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6b7280;
}
body .sm-testi-trust-item i { font-size:18px; }
 
/* ============================================================
   FAQ
============================================================ */
body .sm-faq-section {
  background: #f4f6f9;
  padding: 80px 0;
}
body .sm-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
body .sm-faq-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 22px 24px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
body .sm-faq-item:hover { box-shadow:0 6px 22px rgba(0,0,0,0.09); transform:translateY(-2px); }
body .sm-faq-item--highlight {
  border-left: 3px solid #2563EB;
  background: rgba(37,99,235,0.03);
}
body .sm-faq-q {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 700;
  color: #1a2234;
  line-height: 1.45;
  margin-bottom: 10px;
}
body .sm-faq-q i { color:#2563EB; font-size:13px; margin-top:2px; flex-shrink:0; }
body .sm-faq-a {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.75;
  margin: 0;
  padding-left: 23px;
}
body .sm-faq-contact-strip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(37,99,235,0.05);
  border: 1px solid rgba(37,99,235,0.18);
  border-radius: 10px;
  padding: 18px 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 44px;
}
body .sm-faq-contact-strip span { color:#6b7280; font-size:14px; }
body .sm-faq-contact-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  background: rgba(37,99,235,0.10);
  border: 1px solid rgba(37,99,235,0.35);
  color: #2563EB;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
body .sm-faq-contact-strip a:hover { background:rgba(37,99,235,0.18); color:#2563EB; text-decoration:none; }
 
/* ============================================================
   FINAL CTA
============================================================ */
body .sm-cta-section {
  background: #f4f6f9;
  padding: 80px 0;
}
body .sm-cta-inner {
  background: linear-gradient(145deg,#060e1a,#0b1623);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.30);
}
body .sm-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 15% 50%, rgba(37,99,235,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 85% 50%, rgba(56,189,248,0.12) 0%, transparent 65%);
  pointer-events: none;
}
body .sm-cta-inner .container { position:relative; z-index:2; }
body .sm-cta-inner h2 { font-size:clamp(26px,4vw,44px); font-weight:800; color:#fff; margin-bottom:14px; line-height:1.2; }
body .sm-cta-inner p  { font-size:16px; color:rgba(255,255,255,0.65); max-width:520px; margin:0 auto 32px; line-height:1.7; }
 
/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
  body .sm-faq-grid { grid-template-columns: 1fr; }
  body .sm-os-grid  { grid-template-columns: 1fr; }
  body .sm-plans-grid,
  body .sm-certs-grid,
  body .sm-trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  body .sm-hero-cta     { flex-direction:column; align-items:flex-start; }
  body .sm-cta-inner    { padding:40px 22px; }
  body .sm-trust-pills  { gap:6px; }
  body .sm-plans-grid,
  body .sm-certs-grid,
  body .sm-trust-grid { grid-template-columns: 1fr; }
  body .sm-plan-header { min-height: auto; }
  body .sm-plan-name { min-height: auto; }
  body .sm-compare-table td,
  body .sm-compare-table th { padding:12px 14px; font-size:12.5px; }
}
@media (prefers-reduced-motion: reduce) {
  body .animate-on-scroll { opacity:1; transform:none; transition:none; }
}

