@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

/* ============ Design tokens (scoped to .mbl-scope, not :root, so nothing leaks to the rest of the page) ============ */
.mbl-scope {
  --mbl-teal-950: #0a2e29;
  --mbl-teal-900: #0d3d36;
  --mbl-teal-800: #0f5347;
  --mbl-teal-600: #0e7a63;
  --mbl-teal-500: #129e82;
  --mbl-teal-400: #3dbd9d;
  --mbl-mint-glow: #5be0bd;

  --mbl-mint-100: #dbf3e8;
  --mbl-mint-700: #0d7a52;
  --mbl-pink-100: #fbe3ee;
  --mbl-pink-700: #c23b76;
  --mbl-peach-100: #fdead0;
  --mbl-peach-700: #c07417;

  --mbl-bg: #eef7f4;
  --mbl-surface: #ffffff;
  --mbl-border: #dfeee8;
  --mbl-text-900: #0f2b24;
  --mbl-text-600: #5c756e;
  --mbl-text-400: #8fa39c;

  --mbl-font-display: 'Poppins', 'Segoe UI', sans-serif;
  --mbl-font-body: 'Inter', 'Segoe UI', sans-serif;

  --mbl-radius-lg: 20px;
  --mbl-radius-md: 16px;
  --mbl-radius-sm: 9px;

  --mbl-shadow-sm: 0 1px 2px rgba(15, 43, 36, .05), 0 1px 1px rgba(15, 43, 36, .04);
  --mbl-shadow-md: 0 14px 32px -14px rgba(13, 61, 54, .22);
  --mbl-shadow-lg: 0 26px 60px -22px rgba(13, 61, 54, .3);

  --mbl-ease: cubic-bezier(.22, 1, .36, 1);

  /* container-level resets, scoped instead of touching html/body/* globally */
  display: block;
  background: var(--mbl-bg);
  background-image:
    radial-gradient(1000px 460px at 10% -8%, rgba(18, 158, 130, .09), transparent 60%),
    radial-gradient(820px 400px at 100% 0%, rgba(91, 224, 189, .10), transparent 55%);
  color: var(--mbl-text-900);
  font-family: 'Inter', 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  --teal-950: #0a2e29;
  --teal-900: #0d3d36;
  --teal-800: #0f5347;
  --teal-600: #0e7a63;
  --teal-500: #129e82;
  --teal-400: #3dbd9d;
  --mint-glow: #5be0bd;

  --mint-100: #dbf3e8;
  --mint-700: #0d7a52;
  --pink-100: #fbe3ee;
  --pink-700: #c23b76;
  --peach-100: #fdead0;
  --peach-700: #c07417;

  --bg: #eef7f4;
  --surface: #ffffff;
  --border: #dfeee8;
  --text-900: #0f2b24;
  --text-600: #5c756e;
  --text-400: #8fa39c;

  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-sm: 0 1px 2px rgba(15, 43, 36, .05), 0 1px 1px rgba(15, 43, 36, .04);
  --shadow-md: 0 14px 32px -14px rgba(13, 61, 54, .22);
  --shadow-lg: 0 26px 60px -22px rgba(13, 61, 54, .3);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

.mbl-scope,
.mbl-scope * {
  box-sizing: border-box;
}

.mbl-scope a {
  color: inherit;
  text-decoration: none;
}

.mbl-scope button {
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

.mbl-scope ul,
.mbl-scope ol {
  margin: 0;
  padding: 0;
}

@media (prefers-reduced-motion: reduce) {
  .mbl-scope * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

.mbl-scope :focus-visible {
  outline: 2px solid var(--mbl-teal-500);
  outline-offset: 3px;
  border-radius: 6px;
}

.mbl-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  scroll-behavior: smooth;
}

/* ============ Page head ============ */
.mbl-hero {
  padding: 88px 0 44px;
  text-align: center;
  margin-top: 77px;
}

.mbl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, rgb(28 70 98), rgb(30 119 192));
  border: 1px solid rgba(18, 158, 130, .2);
  padding: 7px 16px 7px 12px;
  border-radius: 100px;
  opacity: 0;
  animation: mblRiseIn .7s var(--mbl-ease) .05s forwards;
  margin-top: 25px;
}

