/* ============================================================
   The Wealth Mosaic, Solution Provider detail
   Layered on top of styles.css + marketplace.css.
   ============================================================ */

.provider-page {
  --pv-bg: #FAFAFB;
}

/* ============================================================
   Sample switcher (mockup-only, removable before handoff)
   ============================================================ */
.sample-switch {
  background: #0F1729;
  color: rgba(255, 255, 255, .8);
  padding: 8px 0;
  font-size: 12px;
  font-weight: 500;
}
.sample-switch .container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.sample-switch__label {
  color: rgba(255, 255, 255, .55);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 10.5px;
  font-weight: 700;
}
.sample-switch button {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s ease;
}
.sample-switch button:hover { background: rgba(255, 255, 255, .14); }
.sample-switch button.is-active {
  background: var(--magenta);
  border-color: var(--magenta);
}

/* ============================================================
   HERO
   ============================================================ */
.pv-hero {
  background: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Soft gradient mesh cover banner — sits behind the identity panel
   and gives the page top a colored "lockup" zone. Provider samples
   can override the background-image via JS to drop in a real cover. */
.pv-hero__cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  background:
    radial-gradient(80% 120% at 12% 0%, rgba(36, 168, 74, .28), transparent 60%),
    radial-gradient(70% 100% at 88% 0%, rgba(53, 192, 204, .26), transparent 65%),
    radial-gradient(60% 100% at 50% 100%, rgba(230, 23, 90, .12), transparent 60%),
    linear-gradient(180deg, #F1F8F4 0%, #FFFFFF 100%);
  background-size: cover;
  background-position: center;
  z-index: -1;
}
/* Soft fade-to-white at the bottom of the cover so it blends into the
   rest of the page rather than ending in a hard band. */
.pv-hero__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, #fff 100%);
}
.pv-hero__banner {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.pv-hero__banner .container {
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 16px;
}
.pv-hero__pin {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  padding: 5px 10px;
  border-radius: 4px;
}

.pv-hero__inner {
  padding: 0 32px 30px;
  position: relative;
}
.pv-identity {
  display: grid;
  grid-template-columns: 132px 1fr auto;
  gap: 28px;
  align-items: start;
  margin-top: -60px;
  background: #fff;
  padding: 24px 0 0;
}
.pv-logo {
  width: 132px;
  height: 132px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 16px;
  display: grid;
  place-items: center;
  padding: 18px;
  box-shadow: 0 18px 36px -16px rgba(16, 21, 36, .18);
  position: relative;
  z-index: 2;
}
.pv-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.pv-identity__copy { padding-top: 70px; }
.pv-identity__copy h1 {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -.02em;
  margin: 0 0 8px;
  color: var(--ink);
}
.pv-tag {
  margin: 0 0 14px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 60ch;
}
.pv-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.pv-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /* keep each item on one line so the icon stays glued to its label */
  white-space: nowrap;
}
.pv-meta__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
}
.pv-meta__dot--green {
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(36, 168, 74, .18);
}
.pv-meta__sep { color: #c9ccd2; }
.pv-meta__icon {
  width: 14px; height: 14px;
  color: var(--muted);
  flex-shrink: 0;
}

/* Clean hero — logo card overlaps into the colored cover banner */
.pv-hero--clean .pv-identity {
  margin-top: 0;
  padding-top: 90px; /* push down so logo sits inside the cover band */
  position: relative;
  background: transparent; /* don't paint over the gradient cover */
}
.pv-hero--clean .pv-identity__copy { padding-top: 0; }
.pv-hero--clean .pv-actions { padding-top: 0; align-self: start; }
.pv-hero--clean .pv-hero__pin {
  display: inline-block;
  margin-bottom: 10px;
  background: rgba(36, 168, 74, .12);
  color: var(--green);
}

.pv-cats {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.pv-cats .sol-cat {
  font-size: 11.5px;
  font-weight: 600;
}

.pv-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 74px;
}
.pv-actions .btn {
  justify-content: center;
  white-space: nowrap;
  min-width: 200px;
}
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--rule);
}
.btn-secondary:hover {
  background: var(--panel);
  border-color: #bfc6cf;
}
.pv-actions__icons {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 4px;
}
.pv-actions__icons button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--rule);
  background: #fff;
  border-radius: 8px;
  color: var(--ink-soft);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.pv-actions__icons button:hover {
  background: var(--magenta);
  border-color: var(--magenta);
  color: #fff;
}

/* Quick stats strip */
.pv-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.pv-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px;
  border-left: 1px solid var(--rule-soft);
}
.pv-stat:first-child { border-left: 0; padding-left: 0; }
.pv-stat__num {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.pv-stat__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .005em;
}

/* ============================================================
   PAGE TABS
   ============================================================ */
