:root {
  --vs-teal: #00a19d;
  --vs-teal-dark: #008580;
  --vs-teal-soft: #e6f7f6;
  --vs-teal-mid: #b2e6e4;
  --vs-ink: #1e293b;
  --vs-muted: #64748b;
  --vs-bg: #f8fafc;
  --vs-card: #ffffff;
  --vs-border: #e2e8f0;
  --vs-danger: #dc2626;
  --vs-danger-soft: #fef2f2;
  --vs-warn: #ea580c;
  --vs-warn-soft: #fff7ed;
  --vs-ok: #16a34a;
  --vs-ok-soft: #dcfce7;
  --vs-info: #2563eb;
  --vs-info-soft: #eff6ff;
  --vs-radius: 12px;
  --vs-radius-sm: 8px;
  --vs-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.04);
  --vs-font: "DM Sans", system-ui, sans-serif;
  --vs-nav-h: 64px;
}

* { box-sizing: border-box; }
body.vs-body {
  margin: 0;
  font-family: var(--vs-font);
  color: var(--vs-ink);
  background: var(--vs-bg);
  min-height: 100vh;
}
a { color: var(--vs-teal); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ——— Checkout (unchanged structure) ——— */
.vs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #fff;
  border-bottom: 1px solid var(--vs-border);
}
.vs-logo img { display: block; }
.vs-header-nav a { margin-left: 1rem; color: var(--vs-muted); font-weight: 600; font-size: .9rem; }
.vs-main { max-width: 1120px; margin: 0 auto; padding: 1.5rem 1.25rem 4rem; }

.vs-select-tile input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.vs-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .65rem;
}
.vs-pipeline-templates {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: .65rem;
  margin-bottom: 1rem;
}
.vs-welcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.vs-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 1.25rem;
  align-items: start;
}
.vs-trustbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  background: var(--vs-teal-soft);
  border: 1px solid var(--vs-teal-mid);
  border-radius: var(--vs-radius);
  padding: .85rem 1rem;
  margin: 0 0 1.75rem;
}
.vs-trustbar__item {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-weight: 600;
  font-size: .82rem;
  color: var(--vs-teal-dark);
  min-width: 0;
}
.vs-trustbar__item > span:last-child {
  line-height: 1.3;
}