.mbl-eyebrow .mbl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #01cff9;
  box-shadow: 0 0 0 3px rgba(18, 158, 130, .22);
  animation: mblPulseDot 2.2s ease-in-out infinite;
}

@keyframes mblPulseDot {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 3px rgba(18, 158, 130, .22);
  }

  50% {
    transform: scale(1.15);
    box-shadow: 0 0 0 6px rgba(18, 158, 130, .12);
  }
}

.mbl-hero h1 {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: 49px;
  line-height: 1.12;
  letter-spacing: -.02em;
  opacity: 0;
  animation: mblRiseIn .75s var(--mbl-ease) .12s forwards;
  padding-top: 10px;
}

.mbl-hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, #1c4d70, #1d6ba9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mbl-hero p {
  max-width: 660px;
  margin: 0 auto;
  font-size: 16px;
  color: #64748b;
  line-height: 1.65;
  opacity: 0;
  animation: mblRiseIn .75s var(--mbl-ease) .2s forwards;
}

@keyframes mblRiseIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ Grid heading ============ */
.mbl-grid-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 30px;
}

.mbl-grid-heading .mbl-dash {
  width: 26px;
  height: 2px;
  background: rgb(234 61 49);
  border-radius: 2px;
}

.mbl-grid-heading h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #1d6b9f;
  margin: 0;
}

.mbl-grid-heading .mbl-count {
  margin-left: auto;
  font-size: 13.5px;
  color: var(--mbl-text-400);
  font-weight: 500;
}

/* ============ Post grid ============ */
.mbl-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-bottom: 30px;
}

.mbl-card {
  background: var(--mbl-surface);
  border: 1px solid var(--mbl-border);
  border-radius: var(--mbl-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .45s var(--mbl-ease), box-shadow .45s var(--mbl-ease), border-color .45s var(--mbl-ease);
  opacity: 0;
  transform: translateY(20px);
}

.mbl-card.mbl-in-view {
  animation: mblCardIn .65s var(--mbl-ease) forwards;
}

@keyframes mblCardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mbl-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--mbl-shadow-md);
  border-color: rgba(18, 158, 130, .28);
}

.mbl-post-grid .mbl-card:nth-child(3n+1) {
  transition-delay: .02s;
}

.mbl-post-grid .mbl-card:nth-child(3n+2) {
  transition-delay: .09s;
}

.mbl-post-grid .mbl-card:nth-child(3n+3) {
  transition-delay: .16s;
}

/* ---- banner ---- */
.mbl-card-media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #1f6da5, #072b43);
}

.mbl-card-media svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform .7s var(--mbl-ease);
}

.mbl-card:hover .mbl-card-media svg {
  transform: scale(1.06);
}

.mbl-card-media .mbl-brandmark {
  position: absolute;
  top: 14px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  z-index: 2;
}

.mbl-brandmark .mbl-dots {
  display: flex;
  gap: 2px;
}

.mbl-brandmark .mbl-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.mbl-brandmark .mbl-dots span:nth-child(1) {
  background: #f2545b;
}

.mbl-brandmark .mbl-dots span:nth-child(2) {
  background: #f7c948;
}

.mbl-brandmark .mbl-dots span:nth-child(3) {
  background: #3dbd9d;
}

.mbl-brandmark small {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .75);
  text-transform: uppercase;
}

/* ---- badge ---- */
.mbl-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.mbl-cat-badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 100px;
}

.mbl-cat-badge.mbl-mint {
  background: var(--mbl-mint-100);
  color: var(--mbl-mint-700);
}

.mbl-cat-badge.mbl-pink {
  background: var(--mbl-pink-100);
  color: var(--mbl-pink-700);
}

.mbl-cat-badge.mbl-peach {
  background: var(--mbl-peach-100);
  color: var(--mbl-peach-700);
}

