.inf03pg {
  --inf03-bg: #f6f7fb;
  --inf03-panel: #ffffff;
  --inf03-text: #111827;
  --inf03-muted: #6b7280;
  --inf03-border: #d9deea;
  --inf03-primary: #1d4ed8;
  --inf03-primary-2: #2563eb;
  --inf03-soft: #eff6ff;
  --inf03-success: #0f766e;
  --inf03-warning: #b45309;
  --inf03-danger: #b91c1c;
  --inf03-radius: 18px;
  --inf03-shadow: 0 18px 50px rgba(15, 23, 42, .08);
  color: var(--inf03-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

.inf03pg *,
.inf03pg *::before,
.inf03pg *::after {
  box-sizing: border-box;
}

.inf03pg__shell {
  background: linear-gradient(180deg, #f8fbff 0%, var(--inf03-bg) 100%);
  border: 1px solid var(--inf03-border);
  border-radius: 24px;
  padding: clamp(18px, 2.4vw, 28px);
  box-shadow: var(--inf03-shadow);
}

.inf03pg__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 310px);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 18px;
}

.inf03pg__eyebrow {
  margin: 0 0 8px;
  color: var(--inf03-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.inf03pg h2,
.inf03pg h3,
.inf03pg h4,
.inf03pg p {
  margin-top: 0;
}

.inf03pg__hero h2 {
  margin-bottom: 10px;
  max-width: 920px;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.inf03pg__hero p:not(.inf03pg__eyebrow) {
  max-width: 880px;
  margin-bottom: 0;
  color: var(--inf03-muted);
  font-size: 16px;
}

.inf03pg__heroCard {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border: 1px solid rgba(37, 99, 235, .18);
  border-radius: var(--inf03-radius);
  background: radial-gradient(circle at top right, rgba(37, 99, 235, .17), transparent 45%), #fff;
}

.inf03pg__heroCard strong {
  font-size: 54px;
  line-height: 1;
  color: var(--inf03-primary);
}

.inf03pg__heroCard span {
  margin-top: 6px;
  font-weight: 800;
}

.inf03pg__heroCard small {
  margin-top: 14px;
  color: var(--inf03-muted);
}

.inf03pg__toolbar {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(190px, 260px) auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.inf03pg__search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--inf03-border);
  border-radius: 999px;
  background: #fff;
}

.inf03pg__search span {
  color: var(--inf03-muted);
  font-size: 22px;
}

.inf03pg input,
.inf03pg select,
.inf03pg textarea {
  width: 100%;
  border: 1px solid var(--inf03-border);
  border-radius: 12px;
  background: #fff;
  color: var(--inf03-text);
  font: inherit;
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.inf03pg input,
.inf03pg select {
  min-height: 46px;
  padding: 0 12px;
}

.inf03pg textarea {
  min-height: 86px;
  padding: 10px 12px;
  resize: vertical;
}

.inf03pg__search input {
  min-height: 42px;
  padding: 0;
  border: 0;
  border-radius: 0;
}

.inf03pg input:focus,
.inf03pg select:focus,
.inf03pg textarea:focus {
  border-color: rgba(37, 99, 235, .7);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

.inf03pg__presets {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.inf03pg__chip,
.inf03pg__btn,
.inf03pg__rowActions button,
.inf03pg__check {
  cursor: pointer;
  border: 1px solid var(--inf03-border);
  background: #fff;
  color: var(--inf03-text);
  font: inherit;
  font-weight: 750;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease, border-color .14s ease, color .14s ease;
}

.inf03pg__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
}

.inf03pg__btn:hover,
.inf03pg__chip:hover,
.inf03pg__rowActions button:hover,
.inf03pg__check:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .1);
  border-color: rgba(37, 99, 235, .35);
}

.inf03pg__btn:disabled,
.inf03pg__rowActions button:disabled {
  cursor: not-allowed;
  opacity: .45;
  transform: none;
  box-shadow: none;
}

.inf03pg__btn--primary {
  border-color: var(--inf03-primary);
  background: var(--inf03-primary);
  color: #fff;
}

.inf03pg__btn--primary:hover {
  background: var(--inf03-primary-2);
  color: #fff;
}

.inf03pg__btn--ghost {
  background: var(--inf03-soft);
  color: var(--inf03-primary);
}

.inf03pg__chip {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
}

.inf03pg__layout {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: 16px;
}

.inf03pg__panel,
.inf03pg__section,
.inf03pg__exportPanel {
  border: 1px solid var(--inf03-border);
  border-radius: var(--inf03-radius);
  background: var(--inf03-panel);
}

.inf03pg__panel {
  min-width: 0;
  overflow: hidden;
}

.inf03pg__panelHead,
.inf03pg__sectionHead {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--inf03-border);
}

.inf03pg__panelHead h3,
.inf03pg__sectionHead h3 {
  margin: 0;
  font-size: 17px;
}

.inf03pg__panelHead p,
.inf03pg__sectionHead p {
  margin: 2px 0 0;
  color: var(--inf03-muted);
  font-size: 13px;
}

.inf03pg__programList {
  max-height: 960px;
  overflow: auto;
  padding: 12px;
}

.inf03pg__programCard {
  padding: 14px;
  border: 1px solid var(--inf03-border);
  border-radius: 16px;
  background: #fff;
}

.inf03pg__programCard + .inf03pg__programCard {
  margin-top: 10px;
}

.inf03pg__programCard.is-selected {
  border-color: rgba(37, 99, 235, .48);
  background: linear-gradient(180deg, #fff, #f7fbff);
  box-shadow: inset 4px 0 0 var(--inf03-primary);
}

.inf03pg__programCardTop {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: start;
}

.inf03pg__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: var(--inf03-primary);
  font-size: 18px;
}

.inf03pg__programCard.is-selected .inf03pg__check {
  border-color: var(--inf03-primary);
  background: var(--inf03-primary);
  color: #fff;
}

.inf03pg__programCard h4 {
  margin: 0;
  font-size: 15px;
}

.inf03pg__programCardTop p {
  margin: 2px 0 0;
  color: var(--inf03-muted);
  font-size: 12px;
}

.inf03pg__desc {
  margin: 10px 0;
  color: #374151;
  font-size: 13px;
}

.inf03pg__metaLine {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
  color: var(--inf03-muted);
  font-size: 12px;
}

.inf03pg__programCard small {
  color: var(--inf03-muted);
  font-size: 11px;
}

.inf03pg__badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.inf03pg__badge--ok {
  background: #dcfce7;
  color: #166534;
}

.inf03pg__badge--fallback {
  background: #fef3c7;
  color: var(--inf03-warning);
}

.inf03pg__badge--manual {
  background: #e0e7ff;
  color: #3730a3;
}

.inf03pg__editorPanel {
  display: grid;
  gap: 14px;
  padding: 14px;
  background: transparent;
  border: 0;
}

.inf03pg__section,
.inf03pg__exportPanel {
  overflow: hidden;
}

.inf03pg__formGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}

.inf03pg label span {
  display: block;
  margin-bottom: 6px;
  color: #374151;
  font-size: 13px;
  font-weight: 800;
}

.inf03pg__toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 16px 16px;
}

