/* ============================================================================
 *  website.css — HireKey public site
 *  Page-specific CSS moved out of inline <style> blocks.
 *  Linked once from header.php, so it's available on every page that
 *  includes the header (full pages + the partials they pull in).
 *
 *  Blocks below are namespaced (.hk-*), so they don't affect other pages.
 *  NOTE: signup's variable block was changed from  :root { }  to
 *        .hk-signup-section { }  so it can't override site-wide fonts/colours.
 * ========================================================================== */

/* ===========================================================================
 *  HIRING-EMPLOYER widget  (partial: hiring-employer.php)
 * ========================================================================= */

/* ════════════════════════════════════════════════════════════════
   PERSONAL EMAIL MODAL
   ════════════════════════════════════════════════════════════════ */
.hk-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 30, 60, .55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.hk-modal-overlay.hk-open {
  display: flex;
  animation: hkFadeIn .2s ease;
}

@keyframes hkFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hk-modal {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 460px;
  padding: 28px 28px 24px;
  animation: hkSlideUp .22s ease;
  position: relative;
}

@keyframes hkSlideUp {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* Warning icon */
.hk-modal-icon {
  width: 52px;
  height: 52px;
  background: rgba(234, 179, 8, .12);
  border: 1.5px solid rgba(234, 179, 8, .35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ca8a04;
  margin: 0 auto 14px;
}

.hk-modal-title {
  font-family: var(--font-head, 'Sora', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary, #0f3460);
  margin: 0 0 8px;
  text-align: center;
}

.hk-modal-intro {
  font-size: .83rem;
  color: var(--muted, #5a6a82);
  text-align: center;
  margin: 0 0 18px;
  line-height: 1.55;
}

/* Paths */
.hk-modal-path {
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 4px;
}

.hk-path-jobseeker {
  background: rgba(232, 88, 12, .05);
  border: 1.5px solid rgba(232, 88, 12, .22);
}

.hk-path-employer {
  background: rgba(15, 52, 96, .04);
  border: 1.5px solid rgba(15, 52, 96, .16);
}

.hk-path-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.hk-path-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  flex-shrink: 0;
}

.hk-path-jobseeker .hk-path-icon {
  background: rgba(232, 88, 12, .12);
  color: var(--accent, #e8580c);
}

.hk-path-employer .hk-path-icon {
  background: rgba(15, 52, 96, .10);
  color: var(--primary, #0f3460);
}

.hk-path-label {
  font-family: var(--font-head, 'Sora', sans-serif);
  font-size: .85rem;
  font-weight: 700;
  color: var(--text, #1c2b42);
}

.hk-path-desc {
  font-size: .77rem;
  color: var(--muted, #5a6a82);
  margin: 0 0 12px;
  line-height: 1.5;
  padding-left: 36px;
}

.hk-path-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 8px;
  font-family: var(--font-head, 'Sora', sans-serif);
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .15s, transform .12s;
  border: none;
  margin-left: 36px;
}

.hk-btn-jobseeker {
  background: var(--accent, #e8580c);
  color: #fff;
}

.hk-btn-employer {
  background: var(--primary, #0f3460);
  color: #fff;
}

.hk-path-btn:hover {
  opacity: .88;
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

/* OR divider */
.hk-modal-or {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  color: var(--muted, #5a6a82);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hk-modal-or::before,
.hk-modal-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border, #d6e0ef);
}


/* ════════════════════════════════════════════════════════════════
   FORM STYLES (unchanged from previous version)
   ════════════════════════════════════════════════════════════════ */
.hk-hire-wrap {
  width: 100%;
  font-family: var(--font-body, 'DM Sans', sans-serif);
}

/* Job Seeker bar */
.hk-js-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid rgba(232, 88, 12, .30);
  border-radius: 9px;
  padding: 8px 14px;
  margin-bottom: 10px;
  box-shadow: 0 1px 6px rgba(232, 88, 12, .08);
}
.hk-js-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  font-weight: 600;
  color: var(--text, #1c2b42);
}
.hk-js-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--accent, #e8580c);
  color: #fff;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: .73rem;
  font-weight: 700;
  font-family: var(--font-head, 'Sora', sans-serif);
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s, transform .12s;
}
.hk-js-btn:hover { background: #c94500; color: #fff; transform: translateX(2px); text-decoration: none; }

/* Card */
.hk-hire-card {
  background: #fff;
  border: 1.5px solid var(--border, #d6e0ef);
  border-radius: var(--radius-lg, 20px);
  padding: 24px 24px 20px;
  box-shadow: var(--shadow-md, 0 6px 28px rgba(15, 52, 96, .13));
}

/* Header */
.hk-hire-header { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1.5px solid var(--border, #d6e0ef); }
.hk-hire-icon-wrap { width: 40px; height: 40px; min-width: 40px; background: linear-gradient(135deg, var(--primary, #0f3460) 0%, #1a4f8a 100%); border-radius: 11px; display: flex; align-items: center; justify-content: center; color: #fff; margin-top: 2px; }
.hk-hire-header-text { flex: 1; min-width: 0; }
.hk-hire-title { font-family: var(--font-head, 'Sora', sans-serif); font-size: .98rem; font-weight: 700; color: var(--primary, #0f3460); margin: 0 0 4px; line-height: 1.2; }
.hk-hire-sub { font-size: .74rem; color: var(--muted, #5a6a82); margin: 0 0 7px; line-height: 1.5; font-style: italic; }
.hk-employer-badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(15,52,96,.07); border: 1px solid rgba(15,52,96,.14); border-radius: 50px; padding: 3px 10px; font-size: .67rem; font-weight: 700; font-family: var(--font-head,'Sora',sans-serif); color: var(--primary,#0f3460); white-space: nowrap; }
.hk-notice-dot { width: 6px; height: 6px; border-radius: 50%; background: #16a34a; flex-shrink: 0; animation: hkPulse 1.8s ease-in-out infinite; }
@keyframes hkPulse { 0%,100% { box-shadow: 0 0 0 2px rgba(22,163,74,.2); } 50% { box-shadow: 0 0 0 5px rgba(22,163,74,.05); } }

/* 2-col rows */
.hk-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hk-field-wrap { margin-bottom: 14px; position: relative; }
.hk-label { display: block; font-family: var(--font-head,'Sora',sans-serif); font-size: .73rem; font-weight: 700; color: var(--text,#1c2b42); margin-bottom: 5px; letter-spacing: .01em; }
.hk-req { color: var(--accent,#e8580c); margin-left: 1px; }
.hk-input-wrap { position: relative; }
.hk-input-icon { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); color: var(--muted,#5a6a82); pointer-events: none; transition: color .2s; }
.hk-input { width: 100%; padding: 11px 12px 11px 34px; border: 1.5px solid var(--border,#d6e0ef); border-radius: 8px; font-size: .85rem; font-family: var(--font-body,'DM Sans',sans-serif); color: var(--text,#1c2b42); background: var(--bg,#f4f7fb); outline: none; box-sizing: border-box; transition: border-color .2s, box-shadow .2s, background .2s; }
.hk-input::placeholder { color: #9aa5b8; font-size: .81rem; }
.hk-input:focus { border-color: var(--primary,#0f3460); background: #fff; box-shadow: 0 0 0 3px rgba(15,52,96,.08); }
.hk-input-wrap:focus-within .hk-input-icon { color: var(--primary,#0f3460); }
.hk-input.hk-error { border-color: #dc2626; background: #fff8f8; box-shadow: 0 0 0 3px rgba(220,38,38,.06); }
.hk-field-err { display: none; font-size: .69rem; color: #dc2626; margin-top: 4px; padding-left: 2px; font-family: var(--font-head,'Sora',sans-serif); }
.hk-field-err.hk-visible { display: block; }

/* Bottom row: captcha + submit */
.hk-bottom-row { display: flex; align-items: center; gap: 10px; margin-top: 4px; border-top: 1px solid var(--border,#d6e0ef); padding-top: 14px; }
.hk-captcha-col { flex: 0 0 auto; width: 207px; height: 53px; overflow: hidden; }
.hk-captcha-col .g-recaptcha { transform: scale(0.68); transform-origin: left center; }
.hk-submit-col { flex: 1; display: flex; align-items: stretch; }
.hk-submit-btn { width: 100% !important; height: 53px; display: inline-flex !important; align-items: center !important; justify-content: center !important; gap: 7px; font-size: .88rem !important; padding: 0 14px !important; border-radius: 9px; white-space: nowrap; }

/* Trust strip */
.hk-trust-strip { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 5px 10px; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border,#d6e0ef); font-size: .70rem; color: var(--muted,#5a6a82); }
.hk-trust-item { display: inline-flex; align-items: center; gap: 3px; }
.hk-trust-dot  { color: var(--border,#d6e0ef); font-weight: 700; }

/* Mobile */
@media (max-width: 560px) {
  .hk-row { grid-template-columns: 1fr; gap: 0; }
  .hk-hire-card { padding: 18px 15px 16px; }
  .hk-bottom-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hk-captcha-col { width: 213px; height: 55px; }
  .hk-captcha-col .g-recaptcha { transform: scale(0.70); }
  .hk-submit-col { width: 100%; }
  .hk-submit-btn { height: 46px; }
  .hk-employer-badge { font-size: .63rem; white-space: normal; }
  .hk-trust-dot { display: none; }
  .hk-trust-strip { flex-direction: column; gap: 4px; }
  .hk-js-bar { flex-direction: column; align-items: flex-start; }
  .hk-js-btn { width: 100%; justify-content: center; }
  .hk-modal { padding: 22px 18px 20px; }
  .hk-path-desc, .hk-path-btn { margin-left: 0; padding-left: 0; }
}

@media (max-width: 380px) {
  .hk-captcha-col { width: 195px; height: 50px; }
  .hk-captcha-col .g-recaptcha { transform: scale(0.64); }
}
/* ── Form divider above submit ── */
.hk-form-divider {
  height: 1px;
  background: var(--border, #d6e0ef);
  margin: 4px 0 14px;
}

/* ── Submit overrides — keep original .btn.btn-primary.mg classes,
      just ensure it's truly full-width here ── */
.hk-submit-full {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px;
  font-size: .95rem !important;
  padding: 13px 20px !important;
}

/* ===========================================================================
 *  EMPLOYER SIGN-UP wizard  (page: signup.php)
 *  ":root" -> ".hk-signup-section" to keep these variables scoped to the form.
 * ========================================================================= */
/* ── Root Variables ── */
.hk-signup-section {
  --hk-blue:       #0d6efd;
  --hk-blue-dark:  #0a58ca;
  --hk-blue-light: #e8f0ff;
  --hk-accent:     #f0a500;
  --hk-text:       #1a2236;
  --hk-muted:      #6b7a99;
  --hk-border:     #dde3f0;
  --hk-bg:         #f5f7fc;
  --hk-white:      #ffffff;
  --hk-success:    #1aab5f;
  --hk-error:      #e53935;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --shadow-sm:     0 2px 8px rgba(13,110,253,.08);
  --shadow-md:     0 6px 24px rgba(13,110,253,.13);
  --shadow-lg:     0 12px 40px rgba(13,110,253,.16);
  --font-head:     'Plus Jakarta Sans', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --transition:    all .25s cubic-bezier(.4,0,.2,1);
}

/* ── Section Wrapper ── */
.hk-signup-section {
  background: var(--hk-bg);
  padding: 60px 0 80px;
  font-family: var(--font-body);
  color: var(--hk-text);
}

/* ── Section Header ── */
.hk-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.hk-section-header .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--hk-blue-light);
  color: var(--hk-blue);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.hk-section-header h1 {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--hk-text);
  margin-bottom: 14px;
}
.hk-section-header h1 span { color: var(--hk-blue); }
.hk-section-header p {
  font-size: 16px;
  color: var(--hk-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Card Shell ── */
.hk-form-card {
  background: var(--hk-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}

/* ── Step Progress Bar ── */
.hk-step-bar {
  background: linear-gradient(135deg, #0d6efd 0%, #1a85ff 100%);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.hk-step-bar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,.15);
}
.hk-step-track {
  position: absolute;
  top: 50%; left: 36px; right: 36px;
  height: 2px;
  background: rgba(255,255,255,.25);
  transform: translateY(-50%);
  z-index: 0;
}
.hk-step-progress-fill {
  height: 100%;
  background: rgba(255,255,255,.8);
  transition: width .4s ease;
  width: 0%;
}
.hk-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  cursor: pointer;
}
.hk-step-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  border: 2px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.hk-step-item.active .hk-step-circle,
.hk-step-item.done .hk-step-circle {
  background: var(--hk-white);
  border-color: var(--hk-white);
  color: var(--hk-blue);
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.hk-step-item.done .hk-step-circle::before {
  content: '✓';
  font-size: 18px;
}
.hk-step-item.done .hk-step-num { display: none; }
.hk-step-label {
  text-align: center;
  color: rgba(255,255,255,.65);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
  transition: var(--transition);
  white-space: nowrap;
}
.hk-step-title {
  color: rgba(255,255,255,.5);
  font-size: 11px;
  font-weight: 500;
}
.hk-step-item.active .hk-step-label { color: #fff; }
.hk-step-item.active .hk-step-title { color: rgba(255,255,255,.85); }

/* ── Form Body ── */
.hk-form-body {
  padding: 40px 40px 32px;
}
@media(max-width:640px){ .hk-form-body{ padding:24px 18px 20px; } }

.hk-pane { display: none; }
.hk-pane.active { display: block; }

/* ── Pane Header ── */
.hk-pane-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hk-pane-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--hk-blue-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hk-pane-icon svg { width: 22px; height: 22px; color: var(--hk-blue); }
.hk-pane-header h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 800;
  color: var(--hk-text);
  margin: 0;
}
.hk-pane-header p {
  font-size: 13px;
  color: var(--hk-muted);
  margin: 2px 0 0;
}

/* ── Sub Section Label ── */
.hk-sub-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--hk-blue);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 24px 0 16px;
}
.hk-sub-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--hk-border);
}
.hk-sub-label.optional { color: var(--hk-muted); }
.hk-sub-label.optional::after { background: var(--hk-border); }
.hk-sub-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  background: #e8f0ff;
  color: var(--hk-blue);
}
.hk-sub-badge.opt {
  background: #f3f4f6;
  color: var(--hk-muted);
}

/* ── Form Controls ── */
.hk-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.hk-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--hk-text);
}
.hk-field label .req { color: var(--hk-blue); margin-left: 2px; }

.hk-control {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid var(--hk-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--hk-text);
  background: var(--hk-white);
  transition: var(--transition);
  outline: none;
}
.hk-control:focus {
  border-color: var(--hk-blue);
  box-shadow: 0 0 0 3px rgba(13,110,253,.12);
}
.hk-control::placeholder { color: #b0b8cc; }
.hk-control.is-invalid { border-color: var(--hk-error); }
select.hk-control {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7a99' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
textarea.hk-control {
  height: auto;
  padding: 12px 16px;
  resize: vertical;
}
.hk-error-msg {
  font-size: 12px;
  color: var(--hk-error);
  display: none;
}
.hk-control.is-invalid + .hk-error-msg,
.hk-field.show-error .hk-error-msg { display: block; }

/* ── Plan Cards ── */
.hk-plan-group-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--hk-text);
  margin-bottom: 4px;
}
.hk-plan-group-sub {
  font-size: 13px;
  color: var(--hk-muted);
  margin-bottom: 16px;
}

.hk-plan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.hk-plan-card {
  position: relative;
  border: 2px solid var(--hk-border);
  border-radius: var(--radius-md);
  padding: 20px;
  cursor: pointer;
  transition: var(--transition);
  background: var(--hk-white);
}
.hk-plan-card:hover {
  border-color: var(--hk-blue);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.hk-plan-card.selected {
  border-color: var(--hk-blue);
  background: var(--hk-blue-light);
  box-shadow: var(--shadow-md);
}
.hk-plan-card .plan-check {
  position: absolute;
  top: 14px; right: 14px;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--hk-border);
  background: var(--hk-white);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  font-size: 12px;
  color: transparent;
}
.hk-plan-card.selected .plan-check {
  background: var(--hk-blue);
  border-color: var(--hk-blue);
  color: #fff;
}
.hk-plan-card input[type="radio"] { display: none; }

.hk-plan-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  display: inline-block;
}
.badge-basic   { background: #e8f0ff; color: var(--hk-blue); }
.badge-std     { background: #fff3e0; color: #e67e00; }
.badge-premium { background: #fce4ec; color: #c2185b; }

.hk-plan-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--hk-text);
  margin-bottom: 12px;
  padding-right: 28px;
}
.hk-plan-features {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.hk-plan-features li {
  font-size: 12.5px;
  color: var(--hk-muted);
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.hk-plan-features li::before {
  content: '✓';
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--hk-blue-light);
  color: var(--hk-blue);
  font-size: 10px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.hk-plan-card.selected .hk-plan-features li::before {
  background: var(--hk-blue);
  color: #fff;
}

/* Single plan card variant */
.hk-plan-single .hk-plan-card {
  max-width: 340px;
}

/* ── Nav Buttons ── */
.hk-form-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 40px 32px;
  border-top: 1px solid var(--hk-border);
}
@media(max-width:640px){ .hk-form-nav{ padding:16px 18px 24px; } }

.hk-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .02em;
}
.hk-btn-primary {
  background: var(--hk-blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(13,110,253,.3);
}
.hk-btn-primary:hover {
  background: var(--hk-blue-dark);
  box-shadow: 0 6px 20px rgba(13,110,253,.4);
  transform: translateY(-1px);
}
.hk-btn-ghost {
  background: var(--hk-bg);
  color: var(--hk-muted);
  border: 1.5px solid var(--hk-border);
}
.hk-btn-ghost:hover {
  background: var(--hk-border);
  color: var(--hk-text);
}
.hk-btn-success {
  background: var(--hk-success);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,171,95,.3);
}
.hk-btn-success:hover {
  background: #148f50;
  transform: translateY(-1px);
}
.hk-btn svg { width: 18px; height: 18px; }
.hk-btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

/* ── Disclaimer ── */
.hk-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--hk-bg);
  border: 1px solid var(--hk-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
}
.hk-disclaimer input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--hk-blue);
  flex-shrink: 0;
  cursor: pointer;
}
.hk-disclaimer label {
  font-size: 13px;
  color: var(--hk-muted);
  line-height: 1.6;
  cursor: pointer;
}

/* ── reCAPTCHA wrapper ── */
.hk-recaptcha-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 4px;
}

/* ── Step Progress dots (mobile) ── */
@media(max-width:600px){
  .hk-step-label { font-size: 10px; }
  .hk-step-title { display: none; }
  .hk-step-circle { width: 36px; height: 36px; font-size: 14px; }
  .hk-step-bar { padding: 18px 16px; }
  .hk-step-track { left: 16px; right: 16px; }
}

/* ── Divider ── */
.hk-divider {
  border: none;
  border-top: 1px dashed var(--hk-border);
  margin: 28px 0;
}

/* Prevent plan section from showing error border */
.plan-error-msg {
  font-size: 12px;
  color: var(--hk-error);
  display: none;
  margin-top: -12px;
  margin-bottom: 12px;
}
.plan-error-msg.show { display: block; }