.mbl-card-body h4 {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: -.005em;
  color: var(--mbl-teal-950);
  margin: 0;
  transition: color .3s ease;
}

.mbl-card:hover .mbl-card-body h4 {
  color: var(--mbl-teal-600);
}

.mbl-card-body p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--mbl-text-600);
  margin: 0;
  flex: 1;
}

/* ---- footer meta ---- */
.mbl-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--mbl-border);
}

.mbl-meta-group {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--mbl-text-400);
  font-weight: 500;
}

.mbl-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.mbl-meta-item svg {
  width: 13px;
  height: 13px;
  stroke: var(--mbl-text-400);
  flex-shrink: 0;
}

.mbl-card-arrow {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--mbl-mint-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .35s var(--mbl-ease), transform .35s var(--mbl-ease);
}

.mbl-card-arrow svg {
  width: 14px;
  height: 14px;
  stroke: #0b588f;
  transition: stroke .3s ease;
}

.mbl-card:hover .mbl-card-arrow {
  background: linear-gradient(135deg, #0a3a5a, #2b78b7);
  transform: rotate(45deg);
}

.mbl-card:hover .mbl-card-arrow svg {
  stroke: #fff;
}

.mbl-post-card {
  cursor: pointer;
}

/* ============ Pagination ============ */
.mbl-pagination-row {
  display: flex;
  justify-content: center;
  margin: 18px 0 100px;
}

.mbl-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--mbl-surface);
  border: 1px solid var(--mbl-border);
  padding: 8px;
  border-radius: 100px;
  box-shadow: var(--mbl-shadow-sm);
}

.mbl-page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 6px;
  border: none;
  background: transparent;
  color: var(--mbl-text-600);
  font-weight: 600;
  font-size: 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: background .3s var(--mbl-ease), color .3s ease, transform .3s var(--mbl-ease), box-shadow .3s ease;
}

.mbl-page-btn:hover:not(:disabled):not(.mbl-active) {
  background: rgba(18, 158, 130, .09);
  color: var(--mbl-teal-600);
}

.mbl-page-btn.mbl-active {
  background: linear-gradient(135deg, var(--mbl-teal-600), var(--mbl-teal-400));
  color: #fff;
  box-shadow: 0 8px 18px -8px rgba(18, 158, 130, .6);
  transform: scale(1.04);
}

.mbl-page-btn.mbl-nav-btn {
  color: var(--mbl-teal-950);
}

.mbl-page-btn.mbl-nav-btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  transition: transform .3s var(--mbl-ease);
}

.mbl-page-btn.mbl-nav-btn:hover:not(:disabled) svg {
  transform: translateX(2px);
}

.mbl-page-btn.mbl-nav-btn:first-child:hover:not(:disabled) svg {
  transform: translateX(-2px);
}

.mbl-page-btn:disabled {
  color: var(--mbl-text-400);
  cursor: not-allowed;
  opacity: .5;
}

.mbl-page-ellipsis {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mbl-text-400);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 13px;
}

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .mbl-post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .mbl-wrap {
    padding: 0 18px;
  }

  .mbl-hero {
    padding: 56px 0 28px;
  }

  .mbl-post-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mbl-grid-heading {
    margin: 8px 0 24px;
  }

  .mbl-pagination {
    gap: 2px;
    padding: 6px;
  }

  .mbl-page-btn {
    min-width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .mbl-page-ellipsis {
    width: 24px;
    height: 34px;
  }
}