.inf03pg__toggle {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--inf03-border);
  border-radius: 999px;
  background: #fff;
}

.inf03pg__toggle input {
  width: auto;
  min-height: auto;
}

.inf03pg__toggle span {
  margin: 0;
  font-size: 13px;
}

.inf03pg__compliance {
  background: linear-gradient(180deg, #fff, #fbfdff);
}

.inf03pg__requirementGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 16px;
}

.inf03pg__requirement {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  background: #fff7ed;
  color: var(--inf03-warning);
  font-size: 12px;
  font-weight: 800;
}

.inf03pg__requirement span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffedd5;
}

.inf03pg__requirement.is-ok {
  border-color: #99f6e4;
  background: #f0fdfa;
  color: var(--inf03-success);
}

.inf03pg__requirement.is-ok span {
  background: #ccfbf1;
}

.inf03pg__rows {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.inf03pg__rowEditor {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 48px;
  gap: 12px;
  align-items: stretch;
  padding: 12px;
  border: 1px solid var(--inf03-border);
  border-radius: 16px;
  background: #fff;
}

.inf03pg__rowNumber {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--inf03-soft);
  color: var(--inf03-primary);
  font-weight: 900;
}

.inf03pg__rowFields {
  min-width: 0;
}

.inf03pg__rowGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 180px);
  gap: 10px;
  margin-bottom: 10px;
}

.inf03pg__previewLine {
  margin-top: 8px;
  color: var(--inf03-muted);
  font-size: 12px;
}

.inf03pg__previewLine strong {
  color: var(--inf03-text);
}

.inf03pg__rowActions {
  display: grid;
  gap: 6px;
  align-content: start;
}

.inf03pg__rowActions button {
  width: 38px;
  height: 34px;
  border-radius: 10px;
}

.inf03pg__exportPanel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  background: #0f172a;
  color: #fff;
}

