/* ==========================================================================
   PayClaim Plugin — Public CSS v3.0
   Dashboard + Wizard + Claim Form
   Light theme: white surfaces, dark navy text, amber accent
   ========================================================================== */

:root {
  --pc-bg:       #F8FAFD;
  --pc-white:    #FFFFFF;
  --pc-navy:     #0D1B2E;
  --pc-navy-2:   #1A2B45;
  --pc-text:     #0D1B2E;
  --pc-text-2:   #374151;
  --pc-muted:    #6B7280;
  --pc-dim:      #9CA3AF;
  --pc-amber:    #F59E0B;
  --pc-amber-lt: #FFFBEB;
  --pc-amber-br: rgba(245,158,11,0.25);
  --pc-green:    #059669;
  --pc-red:      #DC2626;
  --pc-border:   #E5E7EB;
  --pc-border-2: #D1D5DB;
  --pc-shadow:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --pc-shadow-md:0 4px 16px rgba(0,0,0,0.08);
  --pc-r:        10px;
  --pc-r-lg:     16px;
  --pc-font:     'Sora', system-ui, -apple-system, sans-serif;
}

/* ── Base ─────────────────────────────────────────────────────────── */
.pc-wrap {
  font-family: var(--pc-font);
  color: var(--pc-text);
  background: var(--pc-bg);
  min-height: 60vh;
}

/* ── Notices ──────────────────────────────────────────────────────── */
.pc-notice {
  position: fixed !important;
  top: auto !important;
  bottom: 24px !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  z-index: 99999 !important;
  padding: 14px 24px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  width: auto !important;
  max-width: min(560px, calc(100vw - 32px)) !important;
  height: auto !important;
  max-height: none !important;
  text-align: center !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15) !important;
  white-space: normal !important;
  line-height: 1.4 !important;
}
.pc-notice--error   { background: var(--pc-red);   color: #fff; }
.pc-notice--success { background: var(--pc-green);  color: #fff; }

/* ── Buttons ──────────────────────────────────────────────────────── */
.pc-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 2px solid transparent;
  border-radius: var(--pc-r);
  padding: 11px 24px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.18s;
  font-family: var(--pc-font);
  letter-spacing: 0.01em;
  text-decoration: none;
  line-height: 1;
}
.pc-btn--primary  {
  background: var(--pc-amber);
  color: var(--pc-navy);
  border-color: var(--pc-amber);
}
.pc-btn--primary:hover { background: #D97706; border-color: #D97706; }
.pc-btn--outline  {
  background: #fff;
  color: var(--pc-navy);
  border-color: var(--pc-border-2);
}
.pc-btn--outline:hover { border-color: var(--pc-navy); }
.pc-btn--red      { background: var(--pc-red); color: #fff; border-color: var(--pc-red); }
.pc-btn:disabled  { opacity: 0.5; cursor: not-allowed; }

/* ── Step indicator ───────────────────────────────────────────────── */
.pc-steps {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  gap: 0;
}
.pc-steps li {
  display: flex;
  align-items: center;
  flex: 1;
  font-size: 13px;
  color: var(--pc-muted);
  gap: 10px;
  font-weight: 600;
}
.pc-steps li:last-child { flex: 0; }
.pc-step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--pc-border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
  transition: all 0.3s;
  background: var(--pc-white);
  color: var(--pc-muted);
}
.pc-steps li.active .pc-step-dot {
  border-color: var(--pc-amber);
  background: var(--pc-amber);
  color: var(--pc-navy);
}
.pc-steps li.active { color: var(--pc-navy); font-weight: 700; }
.pc-steps li.completed .pc-step-dot {
  border-color: var(--pc-green);
  background: var(--pc-green);
  color: #fff;
}
.pc-step-line {
  flex: 1;
  height: 2px;
  background: var(--pc-border);
  margin: 0 12px;
  border-radius: 2px;
}
.pc-steps li.completed .pc-step-line { background: var(--pc-green); }

/* ── Panel / Card ─────────────────────────────────────────────────── */
.pc-panel {
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r-lg);
  padding: 32px;
  box-shadow: var(--pc-shadow-md);
  margin-bottom: 20px;
}
.pc-panel h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
  color: var(--pc-navy);
}
.pc-panel > p {
  color: var(--pc-muted);
  font-size: 14px;
  margin: 0 0 24px;
  line-height: 1.6;
}

/* ── Upload zone ──────────────────────────────────────────────────── */
.pc-upload-zone {
  border: 2px dashed var(--pc-border-2);
  border-radius: var(--pc-r);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: border-color 0.2s, background 0.2s;
  background: var(--pc-bg);
}
.pc-upload-zone:hover {
  border-color: var(--pc-amber);
  background: var(--pc-amber-lt);
}
.pc-upload-icon { font-size: 32px; line-height: 1; }
.pc-upload-label { font-size: 14px; font-weight: 700; color: var(--pc-navy); }
.pc-upload-filename { font-size: 12px; color: var(--pc-muted); }

