/* ── Design Tokens ──────────────────────────────────────────────────────────── */
:root {
  --blue-bg:      #1635A8;
  --blue-dark:    #0F2480;
  --blue-mid:     #1E44C4;
  --blue-bright:  #2563EB;
  --blue-btn:     #1D4ED8;
  --white:        #FFFFFF;
  --off-white:    #F0F4FF;
  --card-text:    #1A2F6B;
  --text-muted:   #5B6FA8;
  --text-light:   rgba(255,255,255,0.75);
  --border-card:  rgba(255,255,255,0.18);
  --border-white: rgba(255,255,255,0.3);
  --shadow:       0 4px 24px rgba(0,0,0,0.18);
  --shadow-card:  0 2px 16px rgba(15,36,128,0.18);
  --radius:       16px;
  --radius-sm:    10px;

  /* Status colors */
  --s-applicant:  #F59E0B;
  --s-interview:  #3B82F6;
  --s-hired:      #10B981;
  --s-onboard:    #8B5CF6;
  --s-active:     #10B981;
  --s-rejected:   #EF4444;
}

/* ── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--blue-bg);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Watermark pattern — larger + more visible WORK@HOME tile */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='180'%3E%3Cg transform='rotate(-15 160 90)'%3E%3Ctext x='20' y='60' font-family='Arial,sans-serif' font-size='26' font-weight='900' fill='white' opacity='0.14'%3EWORK%40HOME%3C/text%3E%3Ctext x='130' y='140' font-family='Arial,sans-serif' font-size='44' font-weight='900' fill='white' opacity='0.11'%3E%40%3C/text%3E%3C/g%3E%3C/svg%3E");
  background-size: 320px 180px;
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
}

/* ── HR Chat (candidate side) ───────────────────────────────────────────────── */
.hr-chat-wrap {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 290px);
  min-height: 380px;
  margin: 16px 20px 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  overflow: hidden;
}
.hr-chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(15,36,128,0.5);
  border-bottom: 1px solid var(--border-card);
}
.hr-chat-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-bright));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hr-chat-head-text { line-height: 1.4; }
.hr-chat-head-text strong { display: block; font-size: 13px; color: white; font-weight: 700; }
.hr-chat-head-text span   { font-size: 11px; color: var(--text-light); }

.hr-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(0,0,0,0.15);
}
.hr-chat-empty {
  margin: auto;
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  max-width: 260px;
  line-height: 1.6;
}
.hr-msg { max-width: 78%; }
.hr-msg-in  { align-self: flex-start; }
.hr-msg-out { align-self: flex-end;   }
.hr-bubble {
  padding: 9px 13px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  word-wrap: break-word;
}
.hr-msg-in .hr-bubble {
  background: rgba(255,255,255,0.95);
  color: var(--card-text);
  border-radius: 12px 12px 12px 3px;
}
.hr-msg-out .hr-bubble {
  background: var(--blue-btn);
  color: white;
  border-radius: 12px 12px 3px 12px;
}
.hr-meta {
  font-size: 10px;
  color: var(--text-light);
  margin-top: 3px;
  padding: 0 4px;
}
.hr-msg-out .hr-meta { text-align: right; }

