/* =========================================================
   VETTI — product landing page
   Page-scoped styles. Self-contained, including breakpoints
   (same convention as products-page.css).
   Product accent: cyan (--accent-3), matching the USSD family.
   ========================================================= */

/* ─────────────────────────────────────────────
   1. HERO
   ───────────────────────────────────────────── */
.vt-hero {
  position: relative;
  padding: clamp(7rem, 14vw, 11rem) var(--pad-x) clamp(4rem, 8vw, 6rem);
  max-width: var(--max-w);
  margin: 0 auto;
}

.vt-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60%;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 229, 255, 0.14), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.vt-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.vt-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.005em;
  margin: 1.4rem 0 0;
  text-wrap: balance;
}

.vt-hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-3);
  letter-spacing: -0.01em;
}

.vt-hero-sub {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 54ch;
  margin-top: 1.6rem;
}

.vt-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

/* Trust strip */
.vt-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.1rem;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.vt-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.vt-trust span::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-3);
  flex-shrink: 0;
}

/* Hero device — the reception-side view */
.vt-hero-visual {
  display: flex;
  justify-content: center;
}

.vt-hero-card {
  width: 100%;
  max-width: 420px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.vt-hero-card-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.vt-hero-card-bar .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-6);
  box-shadow: 0 0 10px var(--accent-6);
  animation: pulse-dot 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

.vt-occupancy {
  padding: 1.5rem 1.4rem 1.2rem;
  border-bottom: 1px solid var(--line);
}

.vt-occupancy-label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.vt-occupancy-value {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 4.6rem);
  line-height: 1;
  color: var(--accent-3);
  margin-top: 0.4rem;
}

.vt-occupancy-value small {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-left: 0.6rem;
  text-transform: uppercase;
}

/* Live arrival rows */
.vt-rows { padding: 0.5rem 0; }

.vt-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: center;
  padding: 0.75rem 1.4rem;
}

.vt-row + .vt-row { border-top: 1px solid var(--line); }

.vt-row-mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  background: rgba(0, 229, 255, 0.12);
  color: var(--accent-3);
  flex-shrink: 0;
}

.vt-row-mark.out {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

.vt-row-main strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text);
}

.vt-row-main span {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.vt-row-time {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ─────────────────────────────────────────────
   2. PROBLEM
   ───────────────────────────────────────────── */
.vt-problem-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.vt-problem-body p {
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.75;
  color: var(--text-soft);
  max-width: 60ch;
}

.vt-problem-body p + p { margin-top: 1.3rem; }

.vt-problem-body p strong {
  color: var(--text);
  font-weight: 500;
}

/* ─────────────────────────────────────────────
   3. HOW IT WORKS — USSD flow
   ───────────────────────────────────────────── */
.vt-flow-head {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 60ch;
}

.vt-flow-head .section-title { margin-top: 1.2rem; }

.vt-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: start;
}

.vt-step { position: relative; }

.vt-step-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.vt-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  background: var(--accent-3);
  color: var(--on-accent);
  flex-shrink: 0;
}

.vt-step-title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  line-height: 1.3;
}

.vt-step-caption {
  margin-top: 1rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.vt-step-caption strong {
  color: var(--text);
  font-weight: 500;
}

/* ── Device frame ── */
.vt-device {
  position: relative;
  border-radius: 22px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, #1B2029 0%, #0E1116 100%);
  padding: 9px;
  box-shadow: var(--shadow-md);
}

.vt-device-screen {
  position: relative;
  border-radius: 15px;
  background: #05070A;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

/* Phone status bar */
.vt-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vt-status .sig {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 8px;
}

.vt-status .sig i {
  width: 2px;
  background: var(--text-muted);
  border-radius: 1px;
  display: block;
}

.vt-status .sig i:nth-child(1) { height: 3px; }
.vt-status .sig i:nth-child(2) { height: 5px; }
.vt-status .sig i:nth-child(3) { height: 7px; }
.vt-status .sig i:nth-child(4) { height: 9px; background: rgba(255, 255, 255, 0.25); }

.vt-screen-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.85rem 0.75rem;
  gap: 0.7rem;
}

/* ── Screen 1: dialler ── */
.vt-dial {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--text);
  padding: 0.9rem 0.3rem;
  word-break: break-all;
}