.inf03pg__exportPanel h3 {
  margin-bottom: 4px;
}

.inf03pg__exportPanel p {
  margin-bottom: 0;
  color: #cbd5e1;
}

.inf03pg__exportActions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.inf03pg__empty {
  padding: 34px 16px;
  text-align: center;
}

.inf03pg__empty h3 {
  margin-bottom: 6px;
}

.inf03pg__empty p {
  margin-bottom: 0;
  color: var(--inf03-muted);
}

.inf03pg__loading,
.inf03pg__notice,
.inf03pg__toast {
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--inf03-border);
}

.inf03pg__notice--error {
  border-color: #fecaca;
  background: #fef2f2;
  color: var(--inf03-danger);
}

.inf03pg__toast {
  position: sticky;
  top: 12px;
  z-index: 10;
  margin-bottom: 12px;
  border-color: #bfdbfe;
  background: #eff6ff;
  color: var(--inf03-primary);
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(37, 99, 235, .12);
}

.inf03pg__spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border: 3px solid #bfdbfe;
  border-top-color: var(--inf03-primary);
  border-radius: 50%;
  vertical-align: -3px;
  animation: inf03pg-spin .8s linear infinite;
}

@keyframes inf03pg-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1100px) {
  .inf03pg__layout,
  .inf03pg__hero,
  .inf03pg__exportPanel {
    grid-template-columns: 1fr;
  }

  .inf03pg__programList {
    max-height: 520px;
  }

  .inf03pg__exportActions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .inf03pg__shell {
    padding: 14px;
    border-radius: 18px;
  }

  .inf03pg__toolbar,
  .inf03pg__formGrid,
  .inf03pg__requirementGrid,
  .inf03pg__rowGrid {
    grid-template-columns: 1fr;
  }

  .inf03pg__rowEditor {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .inf03pg__rowActions {
    grid-column: 1 / -1;
    display: flex;
  }

  .inf03pg__hero h2 {
    font-size: 28px;
  }
}

/* v1.1 - full-width layout and stronger theme isolation */
.inf03pg {
  width: 100vw;
  max-width: 100vw;
  margin: clamp(40px, 6vw, 88px) calc(50% - 50vw) clamp(28px, 4vw, 64px);
  padding-inline: clamp(12px, 2.4vw, 36px);
  isolation: isolate;
  overflow-x: clip;
}

.inf03pg__shell {
  width: 100%;
  max-width: 1680px;
  margin-inline: auto;
}

.inf03pg button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  min-width: 0;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.15;
  text-decoration: none;
}

.inf03pg button::before,
.inf03pg button::after {
  pointer-events: none;
}

.inf03pg__check,
.inf03pg__rowActions button {
  padding: 0 !important;
  flex: 0 0 auto;
}

.inf03pg__hero {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  align-items: start;
}

.inf03pg__hero > *,
.inf03pg__heroText,
.inf03pg__panelHead > *,
.inf03pg__sectionHead > *,
.inf03pg__programCardTop > *,
.inf03pg__rowFields {
  min-width: 0;
}

