:root {
  --glcorp-bg-1: #f4f7ff;
  --glcorp-bg-2: #eef7ff;
  --glcorp-card: #ffffff;
  --glcorp-text: #0f172a;
  --glcorp-muted: #64748b;
  --glcorp-line: #dbe4f0;
  --glcorp-line-strong: #c7d6ea;
  --glcorp-primary: #2563eb;
  --glcorp-primary-dark: #1d4ed8;
  --glcorp-primary-soft: #eff6ff;
  --glcorp-success: #16a34a;
  --glcorp-success-soft: #ecfdf3;
  --glcorp-warning: #d97706;
  --glcorp-warning-soft: #fff7ed;
  --glcorp-danger: #dc2626;
  --glcorp-danger-soft: #fef2f2;
  --glcorp-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  --glcorp-shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body.glcorp-body {
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  color: var(--glcorp-text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 32%),
    radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.10), transparent 28%),
    linear-gradient(180deg, var(--glcorp-bg-1), var(--glcorp-bg-2));
}

[hidden] {
  display: none !important;
}

.glcorp-page {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 56px;
}

.glcorp-card {
  min-height: 720px;
  background: var(--glcorp-card);
  border: 1px solid rgba(219, 228, 240, 0.9);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--glcorp-shadow);
}

.glcorp-card-view{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 720px;
}
.glcorp-card-single{
  display:block;
  min-height:720px;
}

.glcorp-card-single .glcorp-panel{
  width:100%;
  min-height:720px;
}
.glcorp-hero-choice{
  background:
    linear-gradient(160deg, #0f3f9c 0%, #1d4ed8 48%, #0ea5e9 100%);
}

.glcorp-hero {
  position: relative;
  overflow: hidden;
  padding: 34px 32px 36px;
  background:
    linear-gradient(160deg, #0f4acb 0%, #1d5fe8 44%, #0ea5e9 100%);
  color: #ffffff;
}

.glcorp-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.glcorp-brand-logo {
  width: 58px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.16));
}

.glcorp-brand-text {
  line-height: 1.05;
}

.glcorp-brand-sub {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.88;
}

.glcorp-brand-title {
  margin-top: 3px;
  font-size: 24px;
  font-weight: 900;
}

.glcorp-hero-copy {
  position: relative;
  z-index: 2;
  margin-top: 72px;
  max-width: 440px;
}

.glcorp-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.glcorp-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.glcorp-hero p {
  margin: 0;
  max-width: 460px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.glcorp-hero-points {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  margin-top: 34px;
  max-width: 420px;
}

.glcorp-hero-point {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 700;
}

.glcorp-point-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: #ffffff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
}

.glcorp-hero-glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(8px);
  opacity: 0.34;
}

.glcorp-hero-glow-1 {
  top: -110px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.26);
}

.glcorp-hero-glow-2 {
  right: 80px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.16);
}

.glcorp-panel {
  padding: 34px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.glcorp-panel-head {
  margin-bottom: 6px;
}

.glcorp-panel-kicker {
  font-size: 12px;
  font-weight: 800;
  color: var(--glcorp-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.glcorp-panel-head h2 {
  margin: 8px 0 10px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.glcorp-panel-head p {
  margin: 0;
  color: var(--glcorp-muted);
  line-height: 1.7;
  font-size: 14px;
}

.glcorp-block,
.glcorp-success-stage {
  border: 1px solid var(--glcorp-line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--glcorp-shadow-soft);
}

.glcorp-block {
  padding: 20px 20px 18px;
}

.glcorp-block-head {
  margin-bottom: 16px;
}

.glcorp-block-title {
  font-size: 17px;
  font-weight: 900;
  color: var(--glcorp-text);
}

.glcorp-block-sub {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--glcorp-muted);
}

.glcorp-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #334155;
}

.glcorp-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.glcorp-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.glcorp-search-wrap {
  position: relative;
}

.glcorp-search-input-wrap {
  position: relative;
}

.glcorp-input,
.glcorp-select {
  width: 100%;
  height: 52px;
  border: 1px solid var(--glcorp-line);
  border-radius: 16px;
  padding: 0 16px;
  background: #ffffff;
  color: var(--glcorp-text);
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.glcorp-input:focus,
.glcorp-select:focus {
  border-color: var(--glcorp-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.glcorp-input::placeholder {
  color: #94a3b8;
}

.glcorp-icon-btn {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 9999px;
  background: #eef2ff;
  color: #334155;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.glcorp-icon-btn:hover {
  background: #dbeafe;
}

.glcorp-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 30;
  max-height: 320px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid var(--glcorp-line-strong);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.glcorp-dropdown-empty {
  padding: 18px 14px;
  text-align: center;
  color: var(--glcorp-muted);
  font-size: 14px;
}

.glcorp-dropdown-item {
  width: 100%;
  display: block;
  border: none;
  border-radius: 16px;
  padding: 14px 14px 13px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.glcorp-dropdown-item:hover {
  background: #f8fbff;
  transform: translateY(-1px);
}

.glcorp-dropdown-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--glcorp-text);
}

.glcorp-dropdown-meta {
  margin-top: 5px;
  font-size: 12px;
  color: var(--glcorp-muted);
}

.glcorp-help {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--glcorp-muted);
}

.glcorp-help.is-info {
  color: var(--glcorp-primary-dark);
}

.glcorp-help.is-success {
  color: var(--glcorp-success);
  font-weight: 700;
}

.glcorp-help.is-error {
  color: var(--glcorp-danger);
  font-weight: 700;
}



.glcorp-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.glcorp-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid transparent;
}

.glcorp-badge.mode-member {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}

.glcorp-badge.mode-code {
  background: #fff7ed;
  color: #b45309;
  border-color: #fed7aa;
}

.glcorp-badge.special-on {
  background: #f0fdf4;
  color: #15803d;
  border-color: #bbf7d0;
}

.glcorp-badge.special-off {
  background: #f8fafc;
  color: #475569;
  border-color: #e2e8f0;
}



.glcorp-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}

.glcorp-actions-bottom {
  justify-content: center;
  margin-top: 22px;
}

.glcorp-btn {
  min-width: 150px;
  height: 50px;
  border: 1px solid var(--glcorp-line);
  border-radius: 16px;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.glcorp-btn:hover {
  transform: translateY(-1px);
}

.glcorp-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.glcorp-btn-primary {
  color: #ffffff;
  border-color: var(--glcorp-primary);
  background: linear-gradient(180deg, var(--glcorp-primary), var(--glcorp-primary-dark));
  box-shadow: 0 14px 24px rgba(37, 99, 235, 0.24);
}

.glcorp-btn-primary:hover {
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.30);
}

.glcorp-btn-secondary {
  color: var(--glcorp-text);
  background: #f8fafc;
  border-color: var(--glcorp-line);
}

.glcorp-success-stage {
  margin-top: 22px;
  padding: 24px;
}

.glcorp-success-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.glcorp-success-check {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--glcorp-success-soft);
  color: var(--glcorp-success);
  font-size: 28px;
  font-weight: 900;
}

