/* ============================================================
 *  LAPORAN HARIAN — layout selaras formulir pendaftaran TEP
 * ============================================================ */

.lb-body {
  margin: 0;
  min-height: 100vh;
}

/* Autocomplete (nama anggota) */
.lb-ac { position: relative; min-width: 0; }
.lb-ac__list {
  position: absolute;
  z-index: 40;
  left: 0; right: 0;
  top: calc(100% + 6px);
  margin: 0;
  padding: 6px;
  list-style: none;
  max-height: min(280px, 45vh);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border: 1px solid var(--ink-200, #e2e8f0);
  border-radius: 14px;
  box-shadow: 0 18px 40px -12px rgba(6, 13, 34, 0.35);
}
.lb-ac__list[hidden] { display: none !important; }
.lb-ac__item {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  border-radius: 10px;
  padding: 12px 14px;
  min-height: 52px;
  cursor: pointer;
  font-family: inherit;
}
.lb-ac__item:hover,
.lb-ac__item.is-active { background: #f1f5f9; }
.lb-ac__name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-900, #0d1326);
  line-height: 1.3;
}
.lb-ac__meta {
  display: block;
  font-size: 12px;
  color: var(--ink-500, #6b7385);
  margin-top: 3px;
  line-height: 1.35;
}
.lb-ac__empty {
  padding: 16px 12px;
  font-size: 13px;
  color: var(--ink-500, #6b7385);
  text-align: center;
}

.lb-chip-id {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(195, 154, 60, 0.12);
  border: 1px solid rgba(195, 154, 60, 0.35);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900, #0d1326);
  line-height: 1.35;
}
.lb-chip-id span { min-width: 0; word-break: break-word; }
.lb-chip-id button {
  appearance: none;
  border: none;
  background: var(--navy-900, #0b1330);
  color: var(--gold-400, #ead29c);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  padding: 8px 12px;
  border-radius: 8px;
  flex-shrink: 0;
  min-height: 36px;
}

/* Konfirmasi identitas sebelum isi form */
.lb-id-confirm {
  margin-top: 14px;
  padding: 16px 16px 14px;
  border-radius: 14px;
  border: 1.5px solid rgba(18, 43, 92, 0.18);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}
.lb-id-confirm__title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-900, #0d1326);
  margin-bottom: 4px;
}
.lb-id-confirm__lead {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.45;
  color: #64748b;
}
.lb-id-confirm__grid {
  margin: 0 0 14px;
  display: grid;
  gap: 10px;
}
.lb-id-confirm__grid > div {
  display: grid;
  gap: 2px;
}
.lb-id-confirm__grid dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}
.lb-id-confirm__grid dd {
  margin: 0;
  font-size: 14.5px;
  font-weight: 700;
  color: #0d1326;
  line-height: 1.35;
  word-break: break-word;
}
.lb-id-confirm__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.lb-id-confirm__actions .btn {
  min-height: 42px;
}

/* Profil tim */
.lb-team-panel {
  padding: 18px 20px !important;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-900, #0b1330), #14224d);
  color: #fff;
  border: 0 !important;
  box-shadow: none !important;
}
.lb-team-panel__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(234, 210, 156, 0.9);
  margin-bottom: 12px;
}
.lb-team-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.lb-team-panel__grid span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 3px;
}
.lb-team-panel__grid strong {
  display: block;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
  word-break: break-word;
}
.lb-team-panel__span { grid-column: 1 / -1; }

/* Segmented radio */
.lb-seg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lb-seg__opt {
  position: relative;
  cursor: pointer;
}
.lb-seg__opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.lb-seg__opt span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1.5px solid var(--ink-200, #e2e8f0);
  background: #fff;
  font-size: 14px;
  font-weight: 650;
  color: var(--ink-700, #334155);
  text-align: center;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.lb-seg__opt input:checked + span {
  border-color: var(--gold-600, #b38a2b);
  background: rgba(195, 154, 60, 0.12);
  color: var(--navy-900, #0b1330);
  box-shadow: inset 0 0 0 1px rgba(195, 154, 60, 0.3);
}

.lb-seg__opt--alert input:checked + span {
  border-color: #b91c1c;
  background: rgba(185, 28, 28, 0.1);
  color: #991b1b;
  box-shadow: inset 0 0 0 1px rgba(185, 28, 28, 0.28);
}

.lb-seg--sakit {
  grid-template-columns: 1fr;
}
.lb-seg__opt--stack span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  min-height: 0;
  padding: 12px 14px;
  text-align: left;
}
.lb-seg__opt--stack span strong {
  font-size: 13.5px;
  font-weight: 750;
  line-height: 1.3;
}
.lb-seg__opt--stack span small {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: #64748b;
}
.lb-seg__opt--fit input:checked + span {
  border-color: #ca8a04;
  background: rgba(250, 204, 21, 0.14);
  color: #854d0e;
  box-shadow: inset 0 0 0 1px rgba(202, 138, 4, 0.28);
}
.lb-seg__opt--fit input:checked + span small { color: #a16207; }
.lb-seg__opt--unfit input:checked + span {
  border-color: #ea580c;
  background: rgba(251, 146, 60, 0.14);
  color: #9a3412;
  box-shadow: inset 0 0 0 1px rgba(234, 88, 12, 0.28);
}
.lb-seg__opt--unfit input:checked + span small { color: #c2410c; }
.lb-seg__opt--evak input:checked + span {
  border-color: #b91c1c;
  background: rgba(185, 28, 28, 0.1);
  color: #991b1b;
  box-shadow: inset 0 0 0 1px rgba(185, 28, 28, 0.28);
}
.lb-seg__opt--evak input:checked + span small { color: #b91c1c; }

.lb-health-guide {
  margin-top: 14px;
  padding: 14px 14px 12px;
  border-radius: 14px;
  border: 1px solid #e8edf5;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 70%);
}
.lb-health-guide__title {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}
.lb-health-guide__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.lb-health-guide__item {
  position: relative;
  padding: 10px 12px 10px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #eef2f7;
  border-left-width: 4px;
}
.lb-health-guide__item strong {
  display: block;
  font-size: 13.5px;
  font-weight: 750;
  color: #0b1330;
  margin-bottom: 4px;
  line-height: 1.35;
}
.lb-health-guide__item span {
  display: block;
  font-size: 12.5px;
  line-height: 1.45;
  color: #475569;
}
.lb-health-guide__item--sehat { border-left-color: #22c55e; }
.lb-health-guide__item--fit { border-left-color: #eab308; }
.lb-health-guide__item--unfit { border-left-color: #f97316; }
.lb-health-guide__item--evak { border-left-color: #ef4444; }

.lb-sakit__hint {
  margin: 0 0 12px !important;
}

/* Sakit */
.lb-sakit {
  padding: 16px !important;
  border-radius: 14px;
  background: #fff8f5;
  border: 1px solid #f0d5c8 !important;
  box-shadow: none !important;
}
.lb-sakit__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.lb-sakit__head strong { font-size: 14px; color: #9a3412; }
.lb-sakit__head span {
  font-size: 11px;
  font-weight: 700;
  color: #c2410c;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.lb-sakit__card {
  padding: 14px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #eedfd6;
}
.lb-sakit__card .field { margin-bottom: 12px; }
.lb-sakit__card .field:last-of-type { margin-bottom: 10px; }

.lb-dup-alert {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #fcd34d;
  background: #fffbeb;
  color: #92400e;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}
.lb-dup-alert--block {
  border-color: #fecaca;
  background: #fff7f7;
  color: #991b1b;
}
.lb-dup-alert--soft {
  border-color: #fdba74;
  background: #fff7ed;
  color: #9a3412;
  font-weight: 550;
}
.lb-dup-alert[hidden] { display: none !important; }

.lb-pub-list {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
}
.lb-pub-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}
.lb-pub-row .input {
  min-width: 0;
}
.lb-pub-remove {
  appearance: none;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #64748b;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}
.lb-pub-remove:hover {
  border-color: #fecaca;
  color: #b91c1c;
  background: #fff7f7;
}
.lb-pub-remove:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.lb-btn-dashed {
  appearance: none;
  font: inherit;
  font-size: 13.5px;
  font-weight: 650;
  color: var(--navy-700, #1c3c7a);
  background: transparent;
  border: 1.5px dashed #b8c4d8;
  border-radius: 12px;
  padding: 11px 12px;
  width: 100%;
  min-height: 44px;
  cursor: pointer;
}
.lb-btn-dashed:hover { background: #f3f6fb; }

/* File */
.lb-file { display: block; cursor: pointer; }
.lb-file input {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0; overflow: hidden;
}
.lb-file__ui {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1.5px dashed #c5cedd;
  background: #f8fafc;
  min-height: 68px;
  transition: border-color 0.15s, background 0.15s;
}
.lb-file:hover .lb-file__ui,
.lb-file:focus-within .lb-file__ui {
  border-color: var(--gold-600, #c39a3c);
  background: rgba(195, 154, 60, 0.08);
}
.lb-file__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--navy-900, #0b1330);
  color: var(--gold-400, #ead29c);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lb-file__text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lb-file__text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-900, #0d1326);
}
.lb-file__text small {
  font-size: 12px;
  color: var(--ink-500, #6b7385);
}

.lb-alert {
  padding: 12px 14px !important;
  border-radius: 12px;
  background: #fff6e8;
  border: 1px solid #efd4a2 !important;
  color: #7a5310;
  font-size: 13.5px;
  line-height: 1.45;
  box-shadow: none !important;
}

.lb-error {
  padding: 12px 14px !important;
  border-radius: 12px;
  background: #fef2f2;
  border: 1px solid #fecaca !important;
  color: #991b1b;
  font-size: 13.5px;
  line-height: 1.45;
  box-shadow: none !important;
}

.lb-upload-prog {
  margin-top: 10px;
  height: 6px;
  border-radius: 99px;
  background: #e8edf5;
  overflow: hidden;
}
.lb-upload-prog__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #1c3c7a, #c39a3c);
  transition: width 0.15s ease;
}

.lb-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.lb-actions__note {
  margin: 0;
  font-size: 13px;
  color: var(--ink-500, #6b7385);
  max-width: 360px;
  line-height: 1.4;
}
.lb-actions .btn--submit {
  min-width: 220px;
  min-height: 52px;
  font-size: 15px;
}

/* Success overlay */
.lb-success {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(6, 13, 34, 0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lb-success[hidden] { display: none !important; }
.lb-success__card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.4);
  max-height: min(92vh, 900px);
  overflow: auto;
}
.lb-success__card--survei {
  max-width: 560px;
  text-align: left;
}
.lb-success__card--survei .lb-success__badge,
.lb-success__card--survei .lb-success__title,
.lb-success__card--survei .lb-success__lead {
  text-align: center;
}

/* Feedback gate: Puas / Tidak puas → cabang pengaduan ATAU survei */
.lb-feedback {
  margin: 0 0 16px;
}
.lb-kepuasan {
  margin: 0 0 4px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(160deg, #f7f9fc, #eef3fa);
  border: 1px solid rgba(18, 43, 92, 0.12);
  text-align: left;
  box-shadow: 0 8px 28px rgba(11, 19, 48, 0.08);
}
.lb-kepuasan[hidden] { display: none !important; }
.lb-kepuasan__kicker {
  margin: 0 0 4px;
  font-size: 10.5px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1c3c7a;
}
.lb-kepuasan__title {
  margin: 0 0 6px;
  font-size: 1.08rem;
  font-weight: 750;
  color: #0b1330;
  font-family: var(--font-serif, Fraunces, Georgia, serif);
  line-height: 1.3;
}
.lb-kepuasan__lead {
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #475569;
}
.lb-kepuasan__lead strong { color: #0b1330; font-weight: 700; }
.lb-kepuasan__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lb-kepuasan__btn {
  width: 100%;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px;
  font-weight: 750;
  white-space: normal;
  line-height: 1.25;
  padding: 12px 14px;
}
.lb-kepuasan__btn--puas {
  background: linear-gradient(180deg, #1c3c7a 0%, #0b1330 100%);
  color: #fff;
  border: 0;
  box-shadow: 0 10px 20px -10px rgba(12, 30, 69, 0.55);
}
.lb-kepuasan__btn--puas:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px -10px rgba(12, 30, 69, 0.7);
}
.lb-kepuasan__btn--tidak {
  background: #fff;
  color: #0b1330;
  border: 1px solid rgba(18, 43, 92, 0.28);
}
.lb-kepuasan__btn--tidak:hover {
  border-color: #1c3c7a;
  background: #f1f5f9;
}
.lb-feedback__switch {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1c3c7a;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  text-align: center;
}
.lb-feedback__switch:hover { color: #0b1330; }
.lb-feedback__switch[hidden] { display: none !important; }

@media (max-width: 420px) {
  .lb-kepuasan__actions {
    grid-template-columns: 1fr;
  }
}

/* Survei kepuasan PAN RB / SPBE */
.lb-survei {
  margin: 0 0 16px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(160deg, #f7f9fc, #eef3fa);
  border: 1px solid rgba(18, 43, 92, 0.12);
  text-align: left;
  box-shadow: 0 8px 28px rgba(11, 19, 48, 0.08);
}
.lb-survei[hidden] { display: none !important; }
.lb-survei__kicker {
  margin: 0 0 4px;
  font-size: 10.5px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b45309;
}
.lb-survei__title {
  margin: 0 0 6px;
  font-size: 1.12rem;
  font-weight: 750;
  color: #0b1330;
  font-family: var(--font-serif, Fraunces, Georgia, serif);
  line-height: 1.25;
}
.lb-survei__sub {
  margin: 0 0 8px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #475569;
}
.lb-survei__poin {
  margin: 0 0 12px;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  background: #fff7ed;
  border: 1px solid #fdba74;
  color: #9a3412;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.35;
}
.lb-survei__poin[hidden] { display: none !important; }
.lb-survei__frame-wrap {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
  min-height: 420px;
}
.lb-survei__frame {
  display: block;
  width: 100%;
  height: min(52vh, 520px);
  min-height: 420px;
  border: 0;
  background: #fff;
}
.lb-survei__frame[hidden] { display: none !important; }
.lb-survei__miss {
  margin: 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 12.5px;
  line-height: 1.45;
}
.lb-survei__miss code {
  font-size: 11.5px;
  background: rgba(0, 0, 0, 0.05);
  padding: 1px 5px;
  border-radius: 4px;
}
.lb-survei__miss a { color: #9a3412; font-weight: 650; }
.lb-survei__demo-banner {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e3a8a;
  font-size: 12.5px;
  line-height: 1.45;
  text-align: left;
}
.lb-survei__demo-banner[hidden] { display: none !important; }

/* Pengaduan WA — hanya setelah "Tidak puas" */
.lb-pengaduan {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(18, 43, 92, 0.14);
  text-align: left;
}
.lb-pengaduan[hidden] { display: none !important; }
.lb-pengaduan__note {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.45;
  color: #475569;
}
.lb-pengaduan__note strong { color: #0b1330; font-weight: 700; }
.lb-pengaduan__btn {
  width: 100%;
  justify-content: center;
  min-height: 46px;
  text-decoration: none;
  font-weight: 700;
  color: #0b1330;
  border-color: rgba(18, 43, 92, 0.28);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}
.lb-pengaduan__btn:hover {
  border-color: #1c3c7a;
  color: #081531;
  background: #e8eef8;
}
.lb-pengaduan__btn svg {
  flex-shrink: 0;
  color: #128c7e;
}

.lb-survei__claim {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}
.lb-survei__claim[hidden] { display: none !important; }
.lb-survei__claim-btn {
  width: 100%;
  min-height: 48px;
  font-weight: 700;
}
.lb-survei__claim-btn:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}
.lb-survei__claim-btn.is-done {
  background: #166534 !important;
  border-color: #166534 !important;
}
.lb-survei__claim-hint {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.4;
  color: #64748b;
}
.lb-survei__claim-status {
  margin: 0;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
  color: #166534;
}
.lb-survei__claim-status.is-error { color: #b91c1c; }
.lb-survei__claim-status[hidden] { display: none !important; }
.lb-survei__full {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 650;
  color: #1c3c7a;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lb-survei__full[hidden] { display: none !important; }
.lb-success__badge {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c39a3c, #ead29c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b1330;
}
.lb-success__title {
  font-family: var(--font-serif, Fraunces, Georgia, serif);
  font-size: 1.5rem;
  margin: 0 0 8px;
  color: var(--navy-900, #0b1330);
}
.lb-success__lead {
  font-size: 14px;
  color: var(--ink-500, #6b7385);
  margin: 0 0 16px;
}
.lb-success__meta {
  text-align: left;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 13px;
}
.lb-success__meta div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.lb-success__meta span { color: var(--ink-500, #6b7385); }
.lb-success__meta strong {
  color: var(--ink-900, #0d1326);
  text-align: right;
  word-break: break-word;
}

.lb-ai {
  text-align: left;
  margin: 0 0 16px;
  padding: 14px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.lb-ai__label {
  font-size: 10.5px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-600, #c39a3c);
  margin-bottom: 6px;
}
.lb-ai p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-900, #0d1326);
}
.lb-ai__warn {
  margin: 10px 0 0;
  padding: 0 0 0 18px;
  color: #9a3412;
  font-size: 12.5px;
  line-height: 1.45;
}

/* Desktop: form panel lebih lega, field half sejajar */
@media (min-width: 901px) {
  .lb-body .app {
    grid-template-columns: minmax(360px, 420px) minmax(0, 1fr);
  }
  .lb-body .main {
    max-width: 920px;
    padding: 48px 56px 100px;
  }
  .lb-body .fieldgroup {
    gap: 22px 28px;
    padding: 36px;
  }
  .lb-body textarea.input {
    min-height: 120px;
    line-height: 1.5;
  }
}

@media (max-width: 900px) {
  .lb-team-panel__grid { grid-template-columns: 1fr; }
  .lb-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .lb-actions .btn--submit { width: 100%; }
  .lb-success {
    align-items: flex-end;
    padding: 0;
  }
  .lb-success__card {
    border-radius: 22px 22px 0 0;
    max-width: none;
    padding: 28px 20px calc(24px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 640px) {
  .lb-seg { grid-template-columns: 1fr; }
  .lb-body .field.field--half { grid-column: span 2; }
}

.lb-geo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 6px;
}

.lb-geo__meta {
  font-size: 13px;
  color: #475569;
  line-height: 1.4;
  font-variant-numeric: tabular-nums;
}

.lb-geo .btn--ghost {
  border: 1px solid rgba(18, 43, 92, 0.22);
  background: #fff;
  color: #122B5C;
  font: 600 13px/1.2 "Plus Jakarta Sans", system-ui, sans-serif;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
}

.lb-geo .btn--ghost:disabled {
  opacity: 0.65;
  cursor: wait;
}

.field__help code {
  font-size: 12px;
  background: rgba(18, 43, 92, 0.06);
  padding: 1px 5px;
  border-radius: 4px;
}

.hero-sub__note {
  display: block;
  margin-top: 0.55em;
  color: rgba(234, 210, 156, 0.72);
  font-size: 0.92em;
}
