:root {
  --bg: #f7f8f6;
  --paper: #ffffff;
  --ink: #181a1f;
  --ink-soft: #353a42;
  --muted: #68707c;
  --line: #dfe3e8;
  --line-strong: #cbd2da;
  --wash: #eef2ef;
  --accent: #1f7a5c;
  --accent-strong: #155c45;
  --accent-soft: #e4f3ec;
  --dark: #111513;
  --dark-soft: #dbe5df;
  --danger: #b42318;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(31, 122, 92, 0.28);
  outline-offset: 3px;
}

.prem-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 28px 24px 64px;
}

.prem-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 48px;
  margin-bottom: 44px;
}

.prem-brand {
  color: var(--ink);
  font-size: 19px;
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1;
  text-decoration: none;
}

.prem-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.prem-nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

.prem-nav a:hover {
  color: var(--ink);
  background: var(--wash);
}

.prem-hero {
  margin-bottom: 34px;
}

.prem-hero-copy {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.prem-eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-transform: uppercase;
}

.prem-title {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 6.2vw, 74px);
  font-weight: 880;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.prem-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.48;
}

.prem-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.prem-primary-link,
.prem-secondary-link,
.prem-subscribe-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 790;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.12s ease;
}

.prem-primary-link,
.prem-subscribe-btn {
  padding: 0 18px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
}

.prem-primary-link:hover,
.prem-subscribe-btn:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  transform: translateY(-1px);
}

.prem-primary-link:active,
.prem-subscribe-btn:active {
  transform: translateY(0);
}

.prem-secondary-link {
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink);
}

.prem-secondary-link:hover {
  border-color: var(--ink);
}

.prem-section {
  padding: 42px 0;
}

.prem-section + .prem-section {
  border-top: 1px solid var(--line);
}

.prem-legal-trust {
  display: grid;
  grid-template-columns: minmax(180px, 0.46fr) minmax(320px, 1.54fr);
  gap: 24px;
  align-items: start;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.prem-legal-trust h2 {
  max-width: 540px;
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 820;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.prem-legal-details {
  display: grid;
  gap: 10px;
  margin: 0;
}

.prem-legal-details div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.prem-legal-details div:last-child {
  border-bottom: 0;
}

.prem-legal-details dt,
.prem-legal-details dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.prem-legal-details dt {
  color: var(--muted);
  font-weight: 720;
  white-space: nowrap;
}

.prem-legal-details dd {
  color: var(--ink);
  font-weight: 690;
}

.prem-section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.prem-section-heading {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1;
}

.prem-section-lead {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.prem-scenario-grid,
.prem-grid,
.prem-pricing-grid {
  display: grid;
  gap: 14px;
}

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

.prem-scenario-card,
.prem-card,
.prem-price-card,
.prem-faq-item,
.prem-proof-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.prem-scenario-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.prem-scenario-card h3,
.prem-card-title,
.prem-visual-copy h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 820;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.prem-scenario-card p,
.prem-card-desc,
.prem-visual-copy p,
.prem-proof-box p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.prem-scenario-card ul {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 24px 0 0;
  list-style: none;
}

.prem-scenario-card li {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--bg);
  font-size: 13px;
  font-weight: 730;
}

.prem-scroll-frame {
  position: relative;
}

.prem-visual-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 440px);
  gap: 16px;
  overflow-x: auto;
  padding: 2px 2px 18px;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  scrollbar-color: var(--line-strong) transparent;
}

.prem-visual-card {
  min-height: 540px;
  height: auto;
  display: grid;
  grid-template-rows: 220px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  scroll-snap-align: start;
}

.prem-visual-media {
  height: 220px;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: #f0f2f4;
}

.prem-visual-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.prem-visual-placeholder {
  width: min(100%, 330px);
  min-height: 170px;
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 20px;
  border-radius: 8px;
  background: var(--paper);
}

.prem-visual-placeholder span {
  display: block;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-soft);
  background: var(--bg);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.25;
}

.prem-visual-copy {
  display: grid;
  grid-template-rows: auto minmax(100px, auto) 1fr;
  gap: 12px;
  padding: 22px;
}

.prem-visual-impact {
  margin: 0;
  align-self: start;
  padding: 0 0 0 14px;
  border-left: 3px solid var(--accent);
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 730;
  line-height: 1.45;
}