.glcorp-success-title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
}


.glcorp-success-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.glcorp-summary-item {
  padding: 16px;
  border: 1px solid var(--glcorp-line);
  border-radius: 18px;
  background: #fbfdff;
}

.glcorp-summary-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--glcorp-muted);
}

.glcorp-summary-value {
  margin-top: 7px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
  color: var(--glcorp-text);
  word-break: break-word;
}

.glcorp-success-placeholder {
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px dashed #bfd4f6;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fbff, #f1f7ff);
}

.glcorp-success-placeholder-title {
  font-size: 15px;
  font-weight: 900;
  color: #1d4ed8;
}

.glcorp-success-placeholder p {
  margin: 10px 0 0;
  color: var(--glcorp-muted);
  line-height: 1.8;
  font-size: 14px;
}

@media (max-width: 980px) {
  .glcorp-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .glcorp-hero {
    min-height: 360px;
  }

  .glcorp-hero-copy {
    margin-top: 42px;
  }

  .glcorp-field-grid,
  .glcorp-success-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .glcorp-page {
    width: min(100%, calc(100% - 20px));
    padding: 14px 0 28px;
  }

  .glcorp-card {
    border-radius: 24px;
  }

  .glcorp-hero,
  .glcorp-panel {
    padding: 22px 18px 24px;
  }

  .glcorp-panel-head h2 {
    font-size: 24px;
  }

  .glcorp-mode-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .glcorp-actions {
    justify-content: stretch;
  }

  .glcorp-btn {
    width: 100%;
  }

  .glcorp-search-input-wrap .glcorp-input {
    padding-right: 52px;
  }
}
.glcorp-choice-btn.is-selected{
  border-color:#2563eb;
  box-shadow:0 0 0 3px rgba(37,99,235,.16);
  background:#eff6ff;
}

#choiceProceedBtn[hidden]{
  display:none !important;
}
.glcorp-stepbar{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 18px;
}

.glcorp-step-item{
  display:flex;
  align-items:center;
  gap:8px;
  color:#94a3b8;
  font-weight:800;
  font-size:13px;
}

.glcorp-step-no{
  width:30px;
  height:30px;
  border-radius:9999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#e2e8f0;
  color:#475569;
  font-weight:900;
}

.glcorp-step-item.is-active{
  color:#0f172a;
}

.glcorp-step-item.is-active .glcorp-step-no{
  background:#2563eb;
  color:#fff;
  box-shadow:0 8px 18px rgba(37,99,235,.25);
}

.glcorp-step-item.is-done .glcorp-step-no{
  background:#16a34a;
  color:#fff;
}

.glcorp-step-line{
  flex:1;
  height:2px;
  background:#dbe4f0;
  border-radius:999px;
  min-width:28px;
}

#verifyStage[hidden],
#choiceStage[hidden]{
  display:none !important;
}

.glcorp-choice-summary{
  margin-bottom:14px;
  padding:16px 18px;
  border:1px solid #dbe4f0;
  border-radius:18px;
  background:#f8fbff;
  line-height:1.65;
  font-weight:700;
}

.glcorp-choice-list{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}

.glcorp-choice-btn{
  width:100%;
  text-align:left;
  border:1px solid #dbe4f0;
  background:#fff;
  border-radius:18px;
  padding:16px 18px;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}

.glcorp-choice-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 24px rgba(15,23,42,.08);
  border-color:#93c5fd;
}
#choiceProceedBtn[hidden]{
  display:none !important;
}

/* 선택 화면 전용 */
.glcorp-card-single{
  min-height: 720px;
  background:
    linear-gradient(180deg, #fdfefe 0%, #f6f9ff 100%);
}

.glcorp-card-single .glcorp-panel{
  margin: 0 auto;
  min-height: 720px;
  padding: 34px 28px 30px;
  background: transparent;
  gap: 20px;
}

.glcorp-card-single .glcorp-panel-head{
  margin-bottom: 0;
}

.glcorp-card-single .glcorp-panel-kicker{
  font-size: 13px;
  font-weight: 900;
  color: #2563eb;
  letter-spacing: 0.08em;
}

.glcorp-card-single .glcorp-panel-head h2{
  margin: 8px 0 10px;
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.035em;
  color: #081a3a;
}

.glcorp-card-single .glcorp-panel-head p{
  font-size: 17px;
  line-height: 1.65;
  color: #667892;
}

.glcorp-card-single .glcorp-block{
  padding: 18px 18px 16px;
  border: 1px solid #d9e4f4;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(248,251,255,.96) 100%);
  box-shadow:
    0 20px 48px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
}

/* 상단 요약 박스 */
.glcorp-choice-summary{
  margin-bottom: 16px;
}

#choiceSummary .glcorp-path-box{
  padding: 22px 22px 20px;
  border: 1px solid #d6e2f3;
  border-radius: 26px;
  background:
    linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
  color: #0f172a;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}

#choiceSummary .glcorp-path-box strong{
  display: block;
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.03em;
  color: #0b1f44;
}

.glcorp-choice-summary-line{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.glcorp-choice-chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  border: 1px solid #dbe4f0;
  background: #fff;
  color: #334155;
  box-shadow: 0 6px 14px rgba(15,23,42,.04);
}

.glcorp-choice-chip.is-supported{
  background: #eef4ff;
  color: #1d4ed8;
  border-color: #bfd5ff;
}

.glcorp-choice-chip.is-unsupported{
  background: #fef1f1;
  color: #dc2626;
  border-color: #fecaca;
}

.glcorp-choice-chip.is-active{
  background: #edfdf3;
  color: #15803d;
  border-color: #b7efc5;
}

/* 카드 리스트 */
.glcorp-choice-list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.glcorp-choice-btn{
  width: 100%;
  min-height: 110px;
  padding: 18px 18px 16px;
  border: 1px solid #d7e3f4;
  border-radius: 24px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  text-align: left;
  cursor: pointer;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background .18s ease;
  box-shadow: 0 10px 24px rgba(15,23,42,.04);
}