.vt-dial .caret {
  display: inline-block;
  width: 1.5px;
  height: 1em;
  background: var(--accent-3);
  vertical-align: -0.15em;
  margin-left: 2px;
  animation: vt-blink 1.1s steps(1) infinite;
}

@keyframes vt-blink {
  0%, 50%   { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.vt-keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: auto;
}

.vt-key {
  aspect-ratio: 1.55 / 1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-soft);
}

.vt-key.lit {
  background: rgba(0, 229, 255, 0.16);
  color: var(--accent-3);
}

.vt-call {
  margin-top: 6px;
  height: 32px;
  border-radius: var(--r-pill);
  background: var(--accent-6);
  color: var(--on-accent);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── USSD modal (screens 2 & 3) ── */
.vt-ussd {
  margin: auto 0;
  border-radius: 12px;
  background: #161A21;
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 0.95rem 0.85rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.vt-ussd-title {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 0.6rem;
}

.vt-ussd-text {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.vt-ussd-text strong {
  color: var(--text);
  font-weight: 500;
}

.vt-ussd-field {
  margin-top: 0.75rem;
  padding: 0.5rem 0.65rem;
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(0, 229, 255, 0.35);
  font-family: var(--font-mono);
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  color: var(--text);
}

.vt-ussd-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.vt-ussd-actions .go { color: var(--accent-3); }

/* Confirmation tick */
.vt-tick {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 214, 143, 0.14);
  display: grid;
  place-items: center;
  margin: 0 auto 0.7rem;
}

.vt-tick svg { width: 20px; height: 20px; }

.vt-confirm-list {
  margin-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.6rem;
  display: grid;
  gap: 0.35rem;
}

.vt-confirm-list div {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
}

.vt-confirm-list span { color: var(--text-muted); }
.vt-confirm-list strong { color: var(--text); font-weight: 500; }

/* ── Screen 4: reception dashboard ── */
.vt-browser-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0.5rem 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.vt-browser-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: block;
  flex-shrink: 0;
}

.vt-browser-bar span {
  margin-left: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vt-dash-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.vt-dash-head b {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

.vt-dash-head em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--accent-3);
}

.vt-dash-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Scoped to the row's text wrapper so the status pill and the
   wrapper itself are not caught by a bare `.vt-dash-row span`. */
.vt-dash-main strong {
  display: block;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--text);
}

.vt-dash-main span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.vt-pill {
  font-family: var(--font-mono);
  font-size: 0.54rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.5rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.vt-pill.in {
  background: rgba(0, 229, 255, 0.15);
  color: var(--accent-3);
}

.vt-pill.done {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-muted);
}

.vt-dash-row.fresh {
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.09), transparent);
  margin: 0 -0.4rem;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  border-radius: 6px;
}

/* Callout under the flow */
.vt-callout {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.6rem;
  padding: 1.3rem 1.6rem;
  border-radius: var(--r-lg);
  border: 1px solid rgba(0, 229, 255, 0.22);
  background: rgba(0, 229, 255, 0.05);
}

.vt-callout p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.vt-callout p strong { color: var(--text); font-weight: 500; }

/* ─────────────────────────────────────────────
   4. FEATURES
   ───────────────────────────────────────────── */
.vt-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.vt-feature {
  padding: 1.8rem 1.6rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  transition: transform var(--t-norm), border-color var(--t-norm);
}

.vt-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.35);
}

.vt-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(0, 229, 255, 0.1);
  color: var(--accent-3);
  margin-bottom: 1.1rem;
}

.vt-feature-icon svg { width: 19px; height: 19px; }

.vt-feature h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.vt-feature p {
  font-size: 0.9rem;
  line-height: 1.62;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────
   4b. USE CASES
   Same card language as .vt-feature, plus a hairline
   footer that maps the generic mechanism onto each sector.
   ───────────────────────────────────────────── */
.vt-cases-lead {
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.75;
  color: var(--text-soft);
  max-width: 62ch;
  margin-top: 1.4rem;
}

.vt-cases-lead strong { color: var(--text); font-weight: 500; }

.vt-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.vt-case {
  display: flex;
  flex-direction: column;
  padding: 1.7rem 1.5rem 0;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  transition: transform var(--t-norm), border-color var(--t-norm);
}

.vt-case:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.35);
}