/*=========blogs destail css start==========*/
/* ============ Design tokens (scoped to .vms-scope — unique prefix, won't clash with other pages) ============ */
.vms-scope {
  --vms-teal-950: #0a2e29;
  --vms-teal-900: #0d3d36;
  --vms-teal-800: #0f5347;
  --vms-teal-600: #0e7a63;
  --vms-teal-500: #129e82;
  --vms-teal-400: #3dbd9d;
  --vms-mint-glow: #5be0bd;

  --vms-mint-100: #dbf3e8;
  --vms-mint-700: #0d7a52;
  --vms-gold-100: #fdf1d0;
  --vms-gold-700: #a5720d;

  --vms-bg: #eef7f4;
  --vms-surface: #ffffff;
  --vms-border: #dfeee8;
  --vms-text-900: #0f2b24;
  --vms-text-600: #5c756e;
  --vms-text-400: #8fa39c;

  --vms-font-display: 'Poppins', 'Segoe UI', sans-serif;
  --vms-font-body: 'Inter', 'Segoe UI', sans-serif;

  --vms-radius-lg: 22px;
  --vms-radius-md: 16px;
  --vms-radius-sm: 10px;

  --vms-shadow-sm: 0 1px 2px rgba(15, 43, 36, .05), 0 1px 1px rgba(15, 43, 36, .04);
  --vms-shadow-md: 0 14px 32px -14px rgba(13, 61, 54, .22);
  --vms-shadow-lg: 0 26px 60px -22px rgba(13, 61, 54, .3);

  --vms-ease: cubic-bezier(.22, 1, .36, 1);

  display: block;
  background: var(--vms-bg);
  background-image:
    radial-gradient(1000px 460px at 10% -8%, rgba(18, 158, 130, .08), transparent 60%),
    radial-gradient(820px 400px at 100% 0%, rgba(91, 224, 189, .09), transparent 55%);
  color: var(--vms-text-900);
  font-family: 'Inter', 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.vms-scope,
.vms-scope * {
  box-sizing: border-box;
}

.vms-scope a {
  color: inherit;
  text-decoration: none;
}

.vms-scope ul,
.vms-scope ol {
  margin: 0;
  padding: 0;
}

@media (prefers-reduced-motion: reduce) {
  .vms-scope * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

.vms-scope :focus-visible {
  outline: 2px solid var(--vms-teal-500);
  outline-offset: 3px;
  border-radius: 6px;
}

@keyframes vmsRiseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vms-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--vms-ease), transform .7s var(--vms-ease);
}

.vms-reveal.vms-in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Reading progress ============ */
.vms-progress-track {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(15, 43, 36, .06);
  z-index: 100;
}

.vms-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #092e47, #3b81b9);
  transition: width .1s linear;
  margin-top: 84px;
}

/* ============ Layout ============ */
.vms-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 24px 90px;
}

/* ============ Breadcrumb ============ */
.vms-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: var(--vms-text-400);
  font-weight: 500;
  margin-bottom: 26px;
  margin-top: 72px;
  padding-top: 22px;
}

.vms-breadcrumb a {
  color: var(--vms-text-600);
  transition: color .25s ease;
}

.vms-breadcrumb a:hover {
  color: var(--vms-teal-600);
}

.vms-breadcrumb .vms-current {
  color: #2379b1;
  font-weight: 600;
}

.vms-breadcrumb .vms-sep {
  color: var(--vms-text-400);
  opacity: .6;
}

/* ============ Article header ============ */
.vms-article-head {
  max-width: 840px;
  margin: 0 0 34px;
}

.vms-head-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.vms-badge-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: #2379b11c;
  color: #2379b1;
  padding: 6px 13px;
  border-radius: 100px;
}

.vms-head-meta .vms-dot-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--vms-text-400);
}

.vms-head-meta .vms-meta-txt {
  font-size: 13px;
  color: var(--vms-text-400);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.vms-head-meta svg {
  width: 13px;
  height: 13px;
  stroke: var(--vms-text-400);
}

.vms-article-head h1 {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.16;
  letter-spacing: -.02em;
  color: var(--vms-teal-950);
  margin: 0 0 18px;
}

.vms-article-head .vms-dek {
  font-size: 16.5px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

.vms-author-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--vms-border);
}

.vms-author-info {
  display: flex;
  align-items: center;
  gap: 11px;
}

.vms-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b3f65, #3796e3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.vms-author-info .vms-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--vms-teal-950);
}

.vms-author-info .vms-role {
  font-size: 12.5px;
  color: var(--vms-text-400);
}

.vms-share-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vms-share-row span {
  font-size: 12.5px;
  color: var(--vms-text-400);
  font-weight: 600;
  margin-right: 2px;
}

