:root {
  color-scheme: light;
  --ink: #111313;
  --muted: #656a66;
  --line: #dfe4df;
  --paper: #f8faf6;
  --surface: #ffffff;
  --surface-2: #eef3ed;
  --charcoal: #171a18;
  --lime: #b9ff3d;
  --cyan: #48e2d2;
  --plum: #5b365f;
  --shadow: 0 24px 80px rgba(17, 19, 19, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.36;
  background-image: linear-gradient(rgba(17, 19, 19, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 19, 19, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  z-index: -2;
}

.ambient {
  position: fixed;
  inset: -20% -10% auto auto;
  width: 58vw;
  height: 58vw;
  pointer-events: none;
  background: radial-gradient(circle, rgba(185, 255, 61, 0.24), transparent 58%), radial-gradient(circle at 70% 30%, rgba(72, 226, 210, 0.22), transparent 48%);
  filter: blur(28px);
  z-index: -3;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  width: min(var(--max), calc(100% - 28px));
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px 10px 10px 14px;
  background: rgba(248, 250, 246, 0.76);
  border: 1px solid rgba(17, 19, 19, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}
.site-header.is-elevated { box-shadow: 0 18px 50px rgba(17, 19, 19, 0.12); background: rgba(248, 250, 246, 0.92); }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: 0; white-space: nowrap; }
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--charcoal);
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  box-shadow: inset 0 0 0 1px rgba(17, 19, 19, 0.12);
}

.nav-links { justify-self: center; display: flex; align-items: center; gap: 26px; font-size: 14px; color: var(--muted); }
.nav-links a { transition: color 160ms ease; }
.nav-links a:hover { color: var(--ink); }

.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(17, 19, 19, 0.12);
  font-weight: 750;
  font-size: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.header-cta, .button.primary { background: var(--charcoal); color: #fff; box-shadow: 0 14px 30px rgba(17, 19, 19, 0.18); }
.button.secondary { background: rgba(255,255,255,0.74); color: var(--ink); }
.header-cta:hover, .button:hover { transform: translateY(-2px); }
.button.primary:hover { box-shadow: 0 18px 42px rgba(17, 19, 19, 0.24); }

.hero {
  min-height: min(760px, calc(100vh - 84px));
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 44px;
  padding: 62px 0 72px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--plum);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 2.55vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: 0;
}
h2 { font-size: clamp(1.75rem, 2.4vw, 3rem); line-height: 1.08; margin-bottom: 18px; letter-spacing: 0; }
h3 { font-size: 1.3rem; line-height: 1.14; margin-bottom: 12px; }
.hero-lead, .section-heading p, .system-copy p, .appointment-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; color: var(--muted); font-size: 13px; }
.hero-points span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,0.55); }

.hero-visual {
  position: relative;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,0.72), rgba(230,238,229,0.88));
  padding: 12px;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}
.hero-dashboard { min-height: 520px; }
.browser-shell {
  position: relative;
  min-height: 496px;
  overflow: hidden;
  border: 1px solid rgba(17,19,19,0.08);
  border-radius: 12px;
  background: radial-gradient(circle at 74% 18%, rgba(185,255,61,0.32), transparent 32%), radial-gradient(circle at 20% 85%, rgba(72,226,210,0.18), transparent 30%), #f8faf6;
}
.window-bar { display: flex; gap: 7px; padding: 14px 16px; border-bottom: 1px solid rgba(17,19,19,0.08); }
.window-bar span { width: 9px; height: 9px; border-radius: 50%; background: rgba(17,19,19,0.24); }
.preview-hero { padding: 34px 32px 22px; max-width: 520px; }
.preview-hero p { margin-bottom: 12px; color: var(--plum); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: 0.12em; }
.preview-hero h2 { max-width: 430px; margin-bottom: 14px; font-size: clamp(1.55rem, 2vw, 2.25rem); line-height: 1.08; }
.preview-hero span { color: var(--muted); font-size: 14px; }
.preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0 32px; }
.preview-grid div { min-height: 108px; padding: 18px; border: 1px solid rgba(17,19,19,0.08); border-radius: 8px; background: rgba(255,255,255,0.68); }
.preview-grid strong, .preview-grid span { display: block; }
.preview-grid strong { margin-bottom: 8px; font-size: 1.35rem; }
.preview-grid span { color: var(--muted); font-size: 12px; line-height: 1.35; }
.preview-flow { position: absolute; left: 32px; right: 32px; bottom: 32px; display: grid; gap: 12px; }
.preview-flow span { height: 12px; border-radius: 999px; background: linear-gradient(90deg, rgba(17,19,19,0.12), rgba(185,255,61,0.58)); }
.preview-flow span:nth-child(2) { width: 78%; }
.preview-flow span:nth-child(3) { width: 58%; background: linear-gradient(90deg, rgba(17,19,19,0.12), rgba(72,226,210,0.55)); }
.preview-flow span:nth-child(4) { width: 38%; }
.metric-card {
  position: absolute;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(17,19,19,0.08);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(17,19,19,0.12);
  backdrop-filter: blur(16px);
}
.metric-card span { color: var(--muted); font-size: 12px; }
.metric-card strong { font-size: 20px; }
.metric-card.top { top: 24px; left: 24px; }
.metric-card.bottom { right: 24px; bottom: 24px; }

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 110px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--line);
}
.proof-strip div { padding: 28px; background: rgba(255,255,255,0.72); }
.proof-strip strong, .proof-strip span { display: block; }
.proof-strip strong { margin-bottom: 8px; }
.proof-strip span { color: var(--muted); line-height: 1.55; }

