:root {
  --bg: #0b1020;
  --surface: #141c31;
  --surface-2: #18223b;
  --text: #f8fafc;
  --muted: #9aa7bd;
  --border: rgba(255, 255, 255, 0.08);
  --primary: #2563eb;
  --primary-strong: #7c3aed;
  --accent: rgba(255, 255, 255, 0.06);
  --success: #34d399;
  --shadow-card: 0 12px 38px -18px rgba(0, 0, 0, 0.65);
  --shadow-soft: 0 18px 60px -16px rgba(37, 99, 235, 0.45), 0 8px 28px -10px rgba(124, 58, 237, 0.38);
  --radius: 22px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg);
  background-image:
    radial-gradient(1200px 700px at 10% -10%, rgba(37, 99, 235, 0.14), transparent 60%),
    radial-gradient(900px 600px at 100% 10%, rgba(124, 58, 237, 0.12), transparent 60%);
  background-attachment: fixed;
}

body.has-mobile-bottom-nav {
  padding-bottom: 88px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.vmst-container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

body {
  --vmst-header-offset: 0px;
}

.admin-bar {
  --vmst-header-offset: 32px;
}

@media (max-width: 782px) {
  .admin-bar {
    --vmst-header-offset: 46px;
  }
}

.site-header {
  position: sticky;
  top: var(--vmst-header-offset);
  z-index: 1000;
  background: rgba(11, 16, 32, 0.38);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  isolation: isolate;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand {
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: auto;
  height: 40px;
  object-fit: contain;
}

.brand-logo-footer {
  height: 40px;
}

.header-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex: 1 1 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.brand-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-text em {
  font-style: normal;
  color: #60a5fa;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.header-nav .primary-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-nav .primary-menu > li {
  position: relative;
}

.header-nav .primary-menu > li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.header-nav .primary-menu > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.header-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  margin: 8px 0 0;
  padding: 8px;
  list-style: none;
  border-radius: 18px;
  background: rgba(16, 24, 40, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
  z-index: 50;
}

.header-nav .sub-menu li + li {
  margin-top: 4px;
}

.header-nav .primary-menu > li:hover > .sub-menu,
.header-nav .primary-menu > li:focus-within > .sub-menu {
  display: block;
}

.header-nav .sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: #fff;
  white-space: nowrap;
}

.header-nav .sub-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.header-nav a,
.nav-link,
.text-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.header-nav a:hover,
.nav-link:hover,
.text-link:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(0, 114, 206, 0.18);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 10px 26px -22px rgba(15, 23, 42, 0.42);
}

.mobile-drawer-close {
  display: none;
}

.mobile-drawer-head,
.mobile-drawer-brand {
  display: none;
}

.mobile-menu-toggle span:not(.screen-reader-text) {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.mobile-menu-toggle span:not(.screen-reader-text):nth-child(1) {
  transform: translateY(-6px);
}

.mobile-menu-toggle span:not(.screen-reader-text):nth-child(3) {
  transform: translateY(6px);
}

.site-header.is-mobile-open .mobile-menu-toggle span:not(.screen-reader-text):nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-mobile-open .mobile-menu-toggle span:not(.screen-reader-text):nth-child(2) {
  opacity: 0;
}

.site-header.is-mobile-open .mobile-menu-toggle span:not(.screen-reader-text):nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-bottom-nav {
  display: none;
}

.submenu-toggle {
  display: none;
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  margin-left: 8px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:focus-visible,
.header-nav a:focus-visible,
.nav-link:focus-visible,
.text-link:focus-visible,
.brand:focus-visible,
.category-chip:focus-visible,
.category-card:focus-visible,
.product-card:focus-visible {
  outline: 3px solid rgba(31, 111, 235, 0.22);
  outline-offset: 3px;
}

.button:hover {
  transform: translateY(-1px);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.button-primary:hover {
  opacity: 0.95;
}

.button-outline {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.button-outline:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.storefront,
.page-shell,
.shop-shell,
.product-page {
  padding-top: 28px;
  padding-bottom: 80px;
}

.info-page {
  display: grid;
  gap: 24px;
}

.info-hero p {
  max-width: 880px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.info-section {
  padding: 28px;
}

.info-section h2 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.2;
}

.info-section p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.82;
}

.service-info-page .info-section {
  padding: clamp(22px, 3vw, 34px);
}

.service-info-page .info-section > * {
  max-width: 1040px;
}

.service-info-page .info-hero p {
  color: #111827;
}

.service-info-page .info-section h2,
.service-info-page .info-section h3 {
  margin: 0 0 16px;
  color: #050816;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.28;
  letter-spacing: 0;
}

.service-info-page .info-section h4 {
  margin: 24px 0 10px;
  color: #0f172a;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.35;
  letter-spacing: 0;
}

.service-info-page .info-section h5 {
  margin: 18px 0 8px;
  color: #111827;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
}

.service-info-page .info-section p,
.service-info-page .info-section li {
  color: #111827;
  font-size: 16px;
  line-height: 1.78;
}

.service-info-page .info-section p:last-child,
.service-info-page .info-section ul:last-child,
.service-info-page .info-section ol:last-child {
  margin-bottom: 0;
}

.service-info-page .info-section ul,
.service-info-page .info-section ol {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding-left: 22px;
}

.service-info-page .info-section table {
  width: 100%;
  max-width: 980px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
}

.contact-info-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-info-list div {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.contact-info-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-info-list strong {
  font-size: 17px;
  line-height: 1.5;
}

.contact-form-card {
  padding: 28px;
}

.contact-form-card h2 {
  margin: 0 0 18px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form-message {
  grid-column: 1 / -1;
}

.form-alert {
  padding: 16px 18px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.55;
}

.form-alert-success {
  border: 1px solid rgba(52, 211, 153, 0.28);
  color: #14532d;
  background: rgba(220, 252, 231, 0.92);
}

.form-alert-error {
  border: 1px solid rgba(248, 113, 113, 0.28);
  color: #991b1b;
  background: rgba(254, 242, 242, 0.94);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.news-card {
  overflow: hidden;
  padding: 0;
}

.news-card__thumb {
  display: block;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(124, 58, 237, 0.18));
}

.news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 56px;
  font-weight: 800;
  color: #fff;
}

.news-card__body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.news-card__body h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
}

.news-card__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.news-page {
  background: #fff;
  color: #24324a;
}

.news-page .site-footer {
  margin-top: 0;
}

.news-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 60px;
  background: linear-gradient(90deg, #3d78ea 0%, #5b94d2 100%);
}

.news-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.news-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.news-hero__desc {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
}

.news-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
}

.news-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4.8vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

.news-hero__search {
  width: min(640px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 164px;
  padding: 14px;
  gap: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 40px -24px rgba(15, 23, 42, 0.32);
}

.news-hero__search input,
.news-hero__search button {
  min-height: 56px;
  border: 0;
}

.news-hero__search input {
  padding: 0 18px;
  border-radius: 12px 0 0 12px;
  background: #fff;
  color: #1f2937;
  font-size: 16px;
}

.news-hero__search input::placeholder {
  color: #99a3b2;
}

.news-hero__search button {
  border-radius: 0 12px 12px 0;
  background: linear-gradient(90deg, #ffc247 0%, #f5835b 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.news-archive {
  background: #fff;
  padding: 34px 0 50px;
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.news-filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #d9e7f7;
  background: #f7fbff;
  color: #52627c;
  font-size: 13px;
  font-weight: 600;
}

.news-filter-chip.is-active,
.news-filter-chip:hover {
  border-color: #4a8fff;
  background: rgba(74, 143, 255, 0.1);
  color: #2f66d0;
}

.news-lead {
  margin-bottom: 24px;
}

.news-card--lead {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  border-radius: 16px;
  overflow: hidden;
  background: #eef5fd;
  border: 1px solid #d9e7f7;
  box-shadow: none;
}

.news-card--lead .news-card__thumb {
  min-height: 100%;
  aspect-ratio: 16 / 9;
  background: #dbeafe;
}

.news-card--lead .news-card__body {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 18px 20px;
}

.news-card--lead .news-card__body h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.28;
}

.news-card--lead .news-card__body p {
  font-size: 14px;
  line-height: 1.6;
}

.news-card__footer {
  display: grid;
  gap: 6px;
}

.news-listing__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.news-listing__head h2 {
  margin: 0;
  color: #2c3f5f;
  font-size: 22px;
  font-weight: 800;
}

.news-listing__head span {
  color: #6d7a90;
  font-size: 13px;
  font-weight: 600;
}

.news-grid--archive {
  gap: 18px;
}

.news-card--archive {
  border-radius: 14px;
  overflow: hidden;
  background: #eef5fd;
  border: 1px solid #d9e7f7;
  box-shadow: none;
}

.news-card--archive .news-card__thumb {
  aspect-ratio: 16 / 9;
  background: #dbeafe;
}

.news-card--archive .news-card__body {
  display: grid;
  gap: 8px;
  padding: 14px 14px 16px;
}

.news-card__category {
  color: #4f5c74;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.news-card--archive .news-card__body h2 {
  font-size: 17px;
  line-height: 1.4;
}

.news-card--archive .news-card__body h2 a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-card--archive .news-card__body p {
  display: -webkit-box;
  overflow: hidden;
  color: #5f6f87;
  font-size: 13px;
  line-height: 1.5;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-card__brand {
  color: #4a8fff;
  font-size: 13px;
  font-weight: 600;
}

.category-longform {
  margin-top: 22px;
}

.category-longform__head {
  margin-bottom: 18px;
}

.category-longform__head h2 {
  margin-top: 10px;
}

.category-longform__meta {
  margin: 10px 0 0;
  color: #111827;
  font-size: 14px;
  line-height: 1.65;
}

.category-longform__toc {
  margin-bottom: 20px;
  padding: 16px 18px;
  border: 1px solid #d8e6f6;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff 0%, #eff6ff 100%);
}

.category-longform__toc strong {
  display: block;
  margin-bottom: 10px;
  color: #2f4f7a;
  font-size: 14px;
  font-weight: 800;
}

.category-longform__toc ol {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.category-longform__toc a {
  color: #4d678b;
  font-size: 14px;
  line-height: 1.55;
}

.category-longform__content {
  color: #111827;
  font-size: 16px;
  line-height: 1.8;
}

.category-longform__section + .category-longform__section {
  margin-top: 26px;
}

.category-longform__content h3 {
  margin: 0 0 12px;
  color: #050816;
  font-size: 28px;
  line-height: 1.28;
}

.category-longform__content h4 {
  margin: 18px 0 8px;
  color: #111827;
  font-size: 18px;
  line-height: 1.4;
}

.category-longform__content p {
  margin: 0 0 14px;
}

.category-longform__summary {
  color: #111827;
  font-weight: 600;
}

.news-card--archive .news-card__meta,
.news-card--lead .news-card__meta {
  color: #596780;
  font-size: 13px;
}

.news-pagination--archive {
  margin-top: 20px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.news-pagination--archive .nav-links {
  justify-content: center;
  gap: 18px;
}

.news-pagination__prev a,
.news-pagination__next a {
  color: #4c5c74;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.news-pagination {
  margin-top: 24px;
  padding: 18px 22px;
}

.news-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.news-pagination .page-numbers.current {
  background: rgba(37, 99, 235, 0.18);
  color: #fff;
}

@media (max-width: 1024px) {
  .news-card--lead {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .news-hero {
    padding: 52px 0 42px;
  }

  .news-hero h1 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .news-hero__desc {
    font-size: 13px;
    line-height: 1.55;
  }

  .news-hero__search {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
    border-radius: 14px;
  }

  .news-hero__search input,
  .news-hero__search button {
    min-height: 46px;
    border-radius: 10px;
    font-size: 14px;
  }

  .news-listing__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-card--lead .news-card__body,
  .news-card--archive .news-card__body {
    padding: 16px;
  }

  .news-card--lead .news-card__body h2 {
    font-size: 20px;
  }

  .news-card__category,
  .news-card--archive .news-card__body h2,
  .news-card--archive .news-card__body p,
  .news-card__meta {
    font-size: 13px;
  }
}

.news-single {
  background: #fff;
  color: #3e4658;
}

.news-single__section {
  padding: 28px 0 48px;
}

.news-single__layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 240px;
  gap: 32px;
  align-items: start;
}

.news-single__left,
.news-single__right {
  position: sticky;
  top: 116px;
}

.news-single__toc {
  padding: 16px 16px 18px;
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.92)),
    radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.12), transparent 60%);
  box-shadow: 0 18px 36px -30px rgba(37, 99, 235, 0.45);
}

.news-single__toc h2 {
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #294e86;
  color: #294e86;
  font-size: 18px;
  line-height: 1;
}

.news-single__toc-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.news-single__toc-list a {
  display: block;
  padding: 8px 10px;
  border-radius: 12px;
  color: #4e6486;
  font-size: 13px;
  line-height: 1.45;
  background: rgba(191, 219, 254, 0.18);
}

.news-single__toc-list a:hover {
  background: rgba(96, 165, 250, 0.16);
  color: #1d4ed8;
}

.news-single__article {
  min-width: 0;
}

.news-single__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: #7b8497;
  font-size: 13px;
  line-height: 1.5;
}

.news-single__breadcrumbs a {
  color: inherit;
}

.news-single__header h1 {
  margin: 0;
  color: #424655;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.2;
}

.news-single__author-row {
  margin-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e4e8ef;
}

.news-single__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-single__author img,
.news-single__author-box-brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #cfe0fb;
}