.glcorp-choice-btn:hover{
  transform: translateY(-2px);
  border-color: #9ec5ff;
  box-shadow: 0 16px 32px rgba(37,99,235,.10);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.glcorp-choice-btn.is-selected{
  border-color: #2563eb;
  background:
    linear-gradient(180deg, #eef5ff 0%, #e7f0ff 100%);
  box-shadow:
    0 0 0 3px rgba(37,99,235,.18),
    0 18px 34px rgba(37,99,235,.14);
}

.glcorp-choice-btn.is-disabled{
  opacity: .58;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.glcorp-choice-btn-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.glcorp-choice-title{
  font-size: 18px;
  font-weight: 950;
  color: #0b1f44;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.glcorp-choice-support{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: #edf3ff;
  color: #1d4ed8;
  border: 1px solid #d8e5ff;
}

.glcorp-choice-support.is-unsupported{
  background: #fef1f1;
  color: #dc2626;
  border-color: #ffd0d0;
}

.glcorp-choice-support.is-blocked{
  background: #f3f4f6;
  color: #6b7280;
  border-color: #e5e7eb;
}

.glcorp-choice-desc{
  font-size: 15px;
  line-height: 1.7;
  color: #4b5d77;
}

/* 하단 버튼 */
.glcorp-choice-actions{
  margin-top: 20px;
  justify-content: flex-end;
  gap: 10px;
}

.glcorp-choice-actions .glcorp-btn{
  min-width: 136px;
  width: auto;
  border-radius: 18px;
}

.glcorp-choice-actions #choiceProceedBtn{
  min-width: 230px;
  box-shadow: 0 16px 30px rgba(37,99,235,.24);
}

/* 모바일 */
@media (max-width: 899px){
  .glcorp-card-single{
    min-height: auto;
  }

  .glcorp-card-single .glcorp-panel{
    padding: 24px 18px 22px;
    min-height: auto;
  }

  .glcorp-card-single .glcorp-panel-head h2{
    font-size: 28px;
  }

  #choiceSummary .glcorp-path-box{
    padding: 18px 16px 16px;
  }

  #choiceSummary .glcorp-path-box strong{
    font-size: 24px;
  }

  .glcorp-choice-summary-line{
    gap: 8px;
  }

  .glcorp-choice-chip{
    min-height: 34px;
    font-size: 12px;
  }

  .glcorp-choice-list{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .glcorp-choice-btn{
    min-height: 98px;
    padding: 16px 16px 14px;
  }

  .glcorp-choice-title{
    font-size: 17px;
  }

  .glcorp-choice-desc{
    font-size: 14px;
  }

  .glcorp-choice-actions{
    flex-wrap: wrap;
    justify-content: stretch;
  }

  .glcorp-choice-actions .glcorp-btn,
  .glcorp-choice-actions #choiceProceedBtn{
    width: 100%;
    min-width: 100%;
  }
}

/* ===== 2페이지(대상자 선택) 전용 정리 ===== */

#choiceFlowView{
  background:
    linear-gradient(180deg, #fcfdff 0%, #f4f8ff 100%);
}

#choiceFlowView .glcorp-panel{
  width: 100%;
  max-width: none;
  min-height: 720px;
  padding: 34px 28px 28px;
  gap: 0;
  background: transparent;
}

#choiceFlowView .glcorp-panel-head{
  margin-bottom: 18px;
}

#choiceFlowView .glcorp-panel-kicker{
  font-size: 13px;
  font-weight: 900;
  color: #2563eb;
}

#choiceFlowView .glcorp-panel-head h2{
  margin: 8px 0 10px;
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.03em;
  color: #081a3a;
}

#choiceFlowView .glcorp-panel-head p{
  font-size: 16px;
  line-height: 1.65;
  color: #6b7c93;
}

/* 요약 */
#choiceFlowView .glcorp-choice-summary{
  margin-bottom: 16px;
}

#choiceFlowView #choiceSummary{
  margin-bottom: 16px;
  padding: 22px 22px 20px;
  border: 1px solid #dbe4f0;
  border-radius: 28px;
  background: linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
  color: #0f172a;
  line-height: 1.7;
  font-weight: 800;
}

#choiceFlowView #choiceSummary strong{
  display: block;
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.03em;
  color: #0b1f44;
}

#choiceFlowView .glcorp-choice-summary-line{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

#choiceFlowView .glcorp-choice-chip{
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 6px 14px rgba(15,23,42,.04);
}

/* 카드 리스트 */
#choiceFlowView .glcorp-choice-list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

#choiceFlowView .glcorp-choice-btn{
  width: 100%;
  min-height: 112px;
  padding: 18px 18px 16px;
  border: 1px solid #d8e3f3;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  text-align: left;
  box-shadow: 0 10px 24px rgba(15,23,42,.04);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background .18s ease;
}

#choiceFlowView .glcorp-choice-btn:hover{
  transform: translateY(-2px);
  border-color: #9ec5ff;
  box-shadow: 0 16px 32px rgba(37,99,235,.10);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

#choiceFlowView .glcorp-choice-btn.is-selected{
  border-color: #2563eb;
  background: linear-gradient(180deg, #edf4ff 0%, #e6f0ff 100%);
  box-shadow:
    0 0 0 3px rgba(37,99,235,.18),
    0 18px 34px rgba(37,99,235,.14);
}

#choiceFlowView .glcorp-choice-btn.is-disabled{
  opacity: .58;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

#choiceFlowView .glcorp-choice-btn-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

#choiceFlowView .glcorp-choice-title{
  font-size: 18px;
  font-weight: 950;
  color: #0b1f44;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

#choiceFlowView .glcorp-choice-desc{
  font-size: 15px;
  line-height: 1.7;
  color: #4b5d77;
}

#choiceFlowView .glcorp-choice-support{
  min-width: 62px;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid #d8e5ff;
  background: #edf3ff;
  color: #1d4ed8;
}

#choiceFlowView .glcorp-choice-support.is-unsupported{
  background: #fef1f1;
  color: #dc2626;
  border-color: #ffd0d0;
}

#choiceFlowView .glcorp-choice-support.is-blocked{
  background: #f3f4f6;
  color: #6b7280;
  border-color: #e5e7eb;
}

/* 버튼 영역 */
#choiceFlowView .glcorp-choice-actions{
  margin-top: 22px;
  padding-top: 8px;
  justify-content: flex-end;
  gap: 10px;
}

#choiceFlowView .glcorp-choice-actions .glcorp-btn{
  min-width: 136px;
  width: auto;
  border-radius: 18px;
}

#choiceFlowView .glcorp-choice-actions #choiceProceedBtn{
  min-width: 230px;
  box-shadow: 0 16px 30px rgba(37,99,235,.24);
}

/* 모바일 */
@media (max-width: 899px){
  #choiceFlowView .glcorp-panel{
    min-height: auto;
    padding: 22px 16px 20px;
  }

  #choiceFlowView .glcorp-panel-head{
    margin-bottom: 14px;
  }

  #choiceFlowView .glcorp-panel-head h2{
    font-size: 28px;
  }

  #choiceFlowView .glcorp-panel-head p{
    font-size: 14px;
  }

#choiceFlowView #choiceSummary{
  padding: 18px 16px 16px;
  border-radius: 22px;
}