.prem-visual-copy h3 {
  margin-bottom: 0;
}

.prem-visual-copy > p:not(.prem-visual-impact) {
  font-size: 15px;
  line-height: 1.5;
}

.prem-compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.prem-compare-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 15px;
}

.prem-compare-table th,
.prem-compare-table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.prem-compare-table tr:last-child th,
.prem-compare-table tr:last-child td {
  border-bottom: 0;
}

.prem-compare-table thead th {
  color: var(--muted);
  background: var(--wash);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prem-compare-table tbody th {
  width: 48%;
  color: var(--ink);
  font-weight: 770;
}

.prem-compare-table td {
  color: var(--ink-soft);
}

.prem-card {
  min-height: 248px;
  padding: 22px;
}

.prem-card-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--accent);
  background: var(--accent-soft);
}

.prem-card-icon svg {
  width: 23px;
  height: 23px;
}

.prem-features-footer {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.prem-pricing {
  padding-top: 54px;
}

.prem-pricing-head {
  max-width: 820px;
}

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

.prem-price-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.prem-price-card--featured {
  border-color: var(--accent);
  background: #fbfffc;
}

.prem-price-card-header {
  padding: 10px 18px;
  color: #fff;
  background: var(--accent);
  font-size: 13px;
  font-weight: 820;
  text-align: center;
}

.prem-price-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.prem-price-card:not(.prem-price-card--featured) .prem-price-card-body {
  padding-top: 66px;
}

.prem-price-plan-name {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.prem-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.prem-price-amount {
  color: var(--ink);
  font-size: clamp(46px, 5vw, 64px);
  font-weight: 880;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.prem-price-currency {
  color: var(--ink);
  font-size: 24px;
  font-weight: 850;
}

.prem-price-period,
.prem-price-per-month {
  color: var(--muted);
  font-size: 14px;
}

.prem-price-per-month {
  min-height: 40px;
  margin: 0 0 24px;
  line-height: 1.45;
}

.prem-subscribe-btn {
  width: 100%;
  margin-top: auto;
}

.prem-subscribe-btn:disabled {
  border-color: #9ab8ad;
  background: #9ab8ad;
  cursor: not-allowed;
  transform: none;
}

.prem-subscribe-btn--outline {
  color: var(--accent);
  background: transparent;
}

.prem-subscribe-btn--outline:hover {
  color: #fff;
}

.prem-pricing-offer-link,
.prem-pricing-error {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.prem-pricing-offer-link a,
.prem-faq-item a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prem-pricing-error {
  color: var(--danger);
  display: none;
}

.prem-trial-box {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 22px 28px;
  align-items: center;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.prem-trial-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.prem-trial-copy p:last-child {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}

.prem-trial-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  list-style: none;
}

.prem-trial-list li {
  position: relative;
  padding-left: 18px;
}

.prem-trial-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.prem-trial-btn {
  grid-column: 1 / -1;
  max-width: 340px;
}

.prem-education {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: 32px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.prem-education-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.prem-education-copy .prem-section-heading {
  margin-bottom: 0;
}

.prem-education-copy p:not(.prem-eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.62;
}

.prem-education-copy .prem-primary-link {
  width: fit-content;
  margin-top: 8px;
}

.prem-education-details {
  display: grid;
  gap: 22px;
}

.prem-education-detail {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.prem-education-detail h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 820;
  line-height: 1.2;
}

.prem-education-detail ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.52;
  list-style: none;
}

.prem-education-detail li {
  position: relative;
  padding-left: 18px;
}

.prem-education-detail li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.prem-proof {
  padding-top: 0;
}

.prem-proof-box {
  padding: 32px;
  background: var(--dark);
  color: #fff;
}

.prem-proof-box .prem-eyebrow {
  color: rgba(255, 255, 255, 0.64);
}

.prem-proof-box .prem-section-heading {
  max-width: 820px;
  margin-bottom: 14px;
  color: #fff;
}

.prem-proof-box p {
  max-width: 780px;
  color: var(--dark-soft);
}

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

.prem-faq-item {
  overflow: hidden;
}

.prem-faq-item summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
  font-weight: 790;
  list-style: none;
}

.prem-faq-item summary::-webkit-details-marker {
  display: none;
}

.prem-faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
}

.prem-faq-item[open] summary::after {
  content: "-";
}

.prem-faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

/* ── Testimonial ── */

.prem-testimonial-section {
  padding: 40px 0 52px;
  border-top: 1px solid var(--line);
}

.prem-testimonial-card {
  max-width: 720px;
  background: var(--wash);
  border-radius: 12px;
  padding: 32px 36px;
}

.prem-testimonial-quote {
  margin: 0 0 24px;
  display: grid;
  gap: 14px;
}

.prem-testimonial-quote p {
  margin: 0;
  font-size: 16px;
  line-height: 1.72;
  color: var(--ink-soft);
}

.prem-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.prem-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.prem-testimonial-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.prem-testimonial-meta {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.prem-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding-bottom: 52px;
}

.prem-final h2 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 860;
  letter-spacing: -0.055em;
  line-height: 1;
}

.prem-registry {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.prem-registry__icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 122, 92, 0.2);
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-soft);
}

