/* ============================================================
   CallVia — Order / Signup page styles
   ============================================================ */

.order-layout #logo img {
  max-height: 120px;
}

/* ── Step Numbers ───────────────────────────────────────────── */

.signup-step h3 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 500;
  flex-shrink: 0;
}

/* ── Pricing Table ──────────────────────────────────────────── */

.pricing-table {
  table-layout: fixed;
}

.pricing-table th:first-child,
.pricing-table td.plan-name {
  width: 180px;
  text-align: left;
}

.pricing-table td.text-center {
  text-align: center;
}

.pricing-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--border-radius-sm);
}

.pricing-cell:hover {
  background: var(--color-bg-well);
}

.pricing-cell input[type="radio"] {
  margin-bottom: 2px;
}

.pricing-cell .price {
  font-weight: 500;
  font-size: 15px;
  color: var(--color-text);
}

.pricing-cell .per-mo {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ── Form Layout ────────────────────────────────────────────── */

.form-row {
  display: flex;
  gap: 16px;
}

.form-half {
  flex: 1;
}

.form-quarter {
  flex: 0 0 140px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}

/* ── Processing Button ──────────────────────────────────────── */

#processingButton {
  cursor: wait;
  opacity: 0.7;
}

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .form-quarter {
    flex: 1;
  }
  .pricing-table {
    font-size: 12px;
  }
  .pricing-cell .price {
    font-size: 13px;
  }
}
