body { height: auto; overflow: auto; }

/* ── Page ── */
.pricing-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 32px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
}

/* ── Intro ── */
.pricing-intro { text-align: center; }

.pricing-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 12px;
}

.pricing-title {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 14px;
}

.pricing-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 500px;
  margin: 0 auto;
}

/* ── Tab pills ── */
.pricing-tabs {
  display: flex;
  gap: 3px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.pricing-tab {
  padding: 9px 18px;
  border-radius: 99px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s, background 0.15s, box-shadow 0.15s;
  white-space: nowrap;
  font-family: inherit;
  line-height: 1;
}

.pricing-tab:hover { color: var(--text); }

.pricing-tab--active {
  background: #CEAA3C;
  color: #1A1200;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(206,170,60,0.28);
}

/* ── Panels ── */
.pricing-panels { width: 100%; }
.pricing-panel { display: none; }
.pricing-panel--active { display: block; }

.pricing-panel-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}

/* ── Visual ── */
.pricing-panel-visual {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  overflow: hidden;
  height: 480px;
  position: relative;
}

.pp-mock {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ── Content ── */
.pricing-panel-content {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
}

.pp-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 10px;
}

.pp-title {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 12px;
}

.pp-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pp-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pp-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.pp-check {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: #CEAA3C;
  margin-top: 1px;
}

.pp-retainer {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.pp-retainer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.pp-retainer-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

.pp-retainer-badge {
  font-size: 10px;
  font-weight: 600;
  color: #92400e;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 99px;
  padding: 2px 8px;
}

.pp-retainer-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Commitment note ── */
.pricing-commitment {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  max-width: 540px;
  line-height: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 24px;
}

.pricing-commitment a {
  color: #CEAA3C;
  font-weight: 700;
  text-decoration: none;
  margin-left: 4px;
}
.pricing-commitment a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ── Comparison table ── */
.pricing-compare {
  width: 100%;
  max-width: 800px;
}

.pricing-compare-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.2px;
  text-align: center;
  margin-bottom: 20px;
}

.pricing-compare-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.pricing-compare-table thead th {
  padding: 13px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-subtle);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.pricing-compare-table thead th.pct-feature {
  text-align: left;
}

.pricing-compare-table thead th.pct-product {
  text-align: center;
  min-width: 96px;
}

.pricing-compare-table td {
  padding: 11px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.pricing-compare-table tbody tr:last-child td {
  border-bottom: none;
}

td.pct-feature-cell {
  color: var(--text);
  font-weight: 500;
  text-align: left;
}

td.pct-check-cell {
  text-align: center;
}

.pct-group-row td.pct-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  background: var(--surface);
  padding: 8px 16px;
  border-bottom: 1px solid var(--border);
}

.pct-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(206,170,60,0.15);
  border-radius: 50%;
  color: #CEAA3C;
}

.pct-no {
  display: inline-block;
  width: 14px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  vertical-align: middle;
}

/* ══════════════════════════════════════
   MOCKUP 1 — Full Tech Suite (SVG flow)
═══════════════════════════════════════ */
.pp-suite {
  padding: 28px 28px 20px;
  justify-content: flex-start;
  gap: 0;
}

.pp-suite-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 20px;
  text-align: center;
}

.pp-suite-svg {
  width: 100%;
  flex: 1;
}

.pp-suite-footer {
  margin-top: 16px;
  padding: 11px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   MOCKUP 2 — AI Agent (chat interface)
═══════════════════════════════════════ */
.pp-agent-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  flex-shrink: 0;
}

.pp-agent-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #CEAA3C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #1A1200;
  flex-shrink: 0;
}

.pp-agent-info { flex: 1; }

.pp-agent-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 2px;
}

.pp-agent-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-muted);
}

.pp-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.pp-agent-crm {
  font-size: 10px;
  font-weight: 600;
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 99px;
  padding: 2px 8px;
}

.pp-msgs {
  flex: 1;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.pp-msg-wrap { display: flex; flex-direction: column; }
.pp-msg-wrap--right { align-items: flex-end; }

.pp-msg-sender {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--text-subtle);
  margin-bottom: 3px;
}

.pp-msg {
  max-width: 84%;
  padding: 9px 13px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.55;
}

.pp-msg--client {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}

.pp-msg--agent {
  background: #CEAA3C;
  color: #1A1200;
  border-bottom-right-radius: 4px;
}

