/* ============================================================
   PassMark — design system
   Material-3 palette from uploaded brand files
   Primary teal · secondary green · cool blue-tinted neutrals
   ============================================================ */

:root {
  --brand: #005f6c;          /* primary teal — actions, nav, focus */
  --brand-deep: #013e47;     /* deep teal — side panels / sidebar */
  --brand-deep-2: #00272d;
  --lime: #4ae183;           /* bright green accent (on dark) */
  --success: #006d37;        /* secondary green — positive/correct */
  --success-bg: #d1f5e3;
  --success-on: #00743a;
  --radius: 16px;
  --display-font: "Bricolage Grotesque", system-ui, sans-serif;
  --body-font: "Hanken Grotesque", system-ui, sans-serif;

  --ink: #091d2e;            /* on-surface (dark navy) */
  --ink-2: #3e494b;
  --ink-3: #6e797b;          /* outline */
  --line: #d4deec;           /* blue-tinted hairline */
  --line-2: #e8eef8;
  --bg: #f7f9ff;             /* cool off-white */
  --card: #ffffff;
  --field: #ffffff;
  --field-focus: #edf4ff;    /* surface-low */

  --shadow-sm: 0 1px 2px rgba(9,29,46,.05), 0 1px 3px rgba(9,29,46,.04);
  --shadow-md: 0 4px 16px rgba(9,29,46,.07), 0 2px 6px rgba(9,29,46,.04);
  --shadow-lg: 0 24px 60px -18px rgba(9,29,46,.22);
}

/* ============================================================
   DARK THEME — system-wide. Applied via [data-theme="dark"] on <html>.
   Overrides the same tokens so every page + component re-themes.
   ============================================================ */