.news-single__author strong {
  display: block;
  color: #4b5568;
  font-size: 16px;
  line-height: 1.3;
}

.news-single__author span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: #2fa45e;
  font-size: 13px;
  font-weight: 600;
}

.news-single__author span::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2fa45e;
  box-shadow: inset 0 0 0 2px #e8f7ee;
}

.news-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  color: #6a7385;
  font-size: 13px;
}

.news-single__sharebar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 16px 0 24px;
}

.news-single__socials {
  display: flex;
  gap: 10px;
}

.news-single__socials a,
.news-single__author-box-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #cfd6e3;
  color: #4c5669;
  font-size: 14px;
  font-weight: 500;
}

.news-single__rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #e4e8ef;
  box-shadow: 0 10px 24px -20px rgba(15, 23, 42, 0.4);
  color: #4d5668;
  font-size: 13px;
}

.news-single__rating-summary strong {
  color: #4b5568;
  font-size: 13px;
}

.news-single__rating-summary small {
  font-size: 12px;
  color: #6a7385;
}

.news-single__content {
  color: #485264;
  font-size: 15px;
  line-height: 1.8;
}

.news-single__content > *:first-child {
  margin-top: 0;
}

.news-single__content img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 0;
}

.news-single__content h2,
.news-single__content h3 {
  margin: 24px 0 10px;
  color: #324968;
  line-height: 1.28;
}

.news-single__content h2 {
  font-size: 26px;
}

.news-single__content h3 {
  font-size: 20px;
}

.news-single__content p,
.news-single__content li {
  font-size: 15px;
}

.news-single__content a {
  color: #2f73ff;
}

.news-single__feedback {
  margin-top: 34px;
  padding: 16px;
  border-radius: 10px;
  background: #f2f4f8;
}

.news-single__feedback h2 {
  margin: 0 0 12px;
  color: #3e4658;
  font-size: 16px;
  font-weight: 500;
}

.news-single__feedback-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.news-single__feedback-item {
  min-height: 96px;
  padding: 12px 8px;
  border: 1px solid #eceef4;
  border-radius: 8px;
  background: #fff;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 6px;
  color: #3e4658;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.news-single__feedback-item:hover {
  border-color: #bfd7fb;
  box-shadow: 0 14px 24px -20px rgba(37, 99, 235, 0.45);
}

.news-single__feedback-item.is-active {
  border-color: #60a5fa;
  background: rgba(239, 246, 255, 0.96);
  box-shadow: 0 14px 28px -22px rgba(37, 99, 235, 0.42);
}

.news-single__feedback-item:disabled {
  cursor: default;
}

.news-single__feedback-item:disabled:not(.is-active) {
  opacity: 0.72;
}

.news-single__feedback-item span {
  font-size: 30px;
  line-height: 1;
}

.news-single__feedback-item strong {
  font-size: 13px;
  font-weight: 500;
}

.news-single__feedback-note {
  margin: 10px 0 0;
  color: #61708a;
  font-size: 13px;
  line-height: 1.5;
}

.news-single__author-box {
  margin-top: 22px;
  padding: 18px;
  border: 2px solid #80b8ff;
  border-radius: 10px;
  background: #fff;
}

.news-single__author-box-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.news-single__author-box-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-single__author-box-brand strong {
  display: block;
  color: #2d3342;
  font-size: 18px;
  line-height: 1.2;
}

.news-single__author-box-brand span {
  display: block;
  margin-top: 4px;
  color: #5a95ff;
  font-size: 13px;
}

.news-single__author-box-socials {
  text-align: right;
}

.news-single__author-box-socials > span {
  display: block;
  margin-bottom: 6px;
  color: #4d5668;
  font-size: 13px;
}

.news-single__author-box-socials div {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.news-single__author-box-socials a {
  width: 30px;
  height: 30px;
  font-size: 12px;
}

.news-single__author-box-content {
  margin-top: 16px;
  color: #4d5668;
  font-size: 14px;
  line-height: 1.7;
}

.news-single__related {
  margin-top: 40px;
}

.news-single__related h2 {
  margin: 0 0 22px;
  color: #294e86;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.1;
  text-align: center;
}

.news-single__related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.news-single__related-card {
  min-width: 0;
}

.news-single__related-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  background: #dbeafe;
}

.news-single__related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-single__related-body {
  padding-top: 10px;
}

.news-single__related-category {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #f0c15b;
  color: #d5a02f;
  font-size: 13px;
  line-height: 1;
}

.news-single__related-body h3 {
  margin: 10px 0 0;
  color: #4a5262;
  font-size: 16px;
  line-height: 1.5;
}

.news-single__related-body h3 a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-single__next {
  border-radius: 16px;
  background: #fff;
  border: 1px solid #edf1f7;
  box-shadow: 0 18px 48px -34px rgba(15, 23, 42, 0.35);
  overflow: hidden;
}

.news-single__next-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid #edf1f7;
  color: #5a95ff;
  font-size: 13px;
}

.news-single__next-head span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5a95ff;
}

.news-single__next-card {
  display: block;
}

.news-single__next-card img {
  width: 100%;
  height: auto;
  display: block;
}

.news-single__next-body {
  padding: 14px;
}

.news-single__next-body > span {
  color: #7a8496;
  font-size: 13px;
}

.news-single__next-body h3 {
  margin: 10px 0 8px;
  color: #3e4658;
  font-size: 16px;
  line-height: 1.45;
}

.news-single__next-body p {
  margin: 0;
  color: #7a8496;
  font-size: 13px;
}

.vmst-main {
  padding-bottom: 84px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 68px 0 36px;
}

.hero-bg,
.grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg {
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(37, 99, 235, 0.2), transparent 60%),
    radial-gradient(900px 500px at 80% 20%, rgba(124, 58, 237, 0.18), transparent 60%);
}

