/* ============================================================
   ConCal Pricing — single all-inclusive plan, drawn as a
   formal quotation / bid sheet. Loads after v2.css + v3.css.
   ============================================================ */

/* billing note under header */
.price-lead {
  text-align: center; margin: 14px auto 0; max-width: 540px;
  font-size: 16px; line-height: 1.5; color: var(--text2);
}

/* ---------- the quotation sheet ---------- */
.quote {
  margin-top: 52px; background: var(--surface); border: 1px solid var(--border2);
  border-radius: 16px; overflow: hidden; box-shadow: var(--frame-shadow);
  display: grid; grid-template-columns: 1.35fr 1fr;
}

/* sheet header strip spanning both columns */
.quote-strip {
  grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 16px 28px; border-bottom: 1px dashed var(--border2);
  background: var(--surface2);
}
.quote-strip .l {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--text2);
}
.quote-strip .l b { color: var(--accent); font-weight: 700; }
.quote-strip .r {
  font-family: var(--mono); font-size: 10.5px; font-weight: 500; letter-spacing: 1px;
  color: var(--text3);
}

/* left: scope of work */
.scope { padding: 28px 30px 30px; border-right: 1px dashed var(--border2); }
.scope-h {
  font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--text3); margin: 0 0 4px;
}
.scope-sub { font-size: 13px; color: var(--text2); margin: 0 0 18px; line-height: 1.5; }
.scope-list { display: grid; grid-template-columns: 1fr; gap: 0; }
.scope-item {
  display: flex; align-items: baseline; gap: 12px; padding: 12px 0; font-size: 13.5px;
  color: var(--text); line-height: 1.4;
}
.scope-item + .scope-item { border-top: 1px dashed var(--border); }
.scope-item .ln { font-family: var(--mono); font-size: 10px; font-weight: 600; color: var(--text3); flex: 0 0 24px; }
.scope-item .k { flex: 1; }
.scope-item .incl {
  font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.8px;
  color: var(--green); flex: 0 0 auto;
}

/* right: totals box */
.totals { padding: 28px 30px 30px; display: flex; flex-direction: column; }
.totals-h {
  font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--text3); margin: 0 0 16px;
}
.tline {
  display: flex; align-items: baseline; gap: 10px; padding: 11px 0; font-size: 13.5px; color: var(--text);
}
.tline + .tline { border-top: 1px dashed var(--border); }
.tline .lead { flex: 1; border-bottom: 1px dotted var(--border); transform: translateY(-3px); min-width: 16px; }
.tline .v { font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; }
.tline .v.free { color: var(--green); }

.total-due {
  margin-top: 18px; padding-top: 20px; border-top: 2px solid var(--border2);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
}
.total-due .lbl { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; color: var(--text3); }
.total-due .amt { display: flex; align-items: baseline; gap: 4px; }
.total-due .amt .cur { font-size: 22px; font-weight: 700; color: var(--text2); }
.total-due .amt .n { font-size: 60px; font-weight: 800; letter-spacing: -2.5px; color: var(--text); line-height: 0.9; font-variant-numeric: tabular-nums; }
.total-due .amt .per { font-size: 14px; font-weight: 600; color: var(--text3); }
.total-fine { font-size: 11.5px; color: var(--text3); margin: 10px 0 0; text-align: right; }

.totals .trial-badge {
  display: inline-flex; align-self: stretch; justify-content: center; margin-top: 20px;
  font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.8px;
  color: var(--green); background: var(--green-wash); border: 1px solid var(--green-line);
  border-radius: 8px; padding: 10px 12px;
}
.totals .btn { width: 100%; margin-top: 12px; justify-content: center; font-size: 16px; padding: 15px 24px; }
.totals .stripe-line {
  text-align: center; margin-top: 14px; font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.8px; color: var(--text3);
}

/* trust strip below sheet */
.trust-line {
  text-align: center; margin-top: 28px; font-family: var(--mono);
  font-size: 11px; letter-spacing: 1.2px; color: var(--text3);
}

/* FAQ — general notes */
.notes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.note {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 20px; box-shadow: var(--card-shadow);
}
.note .q { display: flex; gap: 12px; align-items: baseline; font-size: 15px; font-weight: 700; color: var(--text); }
.note .q i { font-family: var(--mono); font-style: normal; font-size: 11px; font-weight: 600; color: var(--accent); }
.note .a { font-size: 13.5px; line-height: 1.55; color: var(--text2); margin: 8px 0 0 27px; }

@media (max-width: 920px) {
  .quote { grid-template-columns: 1fr; }
  .scope { border-right: none; border-bottom: 1px dashed var(--border2); }
  .notes-grid { grid-template-columns: 1fr; }
  .total-due .amt .n { font-size: 48px; }
}
