/* ============================================================
   VELOCITY GTM — sub-page components (pricing / verify / how)
   ============================================================ */

/* ---- page hero (compact) ---- */
.phero {
  padding-top: clamp(40px, 5vw, 72px);
  padding-bottom: clamp(28px, 4vw, 48px);
  position: relative;
}
.phero .shead {
  max-width: 760px;
}
.phero.center .shead {
  margin-inline: auto;
  text-align: center;
}
.phero.center .eyebrow {
  justify-content: center;
}

/* ---- breadcrumb ---- */
.crumb {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
  display: flex;
  gap: 0.5rem;
}
.crumb a:hover {
  color: var(--ink);
}
.phero.center .crumb {
  justify-content: center;
}

/* ============================================================
   PRICING
   ============================================================ */
.toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2.6rem;
}
.note-pill {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--ink-2);
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  padding: 0.5rem 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.note-pill .dot {
  background: var(--green);
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  align-items: stretch;
}
.tier {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem 1.8rem;
  box-shadow: var(--sh-sm);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.tier:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.tier.feat {
  border-color: var(--ink);
  box-shadow: var(--sh-lg);
  position: relative;
}
.tier.feat::before {
  content: "Most popular";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--ink);
  color: #fff;
  padding: 0.35em 0.8em;
  border-radius: var(--r-pill);
}
.tier-name {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.tier-price {
  margin: 1rem 0 0.2rem;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.tier-price small {
  font-size: 0.32em;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}
.tier-for {
  font-size: 0.9rem;
  color: var(--muted);
  min-height: 2.6em;
}
.tier .btn {
  width: 100%;
  margin: 1.4rem 0;
}
.tier-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.tier-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.4;
}
.tier-list .ck {
  flex: none;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.tier-list .ck svg {
  width: 11px;
  height: 11px;
}
.tier-list li.no {
  color: var(--muted);
}
.tier-list .ck.no {
  background: var(--red-soft);
  color: var(--red);
}
.tier-list .plus {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--muted);
  padding: 0.3rem 0;
  border-top: 1px dashed var(--line-2);
  margin-top: 0.3rem;
}
.tier-over {
  margin-top: auto;
  padding-top: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
@media (max-width: 920px) {
  .tiers {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-inline: auto;
  }
}

/* ---- in-house math / savings ---- */
.math {
  display: grid;
  grid-template-columns: 1.15fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 2.6rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  background: var(--surface);
}
.math-col {
  padding: 1.8rem 1.7rem;
}
.math-col.diy {
  background: var(--surface-2);
}
.math-col.us {
  background: var(--ink);
  color: #fff;
}
.math-head {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.math-col.us .math-head {
  color: #8fb6f2;
}
.math-sub {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 0.35rem;
}
.math-col.us .math-sub {
  color: #fff;
}
.math-rows {
  margin-top: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.math-rows .mr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-2);
}
.math-rows .mr:last-of-type {
  border-bottom: none;
}
.math-rows .mr .t {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.math-rows .mr .t .d {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--line-2);
  transform: rotate(45deg);
  flex: none;
}
.math-rows .mr .v {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.math-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 2px solid var(--line-2);
}
.math-total .lab {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}
.math-total .amt {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.math-total .amt small {
  font-size: 0.45em;
  font-weight: 600;
  color: var(--muted);
}
.math-note {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}
/* us column */
.math-col.us .math-list {
  margin-top: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.math-col.us .math-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: #c9ccd2;
}
.math-col.us .math-list .ck {
  flex: none;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(143, 182, 242, 0.18);
  color: #8fb6f2;
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.math-col.us .math-list .ck svg {
  width: 11px;
  height: 11px;
}
.math-col.us .math-total {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.math-col.us .math-total .lab {
  color: #c9ccd2;
}
.math-col.us .math-total .amt {
  color: #fff;
}
.math-col.us .math-total .amt small {
  color: #8fb6f2;
}
/* center divider with savings badge */
.math-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  background: var(--surface);
  border-inline: 1px solid var(--line);
  position: relative;
}
.math-save {
  text-align: center;
  padding: 1rem 0.6rem;
}
.math-save .pct {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
}
.math-save .big {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--green);
  margin-top: 0.3rem;
  line-height: 1;
}
.math-save .sm {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.35rem;
}
.math-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  margin: 0.4rem auto 0;
}
.math-arrow svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 860px) {
  .math {
    grid-template-columns: 1fr;
  }
  .math-mid {
    border-inline: none;
    border-block: 1px solid var(--line);
    flex-direction: row;
    gap: 1rem;
  }
  .math-arrow {
    transform: rotate(90deg);
  }
}

/* custom plan banner */
.custom-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 2rem 2.4rem;
  margin-top: 1.3rem;
}
.custom-band h3 {
  color: #fff;
  font-size: 1.4rem;
}
.custom-band p {
  color: #b7bbc3;
  margin-top: 0.4rem;
  font-size: 0.98rem;
  max-width: 52ch;
}

/* add-ons / one-time grid */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
@media (max-width: 820px) {
  .cards-3 {
    grid-template-columns: 1fr;
  }
}
.minicard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.6rem;
  box-shadow: var(--sh-xs);
}
.minicard .mc-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.minicard h4 {
  font-size: 1.08rem;
}
.minicard .mc-price {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--accent-ink);
  white-space: nowrap;
}
.minicard p {
  font-size: 0.9rem;
  color: var(--ink-2);
  margin-top: 0.6rem;
  line-height: 1.5;
}
.minicard .mc-meta {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
}

