/* Precision Home Services — public quote builder.
   Brand: deep teal #008490, orange #EA661E, mid teal #30A2AE,
   light teal #5AC0C6, gold #FCB412. Headings in Montserrat 800/900. */

:root {
  --teal: #008490;
  --teal-mid: #30A2AE;
  --teal-light: #5AC0C6;
  --orange: #EA661E;
  --gold: #FCB412;
  --ink: #15333a;
  --muted: #5b7177;
  --bg: #f4f8f9;
  --panel: #ffffff;
  --line: #dce8ea;
  --radius: 14px;
  --shadow: 0 2px 12px rgba(0, 78, 88, .10);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1 { font-weight: 900; font-size: clamp(1.9rem, 5vw, 3rem); line-height: 1.1; margin: .3em 0; color: var(--teal); }
h2 { font-weight: 800; font-size: clamp(1.4rem, 4vw, 1.9rem); color: var(--teal); margin: 0 0 .35em; }
a { color: var(--teal); }

/* ---------- chrome ---------- */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; background: var(--panel);
  border-bottom: 3px solid var(--teal); box-shadow: var(--shadow);
  position: sticky; top: 0; z-index: 10;
}
.logo { height: 64px; width: auto; }
.phone { font-weight: 800; text-decoration: none; color: var(--orange); font-size: 1.05rem; }

.progress { height: 6px; background: var(--line); position: sticky; top: 91px; z-index: 9; }
.progress-fill {
  height: 100%; width: 0; background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transition: width .35s ease;
}

.footer { text-align: center; color: var(--muted); font-size: .8rem; padding: 28px 16px 36px; }