/* ── Form fields (underline style) ───────────────────────────────── */
.pc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pc-field { display: flex; flex-direction: column; gap: 0; }
.pc-field label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pc-muted);
  margin-bottom: 8px;
}
.pc-field input,
.pc-field select,
.pc-field textarea {
  font-family: var(--pc-font);
  font-size: 15px;
  color: var(--pc-navy);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--pc-border);
  padding: 8px 0;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.pc-field input::placeholder,
.pc-field textarea::placeholder { color: var(--pc-dim); }
.pc-field input:focus,
.pc-field select:focus,
.pc-field textarea:focus { border-bottom-color: var(--pc-amber); }
.pc-field textarea { resize: vertical; min-height: 80px; }
.pc-field select { cursor: pointer; }

/* ── Analysis spinner ─────────────────────────────────────────────── */
.pc-spinner-wrap {
  text-align: center;
  padding: 56px 24px;
  color: var(--pc-muted);
}
.pc-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--pc-border);
  border-top-color: var(--pc-amber);
  border-radius: 50%;
  animation: pc-spin 0.8s linear infinite;
  margin: 0 auto 20px;
}
@keyframes pc-spin { to { transform: rotate(360deg); } }
.pc-spinner-wrap h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--pc-navy);
  margin-bottom: 8px;
}
.pc-spinner-wrap p { font-size: 14px; color: var(--pc-muted); }

/* ── Analysis result ─────────────────────────────────────────────── */
.pc-analysis-result {
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r-lg);
  overflow: hidden;
  box-shadow: var(--pc-shadow-md);
  margin-bottom: 20px;
}
.pc-analysis-header {
  background: var(--pc-amber);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pc-analysis-header h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--pc-navy);
  margin: 0;
}
.pc-analysis-body { padding: 24px 28px; }
.pc-analysis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.pc-analysis-item label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pc-muted);
  margin-bottom: 4px;
}
.pc-analysis-item span {
  font-size: 15px;
  font-weight: 700;
  color: var(--pc-navy);
}

/* ── Payment section ─────────────────────────────────────────────── */
.pc-payment-box {
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r);
  padding: 24px;
  margin-bottom: 20px;
}
.pc-payment-box h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--pc-navy);
  margin-bottom: 4px;
}
.pc-payment-box p {
  font-size: 14px;
  color: var(--pc-muted);
  margin-bottom: 20px;
}
.pc-payment-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--pc-amber);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.pc-payment-note { font-size: 13px; color: var(--pc-muted); margin-bottom: 24px; }

/* ── Wizard sidebar ──────────────────────────────────────────────── */
.pc-wizard-sidebar { display: flex; flex-direction: column; gap: 16px; }
.pc-sidebar-card {
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r);
  padding: 22px;
  box-shadow: var(--pc-shadow);
}
.pc-sidebar-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--pc-navy);
  margin-bottom: 8px;
}
.pc-sidebar-card p { font-size: 13px; color: var(--pc-muted); line-height: 1.5; margin-bottom: 12px; }
.pc-sidebar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--pc-amber);
}
.pc-expert-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--pc-amber-lt);
  border: 1px solid var(--pc-amber-br);
  border-radius: 8px;
  padding: 12px 14px;
  margin: 20px 0;
  font-size: 13px;
  color: var(--pc-text-2);
}
.pc-expert-notice-badge {
  background: var(--pc-amber);
  color: var(--pc-navy);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Dashboard layout ────────────────────────────────────────────── */
.pc-dashboard { padding-top: 0; }
.pc-dash-hero {
  background: var(--pc-white);
  border-bottom: 1px solid var(--pc-border);
  padding: 36px 0;
}
.pc-dash-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.pc-dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.pc-dash-top h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--pc-navy);
  margin: 0 0 4px;
  font-family: 'Barlow Condensed', var(--pc-font);
  letter-spacing: -0.01em;
}
.pc-dash-top p { font-size: 14px; color: var(--pc-muted); margin: 0; }

/* ── Stats grid ──────────────────────────────────────────────────── */
.pc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pc-stat {
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r);
  padding: 20px 22px;
  border-top: 3px solid transparent;
  box-shadow: var(--pc-shadow);
}
.pc-stat.blue  { border-top-color: #3B82F6; }
.pc-stat.green { border-top-color: var(--pc-green); }
.pc-stat.amber { border-top-color: var(--pc-amber); }
.pc-stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pc-muted);
  margin-bottom: 8px;
}
.pc-stat-value {
  font-family: 'Barlow Condensed', var(--pc-font);
  font-size: 34px;
  font-weight: 800;
  color: var(--pc-navy);
  letter-spacing: -0.03em;
  line-height: 1;
}