.vt-case-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: rgba(0, 229, 255, 0.1);
  color: var(--accent-3);
  margin-bottom: 1rem;
}

.vt-case-icon svg { width: 17px; height: 17px; }

.vt-case h3 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.vt-case p {
  font-size: 0.87rem;
  line-height: 1.6;
  color: var(--text-muted);
  flex: 1;
}

/* The mapping row — what the tenant code becomes in this sector */
.vt-case-map {
  margin-top: 1.3rem;
  padding: 0.85rem 0 1.1rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--text-faint);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.vt-case-map .arrow {
  color: var(--accent-3);
  flex-shrink: 0;
}

.vt-case-map strong {
  color: var(--text-soft);
  font-weight: 400;
}

/* Footnote under the grid */
.vt-cases-note {
  margin-top: 1.6rem;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 74ch;
}

/* ─────────────────────────────────────────────
   5. WHY USSD
   ───────────────────────────────────────────── */
.vt-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.vt-fails { display: grid; gap: 12px; }

.vt-fail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 1.3rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.vt-fail-x {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 84, 54, 0.14);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  flex-shrink: 0;
}

.vt-fail p {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.vt-fail p strong { color: var(--text); font-weight: 500; }

.vt-why-body p {
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.75;
  color: var(--text-soft);
  max-width: 56ch;
}

.vt-why-body p + p { margin-top: 1.3rem; }
.vt-why-body .section-title { margin: 1.2rem 0 1.6rem; }
.vt-why-body p strong { color: var(--text); font-weight: 500; }

/* ─────────────────────────────────────────────
   5b. WHAT WE STORE
   The data-minimisation argument: the product records less
   than the paper book it replaces.
   ───────────────────────────────────────────── */
.vt-data-lead {
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.75;
  color: var(--text-soft);
  max-width: 62ch;
  margin-top: 1.4rem;
}

.vt-data-lead strong { color: var(--text); font-weight: 500; }

.vt-data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.vt-data-col {
  padding: 1.8rem 1.6rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
}

.vt-data-col.now { border-color: rgba(0, 229, 255, 0.3); }

.vt-data-col h3 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.vt-data-col.now h3 { color: var(--accent-3); }

.vt-data-col ul { display: grid; gap: 0.85rem; }

.vt-data-col li {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.7rem;
  align-items: start;
  font-size: 0.9rem;
  line-height: 1.55;
}

.vt-data-col.was li { color: var(--text-muted); }
.vt-data-col.now li { color: var(--text-soft); }

.vt-data-col .mk {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.4;
  flex-shrink: 0;
}

.vt-data-col.was .mk { color: var(--accent); }
.vt-data-col.now .mk { color: var(--accent-3); }

/* Practical guarantees under the comparison */
.vt-data-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.vt-data-fact {
  padding: 1.3rem 1.4rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.vt-data-fact h4 {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.vt-data-fact p {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.vt-data-note {
  margin-top: 1.6rem;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 76ch;
}

/* ─────────────────────────────────────────────
   6. PRICING
   Reuses .price-card / .price-tier / .price-features /
   .price-cta from pricing.css. Additions below cover the
   UGX amount format and the "not included" row.
   ───────────────────────────────────────────── */
.vt-pricing-head {
  max-width: 62ch;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.vt-pricing-head .section-title { margin: 1.2rem 0 1.2rem; }

.vt-pricing-head p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.vt-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: start;
}

.vt-scope {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--accent-3);
  margin-bottom: 1.2rem;
}

.price-card.pop .vt-scope { color: rgba(0, 0, 0, 0.72); }

/* Prices are not published — each building is quoted individually.
   This keeps the vertical rhythm the figure used to occupy. */
.vt-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.price-card.pop .vt-quote { color: var(--on-accent); }

.vt-period {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.price-card.pop .vt-period { color: rgba(0, 0, 0, 0.65); }

/* Excluded feature row — dash instead of the inherited tick */
.price-features li.vt-off {
  color: var(--text-muted);
  position: relative;
}

.price-features li.vt-off::before {
  background-color: rgba(255, 255, 255, 0.05);
  background-image: none;
}

.price-features li.vt-off::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 9px;
  width: 8px;
  height: 1px;
  background: var(--text-muted);
}

/* Portfolio strip */
.vt-portfolio {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.7rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.vt-portfolio p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.vt-portfolio p strong { color: var(--text); font-weight: 500; }

.vt-fineprint {
  margin-top: 1.6rem;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 78ch;
}

/* ─────────────────────────────────────────────
   7. FAQ — reuses .faq-item / .faq-q / .faq-a
   ───────────────────────────────────────────── */
.vt-faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.vt-faq-side .section-title { margin: 1.2rem 0 1.2rem; }

.vt-faq-side p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 40ch;
}

/* ─────────────────────────────────────────────
   8. CLOSING CTA + FORM
   ───────────────────────────────────────────── */
.vt-contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.vt-contact-side .section-title { margin: 1.2rem 0 1.4rem; }

.vt-contact-side p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 44ch;
}

.vt-contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.8rem;
}

.vt-form {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: var(--r-xl);
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
}

.vt-field { margin-bottom: 1.1rem; }

.vt-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.vt-field input,
.vt-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color var(--t-fast), background var(--t-fast);
}

