/* ============================================================
   Health Insurance Inquiry – dedicated styles (loaded AFTER styles.css)
   Provides class names used by health.js. Uses CSS vars set by brand.js.
   ============================================================ */

:root {
  --hi-bg: #F5F1EA;
  --hi-surface: #FFFFFF;
  --hi-surface-alt: #FBF8F1;
  --hi-border: #E1DACD;
  --hi-text: #1E2532;
  --hi-text-muted: #5B6472;
  --hi-text-faint: #97A0AC;
  --hi-primary: var(--brand-primary, #0F2A44);
  --hi-primary-hover: var(--brand-primary-hover, #123253);
  --hi-primary-contrast: #FFFFFF;
  --hi-accent: var(--brand-accent, #2C7DA0);
  --hi-eyebrow: var(--brand-eyebrow, #4F98A3);
  --hi-danger: #A12C7B;
  --hi-success: #437A22;
  --hi-radius: 12px;
  --hi-radius-sm: 8px;
  --hi-shadow: 0 1px 2px rgba(19, 25, 38, 0.06), 0 1px 6px rgba(19, 25, 38, 0.04);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--hi-bg);
  color: var(--hi-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

button { font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 16px; }

/* ----------- App shell ----------- */
.wf-app {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--hi-bg);
}
.wf-header {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  padding: 12px 12px calc(12px + env(safe-area-inset-top, 0px)) 12px;
  padding-top: calc(12px + env(safe-area-inset-top, 0px));
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}
.wf-back-btn, .wf-settings-btn {
  appearance: none;
  border: 0;
  background: rgba(255,255,255,0.10);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.wf-back-btn[hidden] { visibility: hidden; display: inline-flex; }
.wf-back-btn:hover, .wf-settings-btn:hover { background: rgba(255,255,255,0.16); }
.wf-header-title { text-align: center; overflow: hidden; }
.wf-header-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--hi-eyebrow);
  text-transform: uppercase;
}
.wf-header-h {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wf-screen {
  flex: 1;
  padding: 20px 18px 40px 18px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

/* ----------- Hero (home) ----------- */
.wf-hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0 18px 0;
}
.wf-hero-logo-img {
  max-width: 200px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.wf-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--hi-primary);
  text-transform: uppercase;
  margin-top: 4px;
}
.wf-hero-h {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--hi-text);
  margin: 8px 0 12px 0;
  letter-spacing: -0.01em;
}
.wf-hero-p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--hi-text-muted);
  margin: 0 0 22px 0;
}

/* ----------- Resume card ----------- */
.wf-resume-card {
  background: var(--hi-surface);
  border: 1px solid var(--hi-border);
  border-radius: var(--hi-radius);
  padding: 18px 16px;
  margin-bottom: 20px;
  box-shadow: var(--hi-shadow);
}
.wf-resume-eyebrow {
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--hi-eyebrow);
  text-transform: uppercase;
}
.wf-resume-h {
  font-size: 17px;
  font-weight: 600;
  color: var(--hi-text);
  margin: 4px 0 2px 0;
}
.wf-resume-sub {
  font-size: 13px;
  color: var(--hi-text-muted);
  margin-bottom: 12px;
}

/* ----------- Progress bar ----------- */
.wf-progress {
  height: 6px;
  border-radius: 3px;
  background: var(--hi-border);
  overflow: hidden;
  margin: 4px 0 6px 0;
}
.wf-progress-fill {
  height: 100%;
  background: var(--hi-primary);
  border-radius: 3px;
  transition: width 200ms ease;
}
.wf-progress-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--hi-text-muted);
  margin-bottom: 12px;
}
.wf-progress-txt { font-weight: 600; color: var(--hi-text); }
.wf-progress-pct { color: var(--hi-text-muted); }

/* ----------- Info card (home) ----------- */
.wf-info-card {
  background: var(--hi-surface-alt);
  border: 1px solid var(--hi-border);
  border-radius: var(--hi-radius);
  padding: 16px;
  margin-top: 20px;
}
.wf-info-h {
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--hi-eyebrow);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.wf-info-row {
  padding: 10px 0;
  border-top: 1px solid var(--hi-border);
}
.wf-info-row:first-of-type { border-top: 0; padding-top: 0; }
.wf-info-key {
  font-size: 13px;
  font-weight: 600;
  color: var(--hi-text);
  margin-bottom: 2px;
}
.wf-info-val {
  font-size: 13px;
  color: var(--hi-text-muted);
  line-height: 1.5;
}