/* ---------- steps ---------- */
#app { max-width: 1020px; margin: 0 auto; padding: 28px 18px 40px; }
.step { display: none; animation: fade .three; }
.step.active { display: block; animation: fade .35s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.hero { text-align: center; max-width: 640px; margin: 6vh auto 0; }
.eyebrow {
  display: inline-block; font-weight: 700; font-size: .8rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--panel); background: var(--orange);
  padding: 5px 14px; border-radius: 999px;
}
.lede { font-size: 1.08rem; line-height: 1.55; color: var(--muted); }
.bigcheck {
  width: 84px; height: 84px; margin: 0 auto 8px; border-radius: 50%;
  background: var(--teal); color: #fff; font-size: 2.6rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}

.hint { color: var(--muted); line-height: 1.5; margin: 0 0 14px; }
.field-label { display: block; font-weight: 700; margin: 22px 0 8px; }
.fineprint { font-size: .78rem; color: var(--muted); margin-top: 18px; line-height: 1.5; }
.center { text-align: center; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---------- buttons & chips ---------- */
.btn {
  font: inherit; font-weight: 800; border: 0; border-radius: 999px;
  padding: 13px 26px; cursor: pointer; transition: transform .1s, box-shadow .15s;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 3px 10px rgba(234,102,30,.35); }
.btn-primary:hover { box-shadow: 0 5px 16px rgba(234,102,30,.45); }
.btn-big { font-size: 1.1rem; padding: 16px 34px; }
.btn-ghost { background: transparent; color: var(--teal); }
.btn[disabled] { opacity: .55; cursor: wait; }

.nav { display: flex; justify-content: space-between; align-items: center; margin-top: 30px; gap: 12px; }

.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  font: inherit; font-weight: 600; padding: 10px 16px; border-radius: 999px;
  border: 2px solid var(--line); background: var(--panel); color: var(--ink);
  cursor: pointer; transition: all .12s;
}
.chip:hover { border-color: var(--teal-light); }
.chip.selected { background: var(--teal); border-color: var(--teal); color: #fff; }

.text-input {
  font: inherit; width: 100%; max-width: 420px; display: block;
  padding: 12px 14px; margin-top: 10px; border-radius: 10px;
  border: 2px solid var(--line); background: var(--panel); color: var(--ink);
}
.text-input:focus { outline: none; border-color: var(--teal-mid); }
/* Google Places autocomplete dropdown */
.pac-container { z-index: 100000; font-family: inherit; border-radius: 10px; margin-top: 2px; box-shadow: var(--shadow); }
.pac-item { padding: 6px 12px; font-size: .9rem; cursor: pointer; }
textarea.text-input { resize: vertical; }

/* ---------- load cards & steppers ---------- */
.load-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  gap: 10px; margin-bottom: 22px;
}
.load-card {
  font: inherit; font-weight: 600; font-size: .9rem;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px 10px; border-radius: var(--radius);
  border: 2px solid var(--line); background: var(--panel); color: var(--ink);
  cursor: pointer; text-align: center; font-size: 1.5rem; transition: all .12s;
}
.load-card span { font-size: .88rem; line-height: 1.3; }
.load-card:hover { border-color: var(--teal-light); }
.load-card.selected { border-color: var(--teal); background: #e8f5f6; box-shadow: inset 0 0 0 1px var(--teal); }

.steppers { display: grid; gap: 10px; max-width: 460px; }
.stepper-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--panel); border: 2px solid var(--line);
  border-radius: var(--radius); padding: 10px 14px;
}
.stepper-row.has-qty { border-color: var(--teal); background: #e8f5f6; }
.stepper-label { font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: 9px; }
.unit-icon { width: 30px; height: 30px; flex: none; vertical-align: middle; }
.note-callout {
  background: #fff7e6; border: 1px solid var(--gold); border-radius: 10px;
  padding: 10px 14px; margin-top: 10px;
}
.stepper { display: flex; align-items: center; gap: 12px; }
.stepper b { min-width: 18px; text-align: center; font-size: 1.05rem; }
.stepper button {
  width: 34px; height: 34px; border-radius: 50%; border: 0; cursor: pointer;
  font-size: 1.2rem; font-weight: 800; color: #fff; background: var(--teal-mid);
}
.stepper button:hover { background: var(--teal); }

/* per-unit tonnage rows (one per A/C / heat-pump unit) */
.unit-size {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px 12px;
  padding: 8px 2px;
}
.unit-label { font-weight: 700; font-size: .85rem; min-width: 84px; color: var(--teal); }
.ton-chips { gap: 6px; }
.ton-chips .chip.ton {
  padding: 7px 12px; font-size: .85rem; min-width: 44px; text-align: center;
}

/* ---------- results ---------- */
.rec-banner {
  text-align: center; margin-bottom: 26px;
}
.rec-banner .size {
  font-size: clamp(2rem, 6vw, 2.9rem); font-weight: 900; color: var(--teal);
}
.rec-banner .drivers { color: var(--muted); font-size: .88rem; max-width: 640px; margin: 8px auto 0; line-height: 1.55; }
.rec-note {
  max-width: 560px; margin: 12px auto 0; font-size: .85rem; color: var(--ink);
  background: #fff7e6; border: 1px solid var(--gold); border-radius: 10px; padding: 10px 14px;
}

.packages {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px; align-items: stretch;
}
.pkg {
  background: var(--panel); border-radius: var(--radius); box-shadow: var(--shadow);
  border: 2px solid var(--line); padding: 22px 20px; display: flex; flex-direction: column;
  position: relative;
}
.pkg.popular { border-color: var(--orange); }
.pkg .ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-weight: 800; font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px;
  white-space: nowrap;
}
.pkg h3 { margin: 0; font-weight: 900; font-size: 1.25rem; color: var(--teal); text-transform: uppercase; letter-spacing: .04em; }
.pkg .kw { color: var(--orange); font-weight: 800; font-size: .95rem; margin: 2px 0 10px; }
.pkg img.genphoto { width: 100%; height: 150px; object-fit: contain; margin: 4px 0 10px; }
.pkg .blurb { color: var(--muted); font-size: .86rem; line-height: 1.5; margin: 0 0 12px; min-height: 3.6em; }
.pkg .was { color: var(--muted); text-decoration: line-through; font-weight: 700; font-size: 1.05rem; }
.pkg .savings {
  display: inline-block; background: var(--gold); color: #5b4000;
  font-weight: 800; font-size: .78rem; padding: 3px 10px; border-radius: 999px;
  margin: 2px 0 4px;
}
.pkg .price { font-size: 1.9rem; font-weight: 900; color: var(--ink); }
.pkg .price small { font-size: .85rem; font-weight: 600; color: var(--muted); }
.pkg .monthly { color: var(--teal); font-weight: 700; font-size: .9rem; margin: 2px 0 14px; }
.pkg ul.treats { list-style: none; margin: 0 0 16px; padding: 0; flex: 1; }
.pkg ul.treats li {
  font-size: .84rem; line-height: 1.45; padding: 4px 0 4px 26px; position: relative;
}
.pkg ul.treats li::before {
  content: "✓"; position: absolute; left: 2px; top: 4px;
  color: var(--teal); font-weight: 900;
}
.span-opt {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  border: 2px dashed var(--teal-light); border-radius: 12px;
  padding: 10px 12px; margin: 0 0 14px; transition: all .12s;
}
.span-opt:hover { border-color: var(--teal); background: #eef9fa; }
.pkg.span-on .span-opt { border-style: solid; border-color: var(--orange); background: #fff7f2; }
.span-opt input { width: 20px; height: 20px; flex: none; accent-color: var(--orange); }
.span-thumb { width: 34px; height: 50px; object-fit: contain; flex: none; }
.addon-head { font-weight: 800; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin: 4px 0 8px; }
.span-info { flex: 1; display: flex; flex-direction: column; line-height: 1.25; }
.span-info b { font-size: .9rem; color: var(--teal); }
.span-info small { font-size: .72rem; color: var(--muted); margin-top: 2px; }
.span-add { font-weight: 800; color: var(--orange); white-space: nowrap; }
.span-doc { display: inline-block; margin: -6px 0 14px; font-size: .82rem; font-weight: 700; color: var(--teal); text-decoration: none; }
.span-doc:hover { text-decoration: underline; }

.pkg details { margin: 0 0 16px; font-size: .82rem; }
.pkg details summary { cursor: pointer; color: var(--teal); font-weight: 700; }
.pkg details li { margin: 6px 0; color: var(--muted); }
.pkg .choose { width: 100%; }

/* ---------- photo uploads ---------- */
.optional { font-weight: 600; color: var(--muted); font-size: .82rem; }
.photo-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px; max-width: 640px;
}
.photo-tile {
  position: relative; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 6px; min-height: 110px; padding: 12px 8px;
  border: 2px dashed var(--teal-light); border-radius: var(--radius);
  background: var(--panel); cursor: pointer; text-align: center;
  transition: all .12s; overflow: hidden;
  background-size: cover; background-position: center;
}
.photo-tile:hover { border-color: var(--teal); background-color: #e8f5f6; }
.photo-tile .tile-icon { font-size: 1.6rem; }
.photo-tile .tile-text { font-weight: 600; font-size: .8rem; line-height: 1.3; }
.photo-tile.uploading { opacity: .6; cursor: wait; }
.photo-tile.done { border-style: solid; border-color: var(--teal); }
.photo-tile.done .tile-icon { display: none; }
.photo-tile.done .tile-text {
  background: rgba(0, 78, 88, .78); color: #fff; border-radius: 8px;
  padding: 3px 8px; align-self: stretch; margin-top: auto;
}
.photo-tile .remove {
  position: absolute; top: 6px; right: 6px; width: 26px; height: 26px;
  border-radius: 50%; border: 0; background: rgba(0,0,0,.55); color: #fff;
  font-weight: 800; cursor: pointer; line-height: 1; display: none;
}
.photo-tile.done .remove { display: block; }

/* ---------- email-me-this-proposal bar (results page) ---------- */
.email-bar { text-align: center; margin: 6px auto 4px; }
.email-bar .btn-ghost { border: 2px solid var(--teal-light); }
.email-bar .btn-ghost:hover { border-color: var(--teal); background: #eef9fa; }
#emailProposalMsg { margin-top: 8px; font-weight: 600; }
#emailProposalMsg.ok { color: var(--teal); }
#emailProposalMsg a { font-weight: 800; }

/* ---------- proposal review: sign panel + accepted card ---------- */
.sign-panel {
  max-width: 560px; margin: 26px auto 0; background: var(--panel);
  border: 2px solid var(--orange); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 22px 22px 18px;
}
.sign-panel h2 { margin-top: 0; }
/* focus one option while the customer signs */
.packages.focused { grid-template-columns: minmax(270px, 460px); justify-content: center; }
.packages.focused .pkg:not(.chosen) { display: none; }
.packages.focused .pkg.chosen { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(42,122,133,.15), var(--shadow); }
.packages.focused .pkg.chosen .choose { display: none; }

.accepted-card {
  max-width: 480px; margin: 18px auto; background: var(--panel);
  border: 2px solid var(--teal); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 22px; text-align: left;
}
.accepted-card h3 { margin: 0 0 4px; color: var(--teal); font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }
.accepted-card .acc-sub { color: var(--muted); font-weight: 600; font-size: .88rem; margin-bottom: 12px; }
.accepted-card .acc-photo { display: block; width: 100%; max-height: 160px; object-fit: contain; margin: 0 auto 14px; }
.accepted-card .acc-breakdown { border-top: 1px solid var(--line); margin-top: 4px; }
.accepted-card .acc-row { display: flex; justify-content: space-between; gap: 14px; padding: 8px 0; font-size: .92rem; color: var(--ink); border-bottom: 1px solid var(--line); }
.accepted-card .acc-row span:first-child { color: var(--muted); }
.accepted-card .acc-grand { border-bottom: none; font-weight: 900; font-size: 1.15rem; }
.accepted-card .acc-grand span:first-child { color: var(--ink); }
.accepted-card .acc-head { margin: 16px 0 6px; font-weight: 800; color: var(--teal); font-size: .9rem; }
.accepted-card ul.acc-treats { list-style: none; margin: 0; padding: 0; }
.accepted-card ul.acc-treats li { position: relative; padding: 4px 0 4px 22px; color: var(--muted); font-size: .88rem; }
.accepted-card ul.acc-treats li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }
.accepted-card .acc-details { margin-top: 14px; font-size: .82rem; }
.accepted-card .acc-details summary { cursor: pointer; color: var(--teal); font-weight: 700; }
.accepted-card .acc-details li { margin: 6px 0; color: var(--muted); }
.acc-signed { text-align: center; color: var(--muted); font-size: .9rem; margin: 14px 0; }

/* ====================== trust / social proof ====================== */
.t-stars { color: var(--gold); letter-spacing: 1px; font-size: 1.05rem; line-height: 1; white-space: nowrap; }
.t-google { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--ink); }
.t-google-txt { font-size: .9rem; color: var(--muted); font-weight: 600; }
.t-google-txt b { color: var(--ink); font-weight: 900; }

.t-badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.t-badge {
  display: inline-flex; align-items: center; gap: 6px; background: var(--panel);
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px;
  font-size: .8rem; font-weight: 700; color: var(--ink); box-shadow: var(--shadow);
}
.t-badge-i { font-size: .95rem; }

/* compact bar (landing + results) */
.trust-bar {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  margin: 22px auto 0; max-width: 720px; text-align: center;
}

/* a single review */
.t-review {
  margin: 0; background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 16px 18px;
}
.t-review blockquote { margin: 8px 0 10px; font-size: .9rem; line-height: 1.55; color: var(--ink); font-style: italic; }
.t-review figcaption { font-size: .82rem; font-weight: 800; color: var(--teal); }

/* reassurance card (contact gate) */
.trust-reassure {
  background: linear-gradient(180deg, #fff, var(--bg)); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; margin: 0 0 22px;
}
.trust-reassure .tr-head { text-align: center; margin-bottom: 12px; }
.trust-reassure .tr-title { margin: 4px 0 12px; color: var(--teal); font-weight: 900; font-size: 1.1rem; text-align: center; }
.tr-points { list-style: none; margin: 0 0 16px; padding: 0; display: grid; gap: 10px; }
.tr-points li { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; line-height: 1.45; color: var(--muted); }
.tr-points li b { color: var(--ink); }
.tr-i { font-size: 1.1rem; line-height: 1.2; flex: 0 0 auto; }

/* featured reviews row (results) */
.trust-reviews-wrap { margin: 26px auto 0; max-width: 1020px; }
.trust-reviews-wrap .tr-head.center { text-align: center; }
.trust-reviews-wrap .tr-sub { color: var(--muted); font-size: .9rem; margin: 6px 0 16px; }
.trust-reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }

/* proposal-page footer block */
.trust-footer {
  margin: 30px auto 0; max-width: 560px; display: flex; flex-direction: column;
  align-items: center; gap: 16px; text-align: center;
}
.trust-footer .t-review { text-align: left; }
.section-rule { border: none; border-top: 1px solid var(--line); max-width: 1020px; margin: 30px auto 0; }

/* ---------- "email sent" confirmation + next-steps (thanks page) ---------- */
.email-sent-card {
  max-width: 640px; margin: 22px auto 0; display: flex; align-items: center;
  gap: 16px; text-align: left; background: linear-gradient(135deg, #fff8e8, #fff2d6);
  border: 2px solid var(--gold); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 18px 22px;
}
.esc-icon {
  flex: none; width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: #5b4000; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
}
.esc-title { font-weight: 900; color: var(--ink); font-size: 1.05rem; margin-bottom: 2px; }
.esc-sub { color: var(--muted); font-size: .9rem; line-height: 1.4; }
.esc-sub strong { color: var(--ink); }

.next-steps {
  max-width: 640px; margin: 26px auto 0; background: var(--panel);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 22px 24px;
}
.next-steps-title {
  font-weight: 900; color: var(--teal); text-transform: uppercase;
  letter-spacing: .06em; font-size: .85rem; margin-bottom: 14px; text-align: center;
}
.steps-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.steps-list li { display: flex; align-items: flex-start; gap: 14px; }
.step-num {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--teal); color: #fff; font-weight: 900; font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
}
.step-text { color: var(--muted); font-size: .92rem; line-height: 1.5; padding-top: 4px; }
.step-text b { color: var(--ink); }

@media (max-width: 640px) {
  .email-sent-card { flex-direction: column; text-align: center; padding: 20px; }
}

/* ---------- form ---------- */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-error {
  color: #b3261e; background: #fde9e7; border: 1px solid #f3b6b1;
  border-radius: 10px; padding: 10px 14px; font-size: .9rem; font-weight: 600;
}

@media (max-width: 640px) {
  .logo { height: 50px; }
  .progress { top: 77px; }
  #app { padding: 20px 14px 32px; }
  .pkg .ribbon { font-size: .66rem; }
}

/* ---- rebates & 0% financing highlight ---- */
.rebates-panel {
  background: linear-gradient(135deg, #fffdf4, #f3fbfa);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 20px 14px;
  margin: 20px 0;
}
.rebates-title {
  font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px;
  font-size: .9rem; color: var(--teal); text-align: center; margin: 0 0 14px;
}
.rebate-tiles {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 12px;
}
.rebate-tile {
  background: var(--panel); border-radius: 10px; padding: 12px 14px;
  display: flex; gap: 10px; align-items: flex-start;
  box-shadow: 0 1px 5px rgba(0, 78, 88, .08);
}
.rebate-tile .rt-icon { font-size: 1.5rem; line-height: 1.2; }
.rebate-tile b { display: block; color: var(--ink); font-size: 1.05rem; }
.rebate-tile small { color: var(--muted); line-height: 1.4; display: block; margin-top: 2px; }
.rebates-disclaimer {
  font-size: .72rem; color: var(--muted); text-align: center; margin: 12px 4px 0;
}

/* per-package rebate strip + after-rebate price */
.rebate-strip {
  background: #e9f6ee; color: #0f7a3d; border-radius: 8px;
  font-weight: 700; font-size: .85rem; padding: 7px 10px; margin: 10px 0 4px;
}
.after-rebate { font-size: 1.4rem; font-weight: 800; color: #0f7a3d; }
.after-rebate small { font-size: .72rem; font-weight: 600; color: #4a8f66; }

/* itemized rebate lines inside the card strip */
.rebate-items {
  list-style: none; margin: 6px 0 0; padding: 6px 0 0;
  border-top: 1px solid #cfe8d8; font-weight: 600; font-size: .78rem;
}
.rebate-items li {
  display: flex; justify-content: space-between; gap: 10px; padding: 2px 0;
  color: #14663a;
}

/* ---- sales-psychology elements ---- */
/* monthly-first pricing (pain-of-paying reduction) */
.monthly-hero { margin: 10px 0 2px; }
.monthly-hero .mh-amt {
  font-size: 2rem; font-weight: 900; color: var(--teal); letter-spacing: -.5px;
}
.monthly-hero small { font-size: 1rem; font-weight: 700; color: var(--teal); }
.monthly-hero .mh-sub {
  font-size: .78rem; font-weight: 700; color: var(--teal-mid); margin-top: 2px;
}
.pkg .price { font-size: 1.05rem; font-weight: 700; color: var(--muted); }
.pkg .price small { font-weight: 600; }

/* risk-reversal strip */
.risk-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px;
  margin: 14px 0 4px; font-size: .82rem; font-weight: 700; color: #0f7a3d;
}
.risk-strip span { white-space: nowrap; }

/* 30-day price-lock note */
.valid-note {
  text-align: center; font-size: .9rem; color: var(--ink);
  background: #fff8e8; border: 1px solid var(--gold); border-radius: 10px;
  padding: 8px 14px; margin: 12px auto 4px; max-width: 480px;
}

/* locked Good/Better/Best teaser on the contact gate */
.unlock-teaser {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin: 16px 0 20px;
}
.ut-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 12px 16px; text-align: center;
  box-shadow: var(--shadow); position: relative;
}
.ut-card.popular { border-color: var(--orange); }
.ut-card b {
  display: block; font-size: .85rem; text-transform: uppercase;
  letter-spacing: 1px; color: var(--teal); margin-bottom: 8px;
}
.ut-card .ut-lock { display: block; font-size: 1.3rem; margin-bottom: 4px; }
.ut-card i {
  display: block; height: 10px; border-radius: 5px; margin: 6px 10px;
  background: linear-gradient(90deg, #dfe9ec, #eef3f4); filter: blur(1.5px);
}

/* add-on social-proof badge */
.addon-badge {
  display: block; width: fit-content; background: var(--gold); color: #5b4200;
  font-size: .66rem; font-weight: 800; border-radius: 6px;
  padding: 1px 7px; margin: 3px 0 1px; white-space: nowrap;
}
.span-info { min-width: 0; }