.prem-registry p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.prem-registry a {
  color: var(--accent);
  font-weight: 780;
  text-decoration: none;
}

.prem-registry a:hover {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prem-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.prem-footer-link {
  color: var(--muted);
  text-decoration: none;
}

.prem-footer-link:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .prem-shell {
    padding: 24px 18px 56px;
  }

  .prem-topbar {
    margin-bottom: 28px;
  }

  .prem-hero {
    display: block;
  }

  .prem-hero-copy {
    min-height: auto;
  }

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

  .prem-education {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  html {
    scroll-behavior: auto;
  }

  .prem-shell {
    padding: 18px 14px 48px;
  }

  .prem-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .prem-nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .prem-nav a {
    white-space: nowrap;
  }

  .prem-title {
    font-size: clamp(36px, 12vw, 50px);
  }

  .prem-hero-copy {
    padding: 28px 20px;
  }

  .prem-hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .prem-primary-link,
  .prem-secondary-link {
    width: 100%;
  }

  .prem-section {
    padding: 34px 0;
  }

  .prem-scenario-grid,
  .prem-grid,
  .prem-pricing-grid,
  .prem-trial-box,
  .prem-final,
  .prem-legal-trust {
    grid-template-columns: 1fr;
  }

  .prem-scenario-card,
  .prem-card {
    min-height: 0;
  }

  .prem-scroll-frame::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    right: -14px;
    bottom: 18px;
    width: 54px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(247, 248, 246, 0), var(--bg) 76%);
  }

  .prem-scroll-frame::after {
    content: "→";
    position: absolute;
    z-index: 3;
    right: 4px;
    bottom: 28px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--ink-soft);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 18px rgba(24, 26, 31, 0.08);
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
  }

  .prem-visual-track {
    grid-auto-columns: minmax(286px, 88vw);
    gap: 12px;
    margin-right: -14px;
    padding-right: 14px;
  }

  .prem-visual-card {
    min-height: 520px;
    height: auto;
    grid-template-rows: 170px 1fr;
  }

  .prem-visual-media {
    height: 170px;
    min-height: 0;
    padding: 14px;
  }

  .prem-visual-placeholder {
    min-height: 158px;
  }

  .prem-compare-wrap {
    margin-right: -14px;
    border-right: 0;
    border-radius: 8px 0 0 8px;
  }

  .prem-scroll-frame--compare::before {
    bottom: 0;
  }

  .prem-scroll-frame--compare::after {
    bottom: 10px;
  }

  .prem-compare-table {
    min-width: 620px;
  }

  .prem-compare-table th,
  .prem-compare-table td {
    padding: 14px;
  }

  .prem-proof-box,
  .prem-price-card-body,
  .prem-trial-box {
    padding: 24px;
  }

  .prem-trial-btn {
    max-width: none;
  }

  .prem-education-copy .prem-primary-link {
    width: 100%;
  }

  .prem-final .prem-primary-link {
    width: 100%;
  }

  .prem-registry {
    align-items: flex-start;
    gap: 12px;
    padding: 22px 18px;
  }

  .prem-legal-trust {
    padding: 22px 18px;
  }

  .prem-legal-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Business page (/business) additions: offer cards reuse premium pricing styles. */
.prem-price-amount--from {
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.1;
}

.prem-price-card-body ul {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.prem-price-card-body li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.prem-price-card-body li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--muted);
}