/* ----------- Inline note / callout ----------- */
.wf-inline-note {
  margin: 22px 0 8px 0;
  padding: 12px 14px;
  background: var(--hi-surface);
  border: 1px solid var(--hi-border);
  border-left: 3px solid var(--hi-eyebrow);
  border-radius: 8px;
  font-size: 12px;
  color: var(--hi-text-muted);
  line-height: 1.5;
}
.wf-callout {
  background: var(--hi-surface-alt);
  border: 1px solid var(--hi-border);
  border-left: 3px solid var(--hi-primary);
  border-radius: 8px;
  padding: 12px 14px;
  margin: 6px 0 16px 0;
}
.wf-callout-eyebrow {
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--hi-primary);
  text-transform: uppercase;
}
.wf-callout-h {
  font-size: 14px;
  font-weight: 600;
  color: var(--hi-text);
  margin-top: 4px;
  line-height: 1.4;
}

/* ----------- Footer ----------- */
.wf-footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--hi-border);
  text-align: center;
}
.wf-footer-brand {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--hi-text-muted);
  text-transform: uppercase;
}
.wf-footer-sub {
  font-size: 11px;
  color: var(--hi-text-faint);
  margin-top: 4px;
}

/* ----------- Step header / footer ----------- */
.wf-step-title {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--hi-text);
  margin: 12px 0 4px 0;
  letter-spacing: -0.005em;
}
.wf-step-sub {
  font-size: 14px;
  line-height: 1.5;
  color: var(--hi-text-muted);
  margin: 0 0 20px 0;
}
.wf-step-footer {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--hi-border);
  position: sticky;
  bottom: 0;
  background: var(--hi-bg);
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}

/* ----------- Buttons ----------- */
.wf-btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
  min-height: 46px;
}
.wf-btn-primary {
  background: var(--hi-primary);
  color: var(--hi-primary-contrast);
}
.wf-btn-primary:hover { background: var(--hi-primary-hover); }
.wf-btn-ghost {
  background: transparent;
  color: var(--hi-text);
  border-color: var(--hi-border);
}
.wf-btn-ghost:hover { background: var(--hi-surface-alt); }
.wf-btn-block {
  display: block;
  width: 100%;
  margin: 10px 0 0 0;
}

/* ----------- Fields ----------- */
.wf-field {
  margin-bottom: 16px;
}
.wf-field-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--hi-text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.wf-field-help {
  font-size: 12px;
  color: var(--hi-text-muted);
  margin-top: 6px;
  line-height: 1.4;
}
.wf-input, .wf-select, .wf-textarea {
  display: block;
  width: 100%;
  background: var(--hi-surface);
  border: 1px solid var(--hi-border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--hi-text);
  min-height: 46px;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}
.wf-textarea {
  min-height: auto;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.5;
}
.wf-input:focus, .wf-select:focus, .wf-textarea:focus {
  outline: none;
  border-color: var(--hi-primary);
  box-shadow: 0 0 0 3px rgba(15, 42, 68, 0.10);
}
.wf-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%235B6472'%3E%3Cpath d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}
.wf-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 4px; }
.wf-row-3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 10px; margin-bottom: 4px; }
.wf-row-2 .wf-field, .wf-row-3 .wf-field { margin-bottom: 12px; }

/* ----------- Pills ----------- */
.wf-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.wf-pill {
  appearance: none;
  border: 1px solid var(--hi-border);
  background: var(--hi-surface);
  color: var(--hi-text);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  min-height: 40px;
  transition: background 120ms, border-color 120ms, color 120ms;
}
.wf-pill:hover { border-color: var(--hi-primary); }
.wf-pill-on {
  background: var(--hi-primary);
  color: var(--hi-primary-contrast);
  border-color: var(--hi-primary);
}

/* ----------- Choice cards (plan type / network) ----------- */
.wf-choice-card {
  appearance: none;
  display: block;
  width: 100%;
  text-align: left;
  background: var(--hi-surface);
  border: 1.5px solid var(--hi-border);
  border-radius: var(--hi-radius);
  padding: 14px 16px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color 120ms, background 120ms;
}
.wf-choice-card:hover { border-color: var(--hi-primary); }
.wf-choice-on {
  border-color: var(--hi-primary);
  background: rgba(15, 42, 68, 0.04);
}
.wf-choice-h {
  font-size: 15px;
  font-weight: 600;
  color: var(--hi-text);
  margin-bottom: 3px;
}
.wf-choice-p {
  font-size: 13px;
  color: var(--hi-text-muted);
  line-height: 1.45;
}

/* ----------- Divider ----------- */
.wf-divider {
  height: 1px;
  background: var(--hi-border);
  margin: 20px 0;
}