[data-theme="dark"] {
  --brand: #2ab8cc;          /* brightened teal for contrast on dark */
  --brand-deep: #04222789;   /* sidebar already dark; keep deep */
  --brand-deep-2: #001417;
  --lime: #4ae183;
  --success: #38d98a;
  --success-bg: #0e3328;
  --success-on: #6ff0ad;

  --ink: #e6eef1;            /* near-white text */
  --ink-2: #aec0c5;
  --ink-3: #7f9197;          /* muted */
  --line: #21343c;           /* hairline on dark */
  --line-2: #1a2a31;
  --bg: #081317;             /* deep navy-teal canvas */
  --card: #0f1f25;           /* raised surface */
  --field: #0c1a20;
  --field-focus: #122730;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.4), 0 1px 3px rgba(0,0,0,.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,.45), 0 2px 6px rgba(0,0,0,.3);
  --shadow-lg: 0 24px 60px -18px rgba(0,0,0,.7);
}
/* sidebar uses a fixed teal gradient; deepen it in dark so it sits with the canvas */
[data-theme="dark"] .d-side,
[data-theme="dark"] .pm-side { background: linear-gradient(180deg, #0a2a30 0%, #061b1f 100%); }

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: var(--body-font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
#root, .pm-root { min-height: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Logo ---------- */
.pm-logo { display: inline-flex; align-items: center; }
.pm-logo-mark { display: inline-flex; }
.pm-logo-word { font-family: var(--display-font); font-weight: 800; letter-spacing: -.02em; line-height: 1; }

/* ============================================================
   ACCOUNT TYPE
   ============================================================ */
.pm-acct {
  min-height: 100vh; display: grid; place-items: center; padding: 40px 24px;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(74,222,128,.10), transparent 55%),
    radial-gradient(100% 80% at 0% 100%, rgba(22,163,74,.08), transparent 50%),
    var(--bg);
}
.pm-acct-inner { width: 100%; max-width: 880px; text-align: center; }
.pm-acct-head { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 40px; }
.pm-acct-title { font-family: var(--display-font); font-weight: 800; font-size: clamp(30px, 5vw, 46px);
  letter-spacing: -.03em; line-height: 1.08; margin-top: 8px; max-width: 16ch; }
.pm-acct-sub { color: var(--ink-3); font-size: 17px; max-width: 460px; line-height: 1.5; }

.pm-acct-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pm-acct-card {
  position: relative; text-align: left; background: var(--card); border: 1.5px solid var(--line);
  border-radius: calc(var(--radius) + 6px); padding: 30px 28px 26px; display: flex; flex-direction: column;
  gap: 12px; transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s, border-color .2s;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.pm-acct-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(120% 80% at 80% -10%, rgba(22,163,74,.07), transparent 60%); opacity: 0; transition: opacity .25s;
}
.pm-acct-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: color-mix(in oklab, var(--brand) 50%, var(--line)); }
.pm-acct-card:hover::after { opacity: 1; }
.pm-acct-icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: color-mix(in oklab, var(--brand) 12%, #fff); color: var(--brand); margin-bottom: 4px;
}
.pm-acct-card:hover .pm-acct-icon { background: var(--brand); color: #fff; }
.pm-acct-name { font-family: var(--display-font); font-weight: 800; font-size: 23px; letter-spacing: -.02em; }
.pm-acct-desc { color: var(--ink-3); font-size: 15px; line-height: 1.55; flex: 1; }
.pm-acct-go { display: inline-flex; align-items: center; gap: 7px; color: var(--brand); font-weight: 700; font-size: 15px; margin-top: 6px; }
.pm-acct-card:hover .pm-acct-go { gap: 11px; }
.pm-acct-foot { margin-top: 30px; color: var(--ink-3); font-size: 15px; }
.pm-acct-foot a { font-weight: 700; }

/* ============================================================
   WIZARD SHELL
   ============================================================ */
.pm-wizard { min-height: 100vh; display: grid; grid-template-columns: 380px 1fr; }

/* ---- side panel ---- */
.pm-side {
  position: relative; overflow: hidden; color: #fff; padding: 38px 34px;
  display: flex; flex-direction: column; gap: 36px;
  background: linear-gradient(165deg, var(--brand-deep) 0%, var(--brand-deep-2) 100%);
}
[data-panel="tint"] .pm-side {
  background: linear-gradient(165deg, color-mix(in oklab, var(--brand) 88%, #000) 0%, color-mix(in oklab, var(--brand) 60%, #000) 100%);
}
.pm-side-glow {
  position: absolute; width: 420px; height: 420px; right: -160px; top: -120px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklab, var(--brand) 65%, transparent), transparent 65%);
  filter: blur(10px); opacity: .55; pointer-events: none;
}
.pm-side-mid { flex: 1; display: flex; flex-direction: column; position: relative; z-index: 1; }
.pm-side-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 12px; }
.pm-side-head { font-family: var(--display-font); font-weight: 800; font-size: 30px; letter-spacing: -.02em;
  line-height: 1.08; margin-bottom: 34px; max-width: 18ch; }

/* stepper */
.pm-stepper { list-style: none; display: flex; flex-direction: column; gap: 2px; position: relative; }
.pm-step { display: flex; align-items: center; gap: 14px; padding: 11px 0; position: relative; color: rgba(255,255,255,.5);
  font-size: 15px; font-weight: 500; transition: color .25s; }
.pm-step:not(:last-child) .pm-step-dot::after {
  content: ""; position: absolute; left: 50%; top: 30px; transform: translateX(-50%);
  width: 2px; height: calc(100% - 8px); background: rgba(255,255,255,.16);
}
.pm-step-dot { position: relative; flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; font-size: 13px; font-weight: 700;
  border: 2px solid rgba(255,255,255,.22); color: rgba(255,255,255,.6); transition: all .25s; background: transparent; }
.pm-step.active { color: #fff; }
.pm-step.active .pm-step-dot { border-color: var(--lime); color: var(--brand-deep); background: var(--lime); box-shadow: 0 0 0 5px color-mix(in oklab, var(--lime) 22%, transparent); }
.pm-step.done { color: rgba(255,255,255,.82); }
.pm-step.done .pm-step-dot { border-color: var(--lime); background: color-mix(in oklab, var(--lime) 22%, transparent); color: var(--lime); }
.pm-step.done:not(:last-child) .pm-step-dot::after { background: var(--lime); opacity: .5; }
.pm-step-label { line-height: 1.25; }

.pm-side-foot { position: relative; z-index: 1; border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px; }
.pm-side-quote { font-family: var(--display-font); font-size: 16px; line-height: 1.45; color: rgba(255,255,255,.92);
  font-weight: 500; text-wrap: pretty; }
.pm-side-cite { margin-top: 10px; font-size: 13px; color: var(--lime); font-weight: 600; }

/* ---- mobile bar (hidden on desktop) ---- */
.pm-mbar { display: none; }

/* ---- main column ---- */
.pm-main { display: flex; flex-direction: column; min-height: 100vh; background: var(--bg); }
.pm-main-scroll { flex: 1; overflow-y: auto; display: flex; justify-content: center; padding: 56px 48px 40px; }
.pm-stage { width: 100%; max-width: 620px; }
.pm-stage-head { margin-bottom: 30px; }
.pm-eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand); background: color-mix(in oklab, var(--brand) 11%, #fff); padding: 5px 11px; border-radius: 999px; margin-bottom: 16px; }
.pm-h1 { font-family: var(--display-font); font-weight: 800; font-size: clamp(26px, 3.4vw, 34px); letter-spacing: -.03em;
  line-height: 1.06; color: var(--ink); }
.pm-sub { margin-top: 11px; color: var(--ink-3); font-size: 16px; line-height: 1.55; max-width: 52ch; text-wrap: pretty; }
.pm-stage-body { animation: stageIn .4s cubic-bezier(.2,.7,.3,1); }
.pm-stage[data-dir="-1"] .pm-stage-body { animation-name: stageInBack; }
@keyframes stageIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes stageInBack { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }

.pm-formerr { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; font-size: 14px; font-weight: 600;
  padding: 11px 14px; border-radius: 12px; margin-bottom: 20px; }

/* ---- footer nav ---- */
.pm-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 48px; border-top: 1px solid var(--line); background: color-mix(in oklab, var(--card) 70%, transparent);
  backdrop-filter: blur(8px); position: sticky; bottom: 0; }
.pm-footer-dots { display: flex; gap: 7px; }
.pm-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--line); transition: all .25s; }
.pm-dot.past { background: color-mix(in oklab, var(--brand) 45%, var(--line)); }
.pm-dot.on { background: var(--brand); width: 22px; border-radius: 999px; }