.vms-share-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--vms-border);
  background: var(--vms-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .3s var(--vms-ease), border-color .3s ease, transform .3s var(--vms-ease);
}

.vms-share-btn svg {
  width: 15px;
  height: 15px;
  stroke: var(--vms-text-600);
  transition: stroke .25s ease;
}

.vms-share-btn:hover {
  background: linear-gradient(135deg, #0b3f65, #1770b9);
  border-color: transparent;
  transform: translateY(-2px);
}

.vms-share-btn:hover i {
  color: #fff;
}

/* ============ Hero banner (illustrated — related to visitor check-in) ============ */
.vms-hero-banner {
  position: relative;
  margin-top: 36px;
  height: clamp(220px, 36vw, 400px);
  border-radius: var(--vms-radius-lg);
  overflow: hidden;
  background: transparent;
  box-shadow: var(--vms-shadow-lg);
}

.vms-hero-banner svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 1s var(--vms-ease);
}

.vms-hero-banner:hover svg {
  transform: scale(1.03);
}

.vms-hero-banner .vms-brandmark {
  position: absolute;
  top: 22px;
  left: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(160deg, #071f30 0%, #0B3C5D 45%, #388acf 100%);
  border-radius: 7px;
  padding: 2px 13px;
}

.vms-brandmark .vms-dots {
  display: flex;
  gap: 3px;
}

.vms-brandmark .vms-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.vms-brandmark .vms-dots span:nth-child(1) {
  background: #f2545b;
}

.vms-brandmark .vms-dots span:nth-child(2) {
  background: #f7c948;
}

.vms-brandmark .vms-dots span:nth-child(3) {
  background: #3dbd9d;
}

.vms-brandmark small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .8);
  text-transform: uppercase;
}

/* ============ Content layout ============ */
.vms-content-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 56px;
  margin-top: 52px;
  align-items: start;
  padding-bottom: 65px;
}

/* ---- TOC ---- */
.vms-toc {
  position: sticky !important;
  top: 26px;
  max-height: calc(100vh - 52px);
  overflow-y: auto;
}

.vms-toc-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--vms-text-400);
  margin-bottom: 14px;
}

.vms-toc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.vms-toc a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #64748b;
  padding: 7px 0 7px 16px;
  border-left: 2px solid var(--vms-border);
  transition: color .25s ease, border-color .25s ease, transform .25s ease;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

section {
  padding: 25px 0 !important;
}

.vms-toc a:hover {
  color: #1a69a4;
  transform: translateX(2px);
}

.vms-toc a.vms-active {
  color: #165f92;
  font-weight: 700;
  border-left-color: #147ac4;
}

.vms-toc-progress {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--vms-border);
}

.vms-toc-progress .vms-pct {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--vms-teal-950);
}

.vms-toc-progress .vms-lbl {
  font-size: 12px;
  color: var(--vms-text-400);
  margin-top: 2px;
}

.vms-toc-bar {
  margin-top: 12px;
  height: 5px;
  border-radius: 100px;
  background: var(--vms-border);
  overflow: hidden;
}

.vms-toc-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 100px;
  background: linear-gradient(90deg, #215578, #69b3ef);
  transition: width .1s linear;
}

/* ---- Article typography ---- */
.vms-article-body {
  max-width: 780px;
}

.vms-article-body>p {
  font-size: 16px;
  line-height: 1.85;
  color: #64748b;
  margin: 0 0 20px;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

.vms-article-body strong {
  color: var(--vms-teal-950);
  font-weight: 600;
}

.vms-article-body a.vms-inline-link {
  color: #196eb3;
  font-weight: 600;
  border-bottom: 1.5px solid #196eb3;
  transition: border-color .25s ease;
}

.vms-article-body a.vms-inline-link:hover {
  border-color: var(--vms-teal-600);
}

.vms-article-body section {
  scroll-margin-top: 26px;
}

.vms-article-body h2 {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: clamp(20px, 2.2vw, 25px);
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--vms-teal-950);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vms-article-body h2::before {
  content: '';
  width: 5px;
  height: 21px;
  border-radius: 100px;
  background: linear-gradient(180deg, #0e4e84, #2d8bd8);
  flex-shrink: 0;
}

.vms-article-body h2 span.vms-h2-sub {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--vms-text-400);
  margin-left: 2px;
}

/* ---- inline illustration banner (mid-article, related visual) ---- */
.vms-inline-fig {
  margin: 26px 0 0;
  border-radius: var(--vms-radius-md);
  overflow: hidden;
  position: relative;
  height: 170px;
  background: linear-gradient(150deg, var(--vms-teal-900), var(--vms-teal-950));
}

.vms-inline-fig svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform .8s var(--vms-ease);
}