/* ----------- Member card ----------- */
.wf-member-card {
  background: var(--hi-surface);
  border: 1px solid var(--hi-border);
  border-radius: var(--hi-radius);
  padding: 16px;
  margin-bottom: 14px;
  box-shadow: var(--hi-shadow);
}
.wf-member-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hi-border);
}
.wf-member-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--hi-text);
  flex: 1;
}
.wf-member-age {
  font-size: 12px;
  color: var(--hi-text-muted);
  font-weight: 600;
}
.wf-member-remove {
  appearance: none;
  background: transparent;
  border: 1px solid var(--hi-border);
  border-radius: 8px;
  color: var(--hi-danger);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  cursor: pointer;
}

/* ----------- Review cards (already partially defined in styles.css) ----------- */
.wf-review-card {
  background: var(--hi-surface);
  border: 1px solid var(--hi-border);
  border-radius: var(--hi-radius);
  padding: 14px 16px;
  margin-bottom: 12px;
}
.wf-review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.wf-review-eyebrow {
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--hi-eyebrow);
  text-transform: uppercase;
}
.wf-review-edit {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--hi-primary);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
}
.wf-review-row {
  display: grid;
  grid-template-columns: 32% 1fr;
  gap: 10px;
  padding: 6px 0;
  border-top: 1px solid rgba(225, 218, 205, 0.7);
}
.wf-review-row:first-of-type { border-top: 0; }
.wf-review-key {
  font-size: 12px;
  color: var(--hi-text-muted);
  font-weight: 600;
}
.wf-review-val {
  font-size: 13px;
  color: var(--hi-text);
  word-break: break-word;
}
.wf-review-hero {
  background: linear-gradient(180deg, rgba(15, 42, 68, 0.04), rgba(15, 42, 68, 0.02));
  border: 1px solid var(--hi-border);
  border-radius: var(--hi-radius);
  padding: 18px;
  margin-bottom: 14px;
  text-align: center;
}
.wf-review-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--hi-eyebrow);
  text-transform: uppercase;
}
.wf-review-hero-amt {
  font-size: 22px;
  font-weight: 700;
  color: var(--hi-text);
  margin: 4px 0 4px 0;
  letter-spacing: -0.01em;
}
.wf-review-hero-sub {
  font-size: 13px;
  color: var(--hi-text-muted);
}