/* ============================================================
   FORM CONTROLS
   ============================================================ */
.pm-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.pm-field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.pm-field.wide { grid-column: 1 / -1; }

/* subsections (e.g. school details vs admin login) */
.pm-section-stack { display: flex; flex-direction: column; gap: 26px; }
.pm-subsection { display: flex; flex-direction: column; gap: 14px; }
.pm-subhead { display: flex; align-items: center; gap: 9px; font-family: var(--display-font); font-weight: 800;
  font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--brand);
  padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.pm-subhead svg { color: var(--brand); }
.pm-subnote { font-size: 13.5px; color: var(--ink-3); margin-top: -6px; line-height: 1.45; }
.pm-label { font-size: 13.5px; font-weight: 700; color: var(--ink-2); display: flex; align-items: center; gap: 8px; }
.pm-opt { font-style: normal; font-weight: 600; font-size: 11px; color: var(--ink-3); background: var(--line-2);
  padding: 2px 7px; border-radius: 999px; letter-spacing: .02em; }
.pm-input-wrap { position: relative; }
.pm-input {
  width: 100%; font-family: inherit; font-size: 15.5px; color: var(--ink); background: var(--field);
  border: 1.5px solid var(--line); border-radius: 12px; padding: 13px 15px; transition: border-color .18s, box-shadow .18s, background .18s;
}
.pm-input::placeholder { color: #aab4ad; }
.pm-input:focus { outline: none; border-color: var(--brand); background: var(--field-focus);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--brand) 14%, transparent); }
.is-error .pm-input { border-color: #ef4444; }
.is-error .pm-input:focus { box-shadow: 0 0 0 4px rgba(239,68,68,.14); }
.pm-eye { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); border: none; background: none;
  color: var(--ink-3); padding: 8px; border-radius: 8px; display: grid; place-items: center; }
.pm-eye:hover { color: var(--ink); background: var(--line-2); }
.pm-err { font-size: 12.5px; font-weight: 600; color: #dc2626; }
.pm-hint { font-size: 12.5px; color: var(--ink-3); }

/* select */
.pm-select { position: relative; }
.pm-select-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-family: inherit; font-size: 15.5px; color: var(--ink); background: var(--field); border: 1.5px solid var(--line);
  border-radius: 12px; padding: 13px 13px 13px 15px; text-align: left; transition: border-color .18s, box-shadow .18s, background .18s; }