/* AA-contrast placeholder — the global --text-faint is too low here */
.vt-field input::placeholder { color: var(--text-muted); }

.vt-field input:hover,
.vt-field select:hover { border-color: var(--line-bright); }

.vt-field input:focus,
.vt-field select:focus {
  border-color: var(--accent-3);
  background: rgba(0, 0, 0, 0.4);
}

.vt-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23F4F1EA' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round' opacity='0.55'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.4rem;
}

.vt-field select option {
  background: var(--surface);
  color: var(--text);
}

.vt-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.vt-form button[type="submit"] {
  width: 100%;
  margin-top: 0.5rem;
}

.vt-form-note {
  margin-top: 1.1rem;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: center;
}

/* Inline validation + status */
.vt-field input[aria-invalid="true"],
.vt-field select[aria-invalid="true"] {
  border-color: var(--accent);
}

.vt-error {
  display: none;
  margin-top: 0.4rem;
  font-size: 0.76rem;
  color: var(--accent-hi);
}

.vt-field.invalid .vt-error { display: block; }

.vt-form-status {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--r-md);
  font-size: 0.88rem;
  line-height: 1.6;
  display: none;
}

.vt-form-status.show { display: block; }

.vt-form-status.ok {
  background: rgba(0, 214, 143, 0.1);
  border: 1px solid rgba(0, 214, 143, 0.35);
  color: var(--text);
}

/* ─────────────────────────────────────────────
   9. RESPONSIVE
   Breakpoints match products-page.css: 1100 / 920 / 620
   ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .vt-case-grid { grid-template-columns: repeat(2, 1fr); }
  .vt-hero-inner { grid-template-columns: 1fr; }
  .vt-hero-visual { order: -1; }
  .vt-hero-card { max-width: 460px; }

  .vt-flow-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1.2rem; }
  .vt-feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .vt-problem-grid,
  .vt-why-grid,
  .vt-faq-grid,
  .vt-contact-grid { grid-template-columns: 1fr; }

  .vt-why-visual { order: -1; }

  /* Tier cards stack rather than shrink — the popular card
     stops floating above the others once stacked. */
  .vt-pricing-grid { grid-template-columns: 1fr; }
  .price-card.pop { transform: none; }
  .price-card.pop:hover { transform: translateY(-4px); }
}

@media (max-width: 620px) {
  .vt-case-grid { grid-template-columns: 1fr; }
  .vt-flow-grid { grid-template-columns: 1fr; }
  .vt-feature-grid { grid-template-columns: 1fr; }
  .vt-field-row { grid-template-columns: 1fr; }

  /* One phone per row at 360px keeps the USSD text legible */
  .vt-device { max-width: 320px; margin: 0 auto; }
  .vt-step-caption { max-width: 320px; margin-left: auto; margin-right: auto; }

  .vt-portfolio,
  .vt-callout { flex-direction: column; align-items: flex-start; }

  .vt-hero h1 { font-size: clamp(2.6rem, 12vw, 3.6rem); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .vt-dial .caret,
  .vt-hero-card-bar .live-dot { animation: none; }

  .vt-feature:hover,
  .price-card:hover,
  .price-card.pop:hover { transform: none; }
}