#choiceFlowView #choiceSummary strong{
  font-size: 24px;
}

  #choiceFlowView .glcorp-choice-summary-line{
    gap: 8px;
  }

  #choiceFlowView .glcorp-choice-chip{
    min-height: 34px;
    font-size: 12px;
    padding: 0 12px;
  }

  #choiceFlowView .glcorp-choice-list{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #choiceFlowView .glcorp-choice-btn{
    min-height: 96px;
    padding: 16px 16px 14px;
    border-radius: 20px;
  }

  #choiceFlowView .glcorp-choice-title{
    font-size: 17px;
  }

  #choiceFlowView .glcorp-choice-desc{
    font-size: 14px;
  }

  #choiceFlowView .glcorp-choice-actions{
    flex-wrap: wrap;
    justify-content: stretch;
  }

  #choiceFlowView .glcorp-choice-actions .glcorp-btn,
  #choiceFlowView .glcorp-choice-actions #choiceProceedBtn{
    width: 100%;
    min-width: 100%;
  }
}
/* ===== FINAL OVERRIDE : 2페이지 대상자 선택 카드 정리 ===== */

#choiceFlowView{
  background: linear-gradient(180deg, #fcfdff 0%, #f4f7ff 100%);
}

#choiceFlowView .glcorp-panel{
  width: 100%;
  min-height: 720px;
  padding: 34px 28px 28px;
  gap: 0;
  background: transparent;
}

#choiceFlowView .glcorp-panel-head{
  margin-bottom: 18px;
}

#choiceFlowView .glcorp-panel-kicker{
  font-size: 12px;
  font-weight: 900;
  color: #2563eb;
  letter-spacing: .08em;
}

#choiceFlowView .glcorp-panel-head h2{
  margin: 8px 0 10px;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.03em;
  color: #081a3a;
}

#choiceFlowView .glcorp-panel-head p{
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #667892;
}

/* 상단 요약 */
#choiceFlowView #choiceSummary{
  margin-bottom: 14px;
  padding: 20px 22px 18px;
  border: 1px solid #dbe4f0;
  border-radius: 24px;
  background: linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.92);
  color: #0f172a;
  line-height: 1.7;
  font-weight: 800;
}

#choiceFlowView #choiceSummary strong{
  display: block;
  margin-bottom: 8px;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.03em;
  color: #0b1f44;
}

#choiceFlowView .glcorp-choice-summary-line{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

#choiceFlowView .glcorp-choice-chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid #dbe4f0;
  background: #fff;
  color: #334155;
  box-shadow: 0 4px 10px rgba(15,23,42,.04);
}

#choiceFlowView .glcorp-choice-chip.is-supported{
  background: #eef4ff;
  color: #1d4ed8;
  border-color: #bfd5ff;
}

#choiceFlowView .glcorp-choice-chip.is-unsupported{
  background: #fef1f1;
  color: #dc2626;
  border-color: #fecaca;
}

#choiceFlowView .glcorp-choice-chip.is-active{
  background: #edfdf3;
  color: #15803d;
  border-color: #b7efc5;
}

/* 툴바 */
#choiceFlowView .glcorp-choice-toolbar{
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

#choiceFlowView .glcorp-toolbar-btn{
  appearance: none;
  border: 1px solid #dbe4f0;
  background: #fff;
  color: #0f172a;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition:
    border-color .15s ease,
    background .15s ease,
    transform .15s ease,
    box-shadow .15s ease;
}

#choiceFlowView .glcorp-toolbar-btn:hover{
  transform: translateY(-1px);
  border-color: #93c5fd;
  background: #f8fbff;
  box-shadow: 0 8px 18px rgba(37,99,235,.08);
}

/* 카드 리스트 */
#choiceFlowView .glcorp-choice-list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

/* 1200 근처에서 2열이 답답하니까 일찍 1열로 내림 */
@media (max-width: 1180px){
  #choiceFlowView .glcorp-choice-list{
    grid-template-columns: 1fr;
  }
}

#choiceFlowView .glcorp-choice-btn{
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d9e3f3;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 10px 24px rgba(15,23,42,.05);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background .18s ease;
}

#choiceFlowView .glcorp-choice-btn:not(.is-disabled):hover{
  /* transform: translateY(-2px); */
  /* border-color: #9ec5ff; */
  /* box-shadow: 0 16px 30px rgba(37,99,235,.10); */
}

#choiceFlowView .glcorp-choice-btn.is-selected{
  border-color: #2563eb;
  background: linear-gradient(180deg, #eef5ff 0%, #e8f1ff 100%);
  box-shadow:
    0 0 0 3px rgba(37,99,235,.16),
    0 18px 32px rgba(37,99,235,.12);
}

/* opacity로 날리지 말고 배경만 죽여서 읽기 유지 */
#choiceFlowView .glcorp-choice-btn.is-disabled{
  border-color: #e2e8f0;
  background: linear-gradient(180deg, #fcfdff 0%, #f8fafc 100%);
  box-shadow: none;
}

#choiceFlowView .glcorp-choice-btn-select{
  width: 100%;
  display: block;
  padding: 20px 20px 16px;
  border: 0;
  background: transparent;
  text-align: left;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

#choiceFlowView .glcorp-choice-btn-select:disabled{
  cursor: not-allowed;
}

/* 카드 머리 */
#choiceFlowView .glcorp-choice-btn-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

#choiceFlowView .glcorp-choice-title{
  flex: 1 1 auto;
  min-width: 0;
  font-size: 21px;
  font-weight: 950;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: #0b1f44;
  word-break: keep-all;
}

#choiceFlowView .glcorp-choice-status{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
  border: 1px solid transparent;
}

#choiceFlowView .glcorp-choice-status.is-available{
  background: #ecfdf3;
  color: #15803d;
  border-color: #b7efc5;
}

#choiceFlowView .glcorp-choice-status.is-blocked{
  background: #fef2f2;
  color: #dc2626;
  border-color: #fecaca;
}

/* 지원금 배지 */
#choiceFlowView .glcorp-choice-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

#choiceFlowView .glcorp-choice-support{
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid #d8e5ff;
  background: #edf3ff;
  color: #1d4ed8;
}

#choiceFlowView .glcorp-choice-support.is-unsupported{
  background: #fef1f1;
  color: #dc2626;
  border-color: #ffd0d0;
}

/* 본문 정보 */
#choiceFlowView .glcorp-choice-desc{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#choiceFlowView .glcorp-choice-row{
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  column-gap: 10px;
  align-items: start;
}

#choiceFlowView .glcorp-choice-label{
  font-size: 13px;
  line-height: 1.55;
  font-weight: 900;
  color: #7a8aa0;
}

#choiceFlowView .glcorp-choice-value{
  font-size: 15px;
  line-height: 1.55;
  font-weight: 800;
  color: #0f172a;
  word-break: break-word;
}
#choiceFlowView .glcorp-choice-status-text{
  font-weight: 900;
}

#choiceFlowView .glcorp-choice-status-text.is-gray{
  color: #6b7280;
}