.services, .premium-system, .process, .pricing, .compare, .faq, .appointment { padding: 92px 0; scroll-margin-top: 90px; }
.section-heading { display: grid; gap: 8px; margin-bottom: 36px; max-width: 820px; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card, .price-card, .step, details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 18px 60px rgba(17,19,19,0.06);
}
.service-card { min-height: 330px; padding: 28px; display: flex; flex-direction: column; }
.card-index { color: var(--muted); font-size: 13px; margin-bottom: auto; }
.service-card h3 { margin-top: 58px; font-size: 1.65rem; }
.service-card p { color: var(--muted); line-height: 1.65; }
.service-card a { margin-top: auto; font-weight: 780; color: var(--plum); }

.premium-system {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: center;
}
.system-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 520px;
  padding: 46px 74px;
  border-radius: 18px;
  color: #f7faf6;
  background: radial-gradient(circle at var(--mx, 45%) var(--my, 42%), rgba(185,255,61,0.18), transparent 34%), #141816;
  box-shadow: 0 28px 80px rgba(17, 19, 19, 0.22);
  overflow: hidden;
  transform-style: preserve-3d;
}
.system-board::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.35;
}
.quad { position: relative; z-index: 1; padding: 28px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.035); transition: background 180ms ease, transform 180ms ease; }
.quad:hover, .quad.active { background: rgba(185,255,61,0.12); transform: translateY(-3px); }
.quad span { color: var(--lime); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: 0.12em; }
.quad h3 { margin-top: 18px; color: #fff; }
.quad p { color: rgba(255,255,255,0.66); line-height: 1.65; }
.axis { position: absolute; z-index: 2; color: rgba(255,255,255,0.5); font-size: 11px; font-weight: 850; letter-spacing: 0.18em; }
.axis.top { top: 18px; left: 50%; transform: translateX(-50%); }
.axis.bottom { bottom: 18px; left: 50%; transform: translateX(-50%); }
.axis.left { left: 22px; top: 50%; transform: translateY(-50%) rotate(-90deg); transform-origin: center; }
.axis.right { right: 22px; top: 50%; transform: translateY(-50%) rotate(90deg); transform-origin: center; }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.step { padding: 24px; min-height: 260px; }
.step span { display: inline-flex; margin-bottom: 46px; color: var(--plum); font-weight: 850; }
.step p { color: var(--muted); line-height: 1.6; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; padding: 28px; display: flex; flex-direction: column; min-height: 430px; }
.price-card.featured { background: var(--charcoal); color: #fff; transform: translateY(-12px); }
.price-card p { color: var(--muted); font-weight: 800; }
.price-card.featured p, .price-card.featured li { color: rgba(255,255,255,0.72); }
.price-card h3 { font-size: 2.35rem; margin: 8px 0 28px; }
.price-card ul { display: grid; gap: 14px; padding: 0; margin: 0 0 30px; list-style: none; color: var(--muted); }
.price-card li::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 10px; border-radius: 999px; background: var(--lime); }
.price-card li.negative::before { background: #ef4444; }
.price-card .button { margin-top: auto; }
.badge { position: absolute; top: 18px; right: 18px; padding: 7px 10px; border-radius: 999px; background: var(--lime); color: var(--ink); font-size: 12px; font-weight: 850; }

.compare { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 36px; align-items: start; }
.compare-table { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--line); gap: 1px; }
.compare-table div { padding: 28px; background: rgba(255,255,255,0.75); min-height: 160px; }
.compare-table span { display: block; margin-bottom: 18px; color: var(--muted); font-size: 13px; font-weight: 850; }
.compare-table strong { font-size: 1.2rem; line-height: 1.35; }

.faq-list { display: grid; gap: 12px; max-width: 880px; }
details { padding: 0; overflow: hidden; }
summary { cursor: pointer; padding: 22px 24px; font-weight: 800; list-style: none; display: flex; justify-content: space-between; gap: 18px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--plum); font-size: 24px; line-height: 1; }
details[open] summary::after { content: "-"; }
details p { margin: 0; padding: 0 24px 24px; color: var(--muted); line-height: 1.65; }