.pv-tabs {
  background: #fff;
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 22;
}
.pv-tabs__inner {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.ptab {
  background: transparent;
  border: 0;
  padding: 18px 4px 16px;
  margin: 0 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color .15s ease, border-color .15s ease;
}
.ptab:first-child { margin-left: 0; }
.ptab:hover { color: var(--ink); }
.ptab.is-active {
  color: var(--ink);
  border-bottom-color: var(--magenta);
}
.ptab span {
  font-size: 11px;
  font-weight: 700;
  background: var(--panel);
  color: var(--muted);
  padding: 2px 8px;
  border-radius: 100px;
}
.ptab.is-active span {
  background: var(--magenta);
  color: #fff;
}

/* ============================================================
   MAIN, content + aside
   ============================================================ */
.pv-main {
  background: var(--pv-bg);
  padding: 32px 0 60px;
}
.pv-main__inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  align-items: start;
}

.pv-content { min-width: 0; }
.pv-section {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 34px 36px 38px;
  margin-bottom: 18px;
  scroll-margin-top: 76px;
}
.pv-section h2 {
  margin: 0 0 26px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.005em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.pv-count {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.pv-subhead {
  margin: 36px 0 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-soft);
  font-weight: 700;
}

.pv-prose p {
  max-width: 82ch;
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.72;
  color: var(--ink);
}
.pv-prose p:first-child {
  font-size: 18px;
  line-height: 1.66;
}
.pv-prose p:last-child { margin-bottom: 0; }
.pv-prose strong { font-weight: 700; }

.pv-callouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin: 42px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--rule-soft);
}
.pv-callout {
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.pv-callout__icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(230, 23, 90, .08);
  color: var(--magenta);
  align-items: center;
  justify-content: center;
}
.pv-callout__icon svg { width: 20px; height: 20px; }
/* Inline location pin used in the .pv-meta row */
.pv-loc-icon {
  width: 13px;
  height: 13px;
  vertical-align: -2px;
  margin-right: 2px;
  color: var(--muted);
}
/* Inline location pin used in business-free .bf-id__meta row */
.bf-id__pin {
  width: 13px;
  height: 13px;
  vertical-align: -2px;
  margin-right: 4px;
  color: var(--muted);
}
.pv-callout h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .005em;
  color: var(--ink);
}
.pv-callout p {
  margin: 0;
  font-size: 14px;
  line-height: 1.58;
  color: var(--ink-soft);
}

/* Client logos with compact text fallback for providers without assets. */
.pv-clients {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.pv-client-tile {
  background: #fff;
  border-radius: 10px;
  min-height: 86px;
  padding: 18px 16px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: -.005em;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}
.pv-client-tile__logo {
  width: min(164px, 100%);
  height: 52px;
  object-fit: contain;
  display: block;
}
.pv-client-tile__mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c, var(--ink));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.pv-client-tile__name {
  display: block;
  line-height: 1.3;
}
.pv-client-tile:hover {
  background: #fff;
  border-color: #c5cad3;
  transform: translateY(-2px);
  color: var(--ink);
}

/* Solutions grid (provider-scoped) */
.pv-sol-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.pv-sol-card {
  border: 1px solid var(--rule);
  background: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
}
.pv-sol-card:hover {
  border-color: var(--magenta);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -14px rgba(16, 21, 36, .14);
}
.pv-sol-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pv-sol-card__head h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  flex: 1;
}
.pv-sol-card__pin {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--magenta);
  background: rgba(230, 23, 90, .08);
  padding: 3px 8px;
  border-radius: 4px;
}
.pv-sol-card p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  flex: 1;
}
.pv-sol-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--soft-line);
  color: var(--muted);
}
.pv-sol-card__link {
  color: var(--magenta);
  font-weight: 600;
}
.pv-sol-card__link:hover { color: var(--magenta-2); }

/* Knowledge grid */
.pv-knowledge {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.pv-know-card {
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.pv-know-card:hover {
  border-color: #c5cad3;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -14px rgba(16, 21, 36, .12);
}
.pv-know-card .cat {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--magenta);
}
.pv-know-card h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}
.pv-know-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  flex: 1;
}
.pv-know-card .byline {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: auto;
  padding-top: 10px;
}
.pv-know-card .author {
  color: #2c56e0;
  font-weight: 600;
}

/* Reviews */
.pv-reviews {
  display: grid;
  gap: 14px;
}
.pv-review {
  background: var(--panel);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pv-review__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pv-review__stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #F5C93B;
}
.pv-review__stars svg { width: 16px; height: 16px; }
.pv-review__stars svg.empty { color: #D4D7DC; }
.pv-review__role {
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 600;
}
.pv-review p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
}
.pv-review__date {
  font-size: 11.5px;
  color: var(--muted);
}
.pv-review-foot {
  margin-top: 18px;
  text-align: center;
}

/* Contact */
.pv-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.pv-contact__copy h2 {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 12px;
}
.pv-contact__copy p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.pv-contact__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
}
.pv-contact__list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
  color: var(--ink-soft);
}
.pv-contact__list strong {
  color: var(--ink);
  font-weight: 700;
}
.pv-contact__form {
  background: var(--panel);
  border-radius: 12px;
  padding: 22px 22px 24px;
  display: grid;
  gap: 12px;
}
.pv-contact__form label {
  display: grid;
  gap: 6px;
}
.pv-contact__form span {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
}
.pv-contact__form input,
.pv-contact__form textarea {
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--ink);
  outline: 0;
  resize: vertical;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.pv-contact__form input:focus,