#choiceFlowView .glcorp-choice-status-text.is-blue{
  color: #1d4ed8;
}

#choiceFlowView .glcorp-choice-status-text.is-green{
  color: #15803d;
}

#choiceFlowView .glcorp-choice-status-text.is-black{
  color: #111827;
}

#choiceFlowView .glcorp-choice-status-text.is-red{
  color: #dc2626;
}

#choiceFlowView .glcorp-choice-status-text.is-orange{
  color: #ea580c;
}
/* 신청 가능/불가 */
#choiceFlowView .glcorp-choice-reservable{
  margin-top: 2px;
  padding-top: 12px;
  border-top: 1px dashed #dbe4f0;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 950;
  letter-spacing: -0.01em;
}

#choiceFlowView .glcorp-choice-reservable.is-available{
  color: #16a34a;
}

#choiceFlowView .glcorp-choice-reservable.is-blocked{
  color: #dc2626;
}

/* 카드 하단 액션 */
#choiceFlowView .glcorp-choice-card-actions{
  display: flex;
  gap: 8px;
  padding: 14px 20px 18px;
  margin-top: 0;
  border-top: 1px dashed #dbe4f0;
  background: rgba(248, 251, 255, 0.72);
}

#choiceFlowView .glcorp-card-mini-btn{
  appearance: none;
  border: 1px solid #dbe4f0;
  background: #ffffff;
  color: #0f172a;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition:
    border-color .15s ease,
    background .15s ease,
    transform .15s ease;
}

#choiceFlowView .glcorp-card-mini-btn:hover{
  transform: translateY(-1px);
  border-color: #93c5fd;
  background: #f8fbff;
}

#choiceFlowView .glcorp-card-mini-btn.is-danger{
  border-color: #fecaca;
  background: #fff7f7;
  color: #b91c1c;
}

/* 하단 이동 버튼 */
#choiceFlowView .glcorp-choice-actions{
  margin-top: 22px;
  padding-top: 8px;
  justify-content: flex-end;
  gap: 10px;
}

#choiceFlowView .glcorp-choice-actions .glcorp-btn{
  min-width: 136px;
  width: auto;
  border-radius: 18px;
}

#choiceFlowView .glcorp-choice-actions #choiceProceedBtn{
  min-width: 230px;
  box-shadow: 0 16px 30px rgba(37,99,235,.24);
}

/* 모바일 */
@media (max-width: 899px){
  #choiceFlowView .glcorp-panel{
    min-height: auto;
    padding: 22px 16px 20px;
  }

  #choiceFlowView .glcorp-panel-head{
    margin-bottom: 14px;
  }

  #choiceFlowView .glcorp-panel-head h2{
    font-size: 28px;
  }

  #choiceFlowView .glcorp-panel-head p{
    font-size: 14px;
  }

  #choiceFlowView #choiceSummary{
    padding: 18px 16px 16px;
    border-radius: 20px;
  }

  #choiceFlowView #choiceSummary strong{
    font-size: 24px;
  }

  #choiceFlowView .glcorp-choice-toolbar{
    justify-content: stretch;
  }

  #choiceFlowView .glcorp-toolbar-btn{
    width: 100%;
  }

  #choiceFlowView .glcorp-choice-btn{
    border-radius: 18px;
  }

  #choiceFlowView .glcorp-choice-btn-select{
    padding: 18px 16px 14px;
  }

  #choiceFlowView .glcorp-choice-title{
    font-size: 18px;
  }

  #choiceFlowView .glcorp-choice-status{
    min-height: 28px;
    padding: 0 10px;
    font-size: 10.5px;
  }

  #choiceFlowView .glcorp-choice-support{
    min-height: 30px;
    font-size: 11px;
  }

  #choiceFlowView .glcorp-choice-row{
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 8px;
  }

  #choiceFlowView .glcorp-choice-label{
    font-size: 12px;
  }

  #choiceFlowView .glcorp-choice-value{
    font-size: 14px;
  }

  #choiceFlowView .glcorp-choice-reservable{
    font-size: 15px;
    padding-top: 10px;
  }

#choiceFlowView .glcorp-choice-card-actions{
  padding: 12px 16px 16px;
  flex-wrap: wrap;
}

  #choiceFlowView .glcorp-choice-card-actions .glcorp-card-mini-btn{
    flex: 1 1 calc(50% - 4px);
  }

  #choiceFlowView .glcorp-choice-actions{
    flex-wrap: wrap;
    justify-content: stretch;
  }

  #choiceFlowView .glcorp-choice-actions .glcorp-btn,
  #choiceFlowView .glcorp-choice-actions #choiceProceedBtn{
    width: 100%;
    min-width: 100%;
  }
}
/* ===== dependent modal restore ===== */

.glcorp-modal[hidden]{
  display:none !important;
}

#choiceFlowView .glcorp-modal{
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.46);
}

#choiceFlowView .glcorp-modal-backdrop{
  position: absolute;
  inset: 0;
  background: transparent;
}

#choiceFlowView .glcorp-modal-dialog{
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 24px));
  max-height: min(88vh, 760px);
  overflow-y: auto;
  margin: 0;
  padding: 20px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.24);
}

#choiceFlowView .glcorp-modal-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

#choiceFlowView .glcorp-modal-title{
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
}

#choiceFlowView .glcorp-modal .glcorp-field-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

#choiceFlowView .glcorp-modal .glcorp-help{
  margin-top: 12px;
}

#choiceFlowView .glcorp-modal .glcorp-actions{
  margin-top: 16px;
  justify-content: flex-end;
  gap: 8px;
}

@media (max-width: 899px){
  #choiceFlowView .glcorp-modal{
    padding: 14px;
  }

  #choiceFlowView .glcorp-modal-dialog{
    width: min(100%, calc(100% - 8px));
    max-height: 90vh;
    padding: 18px 16px;
    border-radius: 18px;
  }

  #choiceFlowView .glcorp-modal .glcorp-field-grid{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  #choiceFlowView .glcorp-modal .glcorp-actions{
    flex-wrap: wrap;
    justify-content: stretch;
  }

  #choiceFlowView .glcorp-modal .glcorp-actions .glcorp-btn{
    width: 100%;
    min-width: 100%;
  }
}
/* ===== 예약희망일 선택구간 pill ===== */

#choiceFlowView .glcorp-choice-range{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  max-width: 100%;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #dbeafe;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 5px 12px rgba(37, 99, 235, .05);
}

#choiceFlowView .glcorp-choice-range-label{
  color: #64748b;
  font-weight: 900;
  white-space: nowrap;
}

#choiceFlowView .glcorp-choice-range-value{
  color: #1d4ed8;
  font-weight: 950;
  white-space: nowrap;
}