.appointment {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: start;
  margin-bottom: 72px;
  padding: 64px;
  border-radius: 18px;
  color: #fff;
  background: radial-gradient(circle at 10% 0%, rgba(185,255,61,0.2), transparent 32%), radial-gradient(circle at 88% 12%, rgba(72,226,210,0.16), transparent 28%), var(--charcoal);
  box-shadow: 0 34px 90px rgba(17,19,19,0.24);
}
.appointment .eyebrow { color: var(--lime); }
.appointment-copy p { color: rgba(255,255,255,0.68); }
.contact-lines { display: grid; gap: 10px; margin-top: 28px; color: rgba(255,255,255,0.7); }
.contact-lines a { color: #fff; font-weight: 800; }
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 8px; color: rgba(255,255,255,0.78); font-size: 14px; font-weight: 750; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 14px 15px;
  outline: none;
  transition: border 160ms ease, background 160ms ease;
}
.contact-form textarea { resize: vertical; min-height: 132px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.42); }
.contact-form input:focus, .contact-form textarea:focus { border-color: rgba(185,255,61,0.74); background: rgba(255,255,255,0.11); }
.contact-form .button.primary { width: 100%; border-color: transparent; background: linear-gradient(135deg, var(--lime), var(--cyan)); color: var(--ink); box-shadow: none; }
.form-message { min-height: 22px; margin: 0; font-size: 14px; color: rgba(255,255,255,0.72); }
.form-message.error { color: #ffb6b6; }
.form-message.success { color: var(--lime); }
.is-invalid { border-color: #ff8f8f !important; }

.footer { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 34px 0 48px; color: var(--muted); border-top: 1px solid var(--line); }
.footer .brand { color: var(--ink); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 620ms ease, transform 620ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }


.visual-directions { padding: 92px 0; }
.direction-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.direction-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--charcoal);
  box-shadow: 0 18px 60px rgba(17,19,19,0.1);
}
.direction-card img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; filter: saturate(0.92) contrast(1.04); transition: transform 500ms ease, filter 500ms ease; }
.direction-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,19,19,0.86), transparent 58%); }
.direction-card div { position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 18px; display: grid; gap: 10px; color: #fff; }
.direction-card span { color: var(--lime); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: 0.12em; }
.direction-card strong { font-size: 1.18rem; line-height: 1.28; }
.direction-card:hover img { transform: scale(1.045); filter: saturate(0.9) contrast(1.06); }

@media (max-width: 980px) {
  .direction-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .visual-directions { padding: 58px 0; }
  .direction-grid { grid-template-columns: 1fr; }
  .direction-card, .direction-card img { min-height: 320px; }
}
@media (max-width: 980px) {
  .site-header { grid-template-columns: auto auto; }
  .nav-links { display: none; }
  .header-cta { justify-self: end; }
  .hero, .premium-system, .compare, .appointment { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 58px; }
  .hero-visual { max-width: 720px; }
  .proof-strip, .service-grid, .timeline, .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .compare-table { grid-template-columns: 1fr; }
  .appointment { padding: 38px 24px; }
}

@media (max-width: 620px) {
  .section-shell { width: min(100% - 28px, var(--max)); }
  .site-header { top: 8px; width: min(100% - 18px, var(--max)); margin-top: 8px; padding: 8px; }
  .brand span:last-child { display: none; }
  .header-cta { min-height: 40px; padding-inline: 13px; font-size: 12px; }
  h1 { font-size: clamp(1.9rem, 7.1vw, 2.65rem); line-height: 1.08; }
  h2 { font-size: clamp(1.75rem, 7vw, 2.55rem); line-height: 1.1; }
  .hero { gap: 34px; padding-top: 44px; padding-bottom: 42px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-dashboard { min-height: auto; }
  .browser-shell { min-height: 420px; }
  .preview-hero { padding: 28px 22px 18px; }
  .preview-grid { grid-template-columns: 1fr; padding: 0 22px 118px; }
  .preview-flow { left: 22px; right: 22px; bottom: 24px; }
  .metric-card { position: static; margin-top: 10px; }
  .proof-strip { margin-bottom: 46px; }
  .services, .premium-system, .process, .pricing, .compare, .faq, .appointment { padding: 58px 0; }
  .system-board { min-height: auto; grid-template-columns: 1fr; padding: 22px; }
  .axis { display: none; }
  .quad { padding: 22px; }
  .footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Mobile polish pass */
@media (max-width: 760px) {
  .premium-system { gap: 28px; }
  .system-board {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px;
  }
  .axis { display: none; }
  .quad { padding: 22px; }
}

@media (max-width: 620px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }
  .brand span:last-child {
    display: inline;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
  }
  .header-cta {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 12px;
    white-space: nowrap;
  }
  .eyebrow { margin-bottom: 14px; font-size: 11px; }
  h1 { font-size: clamp(1.85rem, 8vw, 2.45rem); line-height: 1.08; margin-bottom: 18px; }
  h2 { font-size: clamp(1.55rem, 6.6vw, 2.22rem); line-height: 1.12; }
  .hero-lead, .section-heading p, .system-copy p, .appointment-copy p { font-size: 1rem; line-height: 1.62; }
  .hero { gap: 28px; padding-top: 34px; padding-bottom: 36px; }
  .hero-actions { margin-top: 24px; }
  .hero-points { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 22px; font-size: 12px; }
  .hero-points span { width: 100%; padding: 8px 10px; }
  .hero-visual { padding: 8px; border-radius: 12px; }
  .browser-shell { min-height: auto; padding-bottom: 104px; border-radius: 10px; }
  .preview-hero { padding: 22px 18px 16px; }
  .preview-hero p { font-size: 10px; margin-bottom: 9px; }
  .preview-hero h2 { font-size: clamp(1.35rem, 6vw, 1.9rem); line-height: 1.12; }
  .preview-hero span { font-size: 12px; }
  .preview-grid { grid-template-columns: 1fr; gap: 8px; padding: 0 18px; }
  .preview-grid div { min-height: auto; padding: 13px 14px; }
  .preview-grid strong { font-size: 1.1rem; margin-bottom: 4px; }
  .preview-flow { left: 18px; right: 18px; bottom: 22px; gap: 9px; }
  .preview-flow span { height: 9px; }
  .metric-card { padding: 12px 14px; }
  .proof-strip div { padding: 22px; }
  .service-card, .step, .price-card { min-height: auto; padding: 22px; }
  .service-card h3 { margin-top: 30px; font-size: 1.42rem; }
  .step span { margin-bottom: 24px; }
  .price-card h3 { font-size: 2rem; margin-bottom: 22px; }
  .price-card ul { gap: 11px; margin-bottom: 24px; }
  .direction-card, .direction-card img { min-height: 280px; }
  .direction-card div { left: 15px; right: 15px; bottom: 15px; gap: 8px; }
  .direction-card strong { font-size: 1.05rem; }
  .compare-table div { min-height: auto; padding: 22px; }
  summary { padding: 19px 20px; }
  details p { padding: 0 20px 20px; }
  .appointment {
    padding: 30px 18px;
    margin-bottom: 42px;
    border-radius: 14px;
    gap: 28px;
  }
  .contact-form input, .contact-form textarea { padding: 13px 14px; }
  .footer { padding-bottom: 34px; }
}

@media (max-width: 380px) {
  .section-shell { width: min(100% - 22px, var(--max)); }
  .site-header { width: min(100% - 14px, var(--max)); }
  .brand span:last-child { max-width: 86px; }
  .brand-mark { width: 32px; height: 32px; }
  .header-cta { padding-inline: 10px; font-size: 11px; }
  h1 { font-size: clamp(1.75rem, 8.6vw, 2.15rem); }
  .button { min-height: 42px; padding-inline: 14px; }
  .appointment { padding: 26px 15px; }
}

/* Pricing monthly plan polish */
.price-card h3 small {
  display: inline-block;
  margin-left: 4px;
  color: var(--muted);
  font-size: 0.42em;
  font-weight: 800;
  vertical-align: baseline;
}
.price-card.featured h3 small { color: rgba(255,255,255,0.64); }
.addon-list {
  display: grid;
  gap: 8px;
  margin: 2px 0 26px;
  padding: 14px;
  border: 1px solid rgba(17,19,19,0.09);
  border-radius: 10px;
  background: rgba(17,19,19,0.035);
}
.price-card.featured .addon-list {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}
.addon-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.price-card.featured .addon-list span { color: rgba(255,255,255,0.68); }
.addon-list p {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 780;
  line-height: 1.35;
}
.price-card.featured .addon-list p { color: #fff; }