.inf03pg__hero h2 {
  max-width: 1100px;
  font-size: clamp(26px, 3.1vw, 42px);
  line-height: 1.08;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.inf03pg__hero p:not(.inf03pg__eyebrow) {
  max-width: 1120px;
}

.inf03pg__toolbar {
  grid-template-columns: minmax(260px, 1fr) minmax(180px, 280px) max-content;
}

.inf03pg__search,
.inf03pg__toolbar select,
.inf03pg__toolbar .inf03pg__btn {
  min-width: 0;
}

.inf03pg__layout {
  grid-template-columns: minmax(310px, 430px) minmax(0, 1fr);
  align-items: start;
}

.inf03pg__catalogPanel {
  align-self: start;
}

.inf03pg__panelHead,
.inf03pg__sectionHead {
  flex-wrap: wrap;
}

.inf03pg__panelHead .inf03pg__btn,
.inf03pg__sectionHead .inf03pg__btn {
  flex: 0 0 auto;
}

.inf03pg__programCard {
  overflow-wrap: anywhere;
}

.inf03pg__programCardTop {
  grid-template-columns: 38px minmax(0, 1fr);
}

.inf03pg__programCard h4,
.inf03pg__previewLine strong {
  overflow-wrap: anywhere;
}

.inf03pg__fieldHint {
  display: block;
  margin-top: 6px;
  color: var(--inf03-muted);
  font-size: 12px;
  line-height: 1.35;
}

.inf03pg__toggle {
  min-width: min(100%, 240px);
  border-radius: 18px;
}

.inf03pg__toggle input {
  flex: 0 0 auto;
}

.inf03pg__toggle span {
  overflow-wrap: anywhere;
}

.inf03pg__rowEditor {
  grid-template-columns: 38px minmax(0, 1fr) minmax(38px, auto);
}

.inf03pg__exportPanel {
  grid-template-columns: minmax(0, 1fr) minmax(260px, auto);
}

@media (min-width: 1280px) {
  .inf03pg__catalogPanel {
    position: sticky;
    top: 18px;
  }
}

@media (max-width: 1280px) {
  .inf03pg__toolbar {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
  }

  .inf03pg__toolbar > .inf03pg__btn {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 1180px) {
  .inf03pg__layout,
  .inf03pg__hero,
  .inf03pg__exportPanel {
    grid-template-columns: 1fr;
  }

  .inf03pg__programList {
    max-height: 520px;
  }
}

@media (max-width: 860px) {
  .inf03pg {
    margin-block: 18px;
    padding-inline: 10px;
  }

  .inf03pg__shell {
    padding: 12px;
    border-radius: 18px;
  }

  .inf03pg__toolbar,
  .inf03pg__formGrid,
  .inf03pg__requirementGrid,
  .inf03pg__rowGrid {
    grid-template-columns: 1fr;
  }

  .inf03pg__hero h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .inf03pg__heroCard strong {
    font-size: 44px;
  }

  .inf03pg__panelHead,
  .inf03pg__sectionHead,
  .inf03pg__exportActions {
    align-items: stretch;
  }

  .inf03pg__panelHead .inf03pg__btn,
  .inf03pg__sectionHead .inf03pg__btn,
  .inf03pg__exportActions .inf03pg__btn {
    width: 100%;
  }

  .inf03pg__rowEditor {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .inf03pg__rowActions {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .inf03pg__heroCard,
  .inf03pg__panelHead,
  .inf03pg__sectionHead,
  .inf03pg__formGrid,
  .inf03pg__rows,
  .inf03pg__requirementGrid,
  .inf03pg__exportPanel {
    padding: 12px;
  }

  .inf03pg__programList {
    padding: 10px;
  }

  .inf03pg__presets,
  .inf03pg__toggles,
  .inf03pg__exportActions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .inf03pg__chip,
  .inf03pg__btn,
  .inf03pg__toggle {
    width: 100%;
    justify-content: center;
  }
}

/* v1.2 - qualification UI, stronger responsiveness and export panel fix */
.inf03pg,
.inf03pg * {
  word-break: normal !important;
  overflow-wrap: normal;
}

.inf03pg__toolbar {
  grid-template-columns: minmax(210px, 320px) minmax(260px, 1fr) minmax(180px, 260px) max-content !important;
  gap: 12px;
}

.inf03pg__toolbar > *,
.inf03pg__formGrid > *,
.inf03pg__rowGrid > *,
.inf03pg__exportPanel > * {
  min-width: 0;
}

.inf03pg__fieldWide {
  grid-column: 1 / -1;
}

.inf03pg__heroText,
.inf03pg__hero h2,
.inf03pg__hero p,
.inf03pg__programCard,
.inf03pg__programCard h4,
.inf03pg__programCard p,
.inf03pg__previewLine,
.inf03pg__previewLine strong,
.inf03pg__requirement,
.inf03pg__fieldHint {
  overflow-wrap: anywhere;
}

.inf03pg__btn,
.inf03pg__chip,
.inf03pg__rowActions button,
.inf03pg__check,
.inf03pg__toggle,
.inf03pg__exportPanel,
.inf03pg__exportPanel h3,
.inf03pg__exportPanel p {
  word-break: normal !important;
  overflow-wrap: normal !important;
  white-space: normal;
}

.inf03pg__btn,
.inf03pg__chip {
  min-width: max-content;
  max-width: 100%;
  text-align: center;
}

.inf03pg__toolbar .inf03pg__btn {
  justify-self: stretch;
}

.inf03pg__exportPanel {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(14px, 2vw, 20px);
  min-height: 0;
  overflow: visible !important;
  background: #ffffff !important;
  color: var(--inf03-text) !important;
}

.inf03pg__exportText {
  flex: 2 1 360px;
  min-width: min(100%, 280px);
  max-width: 780px;
}

.inf03pg__exportPanel h3 {
  color: var(--inf03-text) !important;
}

.inf03pg__exportPanel p {
  color: var(--inf03-muted) !important;
  max-width: 760px;
}

.inf03pg__exportActions {
  flex: 1 1 430px;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 8px;
  justify-content: stretch !important;
  align-items: stretch;
  min-width: min(100%, 360px);
}

.inf03pg__exportActions .inf03pg__btn {
  width: 100%;
  min-width: 0;
  justify-content: center;
}

.inf03pg__rowEditor {
  grid-template-columns: 38px minmax(0, 1fr) minmax(42px, auto) !important;
}

.inf03pg__rowGrid {
  grid-template-columns: minmax(180px, 1fr) minmax(120px, 180px) !important;
}

@media (max-width: 1280px) {
  .inf03pg__toolbar {
    grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.3fr) !important;
  }

  .inf03pg__toolbar > .inf03pg__btn {
    grid-column: auto !important;
    justify-self: stretch;
  }
}

@media (max-width: 980px) {
  .inf03pg__toolbar,
  .inf03pg__formGrid,
  .inf03pg__requirementGrid {
    grid-template-columns: 1fr 1fr !important;
  }

  .inf03pg__toolbar .inf03pg__search,
  .inf03pg__presets,
  .inf03pg__fieldWide {
    grid-column: 1 / -1;
  }

  .inf03pg__exportText,
  .inf03pg__exportActions {
    flex-basis: 100%;
  }
}

@media (max-width: 680px) {
  .inf03pg__toolbar,
  .inf03pg__formGrid,
  .inf03pg__requirementGrid,
  .inf03pg__rowGrid {
    grid-template-columns: 1fr !important;
  }

  .inf03pg__rowEditor {
    grid-template-columns: 34px minmax(0, 1fr) !important;
  }

  .inf03pg__rowActions {
    grid-column: 1 / -1;
    display: flex !important;
    flex-wrap: wrap;
  }

  .inf03pg__rowActions button {
    flex: 1 1 42px;
  }

  .inf03pg__exportActions {
    grid-template-columns: 1fr !important;
  }

  .inf03pg__btn,
  .inf03pg__chip,
  .inf03pg__toggle {
    width: 100%;
    min-width: 0;
  }
}

/* v1.3 - user guidance and clearer action buttons */
.inf03pg__currentQualification {
  margin-top: 10px !important;
  font-size: 14px !important;
}

.inf03pg__guide {
  margin: 0 0 16px;
  border: 1px solid var(--inf03-border);
  border-radius: var(--inf03-radius);
  background: #fff;
  overflow: hidden;
}

.inf03pg__guide details {
  display: block;
}

.inf03pg__guide summary {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  font-weight: 900;
}

.inf03pg__guide summary::-webkit-details-marker {
  display: none;
}

.inf03pg__guide summary::after {
  content: "⌄";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--inf03-soft);
  color: var(--inf03-primary);
  font-size: 18px;
  transition: transform .16s ease;
}

.inf03pg__guide details[open] summary::after {
  transform: rotate(180deg);
}

.inf03pg__guide summary span {
  display: block;
  color: var(--inf03-text);
  font-size: 18px;
}

.inf03pg__guide summary small {
  display: block;
  margin-left: auto;
  color: var(--inf03-muted);
  font-size: 12px;
  font-weight: 700;
}

.inf03pg__guideIntro {
  padding: 0 18px 14px;
  color: #374151;
  font-size: 14px;
}

.inf03pg__guideGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0 18px 16px;
}

.inf03pg__guideGrid article {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--inf03-border);
  border-radius: 14px;
  background: #fbfdff;
}

.inf03pg__guideGrid h3 {
  margin: 0 0 8px;
  color: var(--inf03-primary);
  font-size: 14px;
}

.inf03pg__guideGrid p {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
}

.inf03pg__guideNote {
  margin: 0 18px 18px !important;
  padding: 12px 14px;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  background: #eff6ff;
  color: #1f2937 !important;
  font-size: 13px !important;
}

.inf03pg__icon,
.inf03pg__fileIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 1;
}

.inf03pg__fileIcon {
  min-width: 38px;
  min-height: 24px;
  padding: 3px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .18);
  color: inherit;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .04em;
}

.inf03pg__fileIcon--soft {
  background: rgba(37, 99, 235, .12);
  color: var(--inf03-primary);
}

@media (max-width: 980px) {
  .inf03pg__guideGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .inf03pg__guide summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .inf03pg__guide summary small {
    margin-left: 0;
  }

  .inf03pg__guide summary::after {
    position: absolute;
    right: 16px;
  }

  .inf03pg__guideGrid {
    grid-template-columns: 1fr;
  }
}