.hr-chat-input {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(15,36,128,0.4);
  border-top: 1px solid var(--border-card);
}
.hr-chat-input input {
  flex: 1;
  font-family: inherit;
  font-size: 13px;
  padding: 9px 13px;
  border: 1px solid var(--border-card);
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  color: white;
  outline: none;
}
.hr-chat-input input:focus { border-color: rgba(255,255,255,0.4); }
.hr-chat-input input::placeholder { color: rgba(255,255,255,0.5); }
.hr-chat-send {
  background: var(--blue-btn);
  color: white;
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 0 18px;
  border-radius: 18px;
  cursor: pointer;
}
.hr-chat-send:hover:not(:disabled) { background: #1D40AF; }
.hr-chat-send:disabled { opacity: 0.6; cursor: wait; }

/* Bottom-nav red dot for unread chat messages */
.nav-item { position: relative; }
.chat-dot {
  position: absolute;
  top: 4px;
  right: 22px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #EF4444;
  border: 2px solid var(--blue-dark);
}

/* ── Bell / Notifications ───────────────────────────────────────────────────── */
.bell-btn {
  position: relative;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.bell-btn:hover { background: rgba(255,255,255,0.22); }
.bell-badge {
  position: absolute;
  top: -3px; right: -3px;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  background: #EF4444;
  border: 2px solid var(--blue-dark);
  border-radius: 9px;
  color: white;
  font-size: 10px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* Urgent banner */
#urgent-notif-bar {
  position: sticky;
  top: 60px;
  z-index: 90;
  padding: 0 16px;
  margin-top: 10px;
}
.urgent-bar-inner {
  max-width: 540px;
  margin: 0 auto;
  background: linear-gradient(135deg, #DC2626, #B91C1C);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(220,38,38,0.4);
  animation: urgentPulse 2s ease-in-out infinite;
}
@keyframes urgentPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(220,38,38,0.4); }
  50%      { box-shadow: 0 4px 22px rgba(220,38,38,0.65); }
}
.urgent-bar-icon { font-size: 22px; flex-shrink: 0; }
.urgent-bar-text { flex: 1; line-height: 1.4; }
.urgent-bar-text strong { display: block; font-size: 13px; color: white; font-weight: 700; }
.urgent-bar-text span { font-size: 11px; color: rgba(255,255,255,0.85); }
.urgent-bar-x {
  background: rgba(255,255,255,0.18);
  border: none;
  color: white;
  width: 26px; height: 26px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}
.urgent-bar-x:hover { background: rgba(255,255,255,0.3); }

/* Push toggle row inside inbox modal */
.push-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #EEF4FF, #F0F6FF);
  border: 1px solid #BFDBFE;
  border-radius: var(--radius-sm);
}
.push-toggle-row > div { flex: 1; min-width: 0; }
.push-toggle-row strong { display: block; font-size: 13px; font-weight: 800; color: var(--card-text); margin-bottom: 2px; }
.push-toggle-row span { display: block; font-size: 11px; color: var(--text-muted); line-height: 1.4; }
.push-toggle-btn {
  background: var(--blue-btn);
  color: white;
  border: none;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 18px;
  cursor: pointer;
  flex-shrink: 0;
}
.push-toggle-btn:hover { background: #1D40AF; }
.push-toggle-btn:disabled { opacity: 0.6; cursor: wait; }
.push-toggle-btn.on { background: #6B7280; }
.push-toggle-btn.on:hover { background: #4B5563; }

/* Inbox list inside modal */
.notif-inbox-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 60vh;
  overflow-y: auto;
  margin-top: 8px;
}
.notif-row {
  background: var(--off-white);
  border: 1px solid #E0E7FF;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  cursor: pointer;
  transition: all 0.15s;
}
.notif-row:hover { background: #E0E7FF; }
.notif-row.unread { border-left: 3px solid var(--blue-btn); background: #EEF4FF; }
.notif-row.urgent { border-left: 3px solid #DC2626; }
.notif-row-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.notif-row-subject {
  font-size: 13px;
  font-weight: 700;
  color: var(--card-text);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.notif-row-date { font-size: 10px; color: var(--text-muted); flex-shrink: 0; }
.notif-row-body {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  white-space: pre-wrap;
}
.notif-unread-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue-btn);
  flex-shrink: 0;
}
.notif-urg-pill {
  font-size: 9px;
  font-weight: 800;
  background: #DC2626;
  color: white;
  padding: 2px 7px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.notif-empty {
  text-align: center;
  padding: 24px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Top Bar ────────────────────────────────────────────────────────────────── */
#topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue-dark);
  border-bottom: 1px solid var(--border-card);
}

.topbar-inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 11px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.3));
}
.logo-mark-text {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── Status Badge ───────────────────────────────────────────────────────────── */
.status-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.2px;
}
.status-badge.applied      { background: rgba(245,158,11,0.25);  color: #FCD34D; border: 1px solid rgba(245,158,11,0.5); }
.status-badge.interview    { background: rgba(59,130,246,0.25);  color: #93C5FD; border: 1px solid rgba(59,130,246,0.5); }
.status-badge.offer        { background: rgba(16,185,129,0.20);  color: #6EE7B7; border: 1px solid rgba(16,185,129,0.4); }
.status-badge.hired        { background: rgba(16,185,129,0.25);  color: #6EE7B7; border: 1px solid rgba(16,185,129,0.5); }
.status-badge.onboarding   { background: rgba(139,92,246,0.25);  color: #C4B5FD; border: 1px solid rgba(139,92,246,0.5); }
.status-badge.active       { background: rgba(16,185,129,0.25);  color: #6EE7B7; border: 1px solid rgba(16,185,129,0.5); }
.status-badge.rejected     { background: rgba(239,68,68,0.25);   color: #FCA5A5; border: 1px solid rgba(239,68,68,0.5); }
.status-badge.disqualified { background: rgba(255,255,255,0.10); color: #94A3B8; border: 1px solid rgba(255,255,255,0.2); }

/* ── Main Content ───────────────────────────────────────────────────────────── */
#main {
  flex: 1;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 90px;
  position: relative;
  z-index: 1;
}

/* ── Bottom Nav ─────────────────────────────────────────────────────────────── */
#bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: var(--blue-dark);
  border-top: 1px solid var(--border-card);
  display: flex;
  justify-content: center;
  padding: 6px 0 max(8px, env(safe-area-inset-bottom));
  z-index: 100;
}

.nav-item {
  background: none;
  border: none;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-family: inherit;
  font-weight: 600;
  padding: 6px 32px;
  cursor: pointer;
  transition: color 0.2s;
  border-radius: var(--radius-sm);
  letter-spacing: 0.3px;
}
.nav-item svg {
  width: 22px; height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-item.active { color: var(--white); }
.nav-item.active svg { stroke: var(--white); }
.nav-item:hover { color: rgba(255,255,255,0.9); }

/* ── Hero ───────────────────────────────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 36px 24px 28px;
  background: linear-gradient(180deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  border-bottom: 1px solid var(--border-card);
}

.hero-logo-wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.4));
}

/* Fallback if no logo image */
.hero-logo-fallback {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E44C4, #3B7FFF);
  border: 3px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.08);
}

.hero h1 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
  color: var(--white);
}
.hero p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

/* Pay Stats Strip */
.pay-strip {
  display: flex;
  gap: 1px;
  margin: 22px 0 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-card);
  background: var(--border-card);
}
.pay-item {
  flex: 1;
  background: rgba(255,255,255,0.08);
  padding: 14px 8px;
  text-align: center;
}
.pay-item .amount {
  font-size: 20px;
  font-weight: 900;
  color: #4ADE80;
  display: block;
  letter-spacing: -0.5px;
}
.pay-item .label {
  font-size: 10px;
  color: var(--text-light);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

/* ── 2×2 Menu Grid ──────────────────────────────────────────────────────────── */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 22px 20px 0;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow-card);
  border: none;
}
.menu-card:hover, .menu-card:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(15,36,128,0.25);
}
.menu-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.menu-card .icon.blue   { background: #EFF6FF; }
.menu-card .icon.amber  { background: #FFFBEB; }
.menu-card .icon.green  { background: #ECFDF5; }
.menu-card .icon.purple { background: #F5F3FF; }

.menu-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--card-text);
}
.menu-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── Social Buttons ─────────────────────────────────────────────────────────── */
.social-row {
  display: flex;
  gap: 10px;
  padding: 16px 20px 0;
}
.social-btn {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 11px;
  font-family: inherit;
  font-weight: 600;
  padding: 10px 6px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  transition: all 0.2s;
  text-decoration: none;
}
.social-btn:hover { background: rgba(255,255,255,0.18); }

.share-row {
  display: flex;
  gap: 10px;
  padding: 12px 20px 0;
}
.share-btn {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 12px;
  font-family: inherit;
  font-weight: 600;
  padding: 11px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.share-btn:hover { background: rgba(255,255,255,0.15); }

/* ── Section Heading ────────────────────────────────────────────────────────── */
.section-head {
  padding: 22px 20px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Campaign Cards ─────────────────────────────────────────────────────────── */
.campaign-list {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.campaign-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-card);
}
.campaign-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(15,36,128,0.25);
}
.campaign-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.campaign-info { flex: 1; }
.campaign-info h3 { font-size: 15px; font-weight: 800; color: var(--card-text); margin-bottom: 4px; }
.campaign-info p  { font-size: 12px; color: var(--text-muted); }
.campaign-arrow   { color: var(--text-muted); font-size: 22px; font-weight: 300; }

/* Campaign Detail */
.campaign-detail { padding: 0 20px 20px; }
.campaign-detail-hero {
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  margin-bottom: 20px;
}
.campaign-detail-hero .big-icon { font-size: 52px; margin-bottom: 12px; }
.campaign-detail-hero h2 { font-size: 22px; font-weight: 900; margin-bottom: 8px; }
.campaign-detail-hero p  { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.6; }

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.info-chip {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px;
  box-shadow: var(--shadow-card);
}
.info-chip .chip-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.info-chip .chip-value { font-size: 14px; font-weight: 800; color: var(--card-text); margin-top: 5px; }

/* ── Progress Tracker ───────────────────────────────────────────────────────── */
.progress-tracker {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.progress-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  padding-bottom: 24px;
}
.progress-step:last-child { padding-bottom: 0; }
.progress-step:last-child .step-line { display: none; }

.step-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.step-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  position: relative;
  z-index: 1;
}
.step-icon.done   { background: rgba(16,185,129,0.2); border: 2px solid #10B981; }
.step-icon.active { background: rgba(255,255,255,0.2); border: 2px solid var(--white); box-shadow: 0 0 14px rgba(255,255,255,0.3); }
.step-icon.locked { background: rgba(255,255,255,0.06); border: 2px solid rgba(255,255,255,0.15); }

.step-line {
  width: 2px;
  flex: 1;
  min-height: 20px;
  background: rgba(255,255,255,0.15);
  margin-top: 4px;
}
.step-line.done-line { background: rgba(16,185,129,0.4); }

.step-body { flex: 1; padding-top: 6px; }
.step-body h3 { font-size: 15px; font-weight: 800; margin-bottom: 5px; color: var(--white); }
.step-body p  { font-size: 12px; color: var(--text-light); line-height: 1.5; }
.step-action  { margin-top: 12px; }

/* ── Onboarding Tasks ───────────────────────────────────────────────────────── */
.onboarding-list {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.task-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow-card);
}
.task-card.completed { border: 2px solid rgba(16,185,129,0.4); background: #F0FDF4; }
.task-card.locked    { opacity: 0.5; cursor: not-allowed; }
.task-card:not(.locked):not(.completed):hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15,36,128,0.2);
}

.task-check {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid #D1D5DB;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  color: #9CA3AF;
  font-weight: 700;
}
.task-card.completed .task-check { background: #10B981; border-color: #10B981; color: white; }

.task-info h3 { font-size: 14px; font-weight: 700; color: var(--card-text); margin-bottom: 3px; }
.task-info p  { font-size: 12px; color: var(--text-muted); }
.task-warning {
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}
.task-warning-blue {
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: #1D4ED8;
}

/* Progress Bar */
.progress-bar-wrap { padding: 0 20px 20px; }
.progress-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 600;
}
.progress-bar-track {
  height: 7px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563EB, #38BDF8);
  border-radius: 4px;
  transition: width 0.5s ease;
}

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  letter-spacing: 0.2px;
}
.btn:disabled { opacity: 0.45; cursor: not-allowed; }

.btn-primary {
  background: var(--blue-btn);
  color: var(--white);
  width: 100%;
  box-shadow: 0 4px 14px rgba(29,78,216,0.4);
}
.btn-primary:hover:not(:disabled) {
  background: #1D40AF;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(29,78,216,0.5);
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid var(--border-card);
  width: 100%;
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); }

.btn-green  {
  background: #059669;
  color: white;
  width: 100%;
  box-shadow: 0 4px 14px rgba(5,150,105,0.4);
}
.btn-green:hover { background: #047857; transform: translateY(-1px); }

.btn-purple {
  background: #7C3AED;
  color: white;
  width: 100%;
  box-shadow: 0 4px 14px rgba(124,58,237,0.4);
}
.btn-purple:hover { background: #6D28D9; transform: translateY(-1px); }

.btn-sm { padding: 10px 20px; font-size: 13px; border-radius: 8px; }

.btn-ghost-sm {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost-sm:hover { background: rgba(255,255,255,0.22); }

/* ── Forms ──────────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.form-group input, .form-group select {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid #D1D8F0;
  border-radius: var(--radius-sm);
  color: var(--card-text);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder { color: #9CA8CC; }
.form-group input:focus, .form-group select:focus { border-color: var(--blue-btn); }
.form-group select option { background: white; color: var(--card-text); }
.form-error { font-size: 12px; color: #EF4444; margin-top: 6px; display: none; font-weight: 600; }
.form-error.visible { display: block; }

/* ── Modal ──────────────────────────────────────────────────────────────────── */
#modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,20,80,0.7);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
#modal-overlay.hidden { display: none; }

#modal-box {
  background: var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
  width: 100%;
  max-width: 560px;
  padding: 28px 24px 44px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.25s ease;
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

#modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: var(--off-white);
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
#modal-close:hover { background: #E0E7FF; color: var(--card-text); }

.modal-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--card-text);
  margin-bottom: 6px;
}
.modal-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.modal-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: #9CA3AF;
  font-size: 12px;
  font-weight: 600;
}
.modal-divider::before, .modal-divider::after {
  content: ''; flex: 1; height: 1px; background: #E5E7EB;
}

/* White modal buttons */
#modal-box .btn-primary  { background: var(--blue-btn); }
#modal-box .btn-secondary { background: var(--off-white); color: var(--card-text); border-color: #D1D8F0; }
#modal-box .btn-secondary:hover { background: #E0E7FF; }

/* ── Toast ──────────────────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-dark);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 22px;
  z-index: 300;
  box-shadow: var(--shadow);
  white-space: nowrap;
  animation: fadeInUp 0.3s ease;
}
.toast.hidden { display: none; }
.toast.success { border-color: rgba(16,185,129,0.6); background: #065F46; }
.toast.error   { border-color: rgba(239,68,68,0.6);  background: #7F1D1D; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Page Header ────────────────────────────────────────────────────────────── */
.page-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 20px 0;
}
.back-btn {
  background: rgba(255,255,255,0.12);
  border: 1px solid var(--border-card);
  color: white;
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.2s;
}
.back-btn:hover { background: rgba(255,255,255,0.2); }
.page-header h2 { font-size: 20px; font-weight: 900; color: var(--white); }

/* ── Info Banner ────────────────────────────────────────────────────────────── */
.info-banner {
  margin: 16px 20px 0;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 500;
}
.info-banner.blue   { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--white); }
.info-banner.green  { background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3); color: #6EE7B7; }
.info-banner.amber  { background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.3); color: #FCD34D; }
.info-banner.purple { background: rgba(139,92,246,0.15); border: 1px solid rgba(139,92,246,0.3); color: #C4B5FD; }
.info-banner strong { color: var(--white); }

/* ── Chat Tabs ──────────────────────────────────────────────────────────────── */
.chat-tabs {
  display: flex;
  gap: 8px;
  padding: 16px 20px 0;
}
.chat-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-card);
  background: rgba(255,255,255,0.07);
  color: var(--text-light);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.chat-tab.active {
  background: var(--white);
  color: var(--card-text);
  border-color: var(--white);
}
.chat-tab svg { flex-shrink: 0; }