/* ── Subscription bar ────────────────────────────────────────────── */
.pc-sub-status-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r);
  padding: 18px 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  box-shadow: var(--pc-shadow);
}
.pc-sub-plan-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pc-muted);
  margin-bottom: 3px;
}
.pc-sub-plan-name { font-size: 15px; font-weight: 800; color: var(--pc-navy); }
.pc-sub-usage { flex: 1; }
.pc-sub-usage-label { font-size: 13px; color: var(--pc-muted); margin-bottom: 8px; }
.pc-sub-bar-track {
  height: 6px;
  background: var(--pc-bg);
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid var(--pc-border);
}
.pc-sub-bar-fill { height: 100%; border-radius: 100px; transition: width 0.4s; }
.pc-sub-bar-label { font-size: 12px; margin-top: 6px; }
.pc-sub-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--pc-amber-lt);
  border: 1px solid var(--pc-amber-br);
  border-radius: var(--pc-r);
  padding: 14px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--pc-navy);
  flex-wrap: wrap;
}

/* ── Alert banners ───────────────────────────────────────────────── */
.pc-alert {
  border-radius: var(--pc-r);
  padding: 14px 18px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  box-shadow: var(--pc-shadow);
}
.pc-alert--error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #7F1D1D;
}
.pc-alert--info {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #1E3A5F;
}

/* ── Claims table ────────────────────────────────────────────────── */
.pc-claims-table-wrap, .pc-claims-wrap {
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r-lg);
  overflow: hidden;
  box-shadow: var(--pc-shadow-md);
  margin-bottom: 24px;
}
.pc-table-head {
  display: grid;
  grid-template-columns: 120px 1fr 1fr 110px 100px 130px;
  gap: 16px;
  padding: 12px 20px;
  background: var(--pc-bg);
  border-bottom: 1px solid var(--pc-border);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pc-muted);
}
.pc-claim-row {
  display: grid;
  grid-template-columns: 120px 1fr 1fr 110px 100px 130px;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--pc-border);
  align-items: center;
  cursor: pointer;
  transition: background 0.15s;
  font-size: 14px;
  color: var(--pc-text);
}
.pc-claim-row:last-child { border-bottom: none; }
.pc-claim-row:hover { background: var(--pc-bg); }
.pc-claim-id {
  font-family: monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--pc-amber);
  background: var(--pc-amber-lt);
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-block;
}
.pc-claim-name { font-weight: 700; color: var(--pc-navy); }
.pc-claim-sub { font-size: 12px; color: var(--pc-muted); margin-top: 2px; }
.pc-claim-amount { font-weight: 800; color: var(--pc-navy); }
.pc-days-urgent { color: var(--pc-red); font-weight: 800; }
.pc-days-ok { color: var(--pc-green); font-weight: 700; }