.vs-stepper {
  display: flex;
  gap: .5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  justify-content: center;
}
.vs-stepper li {
  width: 2rem; height: 2rem; border-radius: 999px;
  display: grid; place-items: center;
  background: #e2e8f0; color: var(--vs-muted); font-weight: 700; font-size: .85rem;
}
.vs-stepper li.is-active { background: var(--vs-teal); color: #fff; }
.vs-stepper li.is-done { background: var(--vs-teal-soft); color: var(--vs-teal-dark); }

.vs-title { font-size: 1.75rem; font-weight: 700; margin: 0 0 1.25rem; text-align: center; }
.vs-muted { color: var(--vs-muted); font-size: .9rem; }
.vs-label { font-weight: 600; margin: 1rem 0 .5rem; }

.vs-interval-toggle {
  background: #fff;
  border: 1px solid var(--vs-border);
  border-radius: 999px;
  padding: .25rem;
  margin: 0 auto 1.75rem;
  display: flex;
  width: fit-content;
}
.vs-interval-toggle button {
  border: 0; background: transparent; padding: .6rem 1.1rem;
  border-radius: 999px; font-weight: 600; cursor: pointer; color: var(--vs-muted);
}
.vs-interval-toggle button.is-active { background: var(--vs-teal); color: #fff; }
.vs-interval-toggle em { font-style: normal; opacity: .9; }

.vs-package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.vs-package-grid.is-hidden { display: none; }

.vs-pkg-carousel {
  position: relative;
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 2.5rem 0.5rem;
}
.vs-pkg-carousel.is-hidden { display: none; }
.vs-pkg-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0.25rem 1.5rem;
  scrollbar-width: none;
}
.vs-pkg-track::-webkit-scrollbar { display: none; }
.vs-pkg-slide {
  flex: 0 0 85%;
  scroll-snap-align: center;
  min-height: 100%;
  display: flex;
}
.vs-pkg-slide .vs-package-card { width: 100%; }
@media (min-width: 640px) {
  .vs-pkg-slide { flex-basis: calc((100% - 1.25rem) / 2); scroll-snap-align: start; }
}
@media (min-width: 1024px) {
  .vs-pkg-slide { flex-basis: calc((100% - 2.5rem) / 3); }
}
.vs-pkg-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%) rotate(0deg);
  z-index: 5;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--vs-border);
  background: #fff;
  color: var(--vs-ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--vs-shadow);
  transition: background .15s, color .15s, border-color .15s, opacity .15s;
}
.vs-pkg-nav svg { width: 18px; height: 18px; }
.vs-pkg-nav--prev { left: 0; transform: translateY(-50%) rotate(180deg); }
.vs-pkg-nav--next { right: 0; }
.vs-pkg-nav:hover:not(:disabled) { background: var(--vs-teal); color: #fff; border-color: var(--vs-teal); }
.vs-pkg-nav:disabled { opacity: .35; cursor: default; }
.vs-pkg-dots {
  display: flex;
  justify-content: center;
  gap: .45rem;
  margin-top: .15rem;
}
.vs-pkg-dot {
  width: .5rem;
  height: .5rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #cbd5e1;
  cursor: pointer;
  transition: background .15s, transform .15s;
}
.vs-pkg-dot.is-active { background: var(--vs-teal); transform: scale(1.25); }
@media (max-width: 1023px) {
  .vs-pkg-nav { display: none; }
  .vs-pkg-carousel { padding: 0; }
}

.vs-card {
  background: var(--vs-card);
  border: 1px solid var(--vs-border);
  border-radius: var(--vs-radius);
  box-shadow: var(--vs-shadow);
  padding: 1.25rem 1.35rem;
}
.vs-package-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.vs-package-card.is-featured { border-color: var(--vs-teal); }
.vs-package-head {
  background: var(--vs-teal); color: #fff; text-align: center;
  font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: .55rem;
}
.vs-package-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.vs-package-body h2 { margin: 0 0 .35rem; font-size: 1.25rem; }
.vs-tagline { color: var(--vs-muted); margin: 0 0 .75rem; font-size: .9rem; min-height: 2.4em; }
.vs-users { font-size: .85rem; font-weight: 600; margin: 0 0 .5rem; }
.vs-price { margin: 0 0 1rem; }
.vs-price strong { font-size: 1.75rem; }
.vs-price span { color: var(--vs-muted); }
.vs-features { list-style: none; padding: 0; margin: 0 0 1.25rem; flex: 1; }
.vs-features li { padding: .35rem 0 .35rem 1.2rem; position: relative; font-size: .9rem; }
.vs-features li::before { content: "✓"; position: absolute; left: 0; color: var(--vs-teal); font-weight: 700; }
.vs-features li.is-off { color: #94a3b8; }
.vs-features li.is-off::before { content: "–"; }

.vs-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  border-radius: 10px; padding: .7rem 1.1rem; font-weight: 700; border: 1px solid transparent;
  cursor: pointer; font-family: inherit; font-size: .92rem; text-decoration: none !important;
  line-height: 1.2; white-space: nowrap;
}
.vs-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.vs-btn--primary { background: var(--vs-teal); color: #fff; }
.vs-btn--primary:hover { background: var(--vs-teal-dark); color: #fff; }
.vs-btn--outline { background: #fff; border-color: var(--vs-teal); color: var(--vs-teal); }
.vs-btn--outline:hover { background: var(--vs-teal-soft); }
.vs-btn--ghost { background: transparent; color: var(--vs-muted); }
.vs-btn--sm { padding: .45rem .8rem; font-size: .85rem; }
.vs-btn--block { width: 100%; }
.vs-btn--multiline {
  white-space: normal;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  padding: .75rem 1rem;
  line-height: 1.25;
  text-align: center;
}
.vs-btn--multiline .vs-btn__title { display: block; font-size: .95rem; }
.vs-btn--multiline .vs-btn__sub {
  display: block; font-size: .78rem; font-weight: 600; opacity: .92; line-height: 1.3;
}
.vs-package-card .vs-btn { width: 100%; margin-top: auto; }

.vs-form-section { display: flex; justify-content: center; }
.vs-form-card { width: 100%; max-width: 520px; background: #fff; border: 1px solid var(--vs-border); border-radius: var(--vs-radius); padding: 1.75rem; box-shadow: var(--vs-shadow); }
.vs-form { display: flex; flex-direction: column; gap: .85rem; }
.vs-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
@media (max-width: 640px) { .vs-form-row { grid-template-columns: 1fr; } }
.vs-input-suffix { display: flex; align-items: center; gap: .35rem; }
.vs-input-suffix .vs-input { flex: 1; }
.vs-input-suffix span { color: var(--vs-muted); font-size: .9rem; white-space: nowrap; }
.vs-form label { display: flex; flex-direction: column; gap: .6rem; font-weight: 600; font-size: .9rem; }
.vs-form input[type=text],
.vs-form input[type=email],
.vs-form input[type=tel],
.vs-form input[type=password],
.vs-form input[type=file],
.vs-form select,
.vs-input {
  border: 1px solid var(--vs-border); border-radius: 10px; padding: .7rem .85rem;
  font: inherit; font-weight: 400; background: #fff; width: 100%;
}
.vs-check, .vs-radio { flex-direction: row !important; align-items: center; gap: .5rem !important; font-weight: 500 !important; }
.vs-actions { display: flex; justify-content: space-between; gap: 1rem; margin-top: .5rem; }
.vs-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.vs-slug-row { display: flex; align-items: center; gap: .35rem; }
.vs-slug-row input { flex: 1; }
.vs-slug-suffix { color: var(--vs-muted); white-space: nowrap; font-weight: 500; }
.vs-slug-msg { font-weight: 500; font-size: .8rem; }
.vs-slug-msg.is-ok { color: var(--vs-teal); }
.vs-slug-msg.is-bad { color: var(--vs-danger); }
.vs-dropzone {
  border: 1.5px dashed var(--vs-border); border-radius: 12px; padding: 1.25rem; text-align: center; color: var(--vs-muted);
}
.vs-summary {
  background: var(--vs-bg); border-radius: 12px; padding: 1rem; margin-bottom: 1rem;
  display: flex; flex-direction: column; gap: .35rem;
}
.vs-summary div { display: flex; justify-content: space-between; font-weight: 600; }
.vs-coupon-row { display: flex; gap: .5rem; margin-bottom: .5rem; }
.vs-coupon-row input { flex: 1; border: 1px solid var(--vs-border); border-radius: 10px; padding: .7rem .85rem; font: inherit; }
.vs-pay-methods { border: 0; padding: 0; margin: .5rem 0 0; }
.vs-pay-methods legend { font-weight: 700; margin-bottom: .5rem; }

.vs-status-section { display: block; }
.vs-status-card {
  width: 100%; text-align: left; background: #fff; border-radius: var(--vs-radius);
  padding: 1.5rem 1.5rem 1.75rem; border: 1px solid var(--vs-border); box-shadow: var(--vs-shadow);
}
.vs-status-icon {
  width: 72px; height: 72px; margin: 0 auto 1rem; border-radius: 999px;
  background: var(--vs-teal-soft); color: var(--vs-teal); display: grid; place-items: center; font-size: 2rem; font-weight: 700;
}
.is-hidden { display: none !important; }

.vs-goal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.vs-goal { border: 1px solid var(--vs-border); border-radius: 12px; padding: .9rem; cursor: pointer; }
.vs-goal input { margin-right: .4rem; }
.vs-goal:has(input:checked) { border-color: var(--vs-teal); background: var(--vs-teal-soft); }
.vs-checks { display: flex; flex-direction: column; gap: .4rem; }
.vs-preflight {
  text-align: left; background: var(--vs-bg); border-radius: 10px;
  padding: .75rem 1rem; margin: 0 0 1rem; font-size: .85rem; font-weight: 600;
}
.vs-preflight-item { padding: .2rem 0; color: var(--vs-muted); }
.vs-status-errors {
  text-align: left; background: #fef2f2; border: 1px solid #fecaca; color: #991b1b;
  border-radius: 10px; padding: .85rem 1rem; margin: 1rem 0; font-size: .85rem;
}
.vs-status-errors ul { margin: .5rem 0 0; padding-left: 1.1rem; }
#vs-status-retry { margin-top: .75rem; width: 100%; }
.vs-link-danger { background: none; border: 0; color: var(--vs-danger); font-weight: 700; cursor: pointer; padding: 1rem 0; font-family: inherit; }

/* ——— Portal top nav ——— */
.vs-account-body { background: var(--vs-bg); }
.vs-topnav {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--vs-border);
  height: var(--vs-nav-h);
}
.vs-topnav__inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center; gap: 1rem;
  padding: 0 1.25rem; height: 100%;
}
.vs-topnav__brand { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.vs-topnav__brand img { display: block; height: 28px; width: auto; }
.vs-topnav__menu {
  display: flex; align-items: stretch; gap: 0;
  flex: 1; min-width: 0; overflow-x: auto; scrollbar-width: none; height: 100%;
}
.vs-topnav__menu::-webkit-scrollbar { display: none; }
.vs-topnav__link {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .1rem; padding: 0 .45rem; min-width: 0; flex: 0 0 auto;
  color: var(--vs-muted); font-size: .68rem; font-weight: 600;
  text-decoration: none !important; border-bottom: 2px solid transparent;
  white-space: nowrap; height: 100%;
}
.vs-topnav__link:hover { color: var(--vs-teal); }
.vs-topnav__link.is-active { color: var(--vs-teal); border-bottom-color: var(--vs-teal); }
.vs-topnav__ico { display: flex; }
.vs-topnav__ico svg { width: 16px; height: 16px; }
.vs-topnav__actions { display: flex; align-items: center; gap: .5rem; margin-left: .5rem; flex-shrink: 0; }
.vs-topnav__toggle {
  display: none; border: 0; background: transparent; padding: .4rem; cursor: pointer; color: var(--vs-ink);
}
.vs-topnav__toggle svg { width: 22px; height: 22px; }

.vs-icon-btn {
  width: 38px; height: 38px; border-radius: 999px; border: 1px solid var(--vs-border);
  background: #fff; display: grid; place-items: center; cursor: pointer; color: var(--vs-muted);
}
.vs-icon-btn svg { width: 18px; height: 18px; }
.vs-icon-btn:hover { color: var(--vs-teal); border-color: var(--vs-teal-mid); }

.vs-profile { position: relative; }
.vs-profile__btn {
  display: flex; align-items: center; gap: .5rem;
  border: 0; background: transparent; cursor: pointer; font-family: inherit; padding: .2rem;
}
.vs-profile__avatar {
  width: 34px; height: 34px; border-radius: 999px; object-fit: cover; display: block;
}
.vs-profile__avatar--ph {
  background: var(--vs-teal-soft); color: var(--vs-teal);
  display: grid; place-items: center;
}
.vs-profile__avatar--ph svg { width: 16px; height: 16px; }
.vs-profile__name { font-size: .85rem; font-weight: 600; color: var(--vs-ink); max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vs-profile__caret { width: 14px; height: 14px; color: var(--vs-muted); }
.vs-profile__menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: #fff; border: 1px solid var(--vs-border); border-radius: 10px;
  box-shadow: var(--vs-shadow); min-width: 180px; padding: .4rem; z-index: 50;
}
.vs-profile__menu a {
  display: block; padding: .55rem .75rem; border-radius: 8px;
  color: var(--vs-ink); font-weight: 600; font-size: .88rem; text-decoration: none !important;
}
.vs-profile__menu a:hover { background: var(--vs-bg); color: var(--vs-teal); }

.vs-portal {
  max-width: 1440px; margin: 0 auto;
  padding: 1.75rem 1.25rem 2.5rem;
}
.vs-portal-footer {
  text-align: center; color: #94a3b8; font-size: .85rem;
  padding: 1.5rem 1rem 2.5rem;
}

.vs-flash {
  border-radius: 10px; padding: .85rem 1rem; margin-bottom: 1rem;
  font-weight: 600; font-size: .9rem;
}
.vs-flash--success { background: var(--vs-ok-soft); color: #166534; }
.vs-flash--danger { background: var(--vs-danger-soft); color: #991b1b; }
.vs-flash--warning { background: var(--vs-warn-soft); color: #9a3412; }
.vs-flash--info { background: var(--vs-info-soft); color: #1e40af; }

/* ——— Shared UI ——— */
.vs-page-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap;
}
.vs-page-head h1 { margin: 0; font-size: 1.75rem; font-weight: 700; letter-spacing: -.02em; }
.vs-page-head p { margin: .35rem 0 0; color: var(--vs-muted); font-size: .95rem; max-width: 42rem; }
.vs-page-actions { display: flex; gap: .6rem; flex-wrap: wrap; align-items: center; }

.vs-badge {
  display: inline-flex; align-items: center; gap: .3rem;
  background: var(--vs-teal-soft); color: var(--vs-teal-dark);
  font-size: .72rem; font-weight: 700; padding: .2rem .55rem; border-radius: 999px;
}
.vs-badge--ok { background: var(--vs-ok-soft); color: #166534; }
.vs-badge--warn { background: var(--vs-warn-soft); color: #9a3412; }
.vs-badge--danger { background: var(--vs-danger-soft); color: #991b1b; }
.vs-badge--info { background: var(--vs-info-soft); color: #1e40af; }
.vs-badge__dot {
  width: 6px; height: 6px; border-radius: 999px; background: currentColor;
}

.vs-progress {
  height: 6px; background: #e2e8f0; border-radius: 999px; overflow: hidden;
}
.vs-progress > span {
  display: block; height: 100%; background: var(--vs-teal); border-radius: 999px;
}
.vs-progress--warn > span { background: var(--vs-warn); }
.vs-progress--danger > span { background: var(--vs-danger); }

.vs-table-wrap { overflow-x: auto; }
.vs-table { width: 100%; border-collapse: collapse; }
.vs-table th, .vs-table td {
  text-align: left; padding: .85rem .65rem;
  border-bottom: 1px solid var(--vs-border); font-size: .88rem; vertical-align: middle;
}
.vs-table th {
  color: var(--vs-muted); font-weight: 600; font-size: .75rem;
  text-transform: uppercase; letter-spacing: .03em;
}
.vs-table tbody tr:hover { background: #fafbfc; }
.vs-table a { font-weight: 600; text-decoration: none !important; }
.vs-table a svg { width: 12px; height: 12px; display: inline; vertical-align: -1px; margin-left: .2rem; }
.vs-page-head h1 svg { width: 1.1em; height: 1.1em; display: inline; vertical-align: -0.15em; margin-right: .25rem; color: var(--vs-teal); }
.vs-row-between { display: flex; justify-content: space-between; align-items: center; gap: .75rem; flex-wrap: wrap; }

.vs-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.vs-stat {
  background: #fff; border: 1px solid var(--vs-border); border-radius: var(--vs-radius);
  box-shadow: var(--vs-shadow); padding: 1.1rem 1.2rem;
}
.vs-stat__ico {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--vs-teal-soft); color: var(--vs-teal);
  display: grid; place-items: center; margin-bottom: .75rem;
}
.vs-stat__ico svg { width: 18px; height: 18px; }
.vs-stat__ico.is-blue { background: var(--vs-info-soft); color: var(--vs-info); }
.vs-stat__ico.is-orange { background: var(--vs-warn-soft); color: var(--vs-warn); }
.vs-stat__ico.is-green { background: var(--vs-ok-soft); color: var(--vs-ok); }
.vs-stat__ico.is-purple { background: #f3e8ff; color: #7c3aed; }
.vs-stat__label { font-size: .8rem; color: var(--vs-muted); font-weight: 600; margin: 0 0 .25rem; }
.vs-stat__value { font-size: 1.45rem; font-weight: 700; margin: 0; letter-spacing: -.02em; }
.vs-stat__sub { font-size: .8rem; color: var(--vs-muted); margin: .35rem 0 0; }
.vs-stat .vs-progress { margin-top: .65rem; }

.vs-layout-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.vs-layout-2 > .vs-stack { display: flex; flex-direction: column; gap: 1.25rem; }
.vs-stack { display: flex; flex-direction: column; gap: 1.25rem; }

.vs-card__title {
  margin: 0 0 1rem; font-size: 1.05rem; font-weight: 700;
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
}
.vs-card__title .vs-muted { font-weight: 500; }

.vs-trial-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: linear-gradient(135deg, #00a19d 0%, #008580 100%);
  color: #fff; border: 0; border-radius: var(--vs-radius);
  padding: 1rem 1.25rem; margin-bottom: 1.25rem;
  box-shadow: 0 10px 28px rgba(0, 161, 157, 0.25);
}
.vs-trial-banner--retention {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  color: #9a3412;
  border: 1px solid #fdba74;
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.12);
}
.vs-trial-banner--retention strong { color: #7c2d12; }
.vs-trial-banner--retention p { color: #9a3412; opacity: 1; }
.vs-trial-banner--retention .vs-trial-banner__ico {
  background: rgba(234, 88, 12, 0.15);
  color: #c2410c;
}
.vs-trial-banner--retention .vs-btn--outline {
  border-color: #ea580c;
  color: #c2410c;
}
.vs-trial-banner--retention .vs-btn--outline:hover {
  background: #fff7ed;
  color: #9a3412;
}
.vs-trial-banner--retention .vs-btn--primary {
  background: #ea580c;
  color: #fff;
}
.vs-trial-banner--retention .vs-btn--primary:hover {
  background: #c2410c;
  color: #fff;
}
.vs-trial-banner__left { display: flex; align-items: center; gap: .9rem; }
.vs-trial-banner__ico {
  width: 42px; height: 42px; border-radius: 999px; background: rgba(255,255,255,.18);
  display: grid; place-items: center; flex-shrink: 0;
}
.vs-trial-banner__ico svg { width: 20px; height: 20px; }
.vs-trial-banner strong { display: block; font-size: 1rem; }
.vs-trial-banner p { margin: .2rem 0 0; opacity: .92; font-size: .88rem; }
.vs-trial-banner .vs-btn--primary {
  background: #fff; color: var(--vs-teal-dark);
}
.vs-trial-banner .vs-btn--primary:hover { background: #f0fdfa; color: var(--vs-teal-dark); }

.vs-avatar-sq {
  width: 34px; height: 34px; border-radius: 8px;
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: .85rem; flex-shrink: 0;
}
.vs-entity { display: flex; align-items: center; gap: .7rem; }
.vs-entity strong { display: block; font-size: .9rem; }
.vs-entity span { display: block; font-size: .78rem; color: var(--vs-muted); }

.vs-meta-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .65rem; }
.vs-meta-list li {
  display: flex; justify-content: space-between; align-items: center; gap: .5rem;
  font-size: .88rem;
}
.vs-meta-list .k { color: var(--vs-muted); display: inline-flex; align-items: center; gap: .4rem; }
.vs-meta-list .k svg { width: 14px; height: 14px; }
.vs-meta-list .v { font-weight: 600; }

.vs-plan-split {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 1.25rem;
}
.vs-plan-hero {
  background: linear-gradient(160deg, #f0fdfa, #fff);
  border: 1px solid var(--vs-teal-mid); border-radius: var(--vs-radius-sm);
  padding: 1.1rem; text-align: center;
}
.vs-plan-hero__ico {
  width: 48px; height: 48px; margin: 0 auto .75rem; border-radius: 14px;
  background: var(--vs-teal); color: #fff; display: grid; place-items: center;
}
.vs-plan-hero__ico svg { width: 22px; height: 22px; }
.vs-plan-hero h3 { margin: 0 0 .35rem; font-size: 1.15rem; }
.vs-plan-hero .price { font-size: 1.35rem; font-weight: 700; margin: .35rem 0; }
.vs-plan-actions { display: flex; gap: .6rem; margin-top: 1rem; flex-wrap: wrap; }
.vs-plan-actions .vs-btn { flex: 1; min-width: 140px; }

.vs-quick-list { list-style: none; padding: 0; margin: 0; }
.vs-quick-list li + li { border-top: 1px solid var(--vs-border); }
.vs-quick-list a {
  display: flex; align-items: center; gap: .75rem;
  padding: .85rem 0; color: var(--vs-ink); font-weight: 600; font-size: .9rem;
  text-decoration: none !important;
}
.vs-quick-list a:hover { color: var(--vs-teal); }
.vs-quick-list__ico {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--vs-teal-soft); color: var(--vs-teal);
  display: grid; place-items: center; flex-shrink: 0;
}
.vs-quick-list__ico svg { width: 16px; height: 16px; }
.vs-quick-list .chev { margin-left: auto; color: var(--vs-muted); }
.vs-quick-list .chev svg { width: 16px; height: 16px; }

.vs-usage-row { margin-bottom: 1rem; }
.vs-usage-row:last-child { margin-bottom: 0; }
.vs-usage-row__top {
  display: flex; justify-content: space-between; font-size: .85rem; margin-bottom: .4rem;
}
.vs-usage-row__top strong { font-weight: 600; }
.vs-usage-row__top span { color: var(--vs-muted); font-weight: 600; }

.vs-more-btn {
  border: 0; background: transparent; color: var(--vs-muted); cursor: pointer; padding: .25rem;
}
.vs-more-btn svg { width: 18px; height: 18px; }

/* Billing */
.vs-stat-grid--5 { grid-template-columns: repeat(5, 1fr); }
.vs-bill-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 1fr);
  gap: 1.25rem; margin-bottom: 1.25rem;
}
.vs-security {
  background: var(--vs-teal-soft); border: 1px solid var(--vs-teal-mid);
  border-radius: var(--vs-radius); padding: 1.25rem;
}
.vs-security h3 { margin: 0 0 .75rem; display: flex; align-items: center; gap: .5rem; font-size: 1rem; }
.vs-security h3 svg { width: 18px; height: 18px; color: var(--vs-teal); }
.vs-security ul { margin: 0; padding: 0; list-style: none; }
.vs-security li {
  display: flex; gap: .5rem; align-items: flex-start;
  font-size: .88rem; color: var(--vs-ink); margin-bottom: .45rem;
}
.vs-security li svg { width: 14px; height: 14px; color: var(--vs-teal); flex-shrink: 0; margin-top: .15rem; }
.vs-pay-card {
  display: flex; align-items: center; gap: .75rem;
  border: 1px solid var(--vs-border); border-radius: 10px; padding: .85rem;
  margin-bottom: .75rem;
}
.vs-pay-card__logo {
  width: 46px; height: 30px; border-radius: 4px; background: #1a1f71; color: #fff;
  display: grid; place-items: center; font-size: .65rem; font-weight: 800; letter-spacing: .04em;
}
.vs-dashed-btn {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  width: 100%; border: 1.5px dashed var(--vs-border); border-radius: 10px;
  padding: .85rem; background: transparent; color: var(--vs-muted);
  font-weight: 600; font-family: inherit; cursor: pointer; text-decoration: none !important;
}
.vs-dashed-btn:hover { border-color: var(--vs-teal); color: var(--vs-teal); }
.vs-upsell { margin-top: 1.5rem; }
.vs-upsell > h2 { font-size: 1.25rem; margin: 0 0 1rem; text-align: center; }
.vs-upsell-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}

/* Marketplace */
.vs-market-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 1.25rem; align-items: start;
}
.vs-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0 1.25rem; }
.vs-chip {
  border: 1px solid var(--vs-border); background: #fff; border-radius: 999px;
  padding: .4rem .85rem; font-size: .82rem; font-weight: 600; color: var(--vs-muted);
  cursor: pointer; font-family: inherit;
}
.vs-chip.is-active, .vs-chip:hover { background: var(--vs-teal-soft); color: var(--vs-teal-dark); border-color: var(--vs-teal-mid); }
.vs-search {
  position: relative; margin-bottom: .25rem;
}
.vs-search svg {
  position: absolute; left: .85rem; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--vs-muted);
}
.vs-search input { padding-left: 2.5rem; }

.vs-featured {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: linear-gradient(120deg, #e0f7f6, #eff6ff);
  border: 1px solid #c7ebe9; border-radius: var(--vs-radius);
  padding: 1.35rem 1.5rem; margin-bottom: 1.25rem;
}
.vs-featured__tag {
  display: inline-block; background: #fff; color: var(--vs-teal);
  font-size: .7rem; font-weight: 700; padding: .2rem .55rem; border-radius: 999px; margin-bottom: .5rem;
}
.vs-featured h2 { margin: 0 0 .5rem; font-size: 1.25rem; }
.vs-mod-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 1.5rem;
}
@media (min-width: 1100px) {
  .vs-mod-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1300px) {
  .vs-mod-grid { grid-template-columns: repeat(4, 1fr); }
}
.vs-mod-card {
  background: #fff; border: 1px solid var(--vs-border); border-radius: var(--vs-radius);
  box-shadow: var(--vs-shadow); padding: 1.1rem; display: flex; flex-direction: column;
}
.vs-mod-card__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: .75rem; }
.vs-mod-card__icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: #fff;
}
.vs-mod-card__icon svg { width: 22px; height: 22px; }
.vs-mod-card h3 { margin: 0 0 .35rem; font-size: .98rem; }
.vs-mod-card p { margin: 0 0 .75rem; color: var(--vs-muted); font-size: .82rem; line-height: 1.45; flex: 1; }
.vs-mod-card__meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; margin-bottom: .75rem; color: var(--vs-muted);
}
.vs-mod-card__meta .rating { display: inline-flex; align-items: center; gap: .25rem; font-weight: 700; color: var(--vs-ink); }
.vs-mod-card__meta .rating svg { width: 12px; height: 12px; color: #f59e0b; }
.vs-mod-card__price { font-weight: 700; font-size: .95rem; margin-bottom: .85rem; }
.vs-mod-card__actions { display: flex; gap: .5rem; }
.vs-mod-card__actions .vs-btn { flex: 1; padding: .55rem .5rem; font-size: .82rem; }

.vs-installed { display: flex; flex-direction: column; gap: .65rem; }
.vs-installed-item {
  display: flex; align-items: center; gap: .85rem;
  background: #fff; border: 1px solid var(--vs-border); border-radius: 10px; padding: .85rem 1rem;
}
.vs-installed-item strong { display: block; font-size: .9rem; }
.vs-installed-item span { font-size: .78rem; color: var(--vs-muted); }
.vs-cart-item {
  display: flex; align-items: flex-start; gap: .65rem;
  padding: .75rem 0; border-bottom: 1px solid var(--vs-border);
}
.vs-cart-item__ico {
  width: 34px; height: 34px; border-radius: 8px; display: grid; place-items: center; color: #fff; flex-shrink: 0;
}
.vs-cart-item__ico svg { width: 16px; height: 16px; }
.vs-cart-item strong { display: block; font-size: .85rem; }
.vs-cart-item .price { font-size: .8rem; color: var(--vs-muted); }
.vs-cart-totals { margin-top: .75rem; font-size: .88rem; }
.vs-cart-totals div { display: flex; justify-content: space-between; padding: .25rem 0; }
.vs-cart-totals .total { font-weight: 700; font-size: 1rem; margin-top: .35rem; padding-top: .5rem; border-top: 1px solid var(--vs-border); }
.vs-side-note { margin-top: 1rem; }
.vs-side-note ul { list-style: none; padding: 0; margin: .5rem 0 0; }
.vs-side-note li { display: flex; gap: .45rem; font-size: .85rem; margin-bottom: .4rem; }
.vs-side-note li svg { width: 14px; height: 14px; color: var(--vs-teal); flex-shrink: 0; margin-top: .15rem; }

/* Subscription tabs */
.vs-subtabs {
  display: flex; gap: .15rem; margin: 0 0 1.35rem;
  border-bottom: 1px solid var(--vs-border);
}
.vs-subtab {
  padding: .7rem 1rem; font-size: .9rem; font-weight: 600; color: var(--vs-muted);
  text-decoration: none !important; border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.vs-subtab:hover { color: var(--vs-ink); }
.vs-subtab.is-active { color: var(--vs-teal-dark); border-bottom-color: var(--vs-teal); }

/* Compact status banner */
.vs-status-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  background: var(--vs-teal-soft); border: 1px solid var(--vs-teal-mid);
  border-radius: var(--vs-radius); padding: .85rem 1.15rem; margin-bottom: 1.25rem;
  color: var(--vs-ink); font-size: .9rem; font-weight: 600;
}
.vs-status-banner--muted { background: #fff; border-color: var(--vs-border); font-weight: 500; }
.vs-status-banner--retention {
  background: #fff7ed; border-color: #fdba74; color: #7c2d12;
}
.vs-status-banner--cancel {
  background: #fef2f2; border-color: #fecaca; color: #7f1d1d;
}
.vs-status-banner__main { display: flex; align-items: center; gap: .65rem; min-width: 0; }
.vs-status-banner__ico {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  background: #fff; color: var(--vs-teal); display: grid; place-items: center;
  box-shadow: var(--vs-shadow);
}
.vs-status-banner--retention .vs-status-banner__ico { color: #ea580c; }
.vs-status-banner__ico svg { width: 16px; height: 16px; }
.vs-status-banner__actions { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.vs-link-cta {
  font-weight: 700; font-size: .88rem; color: var(--vs-teal-dark); text-decoration: none !important;
  white-space: nowrap;
}
.vs-link-cta:hover { text-decoration: underline !important; }

.vs-stat-grid--4 { grid-template-columns: repeat(4, 1fr); }
.vs-stat--link {
  text-decoration: none !important; color: inherit; display: block;
  transition: border-color .15s, box-shadow .15s;
}
.vs-stat--link:hover { border-color: var(--vs-teal-mid); box-shadow: 0 4px 14px rgba(0,161,157,.08); }

.vs-billing-bullets { list-style: none; padding: 0; margin: 0; }
.vs-billing-bullets li {
  display: flex; gap: .5rem; align-items: flex-start;
  font-size: .86rem; color: var(--vs-ink); margin-bottom: .65rem; line-height: 1.4;
}
.vs-billing-bullets li svg { width: 15px; height: 15px; color: var(--vs-teal); flex-shrink: 0; margin-top: .15rem; }

.vs-badge--teal {
  background: var(--vs-teal-soft); color: var(--vs-teal-dark); border: 1px solid var(--vs-teal-mid);
}

/* Plan drawer (Stripe-like) */
.vs-drawer {
  position: fixed; inset: 0; z-index: 1200;
}
.vs-drawer[hidden] { display: none !important; }
.vs-form[hidden],
[data-vs-perms-form][hidden],
[data-vs-edit-form][hidden] { display: none !important; }
.vs-drawer__backdrop {
  position: absolute; inset: 0; background: rgba(15, 23, 42, .4);
  opacity: 0; transition: opacity .2s ease;
}
.vs-drawer.is-open .vs-drawer__backdrop { opacity: 1; }
.vs-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(440px, 100%);
  background: #fff; box-shadow: -8px 0 32px rgba(15, 23, 42, .12);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .25s ease;
}
.vs-drawer.is-open .vs-drawer__panel { transform: translateX(0); }
.vs-drawer__head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem;
  padding: 1.25rem 1.35rem; border-bottom: 1px solid var(--vs-border);
}
.vs-drawer__head h2 { margin: 0; font-size: 1.15rem; }
.vs-drawer__body { flex: 1; overflow: auto; padding: 1.15rem 1.35rem 2rem; }
.vs-drawer-packages { display: flex; flex-direction: column; gap: .85rem; }
.vs-drawer-pkg {
  border: 1px solid var(--vs-border); border-radius: var(--vs-radius);
  padding: 1rem 1.1rem; background: #fff;
}
.vs-drawer-pkg.is-current { border-color: var(--vs-teal-mid); background: var(--vs-teal-soft); }
.vs-drawer-pkg__top { display: flex; justify-content: space-between; align-items: flex-start; gap: .75rem; }
.vs-drawer-pkg h3 { margin: 0; font-size: 1rem; }
.vs-drawer-pkg__price { margin: .55rem 0 .35rem; font-size: 1.15rem; }
.vs-drawer-pkg__price span { font-size: .85rem; font-weight: 500; color: var(--vs-muted); }
.vs-features--compact { margin: 0 0 .85rem; padding: 0; list-style: none; }
.vs-features--compact li {
  font-size: .82rem; color: var(--vs-muted); padding: .2rem 0 .2rem 1.1rem; position: relative;
}
.vs-features--compact li::before {
  content: ''; position: absolute; left: 0; top: .55rem;
  width: 6px; height: 6px; border-radius: 50%; background: var(--vs-teal);
}

/* Marketplace sections */
.vs-market-toolbar {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: .25rem;
}
.vs-market-toolbar .vs-search { flex: 1; min-width: 220px; margin: 0; }
.vs-sort { display: flex; align-items: center; gap: .45rem; font-size: .85rem; font-weight: 600; }
.vs-sort select {
  border: 1px solid var(--vs-border); border-radius: 8px; padding: .45rem .65rem;
  font-family: inherit; font-weight: 600; background: #fff; color: var(--vs-ink);
}
.vs-market-section { margin-bottom: 1.75rem; }
.vs-market-section__title { font-size: 1.05rem; margin: 0 0 .85rem; }
.vs-mod-grid--featured { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1100px) {
  .vs-mod-grid--featured { grid-template-columns: repeat(4, 1fr); }
}
.vs-mod-grid--compact { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
@media (min-width: 1100px) {
  .vs-mod-grid--compact { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1300px) {
  .vs-mod-grid--compact { grid-template-columns: repeat(6, 1fr); }
}
.vs-mod-card--compact {
  padding: .85rem; box-shadow: none; background: #f8fafc;
}
.vs-mod-card--compact .vs-mod-card__icon { width: 36px; height: 36px; border-radius: 10px; }
.vs-mod-card--compact .vs-mod-card__icon svg { width: 18px; height: 18px; }
.vs-mod-card--compact h3 { font-size: .88rem; margin-bottom: .25rem; }
.vs-mod-card__sub { margin: 0 0 .65rem; font-size: .78rem; color: var(--vs-muted); }
.vs-mod-card--included { opacity: .92; }
.vs-mod-card--featured-weight {
  border-color: var(--vs-teal-mid);
}
.vs-market-aside { position: sticky; top: calc(var(--vs-nav-h, 64px) + 1rem); }

@media (max-width: 1100px) {
  .vs-stat-grid, .vs-stat-grid--5, .vs-stat-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .vs-layout-2, .vs-bill-grid, .vs-market-layout, .vs-plan-split, .vs-upsell-grid { grid-template-columns: 1fr; }
  .vs-mod-grid, .vs-mod-grid--featured, .vs-mod-grid--compact { grid-template-columns: repeat(2, 1fr); }
  .vs-market-aside { position: static; }
  .vs-drawer__panel { width: 100%; }
}
@media (max-width: 800px) {
  .vs-topnav__toggle { display: grid; place-items: center; order: 2; }
  .vs-topnav__brand { order: 1; }
  .vs-topnav__actions { order: 3; margin-left: auto; }
  .vs-topnav__menu {
    display: none; position: absolute; left: 0; right: 0; top: var(--vs-nav-h);
    background: #fff; border-bottom: 1px solid var(--vs-border);
    flex-direction: column; height: auto; padding: .5rem; max-height: 70vh; overflow: auto;
  }
  .vs-topnav__menu.is-open { display: flex; }
  .vs-topnav__link { flex-direction: row; justify-content: flex-start; gap: .65rem; min-height: 42px; border-bottom: 0; border-radius: 8px; padding: .55rem .75rem; font-size: .88rem; }
  .vs-topnav__link.is-active { background: var(--vs-teal-soft); }
  .vs-profile__name { display: none; }
  .vs-stat-grid, .vs-stat-grid--5, .vs-stat-grid--4, .vs-mod-grid, .vs-mod-grid--featured, .vs-mod-grid--compact { grid-template-columns: 1fr; }
  .vs-trial-banner, .vs-status-banner { flex-direction: column; align-items: flex-start; }
  .vs-page-head h1 { font-size: 1.4rem; }
  .vs-subtabs { overflow-x: auto; }
}


/* ——— Wizard / trust / needs / offer ——— */
.vs-lead {
  text-align: center;
  color: var(--vs-muted);
  max-width: 40rem;
  margin: -.5rem auto 1.5rem;
  font-size: 1.05rem;
  line-height: 1.5;
}
.vs-lead--left { text-align: left; margin-left: 0; margin-right: 0; }

.vs-trustbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  background: var(--vs-teal-soft);
  border: 1px solid var(--vs-teal-mid);
  border-radius: var(--vs-radius);
  padding: .85rem 1rem;
  margin: 0 0 1.75rem;
}
.vs-trustbar__item {
  display: flex; align-items: center; gap: .55rem;
  font-weight: 600; font-size: .88rem; color: var(--vs-teal-dark);
}
.vs-trustbar__icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: #fff; color: var(--vs-teal);
  display: grid; place-items: center; flex-shrink: 0;
  overflow: hidden;
}
.vs-trustbar__icon svg { width: 16px; height: 16px; display: block; margin: 0 auto; }

.vs-stepper--labeled {
  gap: 0;
  align-items: flex-start;
  flex-wrap: nowrap;
  margin: 0 auto 1.75rem;
  max-width: 720px;
  padding: 0 .5rem;
}
.vs-stepper--labeled li {
  width: auto; height: auto; background: transparent; color: var(--vs-muted);
  display: flex; flex-direction: column; align-items: center; gap: .45rem;
  flex: 1; min-width: 0; position: relative; font-weight: 600;
}
/* Beat .vs-stepper li.is-active / .is-done pill backgrounds (higher specificity) */
.vs-stepper--labeled li.is-active,
.vs-stepper--labeled li.is-done {
  background: transparent;
  color: var(--vs-muted);
}
.vs-stepper--labeled li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.05rem; left: calc(50% + 1.15rem); right: calc(-50% + 1.15rem);
  height: 2px; background: #e2e8f0; z-index: 0;
}
.vs-stepper--labeled li.is-done:not(:last-child)::after,
.vs-stepper--labeled li.is-active:not(:last-child)::after {
  background: var(--vs-teal);
}
.vs-stepper--labeled li.is-nav .vs-stepper__link {
  display: flex; flex-direction: column; align-items: center; gap: .45rem;
  text-decoration: none; color: inherit; cursor: pointer;
}
.vs-stepper--labeled li.is-nav .vs-stepper__link:hover .vs-stepper__num {
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--vs-teal-mid);
}
.vs-stepper--labeled li.is-nav .vs-stepper__link:hover .vs-stepper__label {
  color: var(--vs-teal-dark);
}
.vs-stepper__num {
  width: 2.15rem; height: 2.15rem; border-radius: 999px;
  display: grid; place-items: center; background: #e8eef3; color: #64748b;
  font-weight: 700; font-size: .85rem; position: relative; z-index: 1;
  box-shadow: 0 0 0 4px #fff;
}
.vs-stepper--labeled li.is-active .vs-stepper__num {
  background: var(--vs-teal); color: #fff;
  box-shadow: 0 0 0 4px #fff;
}
.vs-stepper--labeled li.is-done .vs-stepper__num {
  background: var(--vs-teal); color: #fff;
}
.vs-stepper--labeled li.is-done .vs-stepper__label,
.vs-stepper--labeled li.is-active .vs-stepper__label {
  color: var(--vs-ink);
}
.vs-stepper__label {
  font-size: .72rem; text-align: center; line-height: 1.25; max-width: 7.5rem;
  display: block !important;
}
@media (max-width: 640px) {
  .vs-stepper__label { font-size: .65rem; max-width: 4.8rem; }
  .vs-stepper__num { width: 1.85rem; height: 1.85rem; font-size: .78rem; }
  .vs-stepper--labeled li:not(:last-child)::after { top: .9rem; }
}

.vs-welcome-grid {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.25rem; align-items: start;
}
.vs-welcome-main h2 { margin: 0 0 .5rem; font-size: 1.35rem; }
.vs-welcome-illus { margin: 0 auto 1rem; text-align: center; }
.vs-welcome-illus img { max-width: 220px; width: 100%; height: auto; display: inline-block; }
.vs-value-grid {
  list-style: none; padding: 0; margin: 1.25rem 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
}
.vs-value-grid li {
  display: flex; align-items: flex-start; gap: .55rem;
  font-weight: 600; font-size: .9rem;
  background: var(--vs-bg); border: 1px solid var(--vs-border); border-radius: 12px; padding: .7rem .75rem;
}
.vs-value-grid__icon {
  width: 28px; height: 28px; border-radius: 8px; background: var(--vs-teal-soft);
  color: var(--vs-teal); display: grid; place-items: center; flex-shrink: 0;
  overflow: hidden;
}
.vs-value-grid__icon svg { width: 15px; height: 15px; display: block; margin: 0 auto; }
.vs-welcome-ctas { display: flex; flex-direction: column; gap: .75rem; margin-top: 1rem; }
.vs-welcome-ctas .vs-btn { width: 100%; }
.vs-privacy-note {
  display: flex; align-items: center; gap: .5rem;
  margin: 1.25rem 0 0; color: var(--vs-muted); font-size: .82rem;
}
.vs-welcome-side { display: flex; flex-direction: column; gap: 1rem; }
.vs-welcome-side h3, .vs-card h2, .vs-card h3 { margin: 0 0 .85rem; font-size: 1.05rem; }
.vs-side-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .9rem; }
.vs-side-steps li { display: flex; gap: .7rem; align-items: flex-start; }
.vs-side-steps__icon {
  width: 32px; height: 32px; border-radius: 10px; background: var(--vs-teal-soft);
  color: var(--vs-teal); display: grid; place-items: center; flex-shrink: 0;
  overflow: hidden;
}
.vs-side-steps__icon svg { width: 16px; height: 16px; display: block; margin: 0 auto; }
.vs-side-steps strong { display: block; font-size: .92rem; }
.vs-side-steps span { display: block; color: var(--vs-muted); font-size: .8rem; margin-top: .15rem; }
.vs-card--soft { background: var(--vs-teal-soft); border-color: var(--vs-teal-mid); }
.vs-side-summary { display: flex; gap: .7rem; align-items: flex-start; }
.vs-side-summary p { margin: 0; font-weight: 600; font-size: .92rem; color: var(--vs-teal-dark); line-height: 1.4; }

.vs-needs-form { display: flex; flex-direction: column; gap: 1rem; }
.vs-needs-form label {
  display: flex; flex-direction: column; gap: .55rem;
  font-weight: 600; font-size: .9rem;
}
.vs-needs-form select,
.vs-needs-form input[type="text"] {
  width: 100%; border: 1.5px solid var(--vs-border); border-radius: 12px;
  padding: .7rem .85rem; font: inherit; background: #fff; color: var(--vs-ink);
}
.vs-needs-form select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .85rem center;
  padding-right: 2.25rem;
}
.vs-needs-form select:focus,
.vs-needs-form input[type="text"]:focus {
  outline: none; border-color: var(--vs-teal); box-shadow: 0 0 0 3px rgba(0,161,157,.12);
}
.vs-needs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
  grid-template-areas:
    "uses pipeline"
    "profile features";
}
.vs-needs-grid > .vs-needs-block:nth-child(1) { grid-area: uses; }
.vs-needs-grid > .vs-needs-block:nth-child(2) { grid-area: pipeline; }
.vs-needs-grid > .vs-needs-block:nth-child(3) { grid-area: profile; }
.vs-needs-grid > .vs-needs-block:nth-child(4) { grid-area: features; }
.vs-needs-block__head {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1rem;
}
.vs-needs-block__head h2 { margin: 0; font-size: 1.1rem; }
.vs-link-btn {
  border: 0; background: transparent; color: var(--vs-muted); font: inherit; font-weight: 600;
  cursor: pointer; text-decoration: underline; padding: 0;
}
.vs-select-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .65rem;
}
.vs-select-grid--icons { grid-template-columns: repeat(2, 1fr); }
.vs-select-tile {
  position: relative; display: flex; align-items: center; gap: .5rem;
  border: 1.5px solid var(--vs-border); border-radius: 12px; padding: .85rem .9rem;
  cursor: pointer; font-weight: 600; font-size: .88rem; background: #fff;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.vs-select-tile--icon {
  flex-direction: column; align-items: flex-start; gap: .55rem; min-height: 88px;
  padding-right: 2rem;
}
.vs-select-tile__icon {
  width: 32px; height: 32px; border-radius: 10px; background: var(--vs-bg);
  color: var(--vs-teal); display: grid; place-items: center; overflow: hidden;
}
.vs-select-tile__icon svg { width: 18px; height: 18px; display: block; margin: 0 auto; }
.vs-select-tile input { position: absolute; opacity: 0; pointer-events: none; }
.vs-select-tile__check {
  position: absolute; top: .55rem; right: .55rem;
  width: 18px; height: 18px; border-radius: 999px; border: 1.5px solid var(--vs-border);
  color: transparent; display: grid; place-items: center; flex-shrink: 0; background: #fff;
}
.vs-select-tile__check svg { width: 12px; height: 12px; }
.vs-select-tile.is-selected {
  border-color: var(--vs-teal); background: var(--vs-teal-soft);
  box-shadow: 0 0 0 1px var(--vs-teal);
}
.vs-select-tile.is-selected .vs-select-tile__check {
  background: var(--vs-teal); border-color: var(--vs-teal); color: #fff;
}
.vs-select-tile.is-selected .vs-select-tile__icon { background: #fff; }
.vs-select-tile--wide { justify-content: flex-start; flex-direction: row; min-height: 0; padding-right: .9rem; }
.vs-select-tile--wide .vs-select-tile__check { position: static; }
.vs-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: .85rem; }
.vs-field-label { display: inline-flex; align-items: center; gap: .4rem; margin-bottom: .35rem; font-weight: 600; }
.vs-field-label__icon { color: var(--vs-teal); display: inline-grid; place-items: center; }
.vs-field-label__icon svg { width: 15px; height: 15px; }
.vs-pipeline-templates {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .65rem; margin-bottom: 1rem;
}
.vs-pipeline-preview {
  display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; margin-bottom: .75rem;
}
.vs-pipeline-stage {
  display: flex; align-items: center; gap: .25rem;
  background: var(--vs-bg); border: 1px solid var(--vs-border); border-radius: 10px; padding: .25rem .35rem .25rem .45rem;
}
.vs-pipeline-stage__icon { color: var(--vs-teal); display: grid; place-items: center; }
.vs-pipeline-stage__icon svg { width: 14px; height: 14px; }
.vs-pipeline-stage input {
  border: 0; background: transparent; font: inherit; font-weight: 600; font-size: .85rem;
  width: 7.5rem; padding: .35rem 0;
}
.vs-stage-remove {
  border: 0; background: transparent; color: var(--vs-muted); cursor: pointer;
  font-size: 1.1rem; line-height: 1; padding: .2rem .35rem;
}
.vs-pipeline-arrow { color: var(--vs-teal); font-weight: 700; }
.vs-toggle-list { list-style: none; padding: 0; margin: 0; }
.vs-toggle-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: .85rem 0; border-bottom: 1px solid var(--vs-border); font-weight: 600;
}
.vs-toggle-list li:last-child { border-bottom: 0; }
.vs-toggle-list__label { display: inline-flex; align-items: center; gap: .6rem; }
.vs-toggle-list__icon {
  width: 30px; height: 30px; border-radius: 9px; background: var(--vs-teal-soft);
  color: var(--vs-teal); display: grid; place-items: center; flex-shrink: 0;
  overflow: hidden;
}
.vs-toggle-list__icon svg { width: 16px; height: 16px; display: block; margin: 0 auto; }
.vs-switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.vs-switch input { opacity: 0; width: 0; height: 0; }
.vs-switch__ui {
  position: absolute; inset: 0; background: #cbd5e1; border-radius: 999px; cursor: pointer;
  transition: background .15s;
}
.vs-switch__ui::after {
  content: ""; position: absolute; width: 20px; height: 20px; border-radius: 999px;
  background: #fff; top: 3px; left: 3px; transition: transform .15s;
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
}
.vs-switch input:checked + .vs-switch__ui { background: var(--vs-teal); }
.vs-switch input:checked + .vs-switch__ui::after { transform: translateX(20px); }
.vs-actions--wide { align-items: center; flex-wrap: wrap; }
.vs-actions__right { display: flex; gap: .65rem; flex-wrap: wrap; margin-left: auto; }