#choiceFlowView .glcorp-choice-range.is-unlimited{
  border-color: #fecaca;
  background: linear-gradient(180deg, #fff7f7 0%, #fef2f2 100%);
}

#choiceFlowView .glcorp-choice-range.is-unlimited .glcorp-choice-range-value{
  color: #dc2626;
}

@media (max-width: 899px){
  #choiceFlowView .glcorp-choice-range{
    /* width: 100%; */
    justify-content: space-between;
    border-radius: 14px;
    padding: 7px 11px;
    min-height: 36px;
  }

  #choiceFlowView .glcorp-choice-range-value{
    white-space: normal;
    text-align: right;
  }
}
/* ===== GL 중앙 로딩 오버레이 ===== */

.glcorp-loading-overlay{
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 42%, rgba(37, 99, 235, .16), transparent 34%),
    rgba(15, 23, 42, .38);
  backdrop-filter: blur(8px);
}

.glcorp-loading-overlay[hidden]{
  display: none !important;
}

.glcorp-loading-card{
  width: min(420px, calc(100vw - 40px));
  padding: 30px 26px 28px;
  border-radius: 26px;
  border: 1px solid rgba(219, 228, 240, .9);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,255,.98));
  box-shadow:
    0 24px 70px rgba(15, 23, 42, .24),
    inset 0 1px 0 rgba(255,255,255,.9);
  text-align: center;
}

.glcorp-loading-spinner{
  width: 46px;
  height: 46px;
  margin: 0 auto 18px;
  border-radius: 999px;
  border: 4px solid #dbeafe;
  border-top-color: #2563eb;
  animation: glcorpSpin .78s linear infinite;
}

.glcorp-loading-title{
  font-size: 20px;
  line-height: 1.35;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: #0b1f44;
}

.glcorp-loading-desc{
  margin-top: 9px;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
  color: #64748b;
  word-break: keep-all;
}

@keyframes glcorpSpin{
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 640px){
  .glcorp-loading-card{
    width: min(360px, calc(100vw - 28px));
    padding: 26px 20px 24px;
    border-radius: 22px;
  }

  .glcorp-loading-title{
    font-size: 18px;
  }

  .glcorp-loading-desc{
    font-size: 13px;
  }
}
#choiceFlowView .glcorp-choice-toolbar-main {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

#choiceFlowView .glcorp-registered-family-picker {
  flex: 1 1 100%;
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  border: 1px solid #dbe4f0;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
}

#choiceFlowView .glcorp-registered-family-picker-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  color: #0f172a;
}

#choiceFlowView .glcorp-registered-family-picker-head strong {
  font-size: 15px;
  font-weight: 950;
}

#choiceFlowView .glcorp-registered-family-picker-head span {
  font-size: 13px;
  font-weight: 850;
  color: #64748b;
}

#choiceFlowView .glcorp-registered-family-picker-list {
  display: grid;
  gap: 8px;
}

#choiceFlowView .glcorp-registered-family-picker-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #dbe4f0;
  border-radius: 14px;
  background: #ffffff;
}

#choiceFlowView .glcorp-registered-family-picker-row.is-selected {
  border-color: #2563eb;
  background: #eff6ff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.10);
}

#choiceFlowView .glcorp-registered-family-picker-name {
  font-size: 15px;
  font-weight: 950;
  color: #0f172a;
}

#choiceFlowView .glcorp-registered-family-picker-sub {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 800;
  color: #64748b;
}

#choiceFlowView .glcorp-registered-family-empty {
  padding: 14px;
  border-radius: 14px;
  background: #fff7ed;
  color: #9a3412;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.55;
}

@media (max-width: 899px) {
  #choiceFlowView .glcorp-choice-toolbar-main {
    justify-content: stretch;
  }

  #choiceFlowView .glcorp-choice-toolbar-main .glcorp-toolbar-btn {
    width: 100%;
  }

  #choiceFlowView .glcorp-registered-family-picker-head {
    flex-direction: column;
    align-items: flex-start;
  }

  #choiceFlowView .glcorp-registered-family-picker-row {
    flex-direction: column;
    align-items: stretch;
  }

  #choiceFlowView .glcorp-registered-family-picker-row .glcorp-card-mini-btn {
    width: 100%;
  }
}
/* ===== GL 기업 대상자 선택 UI v2: +카드 / 하단 우측 액션 / 등록형 가족 모달 ===== */

#choiceFlowView .glcorp-choice-toolbar:empty {
  display: none;
}

#choiceFlowView .glcorp-choice-row-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 0 20px 18px;
  margin-top: -2px;
  grid-template-columns: none;
}

#choiceFlowView .glcorp-choice-card-actions {
  display: none !important;
}


#choiceFlowView .glcorp-registered-family-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

#choiceFlowView .glcorp-registered-family-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .38);
  backdrop-filter: blur(4px);
}

#choiceFlowView .glcorp-registered-family-picker {
  max-width: 600px;
  position: relative;
  z-index: 1;
  width: min(620px, calc(100vw - 32px));
  max-height: min(720px, calc(100vh - 44px));
  overflow: auto;
  margin: 0;
  padding: 18px;
  border: 1px solid #dbe4f0;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 28px 80px rgba(15, 23, 42, .28);
}

#choiceFlowView .glcorp-registered-family-picker-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: #0f172a;
}

#choiceFlowView .glcorp-registered-family-picker-head strong {
  display: block;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

#choiceFlowView .glcorp-registered-family-picker-head span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  font-weight: 850;
  color: #64748b;
}

#choiceFlowView .glcorp-registered-family-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 14px;
  background: #f1f5f9;
  color: #334155;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
}

#choiceFlowView .glcorp-registered-family-close:hover {
  background: #e2e8f0;
}

#choiceFlowView .glcorp-registered-family-picker-list {
  display: grid;
  gap: 8px;
}

#choiceFlowView .glcorp-registered-family-picker-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid #dbe4f0;
  border-radius: 16px;
  background: #ffffff;
}

#choiceFlowView .glcorp-registered-family-picker-row.is-selected {
  border-color: #2563eb;
  background: #eff6ff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.10);
}

#choiceFlowView .glcorp-registered-family-picker-row.is-unsupported-taken {
  border-color: #fecaca;
  background: #fff7f7;
}

#choiceFlowView .glcorp-registered-family-picker-row.is-unsupported-taken .glcorp-registered-family-picker-name {
  color: #b91c1c;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

#choiceFlowView .glcorp-registered-family-picker-row.is-unsupported-taken .glcorp-registered-family-picker-sub {
  color: #dc2626;
}

#choiceFlowView .glcorp-registered-family-picker-name {
  font-size: 15px;
  font-weight: 950;
  color: #0f172a;
}

#choiceFlowView .glcorp-registered-family-picker-sub {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 800;
  color: #64748b;
}

#choiceFlowView .glcorp-registered-family-empty {
  padding: 16px;
  border-radius: 16px;
  background: #fff7ed;
  color: #9a3412;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.6;
}