/* ── Chat Panels ────────────────────────────────────────────────────────────── */
.chat-panel { margin-top: 16px; }

.chat-agent-wrap {
  margin: 0 20px;
  height: calc(100vh - 280px);
  min-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.chat-agent-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.chat-escalate-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 20px 0;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-light);
}
.btn-escalate {
  background: var(--white);
  color: var(--card-text);
  border: none;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-escalate:hover { background: var(--off-white); }

/* ── HR Contact Panel ───────────────────────────────────────────────────────── */
.hr-contact-hero {
  text-align: center;
  padding: 24px 20px 20px;
}
.hr-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-bright));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
}
.hr-contact-hero h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}
.hr-contact-hero p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}
.hr-contact-hero strong { color: var(--white); }

.hr-options {
  padding: 0 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hr-option-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: all 0.2s;
}
.hr-option-card:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(15,36,128,0.2); }

.hr-opt-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hr-opt-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hr-opt-info strong { font-size: 14px; font-weight: 700; color: var(--card-text); }
.hr-opt-info span   { font-size: 12px; color: var(--text-muted); }
.hr-opt-arrow { font-size: 22px; color: var(--text-muted); }

/* ── Apply Screen ───────────────────────────────────────────────────────────── */
.apply-header {
  background: var(--blue-dark);
  padding: 16px 20px 18px;
  border-bottom: 1px solid var(--border-card);
}
.apply-header-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2px;
}
.apply-header h2 {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.apply-header .subtitle {
  font-size: 12px;
  color: var(--text-light);
  margin-left: 50px;
}

.apply-body {
  padding: 16px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.apply-info-bar {
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.apply-info-bar span { font-size: 18px; flex-shrink: 0; }

/* Form section card */
.form-section {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.form-section-head {
  padding: 14px 18px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #EEF2FF;
}
.form-section-head .section-bar {
  width: 4px;
  height: 18px;
  background: var(--blue-btn);
  border-radius: 2px;
  flex-shrink: 0;
}
.form-section-head h3 {
  font-size: 11px;
  font-weight: 800;
  color: var(--blue-btn);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-section-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* White form fields (on white card) */
.form-section .form-group label {
  color: #6B7BA4;
}
.form-section .form-group input,
.form-section .form-group select {
  background: #F8FAFF;
  border: 1.5px solid #D1D8F0;
  color: var(--card-text);
}
.form-section .form-group input:focus,
.form-section .form-group select:focus {
  border-color: var(--blue-btn);
  background: #fff;
}
.form-section .form-group input::placeholder { color: #B0BCDA; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Campaign card selector */
.campaign-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.campaign-sel-card {
  border: 2px solid #E5EBF8;
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  background: #F8FAFF;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.campaign-sel-card:hover { border-color: var(--blue-btn); background: #EEF4FF; }
.campaign-sel-card.selected {
  border-color: var(--blue-btn);
  background: #EEF4FF;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.campaign-sel-card .c-icon { font-size: 22px; }
.campaign-sel-card .c-name { font-size: 14px; font-weight: 700; color: var(--card-text); }
.campaign-sel-card .c-role { font-size: 11px; color: var(--text-muted); }

/* Radio group */
.radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.radio-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 9px 14px;
  border: 1.5px solid #D1D8F0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--card-text);
  background: #F8FAFF;
  transition: all 0.2s;
  user-select: none;
}
.radio-opt input { display: none; }
.radio-opt.checked { border-color: var(--blue-btn); background: #EEF4FF; color: var(--blue-btn); }
.radio-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid #D1D8F0;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.radio-opt.checked .radio-dot {
  border-color: var(--blue-btn);
  background: var(--blue-btn);
}
.radio-opt.checked .radio-dot::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: white;
}

/* Shift selector */
.shift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.shift-card {
  border: 1.5px solid #D1D8F0;
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  background: #F8FAFF;
  transition: all 0.2s;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--card-text);
}
.shift-card:hover { border-color: var(--blue-btn); background: #EEF4FF; }
.shift-card.selected { border-color: var(--blue-btn); background: #EEF4FF; color: var(--blue-btn); box-shadow: 0 0 0 2px rgba(37,99,235,0.1); }
.shift-card-wide { grid-column: 1 / -1; }
.shift-card .shift-time { font-size: 11px; color: var(--text-muted); margin-top: 2px; font-weight: 500; }
.shift-card.selected .shift-time { color: #6B9EFF; }

/* Submit bar */
.apply-submit-bar {
  padding: 0 20px 16px;
}
.apply-error {
  color: #EF4444;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  padding: 10px 14px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 8px;
  display: none;
}
.apply-error.visible { display: block; }

/* Success screen */
.apply-success {
  text-align: center;
  padding: 48px 24px;
}
.success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(16,185,129,0.15);
  border: 2px solid rgba(16,185,129,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
}
.apply-success h2 { font-size: 22px; font-weight: 900; margin-bottom: 10px; }
.apply-success p  { font-size: 14px; color: var(--text-light); line-height: 1.7; max-width: 300px; margin: 0 auto 28px; }

/* ── Qualifications ─────────────────────────────────────────────────────────── */
.yes-no-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.yes-no-row { display: flex; flex-direction: column; gap: 8px; }
.yes-no-row > label {
  font-size: 11px;
  font-weight: 700;
  color: #6B7BA4;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.yes-no-buttons { display: flex; gap: 10px; }
.yes-no-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 10px 12px;
  border: 1.5px solid #D1D8F0;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--card-text);
  background: #F8FAFF;
  transition: all 0.2s;
  user-select: none;
  letter-spacing: 0.4px;
}
.yes-no-btn:hover { border-color: var(--blue-btn); background: #EEF4FF; }
.yes-no-btn.checked { border-color: var(--blue-btn); background: #EEF4FF; color: var(--blue-btn); }
.yes-no-btn.checked .radio-dot { border-color: var(--blue-btn); background: var(--blue-btn); }
.yes-no-btn.checked .radio-dot::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: white;
}

/* Experience field chips */
.exp-fields-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.exp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 14px;
  border: 1.5px solid #D1D8F0;
  border-radius: 20px;
  background: #F8FAFF;
  font-size: 12px;
  font-weight: 600;
  color: var(--card-text);
  transition: all 0.2s;
  user-select: none;
}
.exp-chip:hover { border-color: var(--blue-btn); background: #EEF4FF; }
.exp-chip.checked { border-color: var(--blue-btn); background: #EEF4FF; color: var(--blue-btn); }
.exp-chip .exp-check {
  width: 16px; height: 16px;
  border-radius: 4px;
  border: 1.5px solid #C5D0EE;
  background: white;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.exp-chip .exp-check svg { display: none; }
.exp-chip.checked .exp-check { background: var(--blue-btn); border-color: var(--blue-btn); }
.exp-chip.checked .exp-check svg { display: block; }

/* Why textarea */
.why-textarea {
  width: 100%;
  background: #F8FAFF;
  border: 1.5px solid #D1D8F0;
  border-radius: var(--radius-sm);
  color: var(--card-text);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}
.why-textarea::placeholder { color: #B0BCDA; }
.why-textarea:focus { border-color: var(--blue-btn); background: #fff; }

/* ── Upload Zones ───────────────────────────────────────────────────────────── */
.upload-zone {
  border: 2px dashed #C5D0EE;
  border-radius: var(--radius-sm);
  background: #F8FAFF;
  padding: 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 100px;
  text-align: center;
  user-select: none;
}
.upload-zone:hover { border-color: var(--blue-btn); background: #EEF4FF; }
.upload-zone.drag-over { border-color: var(--blue-btn); background: #EEF4FF; box-shadow: 0 0 0 3px rgba(37,99,235,0.12); }
.upload-zone.has-file { border-color: #10B981; background: #F0FDF4; border-style: solid; }
.upload-zone.has-file .upload-icon-wrap svg { stroke: #10B981; }

.upload-icon-wrap { pointer-events: none; }
.upload-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  word-break: break-all;
  pointer-events: none;
}
.upload-zone.has-file .upload-text { color: #059669; }

/* ── Equipment Notice ───────────────────────────────────────────────────────── */
.equip-notice {
  background: #FFFBEB;
  border: 1px solid #FCD34D;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #92400E;
  line-height: 1.6;
}

/* ── IC Agreement ───────────────────────────────────────────────────────────── */
.ic-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}
.ic-info-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--blue-btn);
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  padding: 2px 4px;
  letter-spacing: 0.2px;
}
.ic-info-link:hover { text-decoration: underline; }

.ic-info-panel {
  background: #F0F6FF;
  border: 1px solid #BFDBFE;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 12px;
  color: var(--card-text);
  line-height: 1.6;
  margin-bottom: 10px;
}
.ic-info-panel strong { color: var(--blue-btn); display: block; margin-bottom: 6px; font-size: 12px; }
.ic-info-panel ul { margin: 0; padding-left: 18px; }
.ic-info-panel li { margin-bottom: 4px; }
.ic-info-panel li:last-child { margin-bottom: 0; }

.ic-agree-row {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 12px 14px;
  border: 1.5px solid #D1D8F0;
  border-radius: 10px;
  background: #F8FAFF;
  transition: all 0.2s;
  user-select: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--card-text);
  letter-spacing: 0.3px;
}
.ic-agree-row.checked { border-color: var(--blue-btn); background: #EEF4FF; color: var(--blue-btn); }
.ic-agree-row:hover { border-color: var(--blue-btn); background: #EEF4FF; }

.ic-check-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid #C5D0EE;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.ic-check-box.checked { background: var(--blue-btn); border-color: var(--blue-btn); }

/* ── Voice Introduction ─────────────────────────────────────────────────────── */
.voice-intro-notice {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 13px;
  color: #1E40AF;
  line-height: 1.7;
}
.voice-intro-notice strong { color: #1D4ED8; }

.btn-vocaroo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #16A34A;
  color: white;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(22,163,74,0.35);
}
.btn-vocaroo:hover { background: #15803D; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(22,163,74,0.45); }

/* ── QR Box ─────────────────────────────────────────────────────────────────── */
.qr-box {
  width: 180px; height: 180px;
  background: var(--off-white);
  border-radius: var(--radius);
  margin: 20px auto;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 16px;
}

/* ── Utility ────────────────────────────────────────────────────────────────── */
.hidden  { display: none !important; }
.pad     { padding: 20px; }
.pad-x   { padding: 0 20px; }
.mt-16   { margin-top: 16px; }
.mt-12   { margin-top: 12px; }
.mt-8    { margin-top: 8px; }
.text-center { text-align: center; }
.text-gray   { color: var(--text-light); font-size: 13px; }
.divider { height: 1px; background: rgba(255,255,255,0.12); margin: 20px; }

.locked-section {
  text-align: center;
  padding: 40px 24px;
}
.locked-section .lock-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}
.locked-section h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; color: var(--white); }
.locked-section p  { font-size: 13px; color: var(--text-light); line-height: 1.6; max-width: 280px; margin: 0 auto; }