.pv-contact__form textarea:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(230, 23, 90, .15);
}
.pv-contact__form button {
  margin-top: 6px;
  width: 100%;
  justify-content: center;
}
.pv-contact__small {
  margin: 8px 0 0;
  font-size: 11.5px;
  color: var(--muted);
}
.pv-contact__small a {
  color: var(--magenta);
  font-weight: 600;
}

/* ============================================================
   ASIDE, fast facts cards
   ============================================================ */
.pv-aside {
  position: sticky;
  top: 76px;
  display: grid;
  gap: 16px;
}
/* Verified badge inside a .pv-card — green check + two-line copy. */
.pv-verified {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  background: rgba(36, 168, 74, .08);
  border: 1px solid rgba(36, 168, 74, .22);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.pv-verified__icon {
  width: 24px;
  height: 24px;
  color: var(--green);
  margin-top: 1px;
}
.pv-verified strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.005em;
}
.pv-verified span {
  display: block;
  margin-top: 3px;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--ink-soft);
}

.pv-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 20px 22px 22px;
}
.pv-card h4 {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.pv-card--accent {
  background: linear-gradient(160deg, #FFF1F4 0%, #FFFFFF 70%);
  border-color: rgba(230, 23, 90, .18);
}
.pv-card--accent h4 {
  font-size: 16px;
  letter-spacing: -.005em;
  text-transform: none;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 8px;
}
.pv-card--accent p {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.pv-card--accent .btn {
  width: 100%;
  justify-content: center;
}
.pv-card__eyebrow {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--magenta);
  margin-bottom: 8px;
}

.pv-facts {
  margin: 0;
  display: grid;
  gap: 0;
}
.pv-facts > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--soft-line);
  font-size: 13px;
}
.pv-facts > div:last-child { border-bottom: 0; }
.pv-facts dt {
  font-weight: 500;
  color: var(--muted);
  margin: 0;
}
.pv-facts dd {
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.pv-facts--compact > div {
  grid-template-columns: 90px 1fr;
  padding: 7px 0;
  font-size: 12px;
}
.pv-card__report {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1px dashed var(--muted);
}
.pv-card__report:hover {
  color: var(--magenta);
  border-bottom-color: var(--magenta);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .pv-main__inner { grid-template-columns: 1fr; }
  .pv-aside { position: static; }
  .pv-identity {
    grid-template-columns: 100px 1fr;
    gap: 18px;
  }
  .pv-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 8px;
  }
  .pv-actions .btn { flex: 1; min-width: 160px; }
  .pv-stats { grid-template-columns: repeat(3, 1fr); }
  .pv-stat:nth-child(4) { border-left: 0; }
  .pv-stat:nth-child(n+4) { border-top: 1px solid var(--rule-soft); }
  .pv-callouts { grid-template-columns: 1fr; }
  .pv-sol-grid, .pv-knowledge { grid-template-columns: 1fr; }
  .pv-clients { grid-template-columns: repeat(3, 1fr); }
  .pv-contact { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pv-main {
    overflow-x: hidden;
  }
  .pv-main > .container {
    width: 100%;
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .pv-content,
  .pv-section {
    width: 100%;
    max-width: 100%;
  }
  .pv-hero__banner { height: 140px; }
  .pv-identity { margin-top: -40px; grid-template-columns: 1fr; }
  .pv-logo { width: 90px; height: 90px; padding: 12px; }
  .pv-identity__copy { padding-top: 8px; }
  .pv-stats { grid-template-columns: repeat(2, 1fr); }
  .pv-stat:nth-child(odd) { border-left: 0; }
  .pv-stat:nth-child(n+3) { border-top: 1px solid var(--rule-soft); }
  .pv-section { padding: 26px 18px; }
  .pv-section h2 { margin-bottom: 20px; }
  .pv-prose p,
  .pv-prose p:first-child {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.65;
    overflow-wrap: anywhere;
  }
  .pv-callouts {
    gap: 26px;
    margin-top: 30px;
    padding-top: 24px;
  }
  .pv-client-tile {
    min-height: 92px;
    padding: 16px 14px;
  }
  .pv-clients { grid-template-columns: repeat(2, 1fr); }
  .ptab { margin: 0 8px; }
  .pv-actions .btn { min-width: auto; }
}

/* ============================================================
   TEMPLATE STRIP, slim navy bar at the top of each sample
   showing which of the 4 templates this page demonstrates.
   ============================================================ */
.tpl-strip {
  background: #0F1729;
  color: rgba(255, 255, 255, .8);
  padding: 10px 0;
  font-size: 12.5px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.tpl-strip .container {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.tpl-strip__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}
.tpl-strip__name {
  color: #fff;
  font-weight: 600;
}
.tpl-strip__name strong {
  color: #d6a64a;
  font-weight: 700;
}
.tpl-strip__sep { color: rgba(255, 255, 255, .35); }
.tpl-strip__hint {
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
}
.tpl-strip__nav {
  margin-left: auto;
  display: inline-flex;
  gap: 4px;
  background: rgba(255, 255, 255, .06);
  padding: 3px;
  border-radius: 100px;
}
.tpl-strip__nav a {
  color: rgba(255, 255, 255, .75);
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 100px;
  transition: background .15s ease, color .15s ease;
}
.tpl-strip__nav a:hover { color: #fff; }
.tpl-strip__nav a.is-active {
  background: var(--magenta);
  color: #fff;
}
@media (max-width: 760px) {
  .tpl-strip__nav { width: 100%; justify-content: stretch; flex-wrap: wrap; }
  .tpl-strip__nav a { flex: 1; text-align: center; }
}

/* ============================================================
   BUSINESS FREE, compact landing
   ============================================================ */
.bf-hero {
  background: linear-gradient(180deg, #F8FAFB 0%, #FFFFFF 100%);
  padding: 36px 0 26px;
}
.bf-hero__inner { display: block; }
.bf-id {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 28px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 26px 28px;
  box-shadow: 0 10px 28px -18px rgba(16, 21, 36, .15);
}
.bf-id__logo {
  width: 96px;
  height: 96px;
  border-radius: 14px;
  border: 1px solid var(--rule);
  display: grid;
  place-items: center;
  padding: 12px;
}
.bf-id__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.bf-id__type {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.bf-id__copy h1 {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
}
.bf-id__lede {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 560px;
}
.bf-id__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 12px;
}
.bf-id__meta a { color: var(--magenta); font-weight: 600; }
.bf-id__meta .dot {
  width: 3px; height: 3px; border-radius: 50%; background: var(--muted);
}
.bf-id__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bf-id__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  min-width: 180px;
}
.bf-id__actions .btn { justify-content: center; }
.btn-secondary {
  background: var(--panel);
  color: var(--ink);
  border: 1px solid var(--rule);
}
.btn-secondary:hover { background: #ECEEF2; }

.bf-main {
  background: var(--pv-bg);
  padding: 28px 0 60px;
}
.bf-main__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}
.bf-content { display: flex; flex-direction: column; gap: 20px; }
.bf-block {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 22px 24px;
}
.bf-block h2 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.bf-block h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.bf-block p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.bf-block__hint {
  font-size: 12.5px;
  color: var(--muted);
}
.bf-meta {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 8px;
}
.bf-meta strong { color: var(--ink); font-weight: 700; }
.bf-meta a { color: var(--magenta); font-weight: 600; }

.bf-content-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.bf-content-list li {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-top: 1px solid var(--soft-line);
}
.bf-content-list li:first-child { border-top: 0; padding-top: 0; }
.bf-content-list a {
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
}
.bf-content-list a:hover { color: var(--magenta); }
.cat-tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--magenta);
  background: rgba(230, 23, 90, .08);
  padding: 3px 8px;
  border-radius: 4px;
  text-align: center;
  align-self: center;
  text-transform: uppercase;
}

.bf-aside { display: flex; flex-direction: column; gap: 16px; }
.bf-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 18px 20px;
}
.bf-card h4 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
}
.bf-card p {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.bf-card .btn { width: 100%; justify-content: center; margin-bottom: 8px; }
.bf-card__eyebrow {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--magenta);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.bf-card__link {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--magenta);
  margin-top: 4px;
}
.bf-card__link:hover { text-decoration: underline; }
.bf-card--upgrade {
  background: linear-gradient(180deg, rgba(230, 23, 90, .06), rgba(230, 23, 90, .02));
  border-color: rgba(230, 23, 90, .25);
}