@media (max-width: 899px) {
  #choiceFlowView .glcorp-choice-row-actions {
    padding: 0 16px 16px;
    flex-wrap: wrap;
  }

  #choiceFlowView .glcorp-choice-row-actions .glcorp-card-mini-btn {
    flex: 1 1 calc(50% - 4px);
  }


  #choiceFlowView .glcorp-registered-family-picker-row {
    flex-direction: column;
    align-items: stretch;
  }

  #choiceFlowView .glcorp-registered-family-picker-row .glcorp-card-mini-btn {
    width: 100%;
  }
}
/* ===== 등록형 가족 모달 UX 수정 ===== */

#choiceFlowView .glcorp-registered-family-close {
  background: #dc2626 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 22px rgba(220, 38, 38, 0.22);
}

#choiceFlowView .glcorp-registered-family-close:hover {
  background: #b91c1c !important;
}

#choiceFlowView .glcorp-registered-family-limit-notice {
  margin: 0 0 12px;
  padding: 13px 14px;
  border: 1px solid #fecaca;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff7f7 0%, #fef2f2 100%);
  color: #b91c1c;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 950;
  word-break: keep-all;
}

/* 등록형 가족 모달 헤더: 모바일에서도 X 버튼 오른쪽 고정 */
@media (max-width: 899px) {
  #choiceFlowView .glcorp-registered-family-picker-head {
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
  }

  #choiceFlowView .glcorp-registered-family-picker-head > div {
    flex: 1 1 auto;
    min-width: 0;
  }

  #choiceFlowView .glcorp-registered-family-close {
    flex: 0 0 38px;
    margin-left: auto;
  }
}
#choiceFlowView .glcorp-choice-btn.is-disabled .glcorp-choice-btn-select {
  cursor: not-allowed;
}
#choiceFlowView .glcorp-choice-toolbar{
  display:flex;
  justify-content:flex-end;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 14px;
}

#choiceFlowView .glcorp-choice-toolbar-main{
  display:flex;
  justify-content:flex-end;
  flex-wrap:wrap;
  gap:8px;
  width:100%;
}

#choiceFlowView .glcorp-toolbar-btn{
  appearance:none;
  min-height:38px;
  padding:0 14px;
  border:1px solid #dbe4f0;
  border-radius:999px;
  background:#ffffff;
  color:#0f172a;
  font-size:13px;
  font-weight:950;
  cursor:pointer;
  box-shadow:0 6px 14px rgba(15,23,42,.04);
  transition:
    border-color .15s ease,
    background .15s ease,
    transform .15s ease,
    box-shadow .15s ease;
}

#choiceFlowView .glcorp-toolbar-btn:hover{
  transform:translateY(-1px);
  border-color:#93c5fd;
  background:#f8fbff;
  box-shadow:0 8px 18px rgba(37,99,235,.08);
}

#choiceFlowView .glcorp-toolbar-btn.is-dark{
  border-color:#0f172a;
  background:#0f172a;
  color:#ffffff;
}

#choiceFlowView .glcorp-toolbar-btn.is-dark:hover{
  background:#1e293b;
  border-color:#1e293b;
}

@media (max-width:899px){
  #choiceFlowView .glcorp-choice-toolbar-main{
    display:grid;
    grid-template-columns:1fr 1fr;
  }

  #choiceFlowView .glcorp-toolbar-btn{
    width:100%;
  }
}
/* ===== 대상자 선택 플로팅 독: choiceFlowView 내부 하단 고정 ===== */

#choiceFlowView {
  position: relative;
}

#choiceFlowView .glcorp-panel {
  padding-bottom: 162px;
}

#choiceFlowView .glcorp-floating-dock {
  --choice-dock-left: 28px;
  --choice-dock-right: 28px;
  --choice-dock-bottom: 24px;

  position: fixed;
  right: var(--choice-dock-right);
  bottom: calc(var(--choice-dock-bottom) + env(safe-area-inset-bottom));
  z-index: 9000;

  width: min(390px, calc(100vw - var(--choice-dock-left) - var(--choice-dock-right)));

  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;

  pointer-events: none;
}

#choiceFlowView .glcorp-floating-dock[hidden] {
  display: none !important;
}

#choiceFlowView .glcorp-floating-dock > * {
  pointer-events: auto;
}

#choiceFlowView #choiceProceedBtn.glcorp-floating-proceed-btn {
  position: relative !important;
  overflow: hidden !important;

  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;

  height: 58px;
  padding: 0 20px;
  border-radius: 18px;

  font-size: 15px;
  font-weight: 950;
  letter-spacing: -0.01em;
  white-space: normal;
  line-height: 1.25;

  color: #ffffff;
  border-color: #2563eb;

  background:
    linear-gradient(135deg, #2359cc 0%, #2f6fff 50%, #1d4ed8 100%);

  box-shadow:
    0 18px 42px rgba(37, 99, 235, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.45) inset,
    0 0 0 0 rgba(37, 99, 235, 0.35);

  animation:
    choiceProceedReadyPop 0.48s ease-out,
    choiceProceedReadyGlow 1.9s ease-in-out infinite;
}
#choiceFlowView #choiceProceedBtn.glcorp-floating-proceed-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;

  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.18) 35%,
      rgba(255, 255, 255, 0.55) 50%,
      rgba(255, 255, 255, 0.18) 65%,
      transparent 100%
    );

  transform: skewX(-18deg);
  animation: choiceProceedReadyShine 2.6s ease-in-out infinite;
  pointer-events: none;
}
#choiceFlowView #choiceProceedBtn.glcorp-floating-proceed-btn:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow:
    0 22px 50px rgba(37, 99, 235, 0.42),
    0 0 0 4px rgba(37, 99, 235, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.45) inset;
}
#choiceFlowView #choiceProceedBtn.glcorp-floating-proceed-btn:disabled {
  opacity: 0.62;
  cursor: not-allowed;
  transform: none;
  animation: none;
}

#choiceFlowView #choiceProceedBtn.glcorp-floating-proceed-btn:disabled::after {
  display: none;
}
#choiceFlowView #choiceProceedBtn.glcorp-floating-proceed-btn[hidden] {
  display: none !important;
}

#choiceFlowView .glcorp-floating-add-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

#choiceFlowView .glcorp-floating-add-btn {
  appearance: none;
  flex: 1 1 0;
  min-width: 0;
  min-height: 56px;
  padding: 8px 10px;
  border: 1px solid #cfe0ff;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
  color: #0f172a;
  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  cursor: pointer;

  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  grid-template-areas:
    "icon text"
    "icon badge";
  align-items: center;
  column-gap: 8px;
  row-gap: 3px;

  text-align: left;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

#choiceFlowView .glcorp-floating-add-btn:only-child {
  flex: 0 1 202px;
  max-width: 202px;
}