.grid-bg {
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.hero-grid,
.email-grid,
.vps-grid {
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.hero-grid {
  grid-template-columns: 1.08fr 0.92fr;
}

.hero-copy,
.hero-panel,
.store-banner,
.page-hero,
.shop-hero,
.product-hero,
.product-features,
.product-content,
.content-article,
.store-card,
.glass-card {
  background: rgba(16, 24, 40, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.hero-copy {
  position: relative;
  padding: 38px;
}

.hero-panel {
  padding: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.hero-copy h1,
.section-heading h2,
.page-hero h1,
.shop-hero h1,
.product-hero h1,
.product-group h3 {
  margin: 16px 0 0;
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.04;
}

.hero-copy h1.hero-title-small {
  max-width: none;
  font-size: clamp(29px, 3.5vw, 48px);
}

.hero-copy h1 span {
  display: block;
}

.brand-line,
.gradient-brand-text {
  color: #60a5fa;
}

.section-heading h2,
.shop-hero h1,
.page-hero h1,
.product-hero h1 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.hero-copy p,
.section-heading p,
.hero-panel p,
.store-banner p,
.shop-hero p,
.page-hero p,
.product-hero p,
.product-card p,
.empty-state p,
.site-footer p,
.site-footer li,
.content-article {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy p {
  max-width: 68ch;
  font-size: 16px;
}

.hero-actions,
.banner-actions,
.order-actions,
.product-actions-inline,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 24px;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.trust-pills li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-stats li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.hero-stats strong {
  display: block;
  color: #fff;
  font-size: 18px;
}

.hero-stats span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
}

.order-card {
  height: 100%;
  padding: 22px;
}

.dashboard-card,
.mail-card,
.terminal-card,
.vps-card,
.feature-card,
.testimonial-card,
.faq-item,
.price-card {
  position: relative;
}

.dashboard-head,
.terminal-head,
.mail-header,
.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.dashboard-dots {
  display: inline-flex;
  gap: 8px;
}

.dashboard-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.dashboard-label,
.dashboard-mark {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 600;
}

.dashboard-mark {
  color: #60a5fa;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.dashboard-stats article {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.dashboard-stats span,
.traffic-row span,
.mini-label {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.dashboard-stats strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
}

.meter {
  height: 6px;
  margin-top: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--primary), #60a5fa);
}

.dashboard-footer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.traffic-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.traffic-row strong {
  color: #fff;
}

.traffic-bars {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
  align-items: end;
  min-height: 64px;
}

.traffic-bars span {
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, rgba(96, 165, 250, 0.85), rgba(37, 99, 235, 0.18));
}

.traffic-bars span:nth-child(1) { height: 36%; }
.traffic-bars span:nth-child(2) { height: 64%; }
.traffic-bars span:nth-child(3) { height: 48%; }
.traffic-bars span:nth-child(4) { height: 78%; }
.traffic-bars span:nth-child(5) { height: 52%; }
.traffic-bars span:nth-child(6) { height: 88%; }
.traffic-bars span:nth-child(7) { height: 60%; }
.traffic-bars span:nth-child(8) { height: 72%; }

.pricing-section-title {
  margin: 30px 0 16px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.pricing-grid,
.feature-grid,
.testimonial-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-load-section + .product-load-section {
  padding-top: 8px;
}

.product-load-section [hidden] {
  display: none !important;
}

.vmst-seo-link-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  max-width: 960px;
  margin: 0 auto 10px;
  line-height: 1.2;
}

.vmst-seo-link-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  max-width: 100%;
  padding: 4px 10px;
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 999px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #0f3f91;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 7px 18px -14px rgba(37, 99, 235, 0.6);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vmst-seo-link-strip a:hover,
.vmst-seo-link-strip a:focus-visible {
  border-color: rgba(29, 78, 216, 0.48);
  color: #0b2f73;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  box-shadow: 0 10px 22px -15px rgba(37, 99, 235, 0.75);
}

@media (max-width: 760px) {
  .vmst-seo-link-strip {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
    overflow: hidden;
  }

  .vmst-seo-link-strip a {
    max-width: calc(50% - 4px);
  }
}

.vmst-lazy-product-shell {
  min-height: 230px;
  display: grid;
  gap: 16px;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.vmst-lazy-product-shell.is-loaded {
  min-height: 0;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
}

.vmst-lazy-product-shell.is-error {
  min-height: 80px;
}

.vmst-lazy-product-skeleton {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.vmst-lazy-product-skeleton span {
  min-height: 150px;
  border-radius: 18px;
  background: linear-gradient(100deg, rgba(255,255,255,.045) 20%, rgba(255,255,255,.095) 38%, rgba(255,255,255,.045) 58%);
  background-size: 220% 100%;
  animation: vmst-skeleton-sweep 1.15s ease-in-out infinite;
}

.vmst-lazy-product-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

@keyframes vmst-skeleton-sweep {
  from { background-position: 120% 0; }
  to { background-position: -120% 0; }
}

@supports (content-visibility: auto) {
  .product-load-section,
  .vmst-main > .section:nth-of-type(n+3),
  .footer-mega,
  .footer-company {
    content-visibility: auto;
    contain-intrinsic-size: 1px 760px;
  }
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.product-pricing-grid {
  align-items: stretch;
}

.product-avatar-wrap {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.product-avatar {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-avatar-large {
  max-width: 360px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-hero-media {
  margin-bottom: 20px;
}

.price-card.featured {
  border-color: rgba(96, 165, 250, 0.3);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.price-tag {
  color: #60a5fa;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-card h3 {
  margin: 0;
  font-size: 22px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #fff;
  font-weight: 800;
}

.price-row strong {
  font-size: 26px;
}

.price-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.price-card li + li {
  margin-top: 8px;
}

.light-button {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.light-button:hover {
  color: #fff;
}

.vps-grid {
  grid-template-columns: 1.02fr 0.98fr;
}

.vps-card,
.terminal-card {
  padding: 24px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.spec-card {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.vps-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.terminal-head {
  margin-bottom: 14px;
}

.terminal-card pre {
  margin: 0;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.email-grid {
  grid-template-columns: 1fr 1fr;
}

.mail-card {
  padding: 0;
  overflow: hidden;
}

.mail-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: 360px;
}

.mail-layout aside {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.compose-button {
  display: grid;
  place-items: center;
  min-height: 44px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}

.mail-layout nav {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.mail-layout nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
}

.mail-layout nav a.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.mail-layout nav a span {
  font-size: 12px;
  font-weight: 700;
}

.mail-list {
  padding: 0;
}

.mail-header {
  padding: 18px 20px;
}

.mail-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mail-list article:last-child {
  border-bottom: 0;
}

.mail-list article p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.feature-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.testimonial-card,
.faq-item,
.final-cta {
  padding: 24px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.testimonial-user span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  font-weight: 800;
}

.testimonial-user small {
  color: var(--muted);
}

.faq-wrap {
  display: grid;
  gap: 18px;
}

.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item h3,
.feature-card h3,
.testimonial-card p {
  margin-top: 0;
}

.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta-glow {
  position: absolute;
  inset: -10% auto auto 50%;
  width: 420px;
  height: 420px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.12);
  filter: blur(42px);
  pointer-events: none;
}

.center-actions {
  justify-content: center;
}

.product-excerpt {
  color: var(--muted);
}

.empty-product-state {
  padding: 28px;
  text-align: center;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.vmst-portal-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vmst-portal-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(16, 24, 40, 0.72);
  box-shadow: var(--shadow-card);
}

.vmst-portal-card strong {
  display: block;
  margin: 10px 0 12px;
  color: #60a5fa;
}

.vmst-portal-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.vmst-portal-header {
  margin-bottom: 18px;
}

.vmst-portal-products p {
  color: var(--muted);
}
}

.card-head,
.product-group-head,
.category-card-top,
.category-card-bottom,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-head strong,
.sale-tag,
.category-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 800;
}

.steps-list,
.check-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.steps-list li + li,
.check-list li + li {
  margin-top: 10px;
}

.section {
  padding: 24px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
  padding: 36px 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 24px;
}

.category-grid,
.product-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-sections {
  display: grid;
  gap: 24px;
}

.product-group {
  display: grid;
  gap: 14px;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card,
.product-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.category-card:hover,
.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 111, 235, 0.28);
}

.category-card h3,
.product-card h4 {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
}

.category-card p,
.product-card p {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-card p {
  -webkit-line-clamp: 3;
  min-height: 5.25em;
}

.product-card p {
  -webkit-line-clamp: 3;
  min-height: 5.25em;
}

.category-card-bottom {
  margin-top: auto;
  font-size: 13px;
  color: var(--primary-strong);
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-card h4 a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
}

.price-row strong {
  font-size: 24px;
}

.product-group-head h3 {
  margin-top: 8px;
  font-size: 24px;
}

.store-banner {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.page-hero,
.shop-hero,
.product-hero,
.product-features,
.product-content,
.content-article {
  padding: 40px;
}

.content-article {
  overflow: hidden;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
  gap: 18px;
  margin-top: 24px;
}

.product-meta-panel {
  display: grid;
  gap: 12px;
}

.meta-item,
.spec-card {
  padding: 16px;
  border-radius: 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.meta-item span,
.spec-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.meta-item strong,
.spec-card strong {
  display: block;
  margin-top: 4px;
  font-size: 16px;
}

.product-content,
.product-features {
  margin-top: 18px;
}

.shop-hero {
  margin: 24px 0 18px;
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.category-chip strong {
  color: #fff;
}

.shop-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.empty-state {
  padding: 28px;
}

.site-footer {
  padding: 0;
  border-top: 0;
  background: #006EC8;
  color: #334155;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.site-footer a {
  color: #334155;
  font-size: 14px;
  font-weight: 600;
}

.site-footer a:hover {
  color: #2563eb;
}

.site-footer--mega h3 {
  margin: 0 0 28px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.footer-mega {
  padding: 48px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-mega__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 40px 32px;
  align-items: start;
}

.footer-mega__column {
  display: grid;
  align-content: start;
  gap: 0;
}

.footer-mega__column ul,
.footer-socials,
.footer-company__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-mega__column li + li,
.footer-socials li + li,
.footer-company__list li + li {
  margin-top: 16px;
}

.footer-mega__column a,
.footer-company__list,
.footer-socials a {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.footer-company {
  padding: 48px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-company__grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(0, 1.85fr);
  gap: 42px;
  align-items: start;
}

.footer-company__info h3 {
  font-size: 14px;
  line-height: 1.5;
}

.footer-company__info {
  display: grid;
  align-content: start;
}

.footer-company__list {
  font-weight: 600;
}

.footer-company__list strong {
  color: #334155;
  font-weight: 800;
}

.footer-company__blocks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.footer-company__block {
  display: grid;
  align-content: start;
  gap: 0;
}

.footer-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-pill-grid--payments {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #35527f;
  font-size: 14px;
  font-weight: 600;
}

.footer-pill--payment {
  min-width: 0;
  width: 100%;
  min-height: 110px;
}

.footer-pill--media {
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px 12px;
}

.footer-pill__media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 35px;
}

.footer-pill__media img {
  display: block;
  width: 50px;
  height: 35px;
  object-fit: contain;
}

.footer-pill__label {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}

.footer-socials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
}

.footer-socials li + li {
  margin-top: 0;
}

.footer-socials a {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.footer-socials__media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 35px;
}

.footer-socials__media img {
  display: block;
  width: 50px;
  height: 35px;
  object-fit: contain;
}

.footer-socials__label {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(17, 17, 17, 0.18);
  color: #334155;
  font-size: 14px;
}

.footer-bottom--mega {
  padding-bottom: 28px;
}

.footer-bottom__brand {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 1180px) {
  .footer-company__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-company__blocks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .footer-mega__grid,
  .footer-company__blocks {
    grid-template-columns: 1fr;
  }

  .footer-pill-grid--payments {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-mega__grid {
    gap: 30px;
  }

  .footer-socials {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .footer-pill-grid {
    gap: 10px;
  }

  .footer-pill-grid--payments {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .footer-pill--payment {
    min-height: 86px;
    padding: 12px 10px 10px;
  }

  .footer-pill--media {
    gap: 8px;
  }

  .footer-pill__label,
  .footer-socials__label {
    font-size: 12px;
  }

  .footer-socials {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 12px;
  }

  .footer-socials a {
    gap: 8px;
  }
}

.content-article h2,
.content-article h3,
.content-article h4 {
  color: var(--text);
}

.content-article a {
  color: var(--primary);
}

.content-article p:first-child {
  margin-top: 0;
}

.content-article form.cart,
.woocommerce form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.woocommerce .quantity .qty {
  width: 90px;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0 12px;
}

.woocommerce .single_add_to_cart_button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
  background: var(--primary);
  color: #fff;
  border: 0;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.woocommerce .single_add_to_cart_button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover {
  background: var(--primary-strong);
  color: #fff;
}

.woocommerce ul.products {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.woocommerce ul.products li.product {
  padding: 0;
  border: 0;
  width: auto;
  margin: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link,
.woocommerce div.product .summary {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.woocommerce ul.products.columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.woocommerce ul.products.columns-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.woocommerce ul.products li.product .price {
  color: var(--primary-strong);
  font-weight: 800;
}

.woocommerce div.product .woocommerce-product-gallery,
.woocommerce div.product .summary {
  margin-bottom: 18px;
}

.woocommerce div.product .product_title {
  margin-top: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding-left: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: var(--surface);
  border: 1px solid var(--border);
}

.woocommerce table.shop_table {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.woocommerce table.shop_table th {
  background: var(--surface-2);
}

.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error {
  border-radius: 14px;
}

@media (max-width: 1100px) {
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-shell,
  .product-hero,
  .footer-grid,
  .category-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-grid,
  .feature-grid,
  .testimonial-grid,
  .faq-list,
  .vmst-portal-products-grid,
  .vps-grid,
  .email-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    padding-top: 65px;
    padding-bottom: calc(104px + env(safe-area-inset-bottom, 0px));
  }

  body.has-mobile-menu-open {
    overflow: hidden;
  }

  body.has-mobile-menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 210;
    background: rgba(15, 23, 42, 0.42);
    backdrop-filter: blur(2px);
  }

  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000;
    background: rgba(11, 16, 32, 0.9);
  }

  .admin-bar .site-header {
    top: var(--vmst-header-offset) !important;
  }

  .site-header.is-mobile-open {
    z-index: 1001;
  }

  .shop-grid {
    grid-template-columns: 1fr;
  }

  .header-row {
    min-height: 64px;
    padding: 10px 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-logo {
    height: 40px;
  }

  .brand-logo-footer {
    height: 40px;
  }

  .brand-text {
    font-size: 18px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 300;
    width: min(88vw, 420px);
    max-width: calc(100vw - 28px);
    height: 100vh;
    height: 100dvh;
    max-height: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0 0 calc(18px + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    border: 0;
    border-left: 1px solid var(--border);
    border-radius: 22px 0 0 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -24px 0 56px -30px rgba(15, 23, 42, 0.58);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease, visibility 0s linear 0.28s;
  }

  .header-menu.is-mobile-open,
  .header-menu.is-mobile-closing,
  .site-header.is-mobile-open .header-menu {
    display: flex;
  }

  .header-menu.is-mobile-open,
  .site-header.is-mobile-open .header-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .header-menu.is-mobile-closing {
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    visibility: visible;
  }

  .admin-bar .header-menu {
    top: 46px;
    height: calc(100vh - 46px);
    height: calc(100dvh - 46px);
  }

  .mobile-drawer-head {
    position: sticky;
    top: 0;
    z-index: 4;
    order: -3;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 66px;
    padding: calc(10px + env(safe-area-inset-top, 0px)) 16px 10px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 26px -28px rgba(15, 23, 42, 0.46);
  }

  .mobile-drawer-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
  }

  .mobile-drawer-brand img {
    display: block;
    width: auto;
    height: 36px;
    max-width: 190px;
    object-fit: contain;
  }

  .mobile-drawer-close {
    position: relative;
    top: auto;
    right: auto;
    z-index: 2;
    display: inline-flex;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--text);
    box-shadow: none;
  }

  .mobile-drawer-close span {
    position: absolute;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .mobile-drawer-close span:first-child {
    transform: rotate(45deg);
  }

  .mobile-drawer-close span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-drawer-close:focus-visible {
    outline: 3px solid rgba(31, 111, 235, 0.22);
    outline-offset: 3px;
  }

  .header-menu .header-nav {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .header-menu .header-nav .primary-menu {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .header-menu .header-nav .primary-menu > li {
    display: block;
    border-bottom: 1px solid var(--border);
  }

  .header-menu .header-nav .primary-menu > li.menu-item-has-children {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px;
  }

  .header-menu .header-nav .primary-menu > li > a,
  .header-menu .header-nav > a {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 0;
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
  }

  .header-menu .header-nav > a {
    border-bottom: 1px solid var(--border);
  }

  .header-menu .header-nav .primary-menu > li.menu-item-has-children > a {
    grid-column: 1;
  }

  .header-menu .header-nav .primary-menu > li > a:hover,
  .header-menu .header-nav > a:hover {
    background: rgba(0, 114, 206, 0.08);
  }

  .header-menu .header-nav .primary-menu > li::after {
    display: none;
  }

  .header-menu .header-nav .sub-menu {
    position: static;
    display: block;
    grid-column: 1 / -1;
    min-width: 0;
    max-height: 0;
    margin: 0;
    padding: 0 16px 0 32px;
    overflow: hidden;
    border: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: max-height 0.24s ease, opacity 0.18s ease, padding 0.18s ease, visibility 0s linear 0.24s;
  }

  .header-menu .header-nav .menu-item-has-children.is-submenu-open > .sub-menu {
    max-height: 900px;
    padding: 6px 16px 12px 32px;
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }

  .header-menu .header-nav .sub-menu li + li {
    margin-top: 0;
  }

  .header-menu .header-nav .sub-menu a {
    display: block;
    padding: 10px 0;
    border-radius: 0;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    white-space: normal;
  }

  .header-menu .header-nav .sub-menu a:hover {
    background: transparent;
    color: var(--primary);
  }

  .header-menu .header-nav .menu-item-has-children > .submenu-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    align-items: center;
    justify-content: center;
    position: relative;
    align-self: stretch;
    width: 52px;
    min-width: 52px;
    height: 50px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--text);
  }

  .submenu-toggle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translate(-50%, -65%) rotate(45deg);
    transition: transform 0.18s ease;
  }

  .header-menu .header-nav .menu-item-has-children.is-submenu-open > .submenu-toggle::before {
    transform: translate(-50%, -35%) rotate(-135deg);
  }

  .submenu-toggle:focus-visible {
    outline: 3px solid rgba(31, 111, 235, 0.22);
    outline-offset: 3px;
  }

  .header-actions {
    order: -2;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    background: #ffffff;
  }

  .header-actions > * {
    min-width: 0;
  }

  .header-actions .nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 10px;
    border: 1px solid rgba(0, 114, 206, 0.18);
    border-radius: 8px;
    background: #ffffff;
    color: var(--primary);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .header-actions .button {
    display: inline-flex;
    min-height: 40px;
    padding: 0 10px;
    border-radius: 8px;
    background: #0072ce;
    justify-content: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-shadow: 0 12px 22px -16px rgba(0, 114, 206, 0.7);
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 13, 27, 0.98);
    box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
  }

  .mobile-bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 58px;
    padding: 6px 2px;
    border-radius: 16px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .mobile-bottom-nav__item,
  .product-actions .button,
  .portal-vx__header .button,
  .portal-vx-empty .button {
    position: relative;
    z-index: 2;
    pointer-events: auto;
    touch-action: manipulation;
  }

  .mobile-bottom-nav__item:hover,
  .mobile-bottom-nav__item:focus-visible {
    color: #fff;
    background: rgba(59, 130, 246, 0.16);
  }

  .mobile-bottom-nav__item.is-active {
    color: #fff;
    background: rgba(37, 99, 235, 0.18);
  }

  .mobile-bottom-nav__item.is-active .mobile-bottom-nav__icon {
    background: rgba(37, 99, 235, 0.24);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.18);
  }

  .mobile-bottom-nav__icon {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #93c5fd;
    font-size: 14px;
    line-height: 1;
  }

  .mobile-bottom-nav__label {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-shell,
  .product-hero,
  .footer-grid,
  .category-grid,
  .product-grid,
  .contact-layout,
  .news-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-panel,
  .page-hero,
  .shop-hero,
  .product-hero,
  .product-features,
  .product-content,
  .content-article,
  .store-banner {
    padding: 28px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .section-heading {
    max-width: none;
  }

  .hero-grid,
  .pricing-grid,
  .feature-grid,
  .testimonial-grid,
  .faq-list,
  .vmst-portal-products-grid,
  .vps-grid,
  .email-grid,
  .mail-layout,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .mail-layout aside {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .hero-copy h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero-copy h1.hero-title-small {
    font-size: clamp(24px, 7vw, 34px);
  }

  .pricing-section-title {
    font-size: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hero-section {
  padding: 48px 0 24px;
}

.hero-grid {
  gap: 20px;
  align-items: center;
}

.hero-copy,
.hero-panel,
.shop-hero,
.product-hero,
.product-features,
.product-content,
.store-card {
  border-radius: 18px;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}

.hero-copy h1.hero-title-small {
  max-width: none;
  font-size: clamp(24px, 3.2vw, 41px);
}

.hero-copy p,
.shop-hero p,
.product-hero p,
.section-heading p {
  max-width: 56ch;
  font-size: 15px;
  line-height: 1.65;
}

.section {
  padding: 34px 0;
}

.section-heading,
.section-heading.center,
.section-heading.section-heading-compact {
  max-width: 700px;
  margin-bottom: 18px;
}

.section-heading h2,
.shop-hero h1,
.product-hero h1 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 10px 0 8px;
}

.section-heading.section-heading-compact h2 {
  font-size: clamp(24px, 2.5vw, 32px);
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
}

.trust-pills {
  gap: 10px;
  margin-top: 18px;
}

.trust-pills li {
  padding: 8px 12px;
  font-size: 12px;
}

.dashboard-card.compact-dashboard {
  padding: 18px;
}

.dashboard-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-stats article,
.meta-item,
.feature-card,
.testimonial-card,
.faq-item {
  padding: 16px;
}

.vmst-compact-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vmst-compact-card,
.vmst-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.vmst-compact-card__media,
.vmst-product-card__media {
  padding: 14px 14px 0;
}

.vmst-compact-card__body,
.vmst-product-card__body {
  padding: 12px 14px 14px;
}

.vmst-product-card__head {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vmst-compact-card__meta,
.vmst-product-card__meta {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.vmst-compact-card h3,
.vmst-product-card h2 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.vmst-product-card__pricing {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.vmst-product-card__compare {
  color: var(--muted);
  font-size: 20px;
  text-decoration: line-through;
}

.vmst-product-card__current {
  color: #3b82f6;
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.vmst-product-card__suffix {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 600;
}

.vmst-compact-card__price {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.vmst-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 12px;
}

.vmst-spec-grid-large {
  max-width: 720px;
  margin-top: 14px;
  margin-bottom: 14px;
}

.vmst-spec-chip {
  padding: 10px 10px 9px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.vmst-spec-chip span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vmst-spec-chip strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.product-avatar {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.product-avatar-large {
  max-width: 320px;
}

.vmst-product-card__link {
  display: block;
}

.vmst-product-card__footer {
  margin-top: auto;
  padding: 0 14px 14px;
}

.vmst-product-card__lines {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 16px 0 0;
  list-style: none;
}

.vmst-product-card__lines li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}

.vmst-product-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  flex: 0 0 18px;
  margin-top: 1px;
  font-size: 16px;
  font-weight: 700;
}

.vmst-product-card__lines .is-hardware .vmst-product-card__icon {
  color: #fb923c;
}

.vmst-product-card__lines .is-benefit .vmst-product-card__icon {
  color: #4ade80;
}

.vmst-product-card .button,
.vmst-product-card .added_to_cart {
  width: 100%;
  justify-content: center;
  min-height: 54px;
  border-radius: 14px;
  font-size: 16px;
}

.product-load-section .section-actions {
  margin-top: 14px;
}

.shop-hero-compact {
  padding: 18px 20px;
  margin-bottom: 18px;
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.category-chip {
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
}

.product-page {
  padding-top: 18px;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) 300px;
  gap: 16px;
  padding: 18px;
  align-items: start;
}

.product-hero-copy {
  display: grid;
  gap: 12px;
  align-content: start;
}

.product-hero-copy .eyebrow,
.product-hero-copy h1,
.product-hero-copy p,
.product-hero-copy .price-row,
.product-hero-copy .vmst-spec-grid,
.product-hero-copy .product-actions {
  margin-top: 0;
}

.product-hero-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 45%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.82), rgba(30, 41, 59, 0.78));
}

.product-hero-banner__mark {
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.product-hero-banner__copy {
  min-width: 0;
}

.product-hero-banner__copy strong {
  display: block;
  color: #f8fafc;
  font-size: 16px;
  font-weight: 800;
}

.product-hero-banner__copy p {
  margin: 6px 0 0;
  color: rgba(226, 232, 240, 0.88);
  font-size: 13px;
  line-height: 1.6;
}

.product-hero-media--thumb {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.product-hero-thumb {
  display: block;
  width: 100%;
  max-height: 240px;
  object-fit: cover;
}

.product-short {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
}

.compact-product-price strong {
  font-size: 28px;
  letter-spacing: -0.04em;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

.product-actions form.cart {
  flex: 1 1 320px;
}

.vmst-billing-field {
  width: 100%;
  margin: 0 0 12px;
}

.vmst-billing-field label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vmst-billing-field select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 0 14px;
}

.vmst-billing-help {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.product-meta-panel {
  display: grid;
  gap: 12px;
  align-content: start;
}

.product-meta-panel__accent {
  padding: 16px 18px;
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(29, 78, 216, 0.18), rgba(15, 23, 42, 0.8));
}

.product-meta-panel__accent span {
  display: block;
  margin-bottom: 6px;
  color: rgba(191, 219, 254, 0.92);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-meta-panel__accent strong {
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 1.4;
}

.product-meta-panel__accent p {
  margin: 8px 0 0;
  color: rgba(226, 232, 240, 0.88);
  font-size: 13px;
  line-height: 1.65;
}

.check-list {
  display: grid;
  gap: 10px;
}

.check-list li {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.content-article {
  padding: 40px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.order-page {
  padding-top: 28px;
  padding-bottom: 72px;
}

.order-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 18px;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
}

.order-breadcrumbs a {
  color: #475569;
}

.order-breadcrumbs strong {
  color: #2563eb;
  font-weight: 800;
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 20px 24px;
  margin-bottom: 22px;
}

.order-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #4b5563;
  text-align: center;
  font-weight: 800;
}

.order-step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.order-step.is-active {
  color: #2563eb;
}

.order-step.is-active span {
  border-color: rgba(96, 165, 250, 0.5);
  color: #fff;
  background: rgba(59, 130, 246, 0.2);
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 390px;
  gap: 22px;
  align-items: start;
}

.order-config,
.order-summary {
  padding: 24px;
}

.order-config h1,
.order-summary h2 {
  margin: 0 0 18px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.order-selected-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.order-selected-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.order-selected-head small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
}

.order-selected-head h2 {
  margin: 0;
  font-size: 18px;
}

.order-cart-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.order-cart-head h2 {
  margin: 0 0 4px;
  font-size: 18px;
}

.order-cart-head small {
  color: var(--muted);
}

.order-cart-actions {
  display: flex;
  gap: 10px;
}

.button-danger {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.button-danger:hover {
  color: #fecaca;
  border-color: rgba(239, 68, 68, 0.32);
}

.order-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  padding-top: 16px;
}

.order-spec-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
}

.order-spec-row span {
  color: var(--muted);
}

.order-spec-row strong {
  text-align: right;
}

.order-cart-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  align-items: center;
}

.order-qty {
  display: flex;
  align-items: center;
  gap: 12px;
}

.order-qty-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
}

.order-qty-box button,
.order-qty-box strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}

.order-qty-box button {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 0;
}

.order-link-more {
  display: block;
  margin: 16px 0 0 auto;
  width: fit-content;
  color: #60a5fa;
}

.order-account-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
}

.order-account-note a {
  color: #60a5fa;
  font-weight: 700;
}

.order-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.order-input-wrap span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

.order-input-wrap input {
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0 16px;
}

.order-input-wrap textarea {
  width: 100%;
  min-height: 156px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  color: var(--text);
  padding: 16px 18px;
  font-size: 15px;
  line-height: 1.68;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  resize: vertical;
}

.order-input-wrap textarea::placeholder {
  color: #6b7280;
}

.order-input-wrap input:focus,
.order-input-wrap textarea:focus,
.order-field-block input:focus,
.order-field-block select:focus {
  outline: none;
  border-color: rgba(59, 130, 246, 0.62);
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.14);
}

.order-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--muted);
}

.order-divider::before,
.order-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.order-social-login {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.order-google-button {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 24px;
  font-weight: 800;
}

.order-payment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.order-payment-card {
  min-height: 74px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}

.order-payment-card.is-selected {
  border-color: rgba(96, 165, 250, 0.7);
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.25) inset;
}

.order-qr-layout {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 24px;
  margin-top: 18px;
}

.order-qr-box,
.order-transfer-box {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
}

.order-qr-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.order-qr-frame {
  width: 346px;
  height: 346px;
  padding: 22px;
  margin-bottom: 18px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 36px -26px rgba(15, 23, 42, 0.32);
}

.order-qr-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.order-qr-fake {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, #111 10px, transparent 10px) 0 0/32px 32px,
    linear-gradient(#111 10px, transparent 10px) 0 0/32px 32px,
    linear-gradient(90deg, transparent 22px, #111 22px) 0 0/32px 32px,
    linear-gradient(transparent 22px, #111 22px) 0 0/32px 32px,
    #fff;
  color: #111;
}

.order-qr-fake span {
  display: block;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.order-qr-fake small {
  display: block;
  font-size: 12px;
  font-weight: 700;
}

.order-transfer-box {
  display: grid;
  gap: 12px;
}

.order-transfer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.order-transfer-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.order-transfer-row span {
  color: var(--muted);
}

.order-payment-status {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.18);
}

.order-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #60a5fa;
  margin-top: 6px;
  box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.12);
}

.order-payment-status p {
  margin: 6px 0 0;
  color: var(--muted);
}

.order-payment-status.is-paid {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.22);
}

.order-payment-status__title {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}

.order-payment-status__message {
  font-weight: 600;
}

.order-payment-countdown {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #1d4ed8;
  font-weight: 700;
}

.order-success-panel {
  max-width: 720px;
  margin: 12px auto 0;
  padding: 34px 28px;
  border-radius: 24px;
  border: 1px solid rgba(34, 197, 94, 0.18);
  background:
    radial-gradient(circle at top, rgba(56, 189, 248, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.04);
  text-align: center;
}

.order-success-icon {
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
}

.order-success-icon__ring {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 3px solid #22c55e;
  background: #fff;
  display: block;
  box-shadow: 0 10px 24px -18px rgba(34, 197, 94, 0.5);
}

.order-success-icon__check {
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 10px;
  border-left: 4px solid #22c55e;
  border-bottom: 4px solid #22c55e;
  transform: rotate(-45deg);
  border-radius: 2px;
}

.order-success-panel h1 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 40px);
}

.order-success-code,
.order-success-total,
.order-success-message {
  margin: 12px 0 0;
}

.order-success-code {
  color: var(--muted);
  font-weight: 600;
}

.order-success-total {
  color: #22c55e;
  font-size: 24px;
  font-weight: 800;
}

.order-success-message {
  color: var(--muted);
  font-size: 16px;
}

.order-success-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.order-field-block {
  margin-top: 22px;
}

.order-field-block h3,
.order-field-block label {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
}

.order-field-block input,
.order-field-block select,
.order-field-block textarea {
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0 16px;
}

.order-field-block textarea {
  min-height: 118px;
  padding: 14px 16px;
  resize: vertical;
  line-height: 1.55;
}

.is-order-page .order-input-wrap input,
.is-order-page .order-input-wrap textarea,
.is-order-page .order-field-block input,
.is-order-page .order-field-block textarea,
.is-order-page .order-field-block select,
.is-order-page .order-inline-form input {
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  color: #1e293b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 1px 2px rgba(15, 23, 42, 0.04);
}

.is-order-page .order-input-wrap input::placeholder,
.is-order-page .order-input-wrap textarea::placeholder,
.is-order-page .order-field-block input::placeholder,
.is-order-page .order-field-block textarea::placeholder,
.is-order-page .order-inline-form input::placeholder {
  color: #94a3b8;
}

.is-order-page .order-input-wrap input:focus,
.is-order-page .order-input-wrap textarea:focus,
.is-order-page .order-field-block input:focus,
.is-order-page .order-field-block textarea:focus,
.is-order-page .order-field-block select:focus,
.is-order-page .order-inline-form input:focus {
  border-color: #60a5fa;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.18), 0 1px 2px rgba(15, 23, 42, 0.05);
}

.order-field-block--note {
  margin-top: 26px;
}

.order-input-wrap--textarea {
  display: block;
  margin-bottom: 0;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(245, 249, 255, 0.96) 0%, rgba(239, 245, 255, 0.9) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.order-input-wrap--textarea span {
  margin-bottom: 14px;
}

.order-input-help {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 500;
}

.order-domain-note {
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(239, 246, 255, 0.98), rgba(240, 253, 250, 0.9)),
    #eff6ff;
  color: #1e3a8a;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.08);
}

.order-domain-note strong {
  display: block;
  margin-bottom: 8px;
  color: #0f172a;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.order-domain-note p {
  margin: 0 0 10px;
  color: #334155;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 600;
}

.order-domain-note a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  color: #0b74d1;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.order-domain-note a::after {
  content: ">";
  font-size: 12px;
}

html.has-vmst-modal {
  overflow: hidden;
}

.order-validation-modal[hidden] {
  display: none !important;
}

.order-validation-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 22px;
}

.order-validation-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(15, 23, 42, 0.54);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.order-validation-modal__card {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  padding: 28px;
  border: 1px solid rgba(191, 219, 254, 0.88);
  border-radius: 24px;
  background:
    radial-gradient(360px 180px at 12% 0%, rgba(14, 165, 233, 0.16), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 251, 255, 0.98));
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.26);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 160ms ease, transform 160ms ease;
}

.order-validation-modal.is-visible .order-validation-modal__card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.order-validation-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #ffffff;
  color: #475569;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.order-validation-modal__close:hover,
.order-validation-modal__close:focus-visible {
  color: #0b74d1;
  border-color: #93c5fd;
}

.order-validation-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eff6ff;
  color: #0b74d1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.order-validation-modal h2 {
  margin: 18px 44px 10px 0;
  color: #172033;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.order-validation-modal p {
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 650;
}

.order-validation-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.order-validation-modal__actions .button {
  min-height: 48px;
}

.is-order-page .order-field-block input.is-invalid {
  border-color: #ef4444;
  background: #fffafa;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.13), 0 1px 2px rgba(15, 23, 42, 0.05);
}

.order-cycles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.order-cycle {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 14px 12px;
  color: var(--text);
  cursor: pointer;
}

.order-cycle span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 600;
}

.order-cycle strong {
  font-size: 18px;
  letter-spacing: -0.03em;
}

.order-cycle.is-selected {
  border-color: rgba(96, 165, 250, 0.7);
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.25) inset;
}

.order-coupon-row {
  margin-bottom: 14px;
}

.order-coupon-tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.12);
  color: #fcd34d;
  font-weight: 700;
}

.order-inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 156px;
  gap: 8px;
}

.order-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.order-note.is-success {
  color: #15803d;
  font-weight: 700;
}

.order-note.is-error {
  color: #b91c1c;
  font-weight: 700;
}

.order-summary-box {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
}

.order-summary-line,
.order-summary-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.order-summary-line span {
  color: var(--muted);
}

.order-summary-total {
  padding-top: 16px;
  align-items: center;
}

.order-summary-total strong {
  color: #f59e0b;
  font-size: 24px;
}

.order-checklist {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.order-checklist label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.order-checklist a {
  color: #60a5fa;
}

.order-summary-actions {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.order-checklist--summary {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  background: #f8fbff;
  color: #475569;
  font-size: 13px;
  line-height: 1.5;
}

.order-checklist--summary input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #0b74d1;
}

.order-submit {
  width: 100%;
  margin-top: 18px;
}

.order-submit.is-loading,
.order-submit:disabled {
  opacity: 0.72;
  cursor: wait;
  pointer-events: none;
}

.order-summary-actions .order-submit {
  margin-top: 0;
}

.order-back {
  display: block;
  margin-top: 14px;
  text-align: center;
  color: #60a5fa;
}

.feature-grid,
.testimonial-grid,
.faq-list {
  gap: 16px;
}

.feature-card h3,
.testimonial-card strong,
.faq-item h3 {
  font-size: 17px;
}

.faq-item p,
.feature-card p,
.testimonial-card p {
  font-size: 14px;
  line-height: 1.65;
}

.woocommerce ul.products {
  gap: 16px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link,
.woocommerce div.product .summary {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.woocommerce ul.products li.product .button {
  min-height: 42px;
}

@media (max-width: 1100px) {
  .order-layout {
    grid-template-columns: 1fr;
  }

  .order-cycles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-qr-layout {
    grid-template-columns: 1fr;
  }

  .order-success-panel {
    padding: 28px 18px;
  }

  .order-success-actions {
    flex-direction: column;
  }

  .order-success-actions .button {
    width: 100%;
  }

  .order-inline-form {
    grid-template-columns: 1fr;
  }

  .vmst-compact-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .order-specs-grid {
    grid-template-columns: 1fr;
  }

  .order-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding: 10px 8px;
    margin-bottom: 14px;
  }

  .order-step {
    gap: 5px;
    font-size: clamp(9px, 2.35vw, 11px);
    line-height: 1.18;
  }

  .order-step span {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .order-step strong {
    display: block;
    max-width: 100%;
    font-size: inherit;
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .order-cycles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .order-cycle {
    min-height: 88px;
    padding: 12px 8px;
  }

  .order-cycle span {
    margin-bottom: 6px;
    font-size: 13px;
  }

  .order-cycle strong {
    font-size: clamp(14px, 3.6vw, 16px);
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .order-form-grid,
  .order-payment-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .order-cart-head,
  .order-cart-row,
  .order-qty {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-config,
  .order-summary {
    padding: 18px;
  }

  .vmst-compact-grid,
  .pricing-grid,
  .woocommerce ul.products,
  .woocommerce ul.products[class*="columns-"] {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(248px, 82%);
    grid-template-columns: none;
    gap: 14px;
    margin: 0 -18px;
    padding: 2px 18px 14px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-padding-left: 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .vmst-compact-grid::-webkit-scrollbar,
  .pricing-grid::-webkit-scrollbar,
  .woocommerce ul.products::-webkit-scrollbar,
  .woocommerce ul.products[class*="columns-"]::-webkit-scrollbar {
    display: none;
  }

  .vmst-compact-grid > *,
  .pricing-grid > *,
  .woocommerce ul.products > li.product,
  .woocommerce ul.products[class*="columns-"] > li.product {
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .product-load-section .vmst-compact-grid {
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-template-columns: 1fr;
    margin: 0;
    padding: 0;
    overflow: visible;
    overscroll-behavior-x: auto;
    scroll-snap-type: none;
  }

  .product-load-section .vmst-compact-grid > * {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .vmst-spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy h1 {
    max-width: none;
  }

  .product-hero,
  .store-card,
  .shop-hero {
    padding: 18px;
  }

  .order-input-wrap--textarea {
    padding: 14px;
    border-radius: 18px;
  }

  .order-input-wrap textarea {
    min-height: 136px;
    padding: 14px 16px;
    border-radius: 14px;
  }

  .info-section,
  .contact-form-card {
    padding: 20px;
  }

  .news-card__body h2 {
    font-size: 20px;
  }
}

/* Linode-inspired light theme */
:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-2: #eff4f9;
  --text: #1f2937;
  --muted: #5f6b7a;
  --border: rgba(15, 23, 42, 0.1);
  --primary: #0072ce;
  --primary-strong: #005ea8;
  --accent: #eaf3fb;
  --success: #15803d;
  --shadow-card: 0 20px 44px -30px rgba(15, 23, 42, 0.22);
  --shadow-soft: 0 18px 36px -24px rgba(0, 114, 206, 0.44);
}

body {
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(1100px 580px at 10% -10%, rgba(0, 114, 206, 0.1), transparent 62%),
    radial-gradient(900px 540px at 100% 0%, rgba(51, 153, 255, 0.08), transparent 60%),
    linear-gradient(180deg, #fbfdff 0%, #f5f7fb 46%, #f1f5f9 100%);
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 28px -24px rgba(15, 23, 42, 0.26);
}

.brand-mark {
  background: linear-gradient(180deg, #2388dc 0%, #0072ce 100%);
}

.brand-text em,
.brand-line,
.gradient-brand-text,
.price-tag,
.vmst-portal-card strong,
.dashboard-mark,
.vmst-product-card__current,
.content-article a,
.site-footer a:hover,
.header-nav a:hover,
.nav-link:hover,
.text-link:hover {
  color: var(--primary);
}

.header-nav a,
.nav-link,
.text-link {
  color: #334155;
}

.header-nav .sub-menu {
  background: #ffffff;
  border-color: var(--border);
  box-shadow: var(--shadow-card);
}

.header-nav .sub-menu a {
  color: var(--text);
}

.header-nav .sub-menu a:hover {
  background: var(--accent);
  color: var(--primary);
}

.button-outline,
.light-button {
  background: #ffffff;
  border-color: rgba(0, 114, 206, 0.24);
  color: var(--primary);
}

.button-outline:hover,
.light-button:hover {
  background: var(--accent);
  border-color: rgba(0, 114, 206, 0.38);
  color: var(--primary-strong);
}

.hero-bg {
  background:
    radial-gradient(1000px 520px at 15% 0%, rgba(0, 114, 206, 0.14), transparent 62%),
    radial-gradient(780px 460px at 88% 16%, rgba(51, 153, 255, 0.1), transparent 60%);
}

.grid-bg {
  background-image:
    linear-gradient(to right, rgba(0, 114, 206, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 114, 206, 0.055) 1px, transparent 1px);
}

.hero-copy,
.hero-panel,
.store-banner,
.page-hero,
.shop-hero,
.product-hero,
.product-features,
.product-content,
.content-article,
.store-card,
.glass-card,
.vmst-portal-card,
.vmst-compact-card,
.vmst-product-card,
.woocommerce ul.products li.product .woocommerce-loop-product__link,
.woocommerce div.product .summary,
.site-footer,
.mobile-bottom-nav {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.98));
  border-color: var(--border);
  box-shadow: var(--shadow-card);
}

.eyebrow,
.trust-pills li,
.hero-stats li,
.dashboard-stats article,
.spec-card,
.meta-item,
.category-chip,
.vmst-spec-chip,
.contact-info-list div,
.news-pagination .page-numbers,
.product-avatar-wrap,
.product-avatar-large,
.terminal-card pre,
.mail-layout aside,
.mail-layout nav a.active,
.feature-icon {
  background: var(--surface-2);
  border-color: var(--border);
}

.eyebrow {
  color: var(--primary);
}

.trust-pills li,
.hero-stats strong,
.traffic-row strong,
.category-chip strong,
.price-row,
.vmst-compact-card__price,
.dashboard-stats strong,
.contact-form input,
.contact-form select,
.contact-form textarea,
.woocommerce .quantity .qty,
.mail-layout nav a.active,
.mail-layout nav a,
.header-nav .sub-menu a,
.news-pagination .page-numbers.current {
  color: var(--text);
}

.dashboard-label,
.traffic-row span,
.dashboard-stats span {
  color: var(--muted);
}

.dashboard-dots span {
  background: #cbd5e1;
}

.meter {
  background: #d9e6f2;
}

.traffic-bars span {
  background: linear-gradient(180deg, rgba(0, 114, 206, 0.82), rgba(0, 114, 206, 0.16));
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.woocommerce .quantity .qty,
.news-pagination .page-numbers,
.mail-layout nav a,
.mail-list article,
.mail-layout aside {
  background: #ffffff;
  border-color: var(--border);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
}

.news-card__thumb {
  background: linear-gradient(135deg, rgba(0, 114, 206, 0.16), rgba(51, 153, 255, 0.1));
}

.news-card__placeholder,
.button-primary,
.price-badge,
.testimonial-user span,
.compose-button,
.woocommerce .single_add_to_cart_button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
  color: #ffffff;
}

.section-alt {
  background: rgba(0, 114, 206, 0.035);
}

.site-footer {
  border-top: 1px solid var(--border);
}

.site-footer a {
  color: var(--muted);
}

.footer-bottom,
.dashboard-footer,
.dashboard-head,
.terminal-head,
.mail-header,
.card-head,
.mail-list article {
  border-color: var(--border);
}

.mobile-bottom-nav {
  border-top: 1px solid var(--border);
  box-shadow: 0 -16px 40px -30px rgba(15, 23, 42, 0.28);
}

.mobile-bottom-nav__item {
  color: var(--muted);
}

.mobile-bottom-nav__item:hover,
.mobile-bottom-nav__item:focus-visible,
.mobile-bottom-nav__item.is-active {
  color: var(--primary);
  background: rgba(0, 114, 206, 0.08);
}

.mobile-bottom-nav__icon {
  background: rgba(0, 114, 206, 0.08);
  color: var(--primary);
}

.mobile-bottom-nav__item.is-active .mobile-bottom-nav__icon {
  background: rgba(0, 114, 206, 0.14);
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(0, 114, 206, 0.12);
}

@media (max-width: 760px) {
  .site-header {
    background: rgba(255, 255, 255, 0.96);
  }
}

.seo-copy-block {
  margin-top: 18px;
}

.seo-copy-block h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.seo-copy-block p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.78;
}

.seo-link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-priority-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  min-height: 100%;
}

.seo-priority-card h3 {
  margin: 0;
}

.seo-priority-card p {
  margin: 0;
}

.seo-landing-faq {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sales-landing-page {
  display: grid;
  gap: 20px;
}

.seo-landing-empty {
  display: grid;
  gap: 14px;
  text-align: left;
}

@media (max-width: 1100px) {
  .seo-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .seo-link-grid,
  .seo-landing-faq {
    grid-template-columns: 1fr;
  }
}

.portal-shell {
  display: grid;
  gap: 24px;
}

.portal-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 28px;
  overflow: hidden;
}

.portal-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -40px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.24), transparent 68%);
  pointer-events: none;
}

.portal-hero__copy h1,
.portal-panel h2,
.portal-aff-card h3,
.portal-order-card h3 {
  margin: 14px 0 0;
  letter-spacing: -0.04em;
}

.portal-hero__copy p,
.portal-panel__head p,
.portal-aff-card p,
.portal-order-card p,
.portal-affiliate-code small,
.portal-kpi small {
  color: var(--muted);
  line-height: 1.7;
}

.portal-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.portal-hero__stats,
.portal-affiliate-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.portal-kpi,
.portal-stat-card,
.portal-aff-card,
.portal-order-card,
.portal-host-grid div,
.portal-affiliate-code {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.portal-kpi--accent {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(124, 58, 237, 0.18));
}

.portal-kpi span,
.portal-stat-card span,
.portal-affiliate-code span,
.portal-order-meta span,
.portal-host-grid span,
.portal-order-code,
.portal-aff-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portal-kpi strong,
.portal-stat-card strong,
.portal-affiliate-code strong {
  display: block;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.08;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.portal-panel {
  padding: 28px;
}

.portal-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.eyebrow--soft {
  background: rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
}

.portal-aff-grid,
.portal-order-grid {
  display: grid;
  gap: 16px;
}

.portal-aff-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portal-aff-card h3 {
  font-size: 20px;
}

.portal-aff-card input {
  width: 100%;
  min-height: 48px;
  margin: 10px 0 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(7, 12, 24, 0.45);
  color: #fff;
}

.portal-table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 12, 24, 0.3);
}

.portal-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.portal-table th,
.portal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.portal-table th {
  color: #e2e8f0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.portal-table td {
  color: #cbd5e1;
}

.portal-table tbody tr:last-child td {
  border-bottom: 0;
}

.portal-table a {
  color: #fff;
}

.portal-table code {
  color: #bfdbfe;
  word-break: break-all;
}

.portal-order-card__top,
.portal-order-badges,
.portal-order-meta,
.portal-host-grid {
  display: grid;
  gap: 12px;
}

.portal-order-card__top {
  grid-template-columns: 1fr auto;
  align-items: start;
}

.portal-order-badges {
  justify-items: end;
}

.portal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
}

.portal-badge--paid {
  background: rgba(52, 211, 153, 0.16);
  color: #bbf7d0;
}

.portal-badge--pending {
  background: rgba(251, 191, 36, 0.16);
  color: #fde68a;
}

.portal-badge--review {
  background: rgba(248, 113, 113, 0.16);
  color: #fecaca;
}

.portal-badge--service {
  background: rgba(96, 165, 250, 0.16);
  color: #bfdbfe;
}

.portal-order-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 18px 0;
}

.portal-host-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.portal-order-actions {
  margin-top: 16px;
}

@media (max-width: 1024px) {
  .portal-hero,
  .portal-grid {
    grid-template-columns: 1fr;
  }

  .portal-aff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .portal-hero,
  .portal-panel {
    padding: 20px;
  }

  .portal-hero__stats,
  .portal-affiliate-summary,
  .portal-aff-grid,
  .portal-order-meta,
  .portal-host-grid,
  .portal-order-card__top {
    grid-template-columns: 1fr;
  }

  .portal-order-badges {
    justify-items: start;
  }
}

.portal-vx {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #334155;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.portal-vx,
.portal-vx *,
.portal-vx *::before,
.portal-vx *::after {
  box-sizing: border-box;
}

.portal-vx__sidebar,
.portal-vx__content,
.portal-vx-panel,
.portal-vx-hero__banner,
.portal-vx-stat,
.portal-vx-subpanel,
.portal-vx-aff-card {
  background: #fff;
  border: 1px solid #dbe7f5;
  border-radius: 20px;
  box-shadow: 0 16px 42px -28px rgba(15, 23, 42, 0.22);
  min-width: 0;
  max-width: 100%;
}

.portal-vx__sidebar {
  position: sticky;
  top: 96px;
  padding: 20px 16px;
  max-height: calc(100vh - 112px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.portal-vx__sidebar::-webkit-scrollbar {
  width: 6px;
}

.portal-vx__sidebar::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #cbd5e1;
}

.portal-vx__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e7eef7;
}

.portal-vx__brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #60a5fa, #2563eb);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.portal-vx__brand strong,
.portal-vx__menu-link,
.portal-vx__content h1,
.portal-vx-panel h2,
.portal-vx-subpanel h3,
.portal-vx-aff-card h4,
.portal-vx-list strong,
.portal-vx-table strong {
  color: #334155;
}

.portal-vx__brand small,
.portal-vx__header p,
.portal-vx__menu-label,
.portal-vx-stat span,
.portal-vx-list small,
.portal-vx-muted,
.portal-vx-empty p {
  color: #64748b;
}

.portal-vx__menu {
  display: grid;
  gap: 6px;
}

.portal-vx__menu-label {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portal-vx__menu-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.portal-vx__menu-link:hover,
.portal-vx__menu-link.is-active {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  color: #fff;
  transform: translateY(-1px);
}

.portal-vx__content {
  padding: 22px;
  display: grid;
  gap: 20px;
  min-width: 0;
  max-width: 100%;
}

.portal-vx .button-outline {
  background: #fff;
  border-color: #93c5fd;
  color: #3b82f6;
}

.portal-vx .button-outline:hover {
  border-color: #60a5fa;
  color: #2563eb;
}

.portal-vx__header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}

.portal-vx__header h1 {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 600;
}

.portal-vx__header p {
  margin: 8px 0 0;
  max-width: 780px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.portal-vx-hero {
  display: grid;
  gap: 18px;
}

.portal-vx-hero__banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 16px;
  padding: 20px;
  background: #eff6ff;
  color: #334155;
}

.portal-vx-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: #dbeafe;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.portal-vx-hero__banner h2 {
  margin: 12px 0 0;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 600;
}

.portal-vx-hero__banner p {
  margin: 10px 0 0;
  color: #334155;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.portal-vx-balance {
  padding: 18px;
  border-radius: 16px;
  background: #dbeafe;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
}

.portal-vx-balance span {
  color: #334155;
  font-weight: 600;
  font-size: 14px;
}

.portal-vx-balance strong {
  font-size: 14px;
  line-height: 1.5;
  color: #334155;
  font-weight: 600;
}

.portal-vx-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.portal-vx-stat {
  padding: 18px;
  display: grid;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.portal-vx-stat:hover,
.portal-vx-stat:focus-visible {
  border-color: #8cc2ff;
  box-shadow: 0 18px 44px -26px rgba(11, 116, 209, 0.38);
  transform: translateY(-1px);
  text-decoration: none;
}

.portal-vx-stat strong {
  color: #334155;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.portal-vx-stat span {
  font-size: 14px;
  font-weight: 600;
}

.portal-vx-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 18px;
  min-width: 0;
  max-width: 100%;
}

.portal-vx-panel,
.portal-vx-subpanel {
  padding: 20px;
}

.portal-vx-panel {
  overflow-x: auto;
}

.portal-vx-panel--services {
  overflow-x: clip;
  overflow-y: visible;
}

.portal-vx-table-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.portal-vx-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.portal-vx-panel__head h2,
.portal-vx-subpanel h3 {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 600;
}

.portal-vx-panel__head a,
.portal-vx-panel__head span {
  color: #60a5fa;
  font-weight: 700;
  font-size: 14px;
}

.portal-vx-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.portal-vx-table th,
.portal-vx-table td {
  padding: 9px 10px;
  border-bottom: 1px solid #e7eef7;
  text-align: left;
  vertical-align: middle;
  color: #475569;
  font-size: 12px;
  white-space: nowrap;
}

.portal-vx-table thead th {
  background: #eff6ff;
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.portal-vx-table a,
.portal-vx-table strong,
.portal-vx-table small {
  white-space: nowrap;
}

.portal-vx-table small {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  line-height: 1.3;
}

.portal-vx-table tbody tr:last-child td {
  border-bottom: 0;
}

.portal-vx-status {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
  white-space: nowrap;
}

.portal-vx-status--active,
.portal-vx-status--paid,
.portal-vx-status--completed {
  background: #dcfce7;
  color: #166534;
}

.portal-vx-status--pending,
.portal-vx-status--provisioning,
.portal-vx-status--review {
  background: #fef3c7;
  color: #92400e;
}

.portal-vx-status--inactive,
.portal-vx-status--failed,
.portal-vx-status--expired {
  background: #fee2e2;
  color: #b91c1c;
}

.vmst-expiry-badge {
  display: inline-grid;
  gap: 2px;
  align-items: center;
  justify-items: center;
  width: fit-content;
  max-width: 100%;
  min-width: 112px;
  padding: 8px 12px;
  border-radius: 18px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.05);
}

.vmst-expiry-badge__date {
  display: block;
  font-size: 13px;
  letter-spacing: -0.01em;
}

.vmst-expiry-badge__days {
  display: block;
  font-size: 12px;
  font-weight: 900;
}

.vmst-expiry-badge.is-neutral {
  background: #e2e8f0;
  color: #475569;
}

.vmst-expiry-badge.is-success {
  background: #dcfce7;
  color: #166534;
}

.vmst-expiry-badge.is-info {
  background: #dbeafe;
  color: #1d4ed8;
}

.vmst-expiry-badge.is-warning {
  background: #fef3c7;
  color: #92400e;
}

.vmst-expiry-badge.is-danger {
  background: #fee2e2;
  color: #b91c1c;
}

.portal-vx-empty {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 160px;
  padding: 20px;
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  text-align: center;
}

.portal-vx-empty p {
  margin: 0;
  max-width: 520px;
  font-size: 14px;
  line-height: 1.7;
}

.portal-vx-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.portal-vx-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f8fbff;
  border: 1px solid #e6eef8;
}

.portal-vx-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  align-items: center;
  min-width: max-content;
}

.portal-vx-actions form {
  margin: 0;
  display: inline-flex;
}

.portal-vx-actions .button,
.portal-vx-table .button-small {
  min-height: 28px;
  padding: 0 9px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 28px;
  white-space: nowrap;
}

.portal-vx .portal-vx-panel--scroll {
  overflow-x: auto;
  overflow-y: hidden;
}

.portal-vx .portal-vx-table {
  width: 100%;
  min-width: 860px;
  table-layout: auto;
}

.portal-vx-panel--services .portal-vx-table {
  min-width: 940px;
}

.portal-vx-panel--services .portal-vx-actions {
  min-width: 0;
  max-width: 330px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.portal-vx .portal-vx-table--dashboard {
  min-width: 650px;
}

.portal-vx .portal-vx-table--tickets {
  min-width: 980px;
}

.portal-vx .portal-vx-click-row {
  cursor: pointer;
  transition: background 140ms ease;
}

.portal-vx .portal-vx-click-row:hover td {
  background: #f8fbff;
}

.portal-vx .portal-vx-table th,
.portal-vx .portal-vx-table td,
.portal-vx .portal-vx-table a,
.portal-vx .portal-vx-table strong,
.portal-vx .portal-vx-table small,
.portal-vx .portal-vx-status {
  white-space: nowrap !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

.portal-vx .portal-vx-status {
  width: max-content;
  max-width: none;
  flex: 0 0 auto;
}

.portal-vx-form span {
  color: #475569;
  font-size: 14px;
}

.portal-vx-form input,
.portal-vx-form select,
.portal-vx-form textarea,
.portal-vx-affiliate-link input,
.portal-vx-aff-card input {
  border-color: #cbd5e1;
  background: #fff;
  color: #334155;
}

.portal-vx-form__actions,
.portal-vx-support-links,
.portal-vx-affiliate-link__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.portal-vx-upgrade-form {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-top: 16px;
}

.portal-vx-upgrade-select {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.portal-vx-upgrade-select span {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.portal-vx-upgrade-select select {
  width: 100%;
  min-height: 54px;
  padding: 0 46px 0 16px;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  appearance: none;
  -webkit-appearance: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230b74d1' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 16px center / 18px,
    linear-gradient(180deg, #ffffff, #f8fbff);
  color: #1e293b;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 14px 30px -24px rgba(37, 99, 235, 0.45);
  cursor: pointer;
}

.portal-vx-upgrade-select select:focus {
  outline: none;
  border-color: #0b74d1;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

.portal-vx-upgrade-button {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 900;
  line-height: 54px;
  white-space: nowrap;
}

.portal-vx-affiliate-link {
  display: grid;
  gap: 10px;
}

.portal-vx-affiliate-link label {
  color: #475569;
  font-weight: 700;
  font-size: 14px;
}

.portal-vx-affiliate-link input {
  flex: 1 1 360px;
  min-height: 46px;
  padding: 11px 13px;
  border-radius: 12px;
  font-size: 14px;
}

.portal-vx-aff-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.portal-vx-aff-card {
  padding: 16px;
  display: grid;
  gap: 8px;
  background: #f8fbff;
}

.portal-vx-aff-card span {
  color: #60a5fa;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.portal-vx-aff-card h4,
.portal-vx-aff-card p {
  margin: 0;
}

.portal-vx-aff-card input {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border-radius: 12px;
  font-size: 14px;
}

.portal-vx-service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
  gap: 16px;
  margin-top: 18px;
  align-items: start;
  min-width: 0;
  max-width: 100%;
}

.portal-vx-service-detail__side {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 112px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 2px;
  min-width: 0;
  max-width: 100%;
}

.portal-vx-service-detail__main {
  min-width: 0;
  max-width: 100%;
}

.portal-vx-service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.portal-vx-service-meta,
.portal-vx-service-credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
  max-width: 100%;
}

.portal-vx-service-meta article,
.portal-vx-service-credentials article {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f8fbff;
  border: 1px solid #e6eef8;
}

.portal-vx-service-credentials article.is-wide {
  grid-column: 1 / -1;
  background: #eef6ff;
  border-color: #cfe2ff;
}

.portal-vx-service-meta span,
.portal-vx-service-credentials span,
.portal-vx-rebuild-form span {
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.portal-vx-service-meta strong,
.portal-vx-service-credentials strong {
  color: #334155;
  font-size: 14px;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.portal-vx-service-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.portal-vx-service-actions form,
.portal-vx-rebuild-form {
  margin: 0;
}

.portal-vx-service-actions .button,
.portal-vx-rebuild-form .button {
  width: 100%;
}

.portal-vx-service-actions--demo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.portal-vx-vps-tool {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 108px;
  padding: 16px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  color: #0f5fb5;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.portal-vx-vps-tool:hover {
  transform: translateY(-2px);
  border-color: #bfdbfe;
  box-shadow: 0 20px 38px rgba(37, 99, 235, 0.12);
}

.portal-vx-vps-tool__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.portal-vx-vps-tool.is-success .portal-vx-vps-tool__icon {
  background: #dcfce7;
  color: #16a34a;
}

.portal-vx-vps-tool.is-danger .portal-vx-vps-tool__icon {
  background: #fee2e2;
  color: #dc2626;
}

.portal-vx-vps-tool.is-neutral .portal-vx-vps-tool__icon {
  background: #f1f5f9;
  color: #334155;
}

.portal-vx-vps-tools-title {
  margin-top: 22px;
}

.portal-vx-rebuild-form {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e7eef7;
}

.portal-vx-note {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

@media (max-width: 1180px) {
  .news-single__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .news-single__left,
  .news-single__right {
    position: static;
  }

  .news-single__related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-single__feedback-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .portal-vx {
    grid-template-columns: 1fr;
  }

  .portal-vx__sidebar {
    position: static;
    max-height: 70vh;
    overflow-y: auto;
  }

  .portal-vx-hero__banner,
  .portal-vx-grid,
  .portal-vx-service-detail {
    grid-template-columns: 1fr;
  }

  .portal-vx-service-detail__side {
    position: static;
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
  }

  .portal-vx-stats,
  .portal-vx-aff-cards,
  .portal-vx-service-meta,
  .portal-vx-service-credentials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portal-vx-upgrade-form {
    grid-template-columns: 1fr;
  }

  .portal-vx-upgrade-button {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .news-single__section {
    padding: 20px 0 34px;
  }

  .news-single__breadcrumbs {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .news-single__header h1 {
    font-size: 28px;
  }

  .news-single__author img,
  .news-single__author-box-brand img {
    width: 42px;
    height: 42px;
  }

  .news-single__author strong {
    font-size: 14px;
  }

  .news-single__author span,
  .news-single__meta,
  .news-single__content,
  .news-single__content p,
  .news-single__content li,
  .news-single__author-box-content {
    font-size: 13px;
  }

  .news-single__content h2 {
    font-size: 20px;
  }

  .news-single__content h3 {
    font-size: 16px;
  }

  .news-single__sharebar,
  .news-single__author-box-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-single__socials a,
  .news-single__author-box-socials a {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .news-single__feedback-grid,
  .news-single__related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-single__feedback-item {
    min-height: 74px;
    padding: 10px 6px;
    gap: 4px;
  }

  .news-single__feedback-item span {
    font-size: 24px;
  }

  .news-single__feedback-item strong {
    font-size: 12px;
  }

  .news-single__feedback-note {
    font-size: 12px;
  }

  .news-single__related h2 {
    margin-bottom: 14px;
    font-size: 24px;
  }

  .category-longform__toc {
    padding: 14px 14px 16px;
  }

  .category-longform__toc a,
  .category-longform__meta,
  .category-longform__content,
  .category-longform__content p {
    font-size: 13px;
  }

  .category-longform__content h3 {
    font-size: 22px;
  }

  .category-longform__content h4 {
    font-size: 16px;
  }

  .portal-vx__content {
    padding: 18px;
  }

  .portal-vx__header,
  .portal-vx-list li,
  .portal-vx-affiliate-link__row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .portal-vx__header .button {
    width: 100%;
  }

  .portal-vx-stats,
  .portal-vx-aff-cards,
  .portal-vx-grid,
  .portal-vx-hero__banner,
  .portal-vx-service-meta,
  .portal-vx-service-credentials,
  .portal-vx-service-actions {
    grid-template-columns: 1fr;
  }

  .portal-vx-panel__head,
  .portal-vx-support-links,
  .portal-vx-form__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .portal-vx-table {
    min-width: 720px;
  }

  .portal-vx-panel--services .portal-vx-table {
    min-width: 820px;
  }

  .portal-vx-panel--services .portal-vx-actions {
    max-width: 280px;
  }

  .portal-vx-upgrade-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .portal-vx-upgrade-select select,
  .portal-vx-upgrade-button {
    min-height: 50px;
  }

  .portal-vx-upgrade-button {
    width: 100%;
    line-height: 50px;
  }
}

.vmst-chat-widget {
  position: fixed;
  left: 18px;
  bottom: 20px;
  z-index: 80;
}

.vmst-chat-toggle,
.vmst-social-float__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 41px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 14px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.vmst-chat-toggle {
  background: linear-gradient(135deg, #10b981, #0f172a);
}

.vmst-chat-toggle__icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 9px;
}

.vmst-chat-toggle,
.vmst-social-float__link {
  animation: vmst-float-shake 6s ease-in-out infinite;
  transform-origin: center;
}

.vmst-chat-toggle:hover,
.vmst-chat-toggle:focus-visible,
.vmst-social-float__link:hover,
.vmst-social-float__link:focus-visible {
  transform: translateY(-2px);
}

.vmst-chat-panel {
  width: min(360px, calc(100vw - 32px));
  margin-top: 14px;
  padding: 18px;
  border: 1px solid #dbe7f5;
  border-radius: 24px;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(59, 130, 246, 0.12), transparent 52%),
    radial-gradient(100% 120% at 100% 0%, rgba(96, 165, 250, 0.1), transparent 48%),
    #ffffff;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.16);
}

.vmst-chat-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.vmst-chat-panel__header strong {
  display: block;
  font-size: 17px;
  color: #1e293b;
}

.vmst-chat-panel__header p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

.vmst-chat-panel__close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #eef4fb;
  color: #475569;
  font-size: 22px;
  cursor: pointer;
}

.vmst-chat-messages {
  display: grid;
  gap: 12px;
  max-height: 320px;
  margin-bottom: 14px;
  padding-right: 4px;
  overflow-y: auto;
}

.vmst-chat-empty {
  padding: 18px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid #dbe7f5;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

.vmst-chat-message {
  display: grid;
  gap: 6px;
}

.vmst-chat-message--admin {
  justify-items: start;
}

.vmst-chat-message--customer {
  justify-items: end;
}

.vmst-chat-message__author,
.vmst-chat-message__time {
  color: #64748b;
  font-size: 12px;
}

.vmst-chat-message__bubble {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 18px;
  color: #334155;
  font-size: 14px;
  line-height: 1.55;
}

.vmst-chat-message--admin .vmst-chat-message__bubble {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid #bfdbfe;
}

.vmst-chat-message--customer .vmst-chat-message__bubble {
  background: linear-gradient(135deg, #f8fafc, #eef4ff);
  border: 1px solid #d6e3f5;
}

.vmst-chat-form {
  display: grid;
  gap: 12px;
}

.vmst-chat-form__identity {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.vmst-chat-form input,
.vmst-chat-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d7e2f0;
  border-radius: 14px;
  background: #ffffff;
  color: #1e293b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.vmst-chat-form input::placeholder,
.vmst-chat-form textarea::placeholder {
  color: #94a3b8;
}

.vmst-chat-form input:focus,
.vmst-chat-form textarea:focus {
  outline: none;
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.vmst-chat-form textarea {
  resize: vertical;
  min-height: 96px;
}

.vmst-chat-form__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vmst-chat-status {
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
}

.vmst-chat-status.is-error {
  color: #fca5a5;
}

.vmst-social-float {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 80;
  display: grid;
  gap: 8px;
}

.vmst-social-float__link {
  justify-content: center;
  min-width: 41px;
  padding: 0 11px;
}

.vmst-social-float__link--zalo {
  background: linear-gradient(135deg, #0ea5e9, #1d4ed8);
}

.vmst-social-float__link--facebook {
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  font-size: 20px;
  font-family: Georgia, serif;
}

@keyframes vmst-float-shake {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  2% {
    transform: translate3d(0, -1px, 0) rotate(-3deg);
  }

  4% {
    transform: translate3d(0, 0, 0) rotate(3deg);
  }

  6% {
    transform: translate3d(0, -1px, 0) rotate(-2deg);
  }

  8% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@media (max-width: 767px) {
  .vmst-chat-widget,
  .vmst-social-float {
    bottom: 96px;
  }

  .vmst-chat-toggle__label {
    display: none;
  }

  .vmst-chat-toggle,
  .vmst-social-float__link {
    min-width: 41px;
    padding: 0 10px;
  }

  .vmst-chat-form__identity {
    grid-template-columns: 1fr;
  }
}

.portal-vx-timeline {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.portal-vx-progress-accordion {
  margin: 22px 0 0;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.portal-vx-progress-accordion__summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
}

.portal-vx-progress-accordion__summary::-webkit-details-marker {
  display: none;
}

.portal-vx-progress-accordion__title {
  display: grid;
  gap: 4px;
}

.portal-vx-progress-accordion__title strong {
  color: #1e293b;
  font-size: 18px;
  line-height: 1.35;
}

.portal-vx-progress-accordion__title small {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.portal-vx-progress-accordion[open] > .portal-vx-progress-accordion__summary .portal-vx-timeline__chevron {
  transform: rotate(180deg);
  background: #dbeafe;
}

.portal-vx-timeline--inside {
  margin: 0;
  border: 0;
  border-top: 1px solid #e2e8f0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.portal-vx-timeline__item {
  position: relative;
  border-bottom: 1px solid #e2e8f0;
}

.portal-vx-timeline__item:last-child {
  border-bottom: 0;
}

.portal-vx-timeline__details {
  display: block;
}

.portal-vx-timeline__summary {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 24px;
  gap: 12px;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  transition: background 140ms ease;
}

.portal-vx-timeline__summary:hover {
  background: #f8fbff;
}

.portal-vx-timeline--inside .portal-vx-timeline__summary {
  grid-template-columns: 38px minmax(0, 1fr);
  cursor: default;
}

.portal-vx-timeline--inside .portal-vx-timeline__summary:hover {
  background: transparent;
}

.portal-vx-timeline__summary::-webkit-details-marker {
  display: none;
}

.portal-vx-timeline__dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #cbd5e1;
  box-shadow: 0 0 0 6px #f1f5f9;
}

.portal-vx-timeline__item.is-done .portal-vx-timeline__dot {
  background: #16a34a;
  box-shadow: 0 0 0 6px #dcfce7;
}

.portal-vx-timeline__item.is-current .portal-vx-timeline__dot {
  background: #2563eb;
  box-shadow: 0 0 0 6px #dbeafe;
}

.portal-vx-timeline__item strong {
  display: block;
  color: #1e293b;
  font-size: 15px;
  line-height: 1.35;
}

.portal-vx-timeline__label small {
  display: inline-block;
  margin-top: 5px;
  color: #94a3b8;
  font-size: 12px;
}

.portal-vx-timeline__label p {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
}

.portal-vx-timeline__chevron {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #eef5ff;
  color: #2563eb;
  font-size: 16px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

.portal-vx-timeline__details[open] .portal-vx-timeline__chevron {
  transform: rotate(180deg);
  background: #dbeafe;
}

.portal-vx-timeline__body {
  padding: 0 20px 16px 70px;
}

.portal-vx-timeline__body p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
}

.portal-vx-timeline__item.is-current .portal-vx-timeline__summary {
  background: #f8fbff;
}

.portal-vx-order-actions {
  margin-top: 15px;
}

.portal-vx-order-actions--top {
  margin: 2px 0 18px;
}

.portal-vx-order-specs {
  margin-top: 16px;
}

.portal-vx-order-specs h3 {
  margin-bottom: 12px;
}

.portal-vx-service-meta--specs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .portal-vx-service-meta--specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .portal-vx-service-meta--specs {
    grid-template-columns: 1fr;
  }
}

.portal-vx-host-login-form {
  display: inline-flex;
  margin: 0;
}

.product-trust-flow {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

.product-sales-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-sales-labels li {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
}

.product-trust-flow__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-trust-flow__grid article {
  padding: 18px;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.product-trust-flow__grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 800;
}

.product-trust-flow__grid h2 {
  margin: 14px 0 8px;
  color: #1e293b;
  font-size: 18px;
  line-height: 1.25;
}

.product-trust-flow__grid p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 767px) {
  .portal-vx-progress-accordion__summary {
    padding: 15px 14px;
  }

  .portal-vx-progress-accordion__title strong {
    font-size: 16px;
  }

  .portal-vx-timeline__summary {
    grid-template-columns: 28px minmax(0, 1fr) 22px;
    padding: 14px;
    gap: 10px;
  }

  .portal-vx-timeline--inside .portal-vx-timeline__summary {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .portal-vx-timeline__body {
    padding: 0 14px 14px 52px;
  }

  .product-trust-flow__grid {
    grid-template-columns: 1fr;
  }
}

.vmst-error-page {
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  padding-top: clamp(36px, 8vw, 92px);
  padding-bottom: clamp(48px, 8vw, 112px);
}

.vmst-error-card {
  position: relative;
  isolation: isolate;
  width: min(760px, 100%);
  overflow: hidden;
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid rgba(191, 219, 254, 0.82);
  border-radius: clamp(26px, 5vw, 42px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.92)),
    radial-gradient(circle at 18% 16%, rgba(14, 165, 233, 0.16), transparent 42%);
  color: #0f172a;
  text-align: center;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.16);
}

.vmst-error-card::before,
.vmst-error-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(2px);
}

.vmst-error-card::before {
  width: 210px;
  height: 210px;
  right: -74px;
  top: -78px;
  background: rgba(37, 99, 235, 0.14);
}

.vmst-error-card::after {
  width: 260px;
  height: 260px;
  left: -98px;
  bottom: -120px;
  background: rgba(34, 197, 94, 0.13);
}

.vmst-error-card__glow {
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  pointer-events: none;
}

.vmst-error-card__logo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 196px;
  min-height: 78px;
  margin-bottom: 20px;
  padding: 16px 24px;
  border: 1px solid rgba(191, 219, 254, 0.78);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(37, 99, 235, 0.12);
}

.vmst-error-card__logo img {
  width: 158px;
  max-height: 52px;
  object-fit: contain;
}

.vmst-error-card__eyebrow {
  display: grid;
  place-items: center;
  max-width: 620px;
  min-height: clamp(130px, 24vw, 230px);
  margin: 0 auto;
  padding: clamp(22px, 5vw, 42px);
  border: 1px solid rgba(191, 219, 254, 0.86);
  border-radius: clamp(24px, 5vw, 38px);
  background:
    radial-gradient(420px 220px at 20% 10%, rgba(14, 165, 233, 0.14), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 246, 255, 0.86));
  color: #0b74d1;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.035em;
  text-transform: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), 0 22px 60px rgba(37, 99, 235, 0.13);
}

.vmst-error-card h1 {
  max-width: 620px;
  margin: 18px auto 14px;
  color: #0f172a;
  font-size: clamp(34px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.vmst-error-card p {
  max-width: 560px;
  margin: 0 auto;
  color: #64748b;
  font-size: clamp(16px, 2.5vw, 19px);
  line-height: 1.7;
}

.vmst-error-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.vmst-error-card__hint {
  display: grid;
  gap: 4px;
  max-width: 520px;
  margin: 28px auto 0;
  padding: 16px 18px;
  border: 1px dashed #bfdbfe;
  border-radius: 20px;
  background: rgba(239, 246, 255, 0.72);
  text-align: left;
}

.vmst-error-card__hint span {
  color: #0b74d1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vmst-error-card__hint strong {
  color: #334155;
  line-height: 1.5;
}

@media (max-width: 560px) {
  .vmst-error-card__actions {
    display: grid;
  }

  .vmst-error-card__hint {
    text-align: center;
  }
}

.shop-hero.product-category-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 370px);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  padding: clamp(32px, 4vw, 54px);
}

.product-category-hero__copy {
  min-width: 0;
}

.product-category-hero__copy h1 {
  max-width: 18ch;
  letter-spacing: 0;
}

.product-category-hero__copy p {
  max-width: 980px;
  margin-top: 20px;
  color: #627086;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.78;
}

.product-category-hero__panel {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 24px;
  border: 1px solid #d7e5f4;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.94));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.product-category-hero__kicker {
  color: #0b74d1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-category-hero__panel strong {
  color: #1f2937;
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.12;
}

.product-category-hero__panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-category-hero__panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #53657d;
  font-size: 14px;
  line-height: 1.45;
}

.product-category-hero__panel li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #0b74d1;
  box-shadow: 0 0 0 4px rgba(11, 116, 209, 0.1);
}

.product-category-hero__panel .button {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  text-align: center;
}

@media (max-width: 900px) {
  .shop-hero.product-category-hero {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-category-hero__copy h1,
  .product-category-hero__copy p {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .shop-hero.product-category-hero {
    padding: 22px;
  }

  .product-category-hero__panel {
    padding: 18px;
    border-radius: 18px;
  }
}