/* ── Status badges ───────────────────────────────────────────────── */
.pc-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.pc-badge--draft              { background: #F3F4F6; color: #6B7280; }
.pc-badge--awaiting_response  { background: #FFFBEB; color: #92400E; border: 1px solid #FDE68A; }
.pc-badge--adjudication_ready { background: #EFF6FF; color: #1D4ED8; border: 1px solid #BFDBFE; }
.pc-badge--adjudication_filed { background: #EFF6FF; color: #1D4ED8; border: 1px solid #BFDBFE; }
.pc-badge--paid               { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.pc-badge--served             { background: #FFFBEB; color: #92400E; border: 1px solid #FDE68A; }

/* ── Claim detail ────────────────────────────────────────────────── */
.pc-claim-detail { margin-top: 24px; }
.pc-dash-section-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pc-muted);
  margin-bottom: 12px;
  padding-top: 8px;
}
.pc-dash-body { padding: 24px; max-width: 1100px; margin: 0 auto; }

/* ── Dash detail view ────────────────────────────────────────────── */
.pc-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.pc-detail-amount {
  font-family: 'Barlow Condensed', var(--pc-font);
  font-size: 52px;
  font-weight: 800;
  color: var(--pc-amber);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pc-timeline { padding: 20px; }
.pc-timeline-item {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  position: relative;
}
.pc-timeline-item::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 30px;
  bottom: 0;
  width: 2px;
  background: var(--pc-border);
}
.pc-timeline-item:last-child::before { display: none; }
.pc-timeline-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pc-bg);
  border: 2px solid var(--pc-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}
.pc-timeline-dot.done { border-color: var(--pc-green); background: var(--pc-green); color: #fff; }
.pc-timeline-dot.active { border-color: var(--pc-amber); background: var(--pc-amber); color: var(--pc-navy); }
.pc-timeline-content h4 { font-size: 14px; font-weight: 700; color: var(--pc-navy); margin-bottom: 4px; }
.pc-timeline-content p { font-size: 13px; color: var(--pc-muted); line-height: 1.5; }

/* ── Empty state ─────────────────────────────────────────────────── */
.pc-empty-state {
  padding: 60px 24px;
  text-align: center;
  color: var(--pc-muted);
}
.pc-empty-state h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--pc-navy);
  margin-bottom: 8px;
}
.pc-empty-state p { font-size: 15px; color: var(--pc-muted); margin-bottom: 24px; }

/* ── Dashboard greeting variant ──────────────────────────────────── */
.pc-dash-greeting {
  font-family: 'Barlow Condensed', var(--pc-font);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--pc-navy);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.pc-dash-greeting em { font-style: normal; color: var(--pc-amber); }
.pc-dash-greeting-sub { font-size: 14px; color: var(--pc-muted); margin-bottom: 32px; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .pc-stats-grid { grid-template-columns: 1fr 1fr; }
  .pc-form-grid { grid-template-columns: 1fr; }
  .pc-table-head, .pc-claim-row { grid-template-columns: 1fr 1fr; }
  .pc-table-head span:nth-child(n+3),
  .pc-claim-row > *:nth-child(n+3) { display: none; }
  .pc-dash-inner { padding: 0 16px; }
  .pc-panel { padding: 20px 16px; }
  .pc-sub-status-bar { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .pc-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   AUTH PAGES  — Login & Register
   ══════════════════════════════════════════════════════════════ */

.pc-auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  background: var(--pc-bg, #F8FAFD);
}

.pc-auth-card {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 44px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.pc-auth-logo {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #0D1B2E;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.pc-auth-logo span { color: #F59E0B; }

.pc-auth-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #0D1B2E;
  letter-spacing: -0.03em;
  margin: 0 0 6px;
}

.pc-auth-sub {
  font-size: 14px;
  color: #6B7280;
  margin: 0 0 28px;
  line-height: 1.5;
}

.pc-auth-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #DC2626;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.pc-auth-success {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #059669;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.pc-auth-info {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #1D4ED8;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.pc-auth-form { display: flex; flex-direction: column; gap: 16px; }

.pc-field { display: flex; flex-direction: column; gap: 5px; }
.pc-field label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}
.pc-field-link {
  font-size: 12px;
  font-weight: 500;
  color: #F59E0B;
  text-decoration: none;
}
.pc-field-link:hover { text-decoration: underline; }

.pc-field input,
.pc-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Sora', sans-serif;
  color: #0D1B2E;
  background: #fff;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.pc-field input:focus,
.pc-field select:focus {
  outline: none;
  border-color: #F59E0B;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.12);
}
.pc-field input::placeholder { color: #D1D5DB; }

.pc-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pc-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6B7280;
  cursor: pointer;
  user-select: none;
}
.pc-remember input { width: 16px; height: 16px; accent-color: #F59E0B; }

.pc-auth-submit {
  width: 100%;
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-top: 4px;
}

.pc-auth-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #D1D5DB;
  font-size: 12px;
  margin: 16px 0;
}
.pc-auth-divider::before,
.pc-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #E5E7EB;
}
.pc-auth-divider span { color: #9CA3AF; white-space: nowrap; }

.pc-auth-switch {
  text-align: center;
  font-size: 13px;
  color: #6B7280;
  margin: 20px 0 0;
}
.pc-auth-switch a {
  color: #F59E0B;
  font-weight: 700;
  text-decoration: none;
}
.pc-auth-switch a:hover { text-decoration: underline; }

.pc-auth-note {
  font-size: 11px;
  color: #9CA3AF;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}
.pc-auth-note a { color: #9CA3AF; text-decoration: underline; }

@media (max-width: 520px) {
  .pc-auth-card { padding: 32px 20px; }
  .pc-field-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   ENQUEUE AUTH CSS ON LOGIN/REGISTER PAGES TOO
   ══════════════════════════════════════════════════════════════ */

/* ── Dashboard width fix ─────────────────────────────────────────── */
.pc-dashboard .pc-wrap,
body .pc-dashboard { max-width: none !important; padding: 0 !important; }

.pc-continue-draft {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  font-size: 13px !important;
  padding: 6px 16px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  white-space: nowrap;
  text-decoration: none !important;
  background: var(--pc-amber, #F6A623) !important;
  color: var(--pc-navy, #0A1322) !important;
  border: none !important;
  cursor: pointer;
}
.pc-continue-draft:hover { opacity: 0.85; color: var(--pc-navy, #0A1322) !important; }

.pc-badge--draft {
  background: rgba(232,160,32,0.15);
  color: #F6A623;
  border: 1px solid rgba(232,160,32,0.3);
}
.pc-claim-row { cursor: pointer; transition: background 0.15s; }
.pc-claim-row:hover { background: rgba(232,160,32,0.04); }

.pc-delete-draft-btn {
  background: none !important;
  border: 1px solid #cc4444 !important;
  color: #cc4444 !important;
  width: 100%;
  margin-top: 8px;
  cursor: pointer;
  border-radius: 6px;
  padding: 6px 12px;
}
.pc-delete-draft-btn:hover { background: rgba(204,68,68,0.08) !important; }

/* ── Dashboard table grid (7-col) ───────────────────────────────────── */
.pc-claims-table { width: 100%; }

.pc-claims-thead,
.pc-claim-row {
  display: grid;
  grid-template-columns: 130px 1fr 160px 110px 90px 100px 140px;
  gap: 12px;
  align-items: center;
  padding: 14px 20px;
}
.pc-claims-thead {
  background: var(--pc-bg);
  border-bottom: 1px solid var(--pc-border);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pc-muted);
}
.pc-claim-row {
  border-bottom: 1px solid var(--pc-border);
  cursor: pointer;
  transition: background 0.15s;
  font-size: 14px;
  color: var(--pc-text);
}
.pc-claim-row:last-child { border-bottom: none; }
.pc-claim-row:hover { background: rgba(232,160,32,0.04); }
.pc-claim-row--draft { background: rgba(232,160,32,0.03); }
.pc-claim-row--draft:hover { background: rgba(232,160,32,0.07); }
.pc-col-amount { font-weight: 700; color: var(--pc-navy); }
.pc-col-action { text-align: right; }
.pc-col-contractor { color: var(--pc-muted); font-size: 13px; }

.pc-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
}
.pc-action-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.pc-action-btn--continue {
  background: var(--pc-amber, #F6A623);
  color: var(--pc-navy, #0A1322) !important;
  box-shadow: 0 2px 8px rgba(232,160,32,0.30);
}
.pc-action-btn--view {
  background: transparent;
  color: var(--pc-muted);
  border: 1px solid var(--pc-border) !important;
}
.pc-action-btn--view:hover { border-color: var(--pc-amber) !important; color: var(--pc-amber) !important; }

.pc-empty-state { padding: 64px 24px; text-align: center; color: var(--pc-muted); }

@media (max-width: 900px) {
  .pc-claims-thead, .pc-claim-row {
    grid-template-columns: 110px 1fr 100px 90px;
    gap: 10px;
  }
  .pc-col-contractor, .pc-col-deadline { display: none; }
}
@media (max-width: 600px) {
  .pc-claims-thead { display: none; }
  .pc-claim-row { grid-template-columns: 1fr auto; gap: 8px; padding: 14px 16px; }
  .pc-col-id, .pc-col-amount, .pc-col-deadline, .pc-col-status, .pc-col-contractor { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   WIZARD LAYOUT — wider container, override theme's 780px constraint
   ═══════════════════════════════════════════════════════════════════ */
.pc-wrap--wizard {
  max-width: none !important;
  /* Use a single padding shorthand. Earlier attempts to combine
     `padding: 0 !important` with a separate `padding-top: …` in the same
     rule had the second declaration silently dropped by SG Optimizer's
     CSS minifier, so the H1 rendered under the fixed nav on mobile. */
  padding: calc(var(--nav-h, 64px) + 16px) 0 0 0 !important;
  background: var(--pc-bg, #0A1322);
  min-height: 80vh;
}
@media (max-width: 900px) {
  .pc-wrap--wizard { padding: calc(var(--nav-h, 64px) + 32px) 0 0 0 !important; }
}
@media (max-width: 640px) {
  /* Mobile: extra-aggressive clearance so the H1 never hides under the nav */
  .pc-wrap--wizard { padding: calc(var(--nav-h, 64px) + 48px) 0 0 0 !important; }
  .pc-wrap--wizard > .pc-dash-inner { padding-top: 24px !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   AI ANALYSIS RESULT — redesigned
   ═══════════════════════════════════════════════════════════════════ */
.pc-entitlement {
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 20px;
}
.pc-entitlement--yes {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #10B981;
}
.pc-entitlement--no {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #EF4444;
}

/* Section label above findings/risks */
.pc-af-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pc-muted, #8899BB);
  margin-bottom: 12px;
}

/* Key Findings block */
.pc-analysis-findings {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--pc-border, rgba(255,255,255,0.08));
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
}
.pc-findings-list {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.pc-findings-list li {
  display: flex; gap: 10px;
  font-size: 14px; line-height: 1.55;
  color: var(--pc-text, #E2E8F0);
}
.pc-finding-tick {
  color: #10B981; font-weight: 800; flex-shrink: 0; margin-top: 1px;
}

/* Critical Deadlines — 3 cards in a row */
.pc-deadlines-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.pc-dl-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--pc-border, rgba(255,255,255,0.08));
  border-radius: 12px;
  padding: 16px 18px;
  text-align: center;
}
.pc-dl-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--pc-muted, #8899BB); margin-bottom: 8px;
}
.pc-dl-value {
  font-size: 20px; font-weight: 800;
  color: var(--pc-amber, #F6A623); line-height: 1.2;
}

/* Risks block */
.pc-risks-block {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 16px;
}
.pc-risks-list {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}
.pc-risks-list li {
  display: flex; gap: 10px;
  font-size: 13px; line-height: 1.5;
  color: var(--pc-text, #E2E8F0);
}
.pc-risk-icon { color: #F59E0B; flex-shrink: 0; }

/* Act reference line */
.pc-act-ref {
  font-size: 12px; color: var(--pc-muted, #8899BB);
  text-align: right; margin: 0; padding-top: 4px;
}

/* Step 1 title update */
.pc-wrap--wizard h1 { font-size: 26px; }

/* ═══════════════════════════════════════════════════════════════════
   MOBILE — ≤ 640px
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .pc-wrap--wizard .pc-dash-inner {
    padding: 20px 16px !important;
  }
  .pc-deadlines-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .pc-dl-card {
    display: flex; justify-content: space-between; align-items: center;
    text-align: left; padding: 12px 16px;
  }
  .pc-dl-label { margin-bottom: 0; }
  .pc-dl-value { font-size: 16px; }
  .pc-analysis-findings { padding: 16px; }
  .pc-findings-list li { font-size: 13px; }
  .pc-entitlement { font-size: 13px; }
  .pc-wrap--wizard h1 { font-size: 20px; }
  .pc-wrap--wizard > .pc-dash-inner > p { font-size: 13px; }
  .pc-steps li span:not(.pc-step-dot):not(.pc-step-line) { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   STEP 3 — Document preview
   ═══════════════════════════════════════════════════════════════════ */

/* Outer wrapper inside the panel */
.pc-doc {
  border: 1px solid var(--pc-border, rgba(255,255,255,0.1));
  border-radius: 12px;
  overflow: hidden;
  margin-top: 4px;
  background: #fff;
  color: #0D1B2E;
}

/* Header strip */
.pc-doc-header {
  background: #0D1B2E;
  padding: 20px 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.pc-doc-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #F6A623;
  line-height: 1;
  margin-bottom: 6px;
}
.pc-doc-claim-num {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.pc-doc-act-ref {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-align: right;
  line-height: 1.5;
  max-width: 240px;
}

/* Statutory statement bar */
.pc-doc-statutory {
  background: #FEF3C7;
  border-bottom: 1px solid #FDE68A;
  padding: 10px 28px;
  font-size: 12px;
  font-weight: 600;
  color: #92400E;
  line-height: 1.5;
}

/* From → To parties */
.pc-doc-parties {
  display: flex;
  gap: 0;
  padding: 20px 28px;
  border-bottom: 1px solid #E5E7EB;
  align-items: center;
}
.pc-doc-party { flex: 1; }
.pc-doc-party-arrow {
  font-size: 24px;
  color: #9CA3AF;
  padding: 0 16px;
  flex-shrink: 0;
}
.pc-doc-party-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9CA3AF;
  margin-bottom: 4px;
}
.pc-doc-party-name {
  font-size: 15px;
  font-weight: 700;
  color: #0D1B2E;
  margin-bottom: 2px;
}
.pc-doc-party-detail {
  font-size: 12px;
  color: #6B7280;
  line-height: 1.4;
}

/* Line items table */
.pc-doc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.pc-doc-th-desc, .pc-doc-th-amt {
  background: #F9FAFB;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  padding: 10px 28px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6B7280;
}
.pc-doc-th-amt { text-align: right; }
.pc-doc-td-desc { padding: 14px 28px; color: #374151; border-bottom: 1px solid #F3F4F6; vertical-align: top; }
.pc-doc-td-amt  { padding: 14px 28px; text-align: right; font-weight: 600; color: #374151; border-bottom: 1px solid #F3F4F6; white-space: nowrap; }

/* Footer totals */
.pc-doc-subtotal td, .pc-doc-gst td {
  padding: 8px 28px;
  text-align: right;
  font-size: 13px;
  color: #6B7280;
  border-bottom: 1px solid #F3F4F6;
}
.pc-doc-total td {
  padding: 12px 28px;
  text-align: right;
  font-size: 15px;
  font-weight: 800;
  color: #0D1B2E;
  background: #F9FAFB;
  border-top: 2px solid #E5E7EB;
  border-bottom: 2px solid #E5E7EB;
}

/* Payment due date highlight */
.pc-doc-due-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: #FFFBEB;
  border-top: 1px solid #FDE68A;
  gap: 12px;
}
.pc-doc-due-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #92400E;
}
.pc-doc-due-date {
  font-size: 17px;
  font-weight: 800;
  color: #D97706;
}

/* Response requirement note */
.pc-doc-response-note {
  padding: 14px 28px;
  font-size: 12px;
  color: #6B7280;
  line-height: 1.6;
  border-top: 1px solid #F3F4F6;
  background: #FAFAFA;
}

/* Supporting docs */
.pc-doc-section {
  padding: 16px 28px;
  border-top: 1px solid #E5E7EB;
}
.pc-doc-section-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6B7280;
  margin-bottom: 8px;
}
.pc-doc-support-list {
  margin: 0; padding: 0 0 0 16px;
}
.pc-doc-support-list li { font-size: 13px; color: #374151; margin-bottom: 4px; }

/* Step 3 price/pay panel */
#pc-step-3 .pc-panel:last-child {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE — step 3
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .pc-doc-header { padding: 16px 16px; }
  .pc-doc-badge { font-size: 24px; }
  .pc-doc-act-ref { display: none; }
  .pc-doc-statutory { padding: 10px 16px; }
  .pc-doc-parties { padding: 14px 16px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .pc-doc-party-arrow { display: none; }
  .pc-doc-th-desc, .pc-doc-th-amt,
  .pc-doc-td-desc, .pc-doc-td-amt { padding: 10px 16px; }
  .pc-doc-subtotal td, .pc-doc-gst td, .pc-doc-total td { padding: 8px 16px; }
  .pc-doc-due-row { padding: 12px 16px; }
  .pc-doc-response-note { padding: 12px 16px; }
  .pc-doc-section { padding: 12px 16px; }
  .pc-doc-table { font-size: 13px; }
  .pc-doc-total td { font-size: 14px; }
}

/* ═══════════════════════════════════════════════════════════════════
   STEP 3 — Delivery summary + email preview
   ═══════════════════════════════════════════════════════════════════ */

/* Delivery summary card */
.pc-delivery-summary {
  background: rgba(16,185,129,0.07);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
}
.pc-delivery-title {
  font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #10B981; margin-bottom: 14px;
}
.pc-delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pc-delivery-label {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--pc-muted, #8899BB); margin-bottom: 3px;
}
.pc-delivery-val {
  font-size: 13px; font-weight: 600;
  color: var(--pc-text, #E2E8F0); line-height: 1.4;
}
.pc-delivery-email { font-size: 12px; color: var(--pc-muted, #8899BB); font-weight: 400; }

/* Email preview — collapsible */
.pc-email-preview {
  border: 1px solid var(--pc-border, rgba(255,255,255,0.08));
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}
.pc-email-preview-title {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 20px;
  font-size: 13px; font-weight: 700;
  color: var(--pc-text, #E2E8F0);
  cursor: pointer;
  background: rgba(255,255,255,0.03);
  list-style: none;
  user-select: none;
}
.pc-email-preview-title::-webkit-details-marker { display: none; }
.pc-email-preview-title::before { content: '▶'; font-size: 10px; color: var(--pc-muted); transition: transform 0.2s; }
details[open] .pc-email-preview-title::before { transform: rotate(90deg); }

/* Email header fields */
.pc-email-chrome {
  background: #F9FAFB;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  padding: 12px 20px;
}
.pc-email-field {
  font-size: 12px; color: #374151;
  padding: 4px 0; border-bottom: 1px solid #F3F4F6;
  line-height: 1.5;
}
.pc-email-field:last-child { border-bottom: none; }
.pc-email-field span { font-weight: 700; color: #6B7280; min-width: 72px; display: inline-block; }

/* Email body render */
.pc-email-body { background: #fff; }
.pc-email-header-strip {
  background: #0A1322;
  padding: 14px 24px;
  font-size: 16px; font-weight: 800;
  color: #F6A623;
  display: flex; align-items: center; gap: 10px;
}
.pc-email-header-strip span {
  font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.pc-email-statutory {
  background: #FEF3C7;
  border-bottom: 1px solid #FDE68A;
  padding: 10px 24px;
  font-size: 12px; font-weight: 600; color: #92400E;
}
.pc-email-content {
  padding: 24px;
  font-size: 14px; color: #333; line-height: 1.6;
}
.pc-email-content h3 {
  font-size: 20px; font-weight: 800; color: #111; margin: 0 0 4px;
}
.pc-email-meta { font-size: 12px; color: #777; margin: 0 0 20px; }
.pc-email-table {
  width: 100%; border-collapse: collapse;
  background: #F9F9F9; border-radius: 6px;
  margin: 16px 0; font-size: 13px;
}
.pc-email-table td { padding: 10px 14px; border-bottom: 1px solid #EEE; }
.pc-email-table tr:last-child td { border-bottom: none; }
.pc-email-table td:first-child { color: #777; width: 38%; }
.pc-email-amount { font-size: 17px; }
.pc-email-due { color: #E85454; }
.pc-email-footer {
  font-size: 11px; color: #999; margin-top: 20px;
  padding-top: 12px; border-top: 1px solid #EEE;
}

/* Doc section label */
.pc-doc-preview-label {
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--pc-muted, #8899BB);
  margin-bottom: 10px; margin-top: 4px;
}

/* Detail panel (dashboard) */
.pc-detail-panel {
  background: var(--pc-white, #fff);
  border: 1px solid var(--pc-border, rgba(255,255,255,0.1));
  border-radius: 14px;
  padding: 28px;
  margin-top: 12px;
}
.pc-detail-header {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 16px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.pc-detail-claim-num {
  font-size: 13px; font-weight: 700;
  color: var(--pc-muted); letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.pc-detail-project {
  font-size: 20px; font-weight: 800;
  color: var(--pc-navy);
}
.pc-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 20px;
}
.pc-detail-label {
  display: block; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--pc-muted); margin-bottom: 3px;
}
.pc-detail-val { font-size: 14px; font-weight: 600; color: var(--pc-navy); }

/* Mobile */
@media (max-width: 640px) {
  .pc-delivery-grid { grid-template-columns: 1fr; }
  .pc-email-content { padding: 16px; }
  .pc-detail-grid { grid-template-columns: 1fr; }
  .pc-detail-panel { padding: 16px; }
}

/* ═══════════════════════════════════════════════════════════════════
   BUILD YOUR CASE — step 1 extra questions section
   ═══════════════════════════════════════════════════════════════════ */
.pc-case-builder {
  background: rgba(232,160,32,0.05);
  border: 1px solid rgba(232,160,32,0.2);
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 24px;
}
.pc-case-builder-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--pc-amber, #F6A623);
  margin-bottom: 4px;
}
.pc-case-builder-sub {
  font-size: 13px;
  color: var(--pc-muted, #8899BB);
  margin: 0 0 18px;
}
@media (max-width: 640px) {
  .pc-case-builder { padding: 16px; }
}

/* Sign in with Apple button */
.pc-apple-front-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 20px;
    background: #000;
    border: 1.5px solid #000;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: background .2s;
    box-sizing: border-box;
    margin-bottom: 4px;
}
.pc-apple-front-btn:hover {
    background: #1a1a1a;
    text-decoration: none;
    color: #fff;
}

/* =====================================================================
   WIZARD — FRIENDLY, READABLE THEME (2026-06-15)
   A long data-entry form needs high contrast + friendly type, so the form
   is a clean WHITE card with dark text and big sentence-case labels, sitting
   on the premium dark page (keeps the homepage look around it). Scoped under
   .pc-wrap--wizard so it wins on specificity over the old light rules and the
   template's inline section styles — no !important needed.
   ===================================================================== */
.pc-wrap--wizard {
  --pc-amber: #F6A623;   /* align brand amber to the homepage */
  --pc-green: #16A34A;
  color-scheme: light;
  /* Premium dark page (header/steps sit here); the form card below is light. */
  background:
    radial-gradient(ellipse 70% 55% at 80% 0%, rgba(232,160,32,0.07) 0%, transparent 60%),
    linear-gradient(rgba(136,153,187,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(136,153,187,0.04) 1px, transparent 1px),
    #0A1322;
  background-size: auto, 60px 60px, 60px 60px, auto;
}
.pc-wrap--wizard h1,
.pc-wrap--wizard .pc-dash-inner > h1 { color: #FFFFFF; }
.pc-wrap--wizard .pc-dash-inner > p { color: #AEBCD6; }

/* --- Step indicator (on the dark header) --- */
.pc-wrap--wizard .pc-steps li { color: #AEBCD6; }
.pc-wrap--wizard .pc-steps li.active { color: #FFFFFF; }
.pc-wrap--wizard .pc-step-dot {
  background: rgba(255,255,255,0.06);
  border-color: rgba(174,188,214,0.4);
  color: #AEBCD6;
}
.pc-wrap--wizard .pc-steps li.active .pc-step-dot { background: var(--pc-amber); border-color: var(--pc-amber); color: #0D1B2E; }
.pc-wrap--wizard .pc-step-line { background: rgba(174,188,214,0.25); }

/* --- Panel: clean readable WHITE card --- */
.pc-wrap--wizard .pc-panel {
  background: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  box-shadow: 0 30px 70px -24px rgba(0,0,0,0.6);
  color: #1F2A3C;
  padding: 36px;
}
.pc-wrap--wizard .pc-panel h3 { color: #0D1B2E; font-size: 23px; }
.pc-wrap--wizard .pc-panel > p { color: #5A6B85; font-size: 15.5px; line-height: 1.6; }

/* --- Section cards: soft, friendly, well-spaced --- */
.pc-wrap--wizard .pc-section {
  background: #F7F9FC;
  border: 1px solid #E7ECF4;
  border-left: 1px solid #E7ECF4;
  border-radius: 16px;
  padding: 22px 24px;
}
.pc-wrap--wizard .pc-section-heading { color: #0D1B2E; font-size: 17px; }
.pc-wrap--wizard .pc-section-sub { color: #5A6B85; font-size: 13.5px; line-height: 1.5; }
.pc-wrap--wizard .pc-subhead { color: #0D1B2E; border-color: #E7ECF4; }

/* --- Labels: friendly, sentence case, easy to read (was tiny grey uppercase) --- */
.pc-wrap--wizard .pc-field label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 600;
  color: #1F2A3C;
  margin-bottom: 7px;
}
.pc-wrap--wizard .pc-field .pc-opt { font-weight: 500; color: #8A97AC; text-transform: none; }

/* --- Inputs: modern filled boxes, high contrast, amber focus --- */
.pc-wrap--wizard .pc-field input,
.pc-wrap--wizard .pc-field select,
.pc-wrap--wizard .pc-field textarea {
  background: #FFFFFF;
  border: 1.5px solid #D6DEEA;
  border-radius: 10px;
  padding: 13px 14px;
  font-size: 16px;
  color: #0D1B2E;
  line-height: 1.4;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.pc-wrap--wizard .pc-field input::placeholder,
.pc-wrap--wizard .pc-field textarea::placeholder { color: #A2AEC0; }
.pc-wrap--wizard .pc-field input:focus,
.pc-wrap--wizard .pc-field select:focus,
.pc-wrap--wizard .pc-field textarea:focus {
  border-color: var(--pc-amber);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.18);
  outline: none;
}
.pc-wrap--wizard .pc-form-grid { gap: 18px 22px; }

/* --- Buttons --- */
.pc-wrap--wizard .pc-btn--outline { background: #FFFFFF; color: #0D1B2E; border-color: #CBD5E1; }
.pc-wrap--wizard .pc-btn--outline:hover { border-color: var(--pc-amber); color: #0D1B2E; }