#choiceFlowView .glcorp-floating-add-btn:hover {
  transform: translateY(-2px);
  border-color: #93c5fd;
  background:
    linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
  box-shadow:
    0 16px 34px rgba(37, 99, 235, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

#choiceFlowView .glcorp-floating-add-icon {
  grid-area: icon;
  width: 30px;
  height: 30px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2563eb;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.24);
}

#choiceFlowView .glcorp-floating-add-text {
  grid-area: text;
  min-width: 0;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 950;
  color: #0b1f44;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#choiceFlowView .glcorp-floating-add-badge {
  grid-area: badge;
  width: fit-content;
  max-width: 100%;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: #eef4ff;
  border: 1px solid #cfe0ff;
  color: #1d4ed8;
  font-size: 10.5px;
  line-height: 18px;
  font-weight: 950;
  white-space: nowrap;
}

#choiceFlowView .glcorp-floating-add-btn.is-disabled {
  border-color: #fecaca;
  background:
    linear-gradient(180deg, #fff7f7 0%, #fef2f2 100%);
  cursor: pointer;
}

#choiceFlowView .glcorp-floating-add-btn.is-disabled .glcorp-floating-add-icon {
  background: #94a3b8;
  box-shadow: none;
}

#choiceFlowView .glcorp-floating-add-btn.is-disabled .glcorp-floating-add-text {
  color: #b91c1c;
}

#choiceFlowView .glcorp-floating-add-btn.is-disabled .glcorp-floating-add-badge {
  background: #ffffff;
  border-color: #fecaca;
  color: #b91c1c;
}

@media (max-width: 899px) {
  #choiceFlowView .glcorp-panel {
    padding-bottom: 150px;
  }

  #choiceFlowView .glcorp-floating-dock {
    --choice-dock-left: 24px;
    --choice-dock-right: 24px;
    --choice-dock-bottom: 18px;

    left: var(--choice-dock-left);
    right: var(--choice-dock-right);
    width: auto;
    gap: 8px;
  }

  #choiceFlowView #choiceProceedBtn.glcorp-floating-proceed-btn {
    height: 54px;
    border-radius: 16px;
    font-size: 14px;
  }

  #choiceFlowView .glcorp-floating-add-btn {
    min-height: 52px;
    border-radius: 16px;
    grid-template-columns: 28px minmax(0, 1fr);
  }

  #choiceFlowView .glcorp-floating-add-btn:only-child {
    flex: 0 1 202px;
    max-width: 202px;
  }

  #choiceFlowView .glcorp-floating-add-icon {
    width: 28px;
    height: 28px;
    border-radius: 11px;
    font-size: 20px;
  }

  #choiceFlowView .glcorp-floating-add-text {
    font-size: 12px;
  }

  #choiceFlowView .glcorp-floating-add-badge {
    font-size: 10px;
  }
}
@keyframes choiceProceedReadyPop {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.045);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes choiceProceedReadyGlow {
  0%,
  100% {
    box-shadow:
      0 18px 42px rgba(37, 99, 235, 0.32),
      0 0 0 1px rgba(255, 255, 255, 0.45) inset,
      0 0 0 0 rgba(37, 99, 235, 0.28);
  }

  50% {
    box-shadow:
      0 22px 50px rgba(37, 99, 235, 0.42),
      0 0 0 1px rgba(255, 255, 255, 0.45) inset,
      0 0 0 6px rgba(37, 99, 235, 0.10);
  }
}

@keyframes choiceProceedReadyShine {
  0% {
    left: -120%;
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  42% {
    left: 130%;
    opacity: 0;
  }

  100% {
    left: 130%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  #choiceFlowView #choiceProceedBtn.glcorp-floating-proceed-btn,
  #choiceFlowView #choiceProceedBtn.glcorp-floating-proceed-btn::after {
    animation: none !important;
  }
}
.select-addon-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #be123c;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  vertical-align: baseline;
  white-space: nowrap;
}
/* 상품 상세 설명 줄간격 정리 */
.additional-info{
  margin:10px 0 6px !important;
  text-align:center;
  color:#4b5563;
  font-size:15px;
  line-height:1.45 !important;
  white-space:normal !important;
}

/* HTML 설명 p/div 기본 여백 제거 */
.additional-info p{
  margin:0 0 6px !important;
  padding:0 !important;
  line-height:1.45 !important;
}

.additional-info p:last-child{
  margin-bottom:0 !important;
}

.additional-info div{
  margin:0 0 6px !important;
  padding:0 !important;
  line-height:1.45 !important;
}

.additional-info div:last-child{
  margin-bottom:0 !important;
}

.additional-info strong,
.additional-info b{
  font-weight:900;
  color:#111827;
}

@media (max-width:899px){
  .additional-info{
    font-size:13px;
    line-height:1.42 !important;
  }

  .additional-info p,
  .additional-info div{
    margin-bottom:5px !important;
    line-height:1.42 !important;
  }
}

/* =========================================================
   기업 선택 드롭다운: 모바일 하단 잘림 방지
   - 기본은 아래로 열림
   - 공간 부족하면 JS에서 .is-drop-up 붙여 위로 열림
========================================================= */

#corpDropdownList {
  position: fixed !important;

  left: var(--corp-dropdown-left, 12px) !important;
  top: var(--corp-dropdown-top, auto) !important;
  bottom: auto !important;

  width: var(--corp-dropdown-width, calc(100vw - 24px)) !important;
  max-height: var(--corp-dropdown-max-height, 280px) !important;

  overflow-y: auto !important;
  overflow-x: hidden !important;

  z-index: 20000 !important;

  background: #ffffff !important;
  border: 1px solid #d8e4f5 !important;
  border-radius: 16px !important;

  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset !important;

  -webkit-overflow-scrolling: touch;
}

#corpDropdownList.is-drop-up {
  top: auto !important;
  bottom: var(--corp-dropdown-bottom, 12px) !important;
}

#corpDropdownList .glcorp-dropdown-item {
  width: 100%;
  display: block;
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid #eef2f7;
  background: #ffffff;
  text-align: left;
  cursor: pointer;
}

#corpDropdownList .glcorp-dropdown-item:last-child {
  border-bottom: 0;
}

#corpDropdownList .glcorp-dropdown-item:hover {
  background: #eff6ff;
}

#corpDropdownList .glcorp-dropdown-name {
  color: #0f172a;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  word-break: keep-all;
}

#corpDropdownList .glcorp-dropdown-empty {
  padding: 14px 16px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 899px) {
  #corpDropdownList {
    border-radius: 18px !important;
    max-height: var(--corp-dropdown-max-height, 240px) !important;
  }

  #corpDropdownList .glcorp-dropdown-item {
    padding: 15px 16px;
  }

  #corpDropdownList .glcorp-dropdown-name {
    font-size: 15px;
  }
}