.pp-agent-log {
  margin: 0 20px 10px;
  padding: 8px 12px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 7px;
  font-size: 11px;
  color: #166534;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.pp-agent-input {
  margin: 0 20px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--text-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.pp-send-btn {
  width: 26px;
  height: 26px;
  background: #CEAA3C;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   MOCKUP 3 — Website (browser chrome)
═══════════════════════════════════════ */
.pp-browser-chrome {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.pp-browser-dots { display: flex; gap: 5px; }
.pp-browser-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
}

.pp-browser-url {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pp-url-lock { color: #22c55e; }

.pp-site-inner { flex: 1; display: flex; flex-direction: column; overflow: hidden; background: var(--bg); }

.pp-site-nav {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.pp-site-logo { font-size: 13px; font-weight: 800; color: var(--text); letter-spacing: -0.3px; }

.pp-site-navlinks { display: flex; gap: 14px; }
.pp-site-navlink { font-size: 10px; color: var(--text-muted); }

.pp-site-navbtn {
  font-size: 10px;
  font-weight: 600;
  background: #CEAA3C;
  color: #1A1200;
  padding: 4px 10px;
  border-radius: 6px;
}

.pp-site-hero {
  padding: 26px 20px 16px;
  flex-shrink: 0;
}

.pp-site-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 8px;
}

.pp-site-h {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 10px;
}

.pp-site-sub {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
  max-width: 280px;
}

.pp-site-btns { display: flex; gap: 8px; }

.pp-site-cta {
  font-size: 10.5px;
  font-weight: 600;
  background: #CEAA3C;
  color: #1A1200;
  padding: 7px 13px;
  border-radius: 7px;
}

.pp-site-ghost {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 7px 13px;
  border-radius: 7px;
  border: 1px solid var(--border);
}

.pp-site-cards {
  display: flex;
  gap: 8px;
  padding: 0 20px 16px;
  overflow: hidden;
  flex: 1;
}

.pp-site-card {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  min-width: 0;
  overflow: hidden;
}

.pp-site-card-img {
  height: 38px;
  background: var(--bg-card);
  border-radius: 5px;
  margin-bottom: 7px;
}

.pp-site-card-name { font-size: 10.5px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.pp-site-card-price { font-size: 10px; color: var(--text-muted); }

/* ══════════════════════════════════════
   MOCKUP 4 — Database (table view)
═══════════════════════════════════════ */
.pp-db-topbar {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  flex-shrink: 0;
}

.pp-db-title { font-size: 13px; font-weight: 700; color: var(--text); }

.pp-db-sync {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  color: var(--text-subtle);
}

.pp-db-sync-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.pp-db-search {
  margin: 10px 20px 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 11.5px;
  color: var(--text-subtle);
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.pp-db-table { flex: 1; overflow: hidden; }

.pp-db-row {
  display: grid;
  grid-template-columns: 1.8fr 1.1fr 1fr 1.2fr;
  padding: 9px 20px;
  border-bottom: 1px solid var(--border);
  gap: 8px;
  align-items: center;
}

.pp-db-row--head { background: var(--bg-card); }

.pp-db-col-head {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.pp-db-name { font-size: 12px; font-weight: 600; color: var(--text); }
.pp-db-val { font-size: 11.5px; color: var(--text-muted); }

.pp-db-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  border-radius: 99px;
  padding: 2px 8px;
}

.pp-db-tag--active { color: #166534; background: #dcfce7; }
.pp-db-tag--lead   { color: #1d4ed8; background: #eff6ff; }
.pp-db-tag--closed { color: var(--text-subtle); background: var(--surface); border: 1px solid var(--border); }

.pp-db-footer {
  padding: 10px 20px;
  font-size: 11px;
  color: var(--text-subtle);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   MOCKUP 5 — Dashboard (analytics)
═══════════════════════════════════════ */
.pp-dash-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  flex-shrink: 0;
}

.pp-dash-title { font-size: 13px; font-weight: 700; color: var(--text); }

.pp-dash-period {
  font-size: 10.5px;
  color: var(--text-subtle);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
}

.pp-dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  flex-shrink: 0;
}

.pp-kpi {
  background: var(--bg);
  padding: 14px 16px;
}

.pp-kpi-val {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.pp-kpi-val--gold  { color: #CEAA3C; }
.pp-kpi-val--green { color: #16a34a; }

.pp-kpi-label { font-size: 10.5px; color: var(--text-muted); line-height: 1.3; }

.pp-dash-chart-wrap {
  flex: 1;
  padding: 16px 20px 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pp-chart-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-subtle);
  margin-bottom: 10px;
  flex-shrink: 0;
}

.pp-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  flex: 1;
  min-height: 60px;
}

.pp-chart-bar {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px 3px 0 0;
  min-height: 4px;
}

.pp-chart-bar--fill  { background: rgba(206,170,60,0.18); border-color: rgba(206,170,60,0.3); }
.pp-chart-bar--active { background: #CEAA3C; border-color: #CEAA3C; }

.pp-dash-items {
  padding: 10px 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex-shrink: 0;
  border-top: 1px solid var(--border);
}

.pp-dash-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--text-muted);
}

.pp-dash-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #CEAA3C;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .pricing-page { padding: 96px 20px 64px; gap: 40px; }
  .pricing-panel-inner { grid-template-columns: 1fr; gap: 32px; }
  .pricing-panel-visual { height: 380px; }
}

@media (max-width: 600px) {
  .pricing-tabs { gap: 2px; }
  .pricing-tab { padding: 8px 12px; font-size: 12px; }
  .pp-title { font-size: 20px; }
  .pricing-panel-visual { height: 320px; }
}