/* ----------- Consents ----------- */
.wf-consent {
  background: var(--hi-surface);
  border: 1px solid var(--hi-border);
  border-radius: var(--hi-radius);
  padding: 14px 16px;
  margin-bottom: 10px;
}
.wf-consent-hi {
  border-color: var(--hi-primary);
  background: rgba(15, 42, 68, 0.03);
}
.wf-consent-tag {
  display: inline-block;
  background: var(--hi-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.wf-consent-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  cursor: pointer;
}
.wf-consent-row input[type="checkbox"] {
  margin-top: 2px;
  width: 20px;
  height: 20px;
  accent-color: var(--hi-primary);
  cursor: pointer;
}
.wf-consent-txt { }
.wf-consent-h {
  font-size: 14px;
  font-weight: 600;
  color: var(--hi-text);
  margin-bottom: 4px;
}
.wf-consent-p {
  font-size: 12px;
  color: var(--hi-text-muted);
  line-height: 1.5;
}
.wf-attest-note {
  margin: 10px 0 6px 0;
  padding: 10px 12px;
  background: var(--hi-surface-alt);
  border: 1px solid var(--hi-border);
  border-radius: 8px;
  font-size: 12px;
  color: var(--hi-text-muted);
  line-height: 1.5;
}

/* ----------- Export screen ----------- */
.wf-center { text-align: center; }
.wf-check-icon {
  display: flex;
  justify-content: center;
  margin: 8px 0 4px 0;
}
.wf-export-card {
  appearance: none;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  background: var(--hi-surface);
  border: 1px solid var(--hi-border);
  border-radius: var(--hi-radius);
  padding: 14px 16px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color 120ms, background 120ms;
}
.wf-export-card:hover { border-color: var(--hi-primary); }
.wf-export-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.wf-export-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(15, 42, 68, 0.08);
  color: var(--hi-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
}
.wf-export-txt { flex: 1; }
.wf-export-h {
  font-size: 15px;
  font-weight: 600;
  color: var(--hi-text);
}
.wf-export-p {
  font-size: 12px;
  color: var(--hi-text-muted);
  margin-top: 2px;
}

/* ----------- Toast ----------- */
.wf-toast-root {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 200;
  pointer-events: none;
}
.wf-toast {
  background: #1E2532;
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  box-shadow: 0 4px 16px rgba(19,25,38,0.24);
  animation: hi-fade-in 200ms ease;
}
.wf-toast-error {
  background: var(--hi-danger);
}
.wf-toast-info {
  background: var(--hi-primary);
}
@keyframes hi-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ----------- Modal (confirmation) ----------- */
.wf-modal-root:empty { display: none; }
.wf-modal-root {
  position: fixed;
  inset: 0;
  background: rgba(19, 25, 38, 0.45);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.wf-modal {
  background: var(--hi-surface);
  border-radius: 14px;
  padding: 20px;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 12px 40px rgba(19,25,38,0.24);
}
.wf-modal-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--hi-text);
  margin-bottom: 6px;
}
.wf-modal-body {
  font-size: 13px;
  color: var(--hi-text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}
.wf-modal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ============================================================
   Packet overlay
   ============================================================ */
.pkt-overlay {
  position: fixed;
  inset: 0;
  background: #E9E4D8;
  z-index: 400;
  display: flex;
  flex-direction: column;
}
.pkt-toolbar {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  padding: 10px 12px;
  background: #FFFFFF;
  border-bottom: 1px solid var(--hi-border);
}
.pkt-close-btn, .pkt-print-btn {
  appearance: none;
  border: 1px solid var(--hi-border);
  border-radius: 8px;
  background: #fff;
  color: var(--hi-text);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  cursor: pointer;
}
.pkt-print-btn {
  background: var(--hi-primary);
  color: #fff;
  border-color: var(--hi-primary);
}
.pkt-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.pkt-page {
  background: #fff;
  width: 100%;
  max-width: 720px;
  padding: 40px 44px 60px 44px;
  box-shadow: 0 4px 24px rgba(19,25,38,0.10);
  color: #1E2532;
  font-size: 12px;
  line-height: 1.5;
  height: auto !important;
  min-height: 0;
  flex-shrink: 0;
}
.pkt-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
  border-bottom: 2px solid var(--hi-primary);
  padding-bottom: 14px;
  margin-bottom: 20px;
}
.pkt-title strong { font-size: 15px; }
.pkt-sub { font-size: 11px; color: #5B6472; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }
.pkt-meta { text-align: right; font-size: 11px; }
.pkt-meta-lab { color: #97A0AC; letter-spacing: 0.1em; font-weight: 700; text-transform: uppercase; margin-top: 4px; }
.pkt-meta-val { font-weight: 600; color: #1E2532; }
.pkt-hero {
  background: #F5F1EA;
  border-left: 4px solid var(--hi-primary);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.pkt-hero-lab { font-size: 10px; letter-spacing: 0.14em; font-weight: 700; color: var(--hi-primary); text-transform: uppercase; }
.pkt-hero-amt { font-size: 22px; font-weight: 700; margin: 6px 0 4px 0; color: #1E2532; }
.pkt-hero-sub { font-size: 12px; color: #5B6472; }
.pkt-h {
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--hi-primary);
  text-transform: uppercase;
  margin: 20px 0 8px 0;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--hi-border);
}
.pkt-sub-h {
  font-size: 11px;
  font-weight: 700;
  color: #1E2532;
  margin: 12px 0 4px 0;
}
.pkt-empty {
  font-style: italic;
  color: #97A0AC;
  padding: 8px 0;
}
.pkt-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 8px;
}
.pkt-table td, .pkt-table th {
  padding: 5px 8px;
  border-bottom: 1px solid #E1DACD;
  font-size: 11px;
  vertical-align: top;
  text-align: left;
}
.pkt-table th { background: #F5F1EA; font-weight: 700; }
.pkt-table td:first-child {
  color: #5B6472;
  font-weight: 600;
  width: 30%;
}
.pkt-attest {
  margin-top: 20px;
  padding: 12px 14px;
  background: #F5F1EA;
  border-left: 3px solid var(--hi-primary);
  font-size: 11px;
  color: #1E2532;
  line-height: 1.55;
}
.pkt-footer {
  margin-top: 28px;
  padding-top: 12px;
  border-top: 1px solid var(--hi-border);
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #97A0AC;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ----------- Print CSS: hide app, show packet ----------- */
@media print {
  body { background: #fff; }
  .wf-app { display: none !important; }
  .pkt-overlay { position: static; background: #fff; }
  .pkt-toolbar { display: none !important; }
  .pkt-scroll { overflow: visible; padding: 0; }
  .pkt-page { box-shadow: none; padding: 0.5in; max-width: none; }
}

/* ----------- Small-screen tightening ----------- */
@media (max-width: 380px) {
  .wf-row-2 { grid-template-columns: 1fr; }
  .wf-row-3 { grid-template-columns: 1fr; }
  .wf-hero-h { font-size: 24px; }
}
