/* /smile-makeover-cost-nashville/ page styles (SYSTEM v3) */

/* hero answer card */
.answercard { background: var(--panel); }
.answercard__price {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(3rem, 2.2rem + 3.2vw, 4.6rem);
  line-height: 1;
  color: var(--brass-deep);
}
.answercard__per {
  font-family: var(--font-d);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0.4rem 0 1.25rem;
}
.answercard .checks { font-size: 0.95rem; }
.answercard__note {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: var(--fs-sm);
  color: var(--ink-soft);
}

/* published price ledger */
.pricetable { margin-top: 2.5rem; border-top: 1px solid var(--line); }
.pricerow {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: baseline;
  padding: 1.5rem clamp(0.5rem, 1.5vw, 1.5rem);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.25s var(--ease);
}
.pricerow:hover { background: oklch(96.4% 0.007 92 / 0.7); }
.pricerow__name {
  font-family: var(--font-d);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.1rem;
  color: var(--ink);
}
.pricerow__desc { color: var(--ink-soft); font-size: 0.95rem; max-width: 52ch; }
.pricerow__price {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--brass-deep);
  white-space: nowrap;
  text-align: right;
}
.pricerow__price em {
  font-style: normal;
  font-weight: 300;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-soft);
  display: block;
}
.pricerow__price--custom {
  font-weight: 300;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-soft);
}
.pricerow--feature { background: oklch(95.8% 0.018 87); }
.pricerow--feature:hover { background: oklch(94.5% 0.024 87); }
.pricerow--feature .pricerow__name { color: var(--brass-deep); }
.pricetable__fine { margin-top: 1.5rem; font-size: var(--fs-sm); color: var(--ink-soft); }

/* financing extras */
.fin-note { margin-top: 1.25rem; color: var(--ink-soft); font-size: 0.95rem; max-width: 52ch; }
.fin-defbox { margin-top: 1.5rem; }
.split--gold .checks { margin-top: 1.25rem; }
.split--gold .ctarow { margin-top: 1.5rem; }

/* cost FAQ rail */
.costfaq { align-items: start; }
.costfaq__rail { position: sticky; top: calc(var(--nav-h) + 2rem); }
.costfaq__rail p { color: var(--ink-soft); max-width: 34ch; }

/* learn more link row */
.morelinks {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  column-gap: clamp(2rem, 5vw, 5rem);
  row-gap: 1rem;
}

@media (max-width: 900px) {
  .pricerow { grid-template-columns: 1fr auto; }
  .pricerow__desc { grid-column: 1 / -1; }
  .costfaq__rail { position: static; }
  .morelinks { grid-template-columns: 1fr; }
}