.bf-mini-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.bf-mini-list a {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px solid var(--soft-line);
}
.bf-mini-list li:last-child a { border-bottom: 0; }
.bf-mini-list a:hover { color: var(--magenta); }

/* ============================================================
   SOLUTION PREMIUM, rich product page
   ============================================================ */
.sp-hero {
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(184, 137, 58, .08), transparent 50%),
    linear-gradient(180deg, #FBFAF6 0%, #FFFFFF 100%);
  padding: 44px 0 56px;
  border-bottom: 1px solid var(--rule-soft);
}
.sp-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 48px;
  align-items: center;
}
.sp-hero__pin {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.sp-hero__by {
  font-size: 13px;
  color: var(--muted);
}
.sp-hero__by strong { color: var(--ink); }
.sp-hero__copy h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--ink);
}
.sp-hero__lede {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
}
.sp-hero__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}
.sp-hero__ctas {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.sp-hero__trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 24px;
  font-size: 13px;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.sp-hero__trust strong {
  color: var(--ink);
  font-weight: 800;
  font-size: 18px;
  margin-right: 4px;
}

/* Faux screenshot panel */
.sp-hero__shot { display: flex; justify-content: flex-end; }
.sp-shot-img--hero {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: #f1f3f6;
  border: 1px solid var(--rule);
  box-shadow: 0 30px 60px -28px rgba(16, 21, 36, .35);
}
.sp-shot-img--hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sp-shot {
  width: 100%;
  max-width: 460px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--rule);
  box-shadow: 0 30px 60px -28px rgba(16, 21, 36, .35);
  overflow: hidden;
}
.sp-shot__chrome {
  display: flex;
  gap: 5px;
  padding: 10px 12px;
  background: #F1F2F5;
  border-bottom: 1px solid var(--soft-line);
}
.sp-shot__chrome span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #D5D8DD;
}
.sp-shot__chrome span:nth-child(1) { background: #FF5F57; }
.sp-shot__chrome span:nth-child(2) { background: #FEBC2E; }
.sp-shot__chrome span:nth-child(3) { background: #28C840; }
.sp-shot__body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sp-shot__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink);
}
.sp-shot__pill {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  background: rgba(184, 137, 58, .12);
  color: #8e6926;
  padding: 3px 8px;
  border-radius: 100px;
}
.sp-shot__bars { display: flex; flex-direction: column; gap: 10px; }
.sp-shot__bar {
  position: relative;
  height: 10px;
  background: #F1F2F5;
  border-radius: 100px;
  overflow: hidden;
}
.sp-shot__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #d6a64a, #8e6926);
  border-radius: 100px;
}
.sp-shot__bar label {
  position: absolute;
  top: -16px;
  left: 0;
  font-size: 10.5px;
  color: var(--muted);
  font-weight: 600;
}
.sp-shot__foot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink);
  padding-top: 8px;
  border-top: 1px solid var(--soft-line);
}
.sp-shot__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #24A84A;
  box-shadow: 0 0 6px rgba(36, 168, 74, .5);
}
.sp-shot__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.sp-shot__grid div {
  height: 40px;
  background: #F1F2F5;
  border-radius: 6px;
}
.sp-shot__grid div:nth-child(1) { background: linear-gradient(135deg, #FFE4C7, #F2C58F); }
.sp-shot__grid div:nth-child(2) { background: linear-gradient(135deg, #E0EAFA, #B7CEF1); }
.sp-shot__grid div:nth-child(3) { background: linear-gradient(135deg, #E5F4E1, #B6DFA4); }
.sp-shot__rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
}
.sp-shot__rows div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 6px;
  background: #F8FAFB;
  border-radius: 6px;
}
.sp-shot__rows span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #d6a64a;
}
.sp-shot__rows em { font-style: normal; }
.sp-shot--mini { max-width: 100%; }

/* Stats bar, solution variant uses gold accent on the numbers */
.sp-stats .mp-stat__num { color: #fff; }

/* Main content */
.sp-main {
  background: var(--pv-bg);
  padding: 36px 0 60px;
}
.sp-main__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: start;
}
.sp-content { display: flex; flex-direction: column; gap: 24px; }
.sp-section {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 26px 28px;
}
.sp-section h2 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.sp-prose {
  margin: 0 0 10px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.sp-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.sp-feat {
  padding: 16px;
  background: var(--panel);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sp-feat__icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(184, 137, 58, .12);
  color: #8e6926;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.sp-feat__icon svg { width: 18px; height: 18px; }
.sp-feat h4 {
  margin: 4px 0 4px;
  font-size: 14.5px;
  font-weight: 700;
}
.sp-feat p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.sp-shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.sp-shot-fig { margin: 0; }
.sp-shot-fig figcaption {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}
/* Real image-based screenshot placeholders. Replace the src attribute
   with a real product screenshot when the vendor hands one over. */
.sp-shot-img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f1f3f6;
  border: 1px solid var(--rule);
  box-shadow: 0 14px 30px -16px rgba(16, 21, 36, .2);
}
.sp-shot-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sp-cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.sp-case {
  background: var(--panel);
  border-radius: 10px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sp-case .cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--magenta);
}
.sp-case h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}
.sp-case p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.sp-case .byline {
  font-size: 12px;
  color: var(--muted);
  margin-top: auto;
}
.sp-case .author { color: var(--ink); font-weight: 600; }

.sp-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.sp-price {
  position: relative;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sp-price--mid {
  border-color: rgba(184, 137, 58, .5);
  background: linear-gradient(180deg, rgba(214, 166, 74, .06), transparent 80px);
}
.sp-price__pin {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  padding: 4px 10px;
  border-radius: 100px;
  color: #fff;
  background: linear-gradient(135deg, #b8893a, #d6a64a, #8e6926);
}
.sp-price__tier {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
}
.sp-price__num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
}
.sp-price__num span {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.sp-price p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-soft);
}
.sp-price ul {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
  border-top: 1px solid var(--soft-line);
  padding-top: 12px;
}
.sp-price ul li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--ink);
}
.sp-price ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 10px; height: 6px;
  border-left: 1.8px solid #b8893a;
  border-bottom: 1.8px solid #b8893a;
  transform: rotate(-45deg);
}
.sp-pricing__hint {
  font-size: 12.5px;
  color: var(--muted);
  margin: 14px 0 0;
}