.vms-inline-fig:hover svg {
  transform: scale(1.05);
}

.vms-inline-fig figcaption {
  position: absolute;
  left: 16px;
  bottom: 12px;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  letter-spacing: .03em;
}

/* ---- Top 10 vendor cards ---- */
.vms-vendor-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 22px 0 0;
}

.vms-vendor-card {
  position: relative;
  background: var(--vms-surface);
  border: 1px solid var(--vms-border);
  border-radius: var(--vms-radius-md);
  padding: 22px 24px 22px 76px;
  transition: transform .35s var(--vms-ease), box-shadow .35s var(--vms-ease), border-color .3s ease;
}

.vms-vendor-card:hover {
  transform: translateY(-4px) translateX(2px);
  box-shadow: var(--vms-shadow-md);
  border-color: rgba(18, 158, 130, .28);
}

.vms-vendor-card.vms-featured {
  border-color: #0c4065;
  background: linear-gradient(180deg, #fff, #f3fbf8);
}

.vms-vendor-rank {
  position: absolute;
  left: 20px;
  top: 22px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 15px;
  background: #0d4d8329;
  color: #0c4065;
}

.vms-vendor-card.vms-featured .vms-vendor-rank {
  background: linear-gradient(135deg, #0c4065, #2180cf);
  color: #fff;
}

.vms-vendor-card h3 {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--vms-teal-950);
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.vms-pick-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--vms-gold-700);
  background: var(--vms-gold-100);
  padding: 3px 9px;
  border-radius: 100px;
}

.vms-vendor-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--vms-text-600);
}

/* ---- checklist ---- */
.vms-check-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.vms-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--vms-text-600);
}

.vms-check-list .vms-tick {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--vms-mint-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.vms-check-list .vms-tick svg {
  width: 12px;
  height: 12px;
  stroke: var(--vms-teal-600);
}

/* ---- comparison table ---- */
.vms-compare-table {
  margin: 24px 0 0;
  border: 1px solid var(--vms-border);
  border-radius: var(--vms-radius-md);
  overflow: hidden;
  background: var(--vms-surface);
}

.vms-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.vms-compare-row+.vms-compare-row {
  border-top: 1px solid var(--vms-border);
}

.vms-compare-row.vms-head {
  background: #276fa2;
  max-width: 100%;
  margin: unset;
}

.vms-compare-row.vms-head div {
  color: #fff;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.vms-compare-row div {
  padding: 14px 16px;
  font-size: 13.5px;
  color: var(--vms-text-600);
  line-height: 1.55;
}

.vms-compare-row div:first-child {
  font-weight: 600;
  color: #0d4b7e;
}

.vms-compare-row:not(.vms-head):hover {
  background: var(--vms-mint-100);
}

.vms-compare-row div+div {
  border-left: 1px solid var(--vms-border);
}

.vms-compare-row.vms-head div+div {
  border-left: 1px solid rgba(255, 255, 255, .12);
}

/* ---- FAQ accordion ---- */
.vms-faq-list {
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vms-faq-item {
  background: var(--vms-surface);
  border: 1px solid var(--vms-border);
  border-radius: var(--vms-radius-sm);
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.vms-faq-item[open] {
  border-color: rgb(46 146 216);
  box-shadow: var(--vms-shadow-sm);
}

.vms-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--vms-teal-950);
}

.vms-faq-item summary::-webkit-details-marker {
  display: none;
}

.vms-faq-item summary .vms-chev {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #2d80c23d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s var(--vms-ease), background .3s ease;
}

.vms-faq-item summary .vms-chev svg {
  width: 12px;
  height: 12px;
  stroke: var(--vms-teal-600);
  transition: stroke .25s ease;
}

.vms-faq-item[open] summary .vms-chev {
  transform: rotate(180deg);
  background: linear-gradient(135deg, #12517d, #3d98e3);
}

.vms-faq-item[open] summary .vms-chev svg {
  stroke: #fff;
}

.vms-faq-item .vms-faq-body {
  padding: 0 20px 18px 20px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--vms-text-600);
}

/* ---- CTA panel (built from actual content — demo + phone) ---- */
.vms-cta-panel {
  position: relative;
  margin: 30px 0 0;
  padding: 30px 32px;
  border-radius: var(--vms-radius-lg);
  overflow: hidden;
  background: linear-gradient(150deg, #0a3553, #2a78b7);
  color: #eaf6f2;
}

.vms-cta-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(360px 220px at 90% -10%, rgba(91, 224, 189, .22), transparent 60%),
    radial-gradient(300px 200px at -10% 110%, rgba(18, 158, 130, .35), transparent 60%);
}

.vms-cta-panel * {
  position: relative;
}

.vms-cta-panel p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #c7ddd6;
  margin: 0 0 20px;
  max-width: 60ch;
}