/* FAQ */
.faq {
  max-width: 780px;
  margin-inline: auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.3rem 0;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
}
.faq-q .ic {
  flex: none;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--accent);
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-q .ic {
  transform: rotate(45deg);
}
.faq-q::-webkit-details-marker {
  display: none;
}
.faq-a {
  padding: 0 2.4rem 1.4rem 0;
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.6;
}
details.faq-item summary {
  list-style: none;
  cursor: pointer;
}
details.faq-item summary::-webkit-details-marker {
  display: none;
}

/* ============================================================
   VERIFICATION
   ============================================================ */
.verify-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 940px) {
  .verify-hero-grid {
    grid-template-columns: 1fr;
  }
}

/* how verification works — 3 steps */
.vsteps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  counter-reset: vstep;
}
.vstep {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--sh-xs);
}
.vstep-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  border: 1px solid var(--accent-line);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}
.vstep-ic svg {
  width: 22px;
  height: 22px;
}
.vstep .n {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--line-2);
}
.vstep h3 {
  font-size: 1.12rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.vstep p {
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.5;
}
.vstep-arrow {
  position: absolute;
  top: 50%;
  right: -1.1rem;
  width: 2.2rem;
  height: 22px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  z-index: 2;
  color: var(--line-2);
}
.vstep-arrow svg {
  width: 18px;
  height: 18px;
}
.vstep:last-child .vstep-arrow {
  display: none;
}
@media (max-width: 760px) {
  .vsteps {
    grid-template-columns: 1fr;
  }
  .vstep-arrow {
    display: none !important;
  }
}

/* trust bar */
.vtrust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.4rem;
  padding: 1.4rem 1.8rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-xs);
  grid-column: 1 / -1;
}
.vtrust .ti {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--ink);
}
.vtrust .ti svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex: none;
}
.vtrust .ti .mono {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--accent-ink);
}

/* upload / verify mock */
.vmock {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.vmock-drop {
  margin: 1.1rem;
  border: 1.5px dashed var(--line-2);
  border-radius: var(--r-md);
  padding: 1.6rem;
  text-align: center;
  background: var(--surface-2);
}
.vmock-drop .up {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  margin: 0 auto 0.8rem;
}
.vmock-drop .up svg {
  width: 20px;
  height: 20px;
}
.vmock-drop b {
  font-size: 0.95rem;
}
.vmock-drop span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.3rem;
}
.vmock-bars {
  padding: 0 1.1rem 1.1rem;
}
.vbar {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0;
  font-size: 0.85rem;
}
.vbar .vlab {
  width: 116px;
  flex: none;
  color: var(--ink-2);
}
.vbar .vtrack {
  flex: 1;
  height: 9px;
  border-radius: 5px;
  background: var(--surface-3);
  overflow: hidden;
}
.vbar .vtrack i {
  display: block;
  height: 100%;
  border-radius: 5px;
}
.vbar .vval {
  width: 44px;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
}
.vbar.ok i {
  background: var(--green);
}
.vbar.ok .vval {
  color: var(--green);
}
.vbar.warn i {
  background: var(--amber);
}
.vbar.warn .vval {
  color: var(--amber);
}
.vbar.bad i {
  background: var(--red);
}
.vbar.bad .vval {
  color: var(--red);
}
.vmock-foot {
  border-top: 1px solid var(--line);
  background: var(--surface-2);
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--muted);
}
.vmock-foot b {
  color: var(--green);
}

/* pricing tables */
.ptable-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.ptable {
  width: 100%;
  border-collapse: collapse;
}
.ptable th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding: 1rem 1.4rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.ptable td {
  padding: 1.05rem 1.4rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.ptable tr:last-child td {
  border-bottom: none;
}
.ptable tr.hl td {
  background: var(--accent-soft);
}
.ptable .vol {
  font-weight: 700;
  color: var(--ink);
}
.ptable .price {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--ink);
}
.ptable .save {
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
}
.ptable .save.dash {
  color: var(--muted);
}
@media (max-width: 620px) {
  .ptable th:nth-child(3),
  .ptable td:nth-child(3) {
    display: none;
  }
}

/* deliverables list */
.deliv {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem 2rem;
}
.deliv li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.96rem;
  color: var(--ink-2);
  padding: 0.5rem 0;
}
.deliv .ck {
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.deliv .ck svg {
  width: 12px;
  height: 12px;
}
@media (max-width: 600px) {
  .deliv {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   HOW IT WORKS (long)
   ============================================================ */
.flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 880px;
  margin-inline: auto;
}
.flow-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.6rem;
  padding-bottom: 2.6rem;
  position: relative;
}
.flow-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flow-num {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.05rem;
  flex: none;
  z-index: 1;
}
.flow-step:last-child .flow-line {
  display: none;
}
.flow-line {
  width: 2px;
  flex: 1;
  background: var(--line-2);
  margin-top: 8px;
}
.flow-body {
  padding-top: 0.3rem;
}
.flow-day {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.flow-body h3 {
  font-size: 1.4rem;
  margin: 0.5rem 0 0.8rem;
}
.flow-body p {
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 60ch;
}
.flow-body ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.flow-body ul li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--ink-2);
}
.flow-body ul .ck {
  flex: none;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.flow-body ul .ck svg {
  width: 11px;
  height: 11px;
}

/* QC standards grid */
.qc {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.qc-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.2rem 1.3rem;
}
.qc-item .ck {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
}
.qc-item .ck svg {
  width: 14px;
  height: 14px;
}
.qc-item p {
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.45;
}
.qc-item strong {
  color: var(--ink);
}
@media (max-width: 700px) {
  .qc {
    grid-template-columns: 1fr;
  }
}

/* generic 2-col section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }
}

/* subtle section bg */
.bg-surface {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