/* Sticky right rail */
.sp-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 18px;
}
.sp-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 22px 22px 18px;
}
.sp-card--demo {
  border-color: rgba(184, 137, 58, .35);
  background: linear-gradient(180deg, rgba(214, 166, 74, .04), #fff 100px);
}
.sp-card__eyebrow {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #8e6926;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.sp-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}
.sp-card h4 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
}
.sp-card > p {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.sp-form {
  display: grid;
  gap: 10px;
}
.sp-form label {
  display: grid;
  gap: 4px;
}
.sp-form span {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
}
.sp-form input,
.sp-form select {
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 9px 11px;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--ink);
  outline: 0;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.sp-form input:focus,
.sp-form select:focus {
  border-color: #b8893a;
  box-shadow: 0 0 0 3px rgba(184, 137, 58, .15);
}
.sp-form button { width: 100%; justify-content: center; margin-top: 4px; }
.sp-form__small {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--muted);
}
.sp-form__small a { color: var(--magenta); font-weight: 600; }
.sp-card--mini h4 { margin-bottom: 8px; }

/* ============================================================
   SOLUTION FREE, basic spec sheet
   ============================================================ */
.sf-hero {
  background: linear-gradient(180deg, #F8FAFB 0%, #FFFFFF 100%);
  padding: 36px 0 26px;
}
.sf-id {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 24px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 24px 28px;
}
.sf-id__icon {
  width: 88px;
  height: 88px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font);
  font-weight: 800;
  font-size: 36px;
  color: #fff;
  background: linear-gradient(135deg, #35C0CC, #2596a0);
  letter-spacing: -.01em;
}
.sf-id__icon[data-hue="0"] { background: linear-gradient(135deg, #2c56e0, #1d3fa8); }
.sf-id__icon[data-hue="1"] { background: linear-gradient(135deg, #e6175a, #b81247); }
.sf-id__icon[data-hue="2"] { background: linear-gradient(135deg, #24A84A, #178737); }
.sf-id__icon[data-hue="3"] { background: linear-gradient(135deg, #6851A2, #4d3a85); }
.sf-id__icon[data-hue="4"] { background: linear-gradient(135deg, #ED6E23, #c25510); }
.sf-id__icon[data-hue="5"] { background: linear-gradient(135deg, #35C0CC, #2596a0); }

.sf-id__type {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.sf-id__copy h1 {
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
}
.sf-id__by {
  margin: 0 0 10px;
  font-size: 13.5px;
  color: var(--muted);
}
.sf-id__by a { color: var(--ink); }
.sf-id__by a:hover { color: var(--magenta); }
.sf-id__lede {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
}
.sf-id__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sf-id__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 160px;
}
.sf-id__actions .btn { justify-content: center; }

.sf-fact-strip {
  background: var(--navy);
  color: #fff;
  padding: 14px 0;
}
.sf-facts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.sf-facts > div {
  padding: 4px 22px;
  border-left: 1px solid rgba(255, 255, 255, .1);
}
.sf-facts > div:first-child { border-left: 0; padding-left: 0; }
.sf-facts dt {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 3px;
}
.sf-facts dd {
  margin: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
}
.sf-facts dd a {
  color: #fff;
  border-bottom: 1px dashed rgba(255, 255, 255, .35);
}
.sf-facts dd a:hover { border-bottom-color: #fff; }

.sf-main {
  background: var(--pv-bg);
  padding: 28px 0 50px;
}
.sf-main__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}
.sf-content { display: flex; flex-direction: column; gap: 18px; }
.sf-block {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 22px 26px;
}
.sf-block h2 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.sf-block h3 {
  margin: 16px 0 8px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
}
.sf-block p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.sf-needs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.sf-needs li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 13.5px;
  color: var(--ink);
  border-top: 1px solid var(--soft-line);
}
.sf-needs li:first-child { border-top: 0; }
.sf-needs li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 10px; height: 6px;
  border-left: 1.8px solid var(--magenta);
  border-bottom: 1.8px solid var(--magenta);
  transform: rotate(-45deg);
}

.sf-block--upgrade {
  background: linear-gradient(180deg, rgba(230, 23, 90, .04), #fff);
  border-color: rgba(230, 23, 90, .22);
}
.sf-block__eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--magenta);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.sf-block__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.sf-aside { display: flex; flex-direction: column; gap: 16px; }
.sf-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 18px 20px;
}
.sf-card h4 {
  margin: 0 0 12px;
  font-size: 13.5px;
  font-weight: 700;
}
.sf-parent {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
  margin-bottom: 12px;
}
.sf-parent__avatar {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #2c56e0, #1d3fa8);
}
.sf-parent strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
}
.sf-parent span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}
.sf-parent:hover strong { color: var(--magenta); }
.sf-mini-tier {
  margin-left: auto;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #fff;
  background: linear-gradient(135deg, #b8893a, #d6a64a, #8e6926);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ============================================================
   RESPONSIVE, new templates
   ============================================================ */
@media (max-width: 1100px) {
  .bf-id { grid-template-columns: 80px 1fr; }
  .bf-id__actions { grid-column: 1 / -1; flex-direction: row; }
  .bf-main__inner,
  .sp-main__inner,
  .sf-main__inner { grid-template-columns: 1fr; }
  .sp-aside { position: static; }
  .sp-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .sp-hero__shot { justify-content: center; }
  .sp-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-shots,
  .sp-cases,
  .sp-pricing { grid-template-columns: 1fr; }
  .sf-facts { grid-template-columns: repeat(2, 1fr); }
  .sf-facts > div:nth-child(odd) { border-left: 0; padding-left: 0; }
  .sf-facts > div { padding: 8px 22px; border-top: 1px solid rgba(255, 255, 255, .08); }
  .sf-facts > div:nth-child(-n+2) { border-top: 0; }
}
@media (max-width: 640px) {
  .bf-id { grid-template-columns: 1fr; }
  .bf-id__logo { margin: 0 auto; }
  .sf-id { grid-template-columns: 1fr; }
  .sf-id__icon { margin: 0 auto; }
  .sp-feat-grid { grid-template-columns: 1fr; }
  .sf-facts { grid-template-columns: 1fr; }
  .sf-facts > div { border-left: 0; padding-left: 0; }
}

/* ====================================================================
   PROVIDER PROFILE v2 — standardized template additions
   (de-greened cover, cover image, verification badges, flagship-solution
   hero, structured fields, video, pinned item, tabs-as-panes, TWM score,
   tier upgrade prompts). Overrides are appended so they win the cascade.
   ==================================================================== */

/* De-green the gradient cover + clean pin (brand = magenta + navy + teal). */
.pv-hero__cover {
  background:
    radial-gradient(80% 120% at 12% 0%, rgba(230, 23, 90, .16), transparent 60%),
    radial-gradient(70% 100% at 88% 0%, rgba(53, 192, 204, .22), transparent 65%),
    radial-gradient(60% 100% at 50% 100%, rgba(10, 32, 51, .06), transparent 60%),
    linear-gradient(180deg, #FAFAFC 0%, #FFFFFF 100%);
}
.pv-hero--clean .pv-hero__pin {
  background: color-mix(in srgb, var(--magenta, #e6175a) 12%, #fff);
  color: var(--magenta, #e6175a);
}
.pv-hero__pin--free { background: #eef0f4; color: var(--muted, #6b7686); }
.pv-identity__top { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

/* Custom cover image (premium): softened white wash so the identity text
   below stays readable while the image still reads as a cover photo. */
.pv-hero__cover--img::after {
  background: linear-gradient(180deg, rgba(255,255,255,.30) 0%, rgba(255,255,255,.55) 42%, #fff 78%);
}

/* Verification badges (hero) */
.pv-verify-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 4px; }
.pv-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 700; padding: 4px 10px; border-radius: 99px; white-space: nowrap;
}
.pv-badge em { font-style: normal; font-weight: 600; opacity: .7; margin-left: 2px; }
.pv-badge--twm { background: color-mix(in srgb, var(--magenta, #e6175a) 12%, #fff); color: var(--magenta, #e6175a); }
.pv-badge--partner { background: #eef2f7; color: #33445c; }
.pv-badge--partner svg { display: none; }

/* Flagship solution — standout hero */
.pv-flagship {
  display: grid; grid-template-columns: minmax(0, 320px) 1fr; gap: 24px; align-items: stretch;
  background: #fff; border: 1px solid var(--rule, #e6e8ee); border-radius: 16px; padding: 18px; margin: 0 0 18px;
}
.pv-flagship__preview {
  border-radius: 12px; overflow: hidden; min-height: 200px; display: flex; flex-direction: column;
  background: linear-gradient(135deg, var(--navy, #0a2033), #1c3350);
  box-shadow: 0 16px 34px -18px rgba(10,16,30,.5);
}
.pv-flagship__chrome { display: flex; gap: 6px; padding: 12px 14px; }
.pv-flagship__chrome span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.22); }
.pv-flagship__screen {
  flex: 1; display: grid; place-items: center; text-align: center; padding: 18px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(230,23,90,.30), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.10));
}
.pv-flagship__screen span { color: #fff; font-weight: 800; font-size: 20px; letter-spacing: -.01em; }
.pv-flagship__body { display: flex; flex-direction: column; gap: 10px; padding: 6px 4px; }
.pv-flagship__pin {
  align-self: flex-start; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--magenta, #e6175a); background: color-mix(in srgb, var(--magenta, #e6175a) 12%, #fff);
  padding: 4px 9px; border-radius: 5px;
}
.pv-flagship__body h3 { margin: 0; font-size: 22px; font-weight: 800; color: var(--ink, #0a2033); letter-spacing: -.02em; }
.pv-flagship__body > p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-soft, #51607a); }
.pv-flagship__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 6px; }
.pv-flagship__foot span { font-size: 12.5px; color: var(--muted, #6b7686); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
a.pv-sol-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; }

/* Upgrade prompts (free tier — stands in for the admin gating) */
.pv-upgrade {
  border: 1px dashed color-mix(in srgb, var(--magenta, #e6175a) 45%, #cfd5df);
  border-radius: 14px; background: color-mix(in srgb, var(--magenta, #e6175a) 4%, #fff);
  padding: 20px; display: flex; flex-direction: column; gap: 6px; justify-content: center;
}
.pv-upgrade__lock { font-size: 18px; }
.pv-upgrade h4 { margin: 2px 0 0; font-size: 15px; font-weight: 700; color: var(--ink, #0a2033); }
.pv-upgrade p { margin: 0; font-size: 13px; line-height: 1.5; color: var(--ink-soft, #51607a); }
.pv-upgrade__cta { font-size: 13px; font-weight: 700; color: var(--magenta, #e6175a); margin-top: 4px; }
.pv-upgrade--wide { flex-direction: row; align-items: center; gap: 16px; }
.pv-upgrade--wide > div { flex: 1; }
.pv-upgrade--wide .pv-upgrade__cta { white-space: nowrap; margin: 0; }

/* Video (premium) — faux player */
.pv-video {
  position: relative; margin: 0; border-radius: 14px; overflow: hidden; aspect-ratio: 16 / 9; max-width: 640px;
  background:
    radial-gradient(120% 90% at 30% 20%, rgba(230,23,90,.4), transparent 55%),
    linear-gradient(135deg, var(--navy, #0a2033), #1c3350);
  display: grid; place-items: center;
}
.pv-video__play {
  width: 64px; height: 64px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.92); color: var(--magenta, #e6175a);
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.pv-video figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px;
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  background: linear-gradient(0deg, rgba(10,16,30,.7), transparent); color: #fff;
}
.pv-video figcaption strong { font-size: 14px; }
.pv-video figcaption span { font-size: 12px; color: rgba(255,255,255,.8); }

/* Pinned / featured item */
.pv-pinned {
  display: block; text-decoration: none; color: inherit;
  border: 1px solid color-mix(in srgb, var(--magenta, #e6175a) 30%, #e6e8ee); border-radius: 14px; padding: 20px 22px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--magenta, #e6175a) 5%, #fff), #fff);
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.pv-pinned:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -18px rgba(16,21,36,.2); }
.pv-pinned__flag {
  display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; color: var(--magenta, #e6175a); margin-right: 8px;
}
.pv-pinned__type { font-size: 11px; font-weight: 700; color: var(--muted, #6b7686); text-transform: uppercase; letter-spacing: .06em; }
.pv-pinned h3 { margin: 8px 0 4px; font-size: 18px; font-weight: 700; color: var(--ink, #0a2033); }
.pv-pinned p { margin: 0 0 8px; font-size: 14px; line-height: 1.55; color: var(--ink-soft, #51607a); }
.pv-pinned__meta { font-size: 12px; color: var(--muted, #6b7686); font-weight: 600; }

/* Structured company fields */
.pv-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 28px; margin-top: 18px; }
.pv-field dt { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--magenta, #e6175a); margin-bottom: 4px; }
.pv-field dd { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink, #0a2033); }

/* Content type chips */
.pv-chiprow { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; }
.pv-chip { font-size: 12.5px; font-weight: 600; color: var(--ink-soft, #51607a); background: #f1f3f7; border-radius: 99px; padding: 6px 13px; }
.pv-chip.is-on { background: var(--navy, #0a2033); color: #fff; }

/* Tab panes */
.pv-tabpane[hidden] { display: none; }

/* TWM score ring (profile completeness) */
.pv-score { display: flex; align-items: center; gap: 14px; }
.pv-score__ring {
  --pct: 0; width: 56px; height: 56px; border-radius: 50%; flex: 0 0 auto; display: grid; place-items: center;
  background: conic-gradient(var(--magenta, #e6175a) calc(var(--pct) * 1%), #e9ecf1 0);
}
.pv-score__ring span { width: 42px; height: 42px; border-radius: 50%; background: #fff; display: grid; place-items: center; font-size: 15px; font-weight: 800; color: var(--ink, #0a2033); }
.pv-score__copy strong { display: block; font-size: 14px; color: var(--ink, #0a2033); }
.pv-score__copy span { font-size: 12px; color: var(--muted, #6b7686); }

/* Accreditations (sidebar) */
.pv-accred { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--soft-line, #eef0f4); }
.pv-accred__label { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--muted, #6b7686); }
.pv-accred__list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.pv-verified--none strong { color: var(--ink, #0a2033); }
.pv-card__report--up { color: var(--magenta, #e6175a); font-weight: 700; }

/* Logo / business-card letter fallbacks */
.pv-logo__mark { display: grid; place-items: center; width: 100%; height: 100%; font-size: 30px; font-weight: 800; color: var(--navy, #0a2033); }
.business-card .biz-logo span { display: grid; place-items: center; width: 100%; height: 100%; font-weight: 800; color: var(--navy, #0a2033); }

@media (max-width: 760px) {
  .pv-flagship { grid-template-columns: 1fr; }
  .pv-fields { grid-template-columns: 1fr; }
  .pv-upgrade--wide { flex-direction: column; align-items: flex-start; }
}

/* De-green the verified card (brand = magenta), and make the unverified
   variant a single full-width column (it has no icon, so the default
   28px-icon grid column was squashing its text). */
.pv-verified {
  background: color-mix(in srgb, var(--magenta, #e6175a) 6%, #f6f7f9);
  border-color: color-mix(in srgb, var(--magenta, #e6175a) 20%, #e6e8ee);
}
.pv-verified__icon { color: var(--magenta, #e6175a); }
.pv-verified--none {
  grid-template-columns: 1fr;
  background: #f4f6f9;
  border-color: var(--rule, #e6e8ee);
}
.pv-verified--none span { color: var(--muted, #6b7686); font-size: 12px; }