.vms-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.vms-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--vms-teal-600), var(--vms-teal-400));
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 100px;
  box-shadow: 0 12px 26px -10px rgba(18, 158, 130, .55);
  transition: transform .35s var(--vms-ease), box-shadow .35s var(--vms-ease);
}

.vms-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -10px rgba(18, 158, 130, .6);
}

.vms-cta-btn svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
}

.vms-cta-btn.vms-ghost {
  background: rgb(13 77 130);
  border: 1px solid rgba(255, 255, 255, .25);
  box-shadow: none;
}

.vms-cta-btn.vms-ghost:hover {
  background: rgba(255, 255, 255, .14);
}

/* ---- tags ---- */
.vms-tags-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--vms-border);
}

.vms-tags-row span.vms-lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--vms-text-400);
  margin-right: 4px;
}

.vms-tag-pill {
  font-size: 13px;
  font-weight: 500;
  color: var(--vms-text-600);
  background: var(--vms-surface);
  border: 1px solid var(--vms-border);
  padding: 7px 14px;
  border-radius: 100px;
  transition: border-color .25s ease, color .25s ease, transform .25s ease;
}

.vms-tag-pill:hover {
  border-color: var(--vms-teal-500);
  color: var(--vms-teal-600);
  transform: translateY(-2px);
}

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .vms-content-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .vms-toc {
    display: none;
  }

  .vms-compare-row {
    grid-template-columns: 1fr;
  }

  .vms-compare-row div+div {
    border-left: none;
    border-top: 1px solid var(--vms-border);
  }

  .vms-compare-row.vms-head div+div {
    border-top: 1px solid rgba(255, 255, 255, .12);
  }
}

@media (max-width: 620px) {
  .vms-page {
    padding: 34px 18px 60px;
  }

  .vms-author-share {
    flex-direction: column;
    align-items: flex-start;
  }

  .vms-vendor-card {
    padding: 20px 18px 18px 64px;
  }

  .vms-vendor-rank {
    left: 14px;
    top: 18px;
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .vms-cta-panel {
    padding: 24px 20px;
  }
}

.vms-share-btn i {
  color: #1462a2;
}

/*===============-----------------------==================*/
@media only screen and (max-device-width: 480px) {
  .mbl-hero h1 {
    font-size: 20px;
  }

  .mbl-hero p {
    font-size: 14px;
  }

  .vms-article-head h1 {
    font-size: 20px;
  }

  .vms-article-head .vms-dek {
    font-size: 15px;
  }
  .vms-hero-banner{height: unset;}
  .vms-article-body>p {
    font-size: 14px;}
}