.vs-offer-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.25rem; align-items: start;
}
.vs-offer-forms { display: flex; flex-direction: column; gap: 1rem; }
.vs-offer-forms .vs-card { margin-bottom: 1rem; }
.vs-offer-aside { position: sticky; top: 1rem; display: flex; flex-direction: column; gap: 1rem; }
.vs-recommend-card { border-color: var(--vs-teal); overflow: hidden; position: relative; padding-top: 0; }
.vs-recommend-banner {
  display: block; background: var(--vs-teal); color: #fff;
  font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: .55rem 1rem; margin: 0 -1.25rem 1rem;
  text-align: center;
}
.vs-recommend-head { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.vs-recommend-head h2 { margin: 0; font-size: 1.35rem; }
.vs-recommend-icon {
  width: 44px; height: 44px; border-radius: 999px; background: var(--vs-teal-soft);
  color: var(--vs-teal); display: grid; place-items: center; flex-shrink: 0;
}
.vs-recommend-icon svg { width: 22px; height: 22px; }
.vs-recommend-decor {
  position: absolute; right: .5rem; bottom: .5rem; width: 100px; opacity: .35; pointer-events: none;
}
.vs-recommend-badge {
  display: inline-block; background: var(--vs-teal); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: .3rem .55rem; border-radius: 999px; margin-bottom: .75rem;
}
.vs-card-title-icon {
  display: inline-grid; place-items: center; vertical-align: middle;
  width: 28px; height: 28px; border-radius: 8px; background: var(--vs-teal-soft);
  color: var(--vs-teal); margin-right: .4rem;
}
.vs-card-title-icon svg { width: 15px; height: 15px; }
.vs-trial-chip {
  display: inline-block; background: var(--vs-ok-soft); color: var(--vs-ok);
  font-weight: 700; font-size: .85rem; padding: .35rem .65rem; border-radius: 8px; margin: 0 0 1rem;
}
.vs-why { position: relative; }
.vs-why ul, .vs-ready-checks { list-style: none; padding: 0; margin: 0; }
.vs-why li, .vs-ready-checks li {
  padding: .35rem 0 .35rem 1.2rem; position: relative; font-size: .9rem; font-weight: 600;
}
.vs-why li::before { content: "✓"; position: absolute; left: 0; color: var(--vs-teal); }
.vs-why h3, .vs-next-mini h3 { font-size: .95rem; margin: 1rem 0 .5rem; }
.vs-next-mini ol { margin: 0; padding-left: 1.1rem; color: var(--vs-muted); font-size: .88rem; }
.vs-next-mini li { margin-bottom: .35rem; }
.vs-next-mini-icons { list-style: none; padding: 0; margin: 0; }
.vs-next-mini-icons li {
  display: flex; align-items: center; gap: .55rem;
  font-size: .88rem; font-weight: 600; color: var(--vs-muted); margin-bottom: .45rem;
}
.vs-next-mini-icons__icon {
  width: 28px; height: 28px; border-radius: 8px; background: var(--vs-teal-soft);
  color: var(--vs-teal); display: grid; place-items: center; flex-shrink: 0;
}
.vs-next-mini-icons__icon svg { width: 14px; height: 14px; }
.vs-text-link {
  display: block; text-align: center; margin-top: .85rem; font-weight: 700; font-size: .9rem;
}
.vs-alt-packages { display: flex; flex-direction: column; gap: .5rem; }
.vs-alt-pkg {
  display: flex; justify-content: space-between; gap: .5rem; width: 100%;
  border: 1.5px solid var(--vs-border); background: #fff; border-radius: 10px;
  padding: .7rem .85rem; cursor: pointer; font: inherit;
}
.vs-alt-pkg.is-selected { border-color: var(--vs-teal); background: var(--vs-teal-soft); }
.vs-alt-pkg strong { font-size: .92rem; }
.vs-alt-pkg span { color: var(--vs-muted); font-size: .85rem; }
.vs-offer-submit-mobile { display: none; margin-top: 1rem; }
.vs-card-note { margin: -.35rem 0 1rem; }

.vs-summary--trial { gap: .75rem; }
.vs-trial-checks { list-style: none; padding: 0; margin: 0; }
.vs-trial-checks li { font-weight: 600; font-size: .9rem; padding: .2rem 0; color: var(--vs-teal-dark); }

.vs-provision-grid, .vs-ready-grid {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.25rem; align-items: start;
}
.vs-status-illus { text-align: center; margin: 0 0 1.25rem; }
.vs-status-illus img { max-width: 240px; width: 100%; height: auto; }
.vs-progress-wrap { margin: 0 0 1rem; text-align: left; }
.vs-progress-label { font-weight: 700; font-size: .85rem; margin-bottom: .35rem; }
.vs-progress-bar {
  height: 8px; background: var(--vs-border); border-radius: 999px; overflow: hidden;
}
.vs-progress-bar span {
  display: block; height: 100%; background: var(--vs-teal); border-radius: 999px; transition: width .35s;
}
.vs-status-list {
  list-style: none; padding: 0; margin: 0 0 1rem; position: relative;
}
.vs-status-list li {
  display: grid; grid-template-columns: 36px 1fr auto; gap: .75rem; align-items: center;
  padding: .75rem 0; position: relative; font-weight: 600;
}
.vs-status-list li:not(:last-child)::before {
  content: ""; position: absolute; left: 17px; top: 2.6rem; bottom: -.15rem;
  width: 2px; background: repeating-linear-gradient(to bottom, #cbd5e1 0 4px, transparent 4px 8px);
}
.vs-status-list__icon {
  width: 36px; height: 36px; border-radius: 999px; border: 2px solid #cbd5e1;
  background: #fff; color: #94a3b8; display: grid; place-items: center; position: relative; z-index: 1;
}
.vs-status-list__icon svg { width: 16px; height: 16px; }
.vs-status-list li.is-done .vs-status-list__icon {
  background: var(--vs-teal); border-color: var(--vs-teal); color: #fff;
}
.vs-status-list li.is-active .vs-status-list__icon {
  border-color: var(--vs-teal); color: var(--vs-teal); background: var(--vs-teal-soft);
  box-shadow: 0 0 0 4px rgba(0,161,157,.12);
}
.vs-status-list__label { font-size: .92rem; }
.vs-status-pill {
  font-size: .72rem; font-weight: 700; padding: .28rem .6rem; border-radius: 999px;
  background: #e2e8f0; color: #64748b; white-space: nowrap;
}
.vs-status-list li.is-done .vs-status-pill { background: var(--vs-teal-soft); color: var(--vs-teal-dark); }
.vs-status-list li.is-active .vs-status-pill { background: #dcfce7; color: #15803d; }
.vs-setup-chips, .vs-next-list { list-style: none; padding: 0; margin: 0; }
.vs-setup-chips li {
  display: flex; align-items: center; gap: .55rem;
  padding: .55rem 0; border-bottom: 1px solid var(--vs-border); font-weight: 600; font-size: .9rem;
}
.vs-setup-chips li:last-child { border-bottom: 0; }
.vs-next-list li { padding: .65rem 0; border-bottom: 1px solid var(--vs-border); }
.vs-next-list li:last-child { border-bottom: 0; }
.vs-next-list strong { display: block; font-size: .92rem; }
.vs-next-list span { display: block; color: var(--vs-muted); font-size: .82rem; margin-top: .2rem; }
.vs-next-list--chevron li {
  display: grid; grid-template-columns: 36px 1fr 18px; gap: .65rem; align-items: center;
  padding: .75rem 0;
}
.vs-next-list__icon {
  width: 36px; height: 36px; border-radius: 10px; background: #fff; color: var(--vs-teal);
  display: grid; place-items: center; border: 1px solid var(--vs-border);
}
.vs-next-list__icon svg { width: 16px; height: 16px; }
.vs-next-list__chevron { color: var(--vs-muted); display: grid; place-items: center; }
.vs-next-list__chevron svg { width: 16px; height: 16px; }
.vs-next-list--chevron strong { margin: 0; }
.vs-next-list--chevron span { margin: .15rem 0 0; }

.vs-ready-icon {
  width: 72px; height: 72px; margin: 0 auto 1rem; border-radius: 999px;
  background: var(--vs-teal-soft); color: var(--vs-teal); display: grid; place-items: center;
  font-size: 2rem; font-weight: 700;
}
.vs-next-steps { margin: 0; padding-left: 1.2rem; }
.vs-next-steps li { margin-bottom: 1.25rem; }
.vs-next-steps strong { display: block; margin-bottom: .35rem; }
.vs-next-steps span { display: block; color: var(--vs-muted); font-size: .88rem; margin-bottom: .5rem; }
.vs-invite-inline { margin-top: .5rem; }
.vs-sample-form { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--vs-border); display: flex; flex-direction: column; gap: .75rem; }

@media (max-width: 900px) {
  .vs-trustbar { grid-template-columns: 1fr 1fr; }
  .vs-welcome-grid, .vs-offer-grid, .vs-provision-grid, .vs-ready-grid, .vs-needs-grid { grid-template-columns: 1fr; }
  .vs-needs-grid {
    grid-template-areas:
      "uses"
      "pipeline"
      "profile"
      "features";
  }
  .vs-select-grid { grid-template-columns: 1fr 1fr; }
  .vs-grid-3 { grid-template-columns: 1fr; }
  .vs-pipeline-templates { grid-template-columns: 1fr; }
  .vs-offer-aside { position: static; }
  .vs-offer-submit-mobile { display: inline-flex; }
  .vs-value-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .vs-trustbar { grid-template-columns: 1fr; }
  .vs-select-grid { grid-template-columns: 1fr; }
  .vs-stepper__label { display: none; }
  .vs-actions--wide, .vs-actions__right { flex-direction: column; width: 100%; }
  .vs-actions__right .vs-btn { width: 100%; }
}

/* ——— Team / contacts page ——— */
.vs-team-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 1.5rem;
  align-items: start;
}
.vs-team-main { display: flex; flex-direction: column; gap: 1rem; min-width: 0; }
.vs-team-sidebar {
  position: sticky;
  top: calc(var(--vs-nav-h, 64px) + 1rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.vs-team-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.vs-team-head h1 { margin: 0 0 .35rem; font-size: 1.65rem; }
.vs-team-head p { margin: 0; color: var(--vs-muted); max-width: 36rem; line-height: 1.45; font-size: .95rem; }
.vs-team-head__actions { display: flex; gap: .6rem; flex-wrap: wrap; }

.vs-team-toolbar {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.vs-team-toolbar .vs-search {
  flex: 1;
  min-width: 200px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border: 1px solid var(--vs-border);
  border-radius: var(--vs-radius-sm);
  padding: .55rem .85rem;
}
.vs-team-toolbar .vs-search svg { width: 18px; height: 18px; color: var(--vs-muted); flex-shrink: 0; }
.vs-team-toolbar .vs-search input {
  border: 0; outline: 0; width: 100%; font: inherit; background: transparent; color: var(--vs-ink);
}

.vs-seg {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--vs-border);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.vs-seg button {
  border: 0;
  background: transparent;
  font: inherit;
  font-size: .82rem;
  font-weight: 600;
  color: var(--vs-muted);
  padding: .4rem .85rem;
  border-radius: 999px;
  cursor: pointer;
}
.vs-seg button.is-active {
  background: var(--vs-teal);
  color: #fff;
}

.vs-team-card {
  background: var(--vs-card);
  border: 1px solid var(--vs-border);
  border-radius: var(--vs-radius);
  box-shadow: var(--vs-shadow);
  padding: 1.15rem 1.25rem .85rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.vs-team-card__top {
  display: grid;
  grid-template-columns: minmax(160px, 1.1fr) minmax(120px, .9fr) minmax(140px, 1fr) minmax(140px, 1.1fr);
  gap: 1rem;
  align-items: start;
}
.vs-team-card__person {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  min-width: 0;
}
.vs-team-avatar {
  width: 48px; height: 48px; border-radius: 999px; flex-shrink: 0;
  object-fit: cover;
  background: var(--vs-teal-soft);
  color: var(--vs-teal-dark);
  font-weight: 700; font-size: .95rem;
  display: grid; place-items: center;
}
.vs-team-card__name { margin: 0; font-size: 1.02rem; font-weight: 700; }
.vs-team-card__email { margin: .15rem 0 0; font-size: .84rem; color: var(--vs-muted); word-break: break-all; }
.vs-team-card__title { margin: .2rem 0 0; font-size: .8rem; color: var(--vs-muted); }
.vs-team-card__badges { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .45rem; }
.vs-team-card__col-label {
  display: flex; align-items: center; gap: .35rem;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em;
  color: var(--vs-muted); margin: 0 0 .4rem;
}
.vs-team-card__col-label svg { width: 14px; height: 14px; }
.vs-team-card__role { font-size: .9rem; font-weight: 600; margin: 0; }
.vs-team-crm-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: .4rem .65rem;
  margin: .25rem 0;
  font-size: .85rem;
}
.vs-team-chips {
  display: flex; flex-wrap: wrap; gap: .35rem;
}
.vs-team-chip {
  display: inline-flex; align-items: center; gap: .25rem;
  font-size: .72rem; font-weight: 600;
  padding: .22rem .5rem;
  border-radius: 999px;
  background: var(--vs-teal-soft);
  color: var(--vs-teal-dark);
  border: 1px solid var(--vs-teal-mid);
}
.vs-team-chip svg { width: 12px; height: 12px; }
.vs-team-card__foot {
  display: flex; justify-content: flex-end; gap: .45rem; flex-wrap: wrap;
  padding-top: .65rem; border-top: 1px solid var(--vs-border);
}
.vs-team-card__foot .vs-btn { padding: .35rem .7rem; font-size: .8rem; }

.vs-switch {
  position: relative; display: inline-block; width: 40px; height: 22px; flex-shrink: 0;
}
.vs-switch input { opacity: 0; width: 0; height: 0; }
.vs-switch__slider {
  position: absolute; inset: 0; cursor: pointer;
  background: #cbd5e1; border-radius: 999px; transition: .2s;
}
.vs-switch__slider::before {
  content: ''; position: absolute; height: 16px; width: 16px; left: 3px; bottom: 3px;
  background: #fff; border-radius: 50%; transition: .2s;
}
.vs-switch input:checked + .vs-switch__slider { background: var(--vs-teal); }
.vs-switch input:checked + .vs-switch__slider::before { transform: translateX(18px); }
.vs-switch input:disabled + .vs-switch__slider { opacity: .55; cursor: not-allowed; }

.vs-side-card {
  background: #fff;
  border: 1px solid var(--vs-border);
  border-radius: var(--vs-radius);
  padding: 1rem 1.1rem;
  box-shadow: var(--vs-shadow);
}
.vs-side-card h3 {
  margin: 0 0 .85rem; font-size: .92rem;
}
.vs-team-stat {
  display: flex; align-items: center; gap: .65rem;
  padding: .55rem 0; border-bottom: 1px solid var(--vs-border);
  font-size: .88rem; font-weight: 600;
}
.vs-team-stat:last-child { border-bottom: 0; padding-bottom: 0; }
.vs-team-stat:first-of-type { padding-top: 0; }
.vs-team-stat__ico {
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--vs-teal-soft); color: var(--vs-teal-dark);
  display: grid; place-items: center; flex-shrink: 0;
}
.vs-team-stat__ico svg { width: 16px; height: 16px; }
.vs-team-stat span { color: var(--vs-muted); font-weight: 500; margin-left: .25rem; }

.vs-side-actions { list-style: none; padding: 0; margin: 0; }
.vs-side-actions li { border-bottom: 1px solid var(--vs-border); }
.vs-side-actions li:last-child { border-bottom: 0; }
.vs-side-actions a, .vs-side-actions button {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: .7rem 0; border: 0; background: none;
  font: inherit; font-size: .88rem; font-weight: 600; color: var(--vs-ink);
  cursor: pointer; text-align: left; text-decoration: none !important;
}
.vs-side-actions a:hover, .vs-side-actions button:hover { color: var(--vs-teal); }
.vs-side-actions svg { width: 16px; height: 16px; color: var(--vs-muted); }

.vs-preset {
  display: flex; align-items: flex-start; justify-content: space-between; gap: .5rem;
  padding: .65rem 0; border-bottom: 1px solid var(--vs-border);
}
.vs-preset:last-child { border-bottom: 0; padding-bottom: 0; }
.vs-preset strong { display: block; font-size: .88rem; }
.vs-preset span { display: block; font-size: .75rem; color: var(--vs-muted); margin-top: .2rem; line-height: 1.35; }
.vs-preset__add {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  border: 1px solid var(--vs-border); background: #fff; color: var(--vs-teal);
  display: grid; place-items: center; cursor: pointer;
}
.vs-preset__add:hover { background: var(--vs-teal-soft); border-color: var(--vs-teal-mid); }
.vs-preset__add svg { width: 14px; height: 14px; }

.vs-side-note {
  background: var(--vs-info-soft);
  border: 1px solid #bfdbfe;
  border-radius: var(--vs-radius-sm);
  padding: .85rem .95rem;
  font-size: .82rem; color: #1e3a5f; line-height: 1.45;
}
.vs-side-note svg { width: 16px; height: 16px; vertical-align: -3px; margin-right: .25rem; color: var(--vs-info); }

.vs-drawer__panel--wide { width: min(480px, 100%); }
.vs-perm-block { margin-bottom: 1.15rem; }
.vs-perm-block h4 { margin: 0 0 .55rem; font-size: .82rem; color: var(--vs-muted); text-transform: uppercase; letter-spacing: .03em; }
.vs-perm-list { display: flex; flex-direction: column; gap: .45rem; }
.vs-perm-list label {
  display: flex; align-items: center; gap: .55rem;
  font-size: .9rem; font-weight: 500; cursor: pointer;
}

@media (max-width: 1100px) {
  .vs-team-layout { grid-template-columns: 1fr; }
  .vs-team-sidebar { position: static; }
  .vs-team-card__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .vs-team-card__top { grid-template-columns: 1fr; }
}

/* ——— Mobile app shell (Field-like, phones only) ——— */
.vs-mobile-only { display: none !important; }
.vs-trustbar__short { display: none; }
.vs-offer-dock,
.vs-ready-dock { display: none; }
.vs-sheet { display: none; }
.vs-sheet-src[hidden] { display: none !important; }

@media (max-width: 767px) {
  :root {
    --vs-safe-b: env(safe-area-inset-bottom, 0px);
    --vs-safe-t: env(safe-area-inset-top, 0px);
    --vs-dock-h: 0px;
  }
  body.vs-body:has(.vs-mobile-dock) { --vs-dock-h: 96px; }
  body.vs-body:has(.vs-offer-dock) { --vs-dock-h: 148px; }
  body.vs-body:has(.vs-ready-dock) { --vs-dock-h: 88px; }

  html, body.vs-body {
    background: #f4f7f8;
    -webkit-tap-highlight-color: transparent;
  }
  body.vs-body {
    padding-top: var(--vs-safe-t);
  }

  .vs-mobile-only { display: inline-flex !important; }
  .vs-text-link.vs-mobile-only,
  button.vs-text-link.vs-mobile-only {
    display: block !important;
  }
  .vs-desktop-only { display: none !important; }

  .vs-header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 10px 16px;
    background: rgba(244, 247, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--vs-border);
  }
  .vs-logo img { height: 24px; }
  .vs-header-nav a { margin-left: .75rem; font-size: .82rem; }

  .vs-main {
    max-width: 480px;
    margin: 0 auto;
    padding: 8px 16px calc(var(--vs-dock-h) + 20px + var(--vs-safe-b));
  }

  .vs-title {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    text-align: left;
  }
  .vs-lead {
    font-size: .92rem;
    text-align: left;
    margin: .4rem 0 1rem;
    max-width: none;
  }
  .vs-hero { margin-bottom: .35rem; }
  .vs-card { border-radius: 16px; padding: 1rem 1.05rem; box-shadow: 0 6px 20px rgba(16, 24, 40, 0.06); }

  .vs-stepper--labeled {
    margin: 0 auto .85rem;
    padding: 0;
    max-width: none;
  }
  .vs-stepper__label { display: none !important; }
  .vs-stepper--labeled li { gap: 0; }
  .vs-stepper__num {
    width: 1.7rem; height: 1.7rem; font-size: .72rem;
    box-shadow: 0 0 0 3px #f4f7f8;
  }
  .vs-stepper--labeled li:not(:last-child)::after { top: .8rem; left: calc(50% + 1rem); right: calc(-50% + 1rem); }

  .vs-trustbar {
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
    gap: .5rem;
    padding: .55rem .7rem;
    margin: 0 0 1rem;
    border-radius: 14px;
  }
  .vs-trustbar__item:nth-child(n+3) { display: none; }
  .vs-trustbar__full { display: none; }
  .vs-trustbar__short { display: inline; font-size: .78rem; font-weight: 700; }
  .vs-trustbar__more {
    width: 28px; height: 28px; border-radius: 999px;
    border: 1px solid var(--vs-teal-mid); background: #fff;
    color: var(--vs-teal-dark); font-weight: 800; font-size: .75rem;
    display: grid !important; place-items: center; cursor: pointer; padding: 0;
  }

  .vs-welcome-illus,
  .vs-welcome-extra,
  .vs-welcome-main h2,
  .vs-welcome-side { display: none; }
  .vs-welcome-ctas.vs-mobile-dock {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 35;
    margin: 0;
    padding: 10px 16px calc(12px + var(--vs-safe-b));
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--vs-border);
    box-shadow: 0 -8px 24px rgba(16, 24, 40, 0.06);
    max-width: 480px;
    margin-left: auto; margin-right: auto;
  }
  .vs-welcome .vs-privacy-note { margin-top: .75rem; }

  .vs-needs-block__head {
    margin-bottom: 0;
    cursor: pointer;
    min-height: 44px;
  }
  .vs-needs-block__head h2 {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex: 1;
  }
  .vs-needs-block__head h2::after {
    content: "";
    margin-left: auto;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--vs-muted);
    border-bottom: 2px solid var(--vs-muted);
    transform: rotate(45deg);
    transition: transform .15s;
    flex-shrink: 0;
  }
  .vs-needs-block.is-open .vs-needs-block__head h2::after {
    transform: rotate(-135deg);
    margin-top: 4px;
  }
  .vs-needs-block__head .vs-link-btn { display: none; }
  .vs-needs-block:not(.is-open) .vs-needs-block__body { display: none; }
  .vs-needs-block.is-open .vs-needs-block__body { display: block; margin-top: .85rem; }
  .vs-needs-block.is-open .vs-needs-block__head { margin-bottom: 0; }
  .vs-needs-grid { gap: .75rem; }
  .vs-select-grid,
  .vs-select-grid--icons { grid-template-columns: 1fr 1fr; }
  .vs-select-tile { min-height: 48px; padding: .7rem .65rem; font-size: .82rem; }

  #vs-needs-dock.vs-mobile-dock {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 35;
    margin: 0;
    width: 100%;
    max-width: 480px;
    margin-left: auto; margin-right: auto;
    padding: 10px 16px calc(12px + var(--vs-safe-b));
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--vs-border);
    flex-direction: row;
    gap: .6rem;
  }
  #vs-needs-dock .vs-actions__right {
    flex-direction: row;
    width: 100%;
    gap: .6rem;
  }
  #vs-needs-dock .vs-btn { flex: 1; width: auto; min-height: 48px; }

  .vs-package-card .vs-features li:nth-child(n+5) { display: none; }
  .vs-pkg-more { margin: 0 0 1rem; text-align: left; }
  .vs-pkg-slide { flex-basis: 100%; }
  .vs-packages .vs-lead { display: none; }

  .vs-offer-aside { display: none; }
  .vs-offer-submit-mobile { display: none !important; }
  .vs-offer .vs-lead { display: none; }
  .vs-offer-dock {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 35;
    max-width: 480px;
    margin: 0 auto;
    padding: 10px 16px calc(12px + var(--vs-safe-b));
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--vs-border);
    box-shadow: 0 -8px 24px rgba(16, 24, 40, 0.06);
  }
  .vs-offer-dock__info { display: flex; flex-direction: column; gap: .1rem; }
  .vs-offer-dock__info strong { font-size: .95rem; }
  .vs-offer-dock__info span { font-size: .78rem; color: var(--vs-muted); font-weight: 600; }
  .vs-offer-dock .vs-link-btn { align-self: flex-start; }
  .vs-offer-dock .vs-btn { white-space: normal; min-height: 48px; }

  .vs-form-section .vs-mobile-dock {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 35;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
    padding: 10px 16px calc(12px + var(--vs-safe-b));
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--vs-border);
  }
  .vs-form-section .vs-mobile-dock .vs-btn { min-height: 48px; }
  .vs-trial-checks li:nth-child(n+4) { display: none; }
  .vs-billing .vs-lead { font-size: .9rem; }

  .vs-provision-aside { display: none; }
  .vs-status-illus { display: none; }

  .vs-ready-dock {
    display: block;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 35;
    max-width: 480px;
    margin: 0 auto;
    padding: 10px 16px calc(12px + var(--vs-safe-b));
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--vs-border);
  }
  .vs-ready-dock .vs-btn { min-height: 48px; }

  .vs-btn { min-height: 44px; border-radius: 12px; }
  .vs-btn--multiline { min-height: 56px; }

  /* Sheet */
  .vs-sheet {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 60;
  }
  .vs-sheet.is-hidden { display: none !important; }
  .vs-sheet-backdrop {
    position: absolute; inset: 0; background: rgba(16, 24, 40, .4);
  }
  .vs-sheet-panel {
    position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
    width: 100%; max-width: 480px; max-height: 88dvh; overflow: auto;
    background: #fff; border-radius: 20px 20px 0 0;
    padding: 10px 18px calc(20px + var(--vs-safe-b));
  }
  .vs-sheet-handle {
    width: 42px; height: 4px; border-radius: 999px;
    background: #d0d5dd; margin: 4px auto 14px;
  }
  .vs-sheet-title { margin: 0 0 12px; font-size: 1.15rem; font-weight: 800; }
  .vs-sheet-title:empty { display: none; }
  .vs-sheet-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .75rem; }
  .vs-sheet-list li {
    display: flex; align-items: center; gap: .6rem;
    font-weight: 600; font-size: .92rem;
  }
  .vs-sheet .vs-features li { display: list-item !important; }
  .vs-sheet .vs-offer-aside,
  .vs-sheet .vs-welcome-side,
  .vs-sheet .vs-provision-aside { display: block; }
  .vs-sheet .vs-card { box-shadow: none; border: 1px solid var(--vs-border); }
  .vs-sheet .vs-btn[form],
  .vs-sheet .vs-recommend-card > .vs-btn { display: none; }
}

@media (max-width: 767px) and (min-width: 481px) {
  .vs-welcome-ctas.vs-mobile-dock,
  #vs-needs-dock.vs-mobile-dock,
  .vs-offer-dock,
  .vs-form-section .vs-mobile-dock,
  .vs-ready-dock {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 480px;
  }
}