.pm-select-btn .ph { color: #aab4ad; }
.pm-select-btn:hover { border-color: color-mix(in oklab, var(--brand) 40%, var(--line)); }
.pm-select-btn.open { border-color: var(--brand); background: var(--field-focus); box-shadow: 0 0 0 4px color-mix(in oklab, var(--brand) 14%, transparent); }
.is-error .pm-select-btn { border-color: #ef4444; }
.pm-chev { color: var(--ink-3); transition: transform .2s; flex: 0 0 auto; }
.pm-select-btn.open .pm-chev { transform: rotate(180deg); }
.pm-menu { position: absolute; z-index: 40; top: calc(100% + 8px); left: 0; right: 0; background: var(--card);
  border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); overflow: hidden;
  animation: menuIn .16s ease both; }
@keyframes menuIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.pm-menu-search { width: 100%; border: none; border-bottom: 1px solid var(--line); padding: 12px 14px; font-family: inherit;
  font-size: 14.5px; outline: none; background: var(--bg); }
.pm-menu-list { max-height: 240px; overflow-y: auto; padding: 6px; }
.pm-menu-item { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 8px;
  border: none; background: none; text-align: left; font-family: inherit; font-size: 14.5px; color: var(--ink-2);
  padding: 10px 12px; border-radius: 9px; transition: background .12s, color .12s; }
.pm-menu-item:hover { background: var(--line-2); color: var(--ink); }
.pm-menu-item.sel { background: color-mix(in oklab, var(--brand) 11%, #fff); color: var(--brand); font-weight: 700; }
.pm-menu-item svg { color: var(--brand); }
.pm-menu-empty { padding: 16px; text-align: center; color: var(--ink-3); font-size: 14px; }

/* ============================================================
   CHOICE CARDS
   ============================================================ */
.pm-choice-grid { display: grid; gap: 16px; }
.pm-choice-grid.two { grid-template-columns: 1fr 1fr; }
.pm-choice-grid.three { grid-template-columns: 1fr 1fr 1fr; }
.pm-choice {
  position: relative; text-align: left; background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 20px 20px 18px; display: flex; flex-direction: column; gap: 8px; transition: all .18s cubic-bezier(.2,.7,.3,1);
  box-shadow: var(--shadow-sm);
}
.pm-choice:hover { border-color: color-mix(in oklab, var(--brand) 45%, var(--line)); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.pm-choice.sel { border-color: var(--brand); background: color-mix(in oklab, var(--brand) 5%, #fff);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--brand) 16%, transparent), var(--shadow-md); }
.pm-choice-check { position: absolute; top: 16px; right: 16px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand); color: #fff; display: grid; place-items: center; opacity: 0; transform: scale(.5); transition: all .2s; }
.pm-choice.sel .pm-choice-check { opacity: 1; transform: none; }
.pm-choice-top { display: flex; align-items: center; gap: 10px; }
.pm-choice-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: color-mix(in oklab, var(--brand) 12%, #fff); color: var(--brand); transition: all .2s; }
.pm-choice.sel .pm-choice-icon { background: var(--brand); color: #fff; }
.pm-choice-tag { font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-3); background: var(--line-2); padding: 4px 9px; border-radius: 999px; }
.pm-choice-tag.accent { color: #fff; background: linear-gradient(100deg, var(--brand), color-mix(in oklab, var(--brand) 60%, #000)); }
.pm-choice-title { font-family: var(--display-font); font-weight: 800; font-size: 18px; letter-spacing: -.01em; color: var(--ink); margin-top: 2px; }
.pm-choice-desc { color: var(--ink-3); font-size: 13.5px; line-height: 1.5; flex: 1; }
.pm-choice-points { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; padding-top: 12px; border-top: 1px dashed var(--line); }
.pm-choice-point { display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--ink-2); }
.pm-choice-point svg { color: var(--brand); flex: 0 0 auto; }

/* ============================================================
   REVIEW
   ============================================================ */
.pm-review { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pm-review-card { background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 18px 20px;
  box-shadow: var(--shadow-sm); }
.pm-review-card.span { grid-column: 1 / -1; }
.pm-review-head { display: flex; align-items: center; gap: 9px; font-family: var(--display-font); font-weight: 800; font-size: 14px;
  color: var(--brand); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 14px; }
.pm-review-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 8px 0; border-top: 1px solid var(--line-2); }
.pm-review-row:first-of-type { border-top: none; }
.pm-review-label { font-size: 13px; color: var(--ink-3); font-weight: 500; flex: 0 0 auto; }
.pm-review-value { font-size: 14.5px; color: var(--ink); font-weight: 600; text-align: right; text-wrap: pretty; }

/* ============================================================
   BUTTONS
   ============================================================ */
.pm-btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: inherit;
  font-weight: 700; font-size: 15px; border-radius: 12px; padding: 13px 22px; border: 1.5px solid transparent;
  transition: all .18s cubic-bezier(.2,.7,.3,1); white-space: nowrap; }
.pm-btn.full { width: 100%; }
.pm-btn.primary { background: var(--brand); color: #fff; box-shadow: 0 6px 16px -6px color-mix(in oklab, var(--brand) 70%, transparent); }
.pm-btn.primary:hover:not(:disabled) { background: color-mix(in oklab, var(--brand) 88%, #000); transform: translateY(-1px); box-shadow: 0 10px 22px -8px color-mix(in oklab, var(--brand) 70%, transparent); }
.pm-btn.primary svg { transition: transform .2s; }
.pm-btn.primary:hover:not(:disabled) svg { transform: translateX(3px); }
.pm-btn.ghost { background: transparent; color: var(--ink-2); border-color: var(--line); }
.pm-btn.ghost:hover { background: var(--card); border-color: var(--ink-3); color: var(--ink); }
.pm-btn:disabled { opacity: .5; cursor: not-allowed; }

/* ============================================================
   SUCCESS
   ============================================================ */
.pm-done { min-height: 100vh; display: grid; place-items: center; padding: 40px 24px;
  background: radial-gradient(120% 90% at 50% -10%, rgba(74,222,128,.14), transparent 55%), var(--bg); }
.pm-done-card { max-width: 520px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.pm-done-burst { width: 92px; height: 92px; border-radius: 50%; display: grid; place-items: center; color: #fff;
  background: linear-gradient(150deg, var(--brand), color-mix(in oklab, var(--brand) 55%, #000));
  box-shadow: 0 0 0 10px color-mix(in oklab, var(--brand) 14%, transparent), var(--shadow-lg);
  animation: pop .5s cubic-bezier(.2,1.4,.4,1); }
@keyframes pop { from { transform: scale(.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.pm-done-title { font-family: var(--display-font); font-weight: 800; font-size: clamp(28px, 4vw, 38px); letter-spacing: -.03em; line-height: 1.12; }
.pm-done-sub { color: var(--ink-3); font-size: 16.5px; line-height: 1.55; text-wrap: pretty; }
.pm-done-actions { display: flex; gap: 12px; margin-top: 12px; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  .pm-wizard { grid-template-columns: 1fr; }
  .pm-side { display: none; }
  .pm-mbar { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: var(--card);
    border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 30; }
  .pm-mbar-back { border: 1.5px solid var(--line); background: var(--card); width: 40px; height: 40px; border-radius: 11px;
    display: grid; place-items: center; color: var(--ink-2); flex: 0 0 auto; }
  .pm-mbar-back:hover { border-color: var(--ink-3); color: var(--ink); }
  .pm-mbar-mid { flex: 1; display: flex; flex-direction: column; gap: 8px; }
  .pm-mbar-row { display: flex; align-items: center; justify-content: space-between; }
  .pm-mbar-count { font-size: 13px; font-weight: 700; color: var(--ink-3); }
  .pm-mbar-track { height: 5px; border-radius: 999px; background: var(--line-2); overflow: hidden; }
  .pm-mbar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--brand), var(--lime)); transition: width .35s cubic-bezier(.2,.7,.3,1); }
  .pm-main-scroll { padding: 30px 22px 32px; }
  .pm-footer { padding: 14px 22px; }
  .pm-footer .pm-footer-dots { display: none; }
  .pm-btn { padding: 12px 18px; font-size: 14.5px; }
}
@media (max-width: 700px) {
  .pm-acct-cards { grid-template-columns: 1fr; }
  .pm-form-grid, .pm-choice-grid.two, .pm-choice-grid.three, .pm-review { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .pm-footer .pm-btn span { font-size: 14px; }
}
