/* ═══════════════════════════════════════════════════════════
   BAPUTALK · JOB DETAIL PAGE · jobmain.css
   Luxury-refined + Trust-forward Medical
   Fonts: Fraunces (display) + Plus Jakarta Sans (body)
═══════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  /* Brand */
  --saf:        #F7600B;
  --saf-dk:     #D44E06;
  --saf-lt:     #FF8A52;
  --gold:       #E8A020;
  --gold-lt:    #FFCC66;
  --gold-dk:    #B87A12;
  --teal:       #0DB5A0;
  --teal-lt:    #52E0D0;

  /* Ink scale */
  --ink-950:    #04090F;
  --ink-900:    #06101E;
  --ink-800:    #0D1D35;
  --ink-700:    #1A2B4A;
  --ink-600:    #2A3F60;
  --ink-500:    #3D5275;
  --ink-400:    #5A6E8A;
  --ink-300:    #8395AE;
  --ink-200:    #B8C6D6;
  --ink-100:    #E4EAEF;

  /* Surface */
  --bg:         #F1F5FA;
  --bg-2:       #E8EDF5;
  --white:      #FFFFFF;

  /* Status */
  --ok:         #00C28A;
  --ok-lt:      #52E8C8;
  --warn:       #F59E0B;
  --err:        #EF3E5E;
  --err-lt:     #FF8FA3;

  /* Typography */
  --ff-head:    'Fraunces', Georgia, serif;
  --ff-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  /* Shadows */
  --sh-xs:  0 1px 3px rgba(6,16,30,.05), 0 1px 2px rgba(6,16,30,.06);
  --sh-sm:  0 2px 8px rgba(6,16,30,.06), 0 4px 16px rgba(6,16,30,.07);
  --sh-md:  0 6px 20px rgba(6,16,30,.09), 0 10px 32px rgba(6,16,30,.10);
  --sh-lg:  0 16px 40px rgba(6,16,30,.13), 0 24px 56px rgba(6,16,30,.15);
  --sh-xl:  0 28px 60px rgba(6,16,30,.18), 0 40px 80px rgba(6,16,30,.20);

  /* Radius */
  --r4:  4px;
  --r6:  6px;
  --r8:  8px;
  --r10: 10px;
  --r12: 12px;
  --r14: 14px;
  --r16: 16px;
  --r20: 20px;
  --r99: 999px;

  /* Card border */
  --card-br: 1px solid var(--ink-100);
}

/* ── BASE ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--ink-700);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════ */
.jd-hero {
  background: var(--ink-950);
  position: relative;
  overflow: hidden;
}

.jd-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 70% at 95% 5%,  rgba(247,96,11,.18) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 5%  95%,  rgba(13,181,160,.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 50% 110%, rgba(232,160,32,.07) 0%, transparent 50%),
    repeating-linear-gradient(
      -45deg,
      transparent, transparent 38px,
      rgba(255,255,255,.012) 38px, rgba(255,255,255,.012) 39px
    );
}

.jd-hero-body {
  position: relative;
  z-index: 1;
  padding: 2.75rem 0 1.85rem;
}

/* Breadcrumb */
.jd-breadcrumb {
  display: flex;
  align-items: center;
  gap: .38rem;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.38);
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}
.jd-breadcrumb a {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s;
}
.jd-breadcrumb a:hover { color: var(--gold); }
.jd-breadcrumb span { color: rgba(255,255,255,.22); }

/* Badge row */
.jd-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-bottom: .9rem;
}

/* Live ring */
.jd-live-ring {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--r99);
  padding: .26rem .78rem;
  font-size: .73rem;
  font-weight: 700;
  color: rgba(255,255,255,.65);
}
.jd-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  animation: livePulse 1.7s ease infinite;
  flex-shrink: 0;
  will-change: transform, opacity;
}
@keyframes livePulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.45); opacity: .55; }
}
.jd-live-count { color: var(--ok-lt); font-weight: 800; }

/* Fire badge */
.jd-fire-badge {
  display: inline-flex;
  align-items: center;
  gap: .33rem;
  background: rgba(247,96,11,.16);
  border: 1px solid rgba(247,96,11,.38);
  border-radius: var(--r99);
  padding: .25rem .7rem;
  font-size: .72rem;
  color: var(--saf-lt);
  font-weight: 700;
}
.fire-ico {
  width: 13px;
  height: 13px;
  fill: var(--saf-lt);
  animation: fireFlicker 1.4s ease-in-out infinite alternate;
  will-change: transform, opacity;
}
@keyframes fireFlicker {
  0%,100% { transform: scale(1) rotate(-3deg); opacity: .9; }
  50%      { transform: scale(1.15) rotate(3deg); opacity: 1; }
}

/* Verified platform badge */
.jd-platform-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(232,160,32,.12);
  border: 1px solid rgba(232,160,32,.3);
  border-radius: var(--r99);
  padding: .25rem .7rem;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold-lt);
}

/* Title */
.jd-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .9rem;
  margin-bottom: .95rem;
}
.jd-title {
  font-family: var(--ff-head);
  font-weight: 900;
  color: #fff;
  font-size: clamp(1.5rem, 4.2vw, 2.65rem);
  line-height: 1.11;
  letter-spacing: -.025em;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
}

/* Company line */
.jd-company-line {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.jd-company-logo {
  width: 36px;
  height: 36px;
  border-radius: var(--r8);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.jd-company-name {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,.88);
}
.jd-company-verified {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  font-size: .68rem;
  font-weight: 700;
  color: var(--ok-lt);
  background: rgba(0,194,138,.12);
  border: 1px solid rgba(0,194,138,.25);
  border-radius: var(--r99);
  padding: .15rem .48rem;
}

/* Meta chips */
.jd-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .44rem;
  margin-bottom: 1.1rem;
}
.jd-chip {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  border-radius: var(--r99);
  padding: .28rem .72rem;
  font-size: .73rem;
  font-weight: 600;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.78);
}
.jd-chip svg { opacity: .72; flex-shrink: 0; }
.jd-chip-saf  { background: rgba(247,96,11,.17); border-color: rgba(247,96,11,.38); color: var(--saf-lt); }
.jd-chip-teal { background: rgba(13,181,160,.13); border-color: rgba(13,181,160,.32); color: var(--teal-lt); }
.jd-chip-gold { background: rgba(232,160,32,.14); border-color: rgba(232,160,32,.32); color: var(--gold-lt); }

/* Stats strip */
.jd-stats-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.jd-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r6);
  padding: .32rem .72rem;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
}
.jd-stat-pill strong { color: #fff; font-weight: 800; }

/* Edit button */
.jd-edit-btn {
  background: rgba(255,255,255,.09);
  border: 1.5px solid rgba(255,255,255,.17);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .25s;
  flex-shrink: 0;
  color: rgba(255,255,255,.7);
  text-decoration: none;
}
.jd-edit-btn:hover {
  background: rgba(255,255,255,.18);
  color: #fff;
  border-color: rgba(255,255,255,.35);
}

/* Ticker */
.jd-ticker-wrap {
  background: rgba(255,255,255,.035);
  border-top: 1px solid rgba(255,255,255,.065);
  padding: .52rem 0;
  overflow: hidden;
}
.jd-ticker {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: tickerRoll 24s linear infinite;
}
@keyframes tickerRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.jd-tick-item {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.38);
}
.jd-tick-item strong { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   JOB EXPIRY BANNER
═══════════════════════════════════════════════════════════ */
.jd-expiry-banner {
  background: var(--white);
  border-left: 4px solid var(--warn);
  border-radius: var(--r12);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
  position: relative;
}
.jd-expiry-banner.expiry-critical {
  border-left-color: var(--err);
}
.jd-expiry-banner.expiry-ok {
  border-left-color: var(--ok);
}

.jd-expiry-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .95rem 1.25rem;
  border-bottom: 1px solid var(--ink-100);
  flex-wrap: wrap;
}
.jd-expiry-left {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex: 1;
  min-width: 200px;
}
.jd-expiry-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  background: rgba(245,158,11,.12);
}
.jd-expiry-banner.expiry-critical .jd-expiry-icon { background: rgba(239,62,94,.12); }
.jd-expiry-banner.expiry-ok .jd-expiry-icon { background: rgba(0,194,138,.12); }

.jd-expiry-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: .1rem;
}
.jd-expiry-msg {
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink-800);
}
.jd-expiry-msg.critical { color: var(--err); }

.jd-expiry-timer {
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-shrink: 0;
}
.jd-expiry-unit {
  background: var(--ink-900);
  color: var(--gold);
  font-family: var(--ff-head);
  font-weight: 900;
  font-size: 1.15rem;
  line-height: 1;
  padding: .42rem .58rem;
  border-radius: var(--r6);
  min-width: 44px;
  text-align: center;
  position: relative;
}
.jd-expiry-unit span {
  display: block;
  font-family: var(--ff-body);
  font-size: .52rem;
  font-weight: 700;
  color: rgba(255,255,255,.72);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: .18rem;
}
.jd-expiry-colon {
  color: var(--ink-400);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: .75rem;
}

/* Expiry progress bar */
.jd-expiry-progress {
  padding: .75rem 1.25rem;
  background: rgba(245,158,11,.03);
}
.jd-expiry-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: .7rem;
  font-weight: 600;
  color: var(--ink-500);
  margin-bottom: .42rem;
}
.jd-expiry-track {
  height: 6px;
  border-radius: var(--r99);
  background: var(--ink-100);
  overflow: hidden;
}
.jd-expiry-fill {
  width: 100%;
  height: 100%;
  border-radius: var(--r99);
  background: linear-gradient(90deg, var(--ok), var(--warn));
  transform-origin: left center;
  transition: transform .8s ease;
  position: relative;
  will-change: transform;
}
.jd-expiry-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 12px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4));
}
.jd-expiry-banner.expiry-critical .jd-expiry-fill {
  background: linear-gradient(90deg, var(--err), #FF6B6B);
}

/* Why coins explainer inside expiry */
.jd-lock-explainer {
  padding: .88rem 1.25rem 1rem;
  border-top: 1px solid var(--ink-100);
}
.jd-lock-explainer-title {
  font-size: .78rem;
  font-weight: 800;
  color: var(--ink-700);
  margin-bottom: .55rem;
  display: flex;
  align-items: center;
  gap: .38rem;
}
.jd-lock-explainer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: .6rem;
}
.jd-lock-reason {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .76rem;
  color: var(--ink-500);
  line-height: 1.45;
}
.jd-lock-reason-ico {
  font-size: .95rem;
  flex-shrink: 0;
  margin-top: .02rem;
}

/* Govt job free notice */
.jd-govt-free {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  background: rgba(0,194,138,.09);
  border: 1px solid rgba(0,194,138,.22);
  border-radius: var(--r6);
  padding: .42rem .88rem;
  font-size: .76rem;
  font-weight: 700;
  color: #00A87A;
  margin: .6rem 0 0;
}

/* ═══════════════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════════════ */
.jd-layout {
  padding: 2rem 0 5.5rem;
}
@media (min-width: 992px) {
  .jd-layout { padding: 2.5rem 0 4.5rem; }
  .jd-aside-sticky { position: sticky; top: 1.2rem; }
}

/* ═══════════════════════════════════════════════════════════
   CARD BASE
═══════════════════════════════════════════════════════════ */
.jd-card {
  background: var(--white);
  border: var(--card-br);
  border-radius: var(--r16);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.jd-card-hd {
  padding: 1rem 1.35rem;
  border-bottom: var(--card-br);
  display: flex;
  align-items: center;
  gap: .62rem;
  background: linear-gradient(180deg, rgba(241,245,250,.6) 0%, var(--white) 100%);
}
.jd-card-hd-ico {
  width: 34px;
  height: 34px;
  border-radius: var(--r8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.jd-card-hd h2,
.jd-card-hd h3 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink-900);
  margin: 0;
  line-height: 1.2;
}
.jd-card-hd small {
  color: var(--ink-300);
  font-size: .7rem;
  display: block;
  margin-top: .06rem;
}

/* ═══════════════════════════════════════════════════════════
   PASS CARD
═══════════════════════════════════════════════════════════ */
.pass-card {
  border-radius: var(--r16);
  overflow: hidden;
  margin-bottom: 1.25rem;
  position: relative;
  background: var(--ink-900);
  border: 2px solid rgba(232,160,32,.45);
  box-shadow: 0 0 0 1px rgba(232,160,32,.08), var(--sh-lg);
}
.pass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 55% at 92% 0%,  rgba(232,160,32,.22) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 5% 100%,  rgba(247,96,11,.14) 0%, transparent 52%),
    repeating-linear-gradient(-45deg, transparent, transparent 36px, rgba(255,255,255,.014) 36px, rgba(255,255,255,.014) 37px);
}
.pass-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  background: var(--gold);
  color: var(--ink-900);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .8px;
  padding: .26rem .72rem .26rem 1.2rem;
  clip-path: polygon(14px 0%, 100% 0%, 100% 100%, 0% 100%);
}
.pass-inner {
  position: relative;
  z-index: 1;
  padding: 1.65rem 1.45rem;
  text-align: center;
}

.pass-icon-ring {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--saf));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  animation: passGlow 2.8s ease infinite;
  box-shadow: 0 4px 20px rgba(232,160,32,.3);
  will-change: transform, opacity;
}
@keyframes passGlow {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.035); opacity: .92; }
}

.pass-hl-top  { font-family: var(--ff-head); font-size: .9rem; color: rgba(255,255,255,.5); margin-bottom: .14rem; }
.pass-hl-main { font-family: var(--ff-head); font-size: clamp(1.38rem, 4vw, 1.9rem); font-weight: 900; color: #fff; line-height: 1.12; }
.pass-hl-gold { color: var(--gold); }
.pass-subline  { font-size: .77rem; color: rgba(255,255,255,.4); margin-top: .28rem; }

.pass-scarcity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .48rem;
  background: rgba(239,62,94,.1);
  border: 1px solid rgba(239,62,94,.28);
  border-radius: var(--r8);
  padding: .44rem .92rem;
  margin: 1.05rem 0;
}
.pass-scarcity-dot {
  width: 7px;
  height: 7px;
  background: var(--err);
  border-radius: 50%;
  animation: livePulse 1s ease infinite;
  flex-shrink: 0;
}
.pass-scarcity-txt { font-size: .75rem; font-weight: 800; color: var(--err-lt); }

.pass-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .55rem;
  margin: 1rem 0;
}
.pass-benefit {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r10);
  padding: .78rem .4rem;
  text-align: center;
  transition: .2s;
}
.pass-benefit:hover {
  background: rgba(232,160,32,.12);
  transform: translateY(-2px);
  border-color: rgba(232,160,32,.3);
}
.pass-benefit-ico { font-size: 1.35rem; margin-bottom: .24rem; line-height: 1; }
.pass-benefit-lbl { font-size: .67rem; font-weight: 800; color: #fff; display: block; }
.pass-benefit-sub { font-size: .6rem; color: rgba(255,255,255,.38); display: block; margin-top: .07rem; }

.pass-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .5rem;
  margin: 1rem 0 .3rem;
}
.pass-price-orig { color: rgba(255,255,255,.28); font-size: .84rem; text-decoration: line-through; }
.pass-price-main {
  font-family: var(--ff-head);
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.pass-price-main sup { font-size: 1.2rem; vertical-align: top; margin-top: .4rem; color: var(--gold); }
.pass-save-pill {
  background: var(--ok);
  color: #fff;
  font-size: .62rem;
  font-weight: 900;
  padding: .17rem .48rem;
  border-radius: var(--r99);
}
.pass-price-note { text-align: center; font-size: .7rem; color: rgba(255,255,255,.32); margin-bottom: 1rem; }

.pass-btn {
  display: block;
  width: 100%;
  padding: 1rem 1.8rem;
  background-image: linear-gradient(100deg, var(--gold) 0%, var(--saf) 42%, var(--gold-lt) 68%, var(--saf) 100%);
  background-size: 220% auto;
  animation: shimmerBtn 2.8s linear infinite;
  color: var(--ink-900);
  font-family: var(--ff-head);
  font-weight: 900;
  font-size: 1.08rem;
  border: none;
  border-radius: var(--r10);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 8px 24px rgba(232,160,32,.38);
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.pass-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(232,160,32,.52);
  color: var(--ink-900);
}
.pass-btn-en { display: block; }
.pass-btn-hi { display: block; font-family: var(--ff-body); font-size: .74rem; font-weight: 600; opacity: .62; margin-top: .14rem; }
@keyframes shimmerBtn {
  0%   { background-position: 0%   50%; }
  100% { background-position: 220% 50%; }
}

.pass-btn-ghost {
  display: block;
  width: 100%;
  padding: .9rem 1.8rem;
  margin-top: .62rem;
  background: transparent;
  border: 2px solid rgba(255,255,255,.18);
  border-radius: var(--r10);
  color: rgba(255,255,255,.72);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  text-align: center;
  transition: .25s;
}
.pass-btn-ghost:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.38);
  color: #fff;
}

.pass-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .92rem;
}
.proof-avs { display: flex; }
.proof-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--ink-800);
  background: linear-gradient(135deg, var(--saf), var(--gold));
  font-size: .56rem;
  font-weight: 900;
  color: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -7px;
}
.proof-av:first-child { margin-left: 0; }
.proof-txt { font-size: .72rem; color: rgba(255,255,255,.46); }
.proof-txt strong { color: var(--gold); }

/* Active pass state */
.pass-active-wrap {
  background: rgba(0,194,138,.1);
  border: 1.5px solid rgba(0,194,138,.32);
  border-radius: var(--r10);
  padding: .95rem 1.15rem;
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  margin: 1rem 0;
}
.pass-active-chk {
  width: 40px;
  height: 40px;
  background: var(--ok);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  color: #fff;
}
.pass-active-en { font-weight: 800; color: #fff; font-size: 1rem; }
.pass-active-hi { color: rgba(255,255,255,.5); font-size: .77rem; margin-top: .1rem; }
.pass-feats { list-style: none; padding: 0; margin: 1rem 0; }
.pass-feats li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  color: rgba(255,255,255,.7);
  font-size: .83rem;
  font-weight: 600;
  margin-bottom: .62rem;
}
.pass-feats li::before {
  content: '✓';
  color: var(--ok);
  font-weight: 900;
  background: rgba(0,194,138,.15);
  border-radius: 50%;
  min-width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  flex-shrink: 0;
}
.pass-expiry-chip {
  background: rgba(232,160,32,.12);
  border: 1px solid rgba(232,160,32,.28);
  border-radius: var(--r99);
  padding: .35rem .85rem;
  display: inline-block;
  color: var(--gold);
  font-size: .74rem;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   TRUST SCORE STRIP
═══════════════════════════════════════════════════════════ */
.jd-trust-strip {
  background: var(--white);
  border: var(--card-br);
  border-top: 3px solid var(--ok);
  border-radius: var(--r12);
  padding: .95rem 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  box-shadow: var(--sh-xs);
}
.jd-trust-item {
  display: flex;
  align-items: center;
  gap: .42rem;
  font-size: .76rem;
  font-weight: 600;
  color: var(--ink-600);
  flex: 1;
  min-width: 120px;
}
.jd-trust-ico {
  width: 30px;
  height: 30px;
  border-radius: var(--r6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}
.jd-trust-ico.ok   { background: rgba(0,194,138,.1); }
.jd-trust-ico.gold { background: rgba(232,160,32,.1); }
.jd-trust-ico.blue { background: rgba(37,99,235,.1); }
.jd-trust-txt { line-height: 1.3; }
.jd-trust-txt strong { display: block; color: var(--ink-800); font-size: .8rem; }

/* ═══════════════════════════════════════════════════════════
   QUICK ACTIONS
═══════════════════════════════════════════════════════════ */
.jd-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .82rem;
  margin-bottom: 1.25rem;
}
.jd-action-card {
  border-radius: var(--r14);
  padding: 1.2rem .9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: transform .22s, box-shadow .22s;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--sh-xs);
}
.jd-action-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.jd-action-card-ico { font-size: 2rem; margin-bottom: .5rem; line-height: 1; }
.jd-action-card strong { font-size: .84rem; font-weight: 800; color: var(--ink-700); display: block; }
.jd-action-card span  { font-size: .68rem; color: var(--ink-300); margin-top: .16rem; display: block; }
.jd-ac-wa     { background: linear-gradient(135deg, #E8FFF4, #D0F7E8); border-color: #B6EDD2; }
.jd-ac-wa:hover { border-color: #25D366; }
.jd-ac-resume { background: linear-gradient(135deg, #FFF8ED, #FFEECB); border-color: #FFE088; }
.jd-ac-resume:hover { border-color: var(--gold); }
.jd-ac-beta {
  position: absolute;
  top: 7px; right: 7px;
  background: var(--err);
  color: #fff;
  font-size: .54rem;
  font-weight: 900;
  padding: .1rem .38rem;
  border-radius: var(--r99);
  letter-spacing: .5px;
}
.jd-ac-google {
  grid-column: span 2;
  background: linear-gradient(135deg, #EEF4FF, #DAEAFF);
  border-color: #BDD4FF;
}
.jd-ac-google:hover { border-color: #4285F4; }
.jd-ac-google img { max-width: 165px; height: auto; margin-bottom: .45rem; }

/* ═══════════════════════════════════════════════════════════
   AI INTERVIEW PREP
═══════════════════════════════════════════════════════════ */
.jd-ai-card {
  background: linear-gradient(148deg, var(--ink-700), var(--ink-900));
  border: 1px solid rgba(232,160,32,.22);
  border-radius: var(--r16);
  padding: 1.35rem;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.jd-ai-card::after {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 140%; height: 140%;
  background: radial-gradient(circle at 85% 10%, rgba(232,160,32,.09), transparent 52%);
  pointer-events: none;
}
.jd-ai-hl {
  font-family: var(--ff-head);
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .35rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  position: relative;
  z-index: 1;
}
.jd-ai-txt {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.52;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.jd-ai-txt strong { color: rgba(255,255,255,.85); }
.jd-ai-btns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: .5rem;
  position: relative;
  z-index: 1;
}
.jd-ai-btn {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.75);
  padding: .52rem .36rem;
  border-radius: var(--r6);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .77rem;
  cursor: pointer;
  transition: .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
}
.jd-ai-btn:hover {
  background: rgba(232,160,32,.15);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}
.jd-ai-status {
  position: absolute;
  top: .85rem; right: .85rem;
  font-size: .68rem;
  color: var(--ink-900);
  font-weight: 900;
  background: var(--gold);
  padding: .14rem .5rem;
  border-radius: var(--r99);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════════
   JOB GLANCE (SGE)
═══════════════════════════════════════════════════════════ */
.jd-glance {
  background: var(--white);
  border: var(--card-br);
  border-left: 3px solid var(--teal);
  border-radius: var(--r12);
  padding: 1.15rem 1.3rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--sh-xs);
}
.jd-glance-lbl {
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .8rem;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.jd-glance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: .78rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.jd-glance-item { display: flex; flex-direction: column; gap: .14rem; }
.jd-glance-key { font-size: .65rem; color: var(--ink-500); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.jd-glance-val { font-size: .88rem; color: var(--ink-700); font-weight: 700; }

/* ═══════════════════════════════════════════════════════════
   COINS WIDGET
═══════════════════════════════════════════════════════════ */
.jd-coins {
  background: linear-gradient(140deg, var(--ink-700) 0%, var(--ink-900) 100%);
  border: 1px solid rgba(232,160,32,.2);
  border-radius: var(--r16);
  margin-bottom: 1.25rem;
  overflow: hidden;
  position: relative;
}
.jd-coins::before {
  content: '';
  position: absolute;
  top: -25px; right: -25px;
  width: 130px; height: 130px;
  background: radial-gradient(circle, rgba(232,160,32,.13), transparent 62%);
}
.jd-coins-hd {
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.jd-coins-lbl {
  font-family: var(--ff-head);
  font-size: .9rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.jd-coins-body {
  padding: 1.2rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 1.15rem;
}
.jd-coins-ring { width: 74px; height: 74px; position: relative; flex-shrink: 0; }
.jd-coins-ring svg { width: 74px; height: 74px; transform: rotate(-90deg); }
.jd-coins-bg  { fill: none; stroke: rgba(255,255,255,.07); stroke-width: 6; }
.jd-coins-arc { fill: none; stroke: var(--gold); stroke-width: 6; stroke-linecap: round; stroke-dasharray: 207; stroke-dashoffset: 52; filter: drop-shadow(0 0 5px var(--gold)); }
.jd-coins-num-wrap { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.jd-coins-num  { font-family: var(--ff-head); font-size: 1.3rem; font-weight: 900; color: var(--gold); line-height: 1; }
.jd-coins-word { font-size: .54rem; color: rgba(255,255,255,.3); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.jd-coins-info h4   { color: #fff; font-size: .96rem; font-weight: 800; margin-bottom: .17rem; }
.jd-coins-info p    { color: rgba(255,255,255,.46); font-size: .77rem; line-height: 1.45; margin-bottom: .6rem; }
.jd-coins-expire {
  background: rgba(239,62,94,.1);
  border: 1px solid rgba(239,62,94,.25);
  border-radius: var(--r6);
  padding: .3rem .65rem;
  font-size: .7rem;
  color: var(--err-lt);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.jd-coins-foot { padding: 0 1.3rem 1.05rem; }
.jd-coins-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  width: 100%;
  padding: .8rem 1.3rem;
  background: linear-gradient(135deg, var(--saf), var(--saf-dk));
  color: #fff;
  font-weight: 800;
  font-size: .86rem;
  border: none;
  border-radius: var(--r10);
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 5px 16px rgba(247,96,11,.28);
}
.jd-coins-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 22px rgba(247,96,11,.4);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   JOB DESCRIPTION
═══════════════════════════════════════════════════════════ */
.jd-desc-bd {
  padding: 1.3rem;
  font-size: .91rem;
  line-height: 1.8;
  color: var(--ink-500);
}
.jd-desc-bd h1,.jd-desc-bd h2,.jd-desc-bd h3,.jd-desc-bd h4 {
  font-family: var(--ff-head);
  color: var(--ink-900);
  font-weight: 700;
  margin: 1.2rem 0 .44rem;
  line-height: 1.25;
}
.jd-desc-bd h2 { font-size: 1.28rem; }
.jd-desc-bd h3 { font-size: 1.08rem; }
.jd-desc-bd p  { margin-bottom: .86rem; }
.jd-desc-bd ul,.jd-desc-bd ol { padding-left: 1.25rem; margin-bottom: .86rem; }
.jd-desc-bd li { margin-bottom: .3rem; }
.jd-desc-bd strong { color: var(--ink-700); }
.jd-desc-section-title {
  font-family: var(--ff-head);
  color: var(--ink-900);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 1.25rem 0 .55rem;
}
.jd-desc-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: .75rem 0 1.15rem;
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15,23,42,.05);
}
.jd-desc-table {
  width: 100%;
  min-width: 560px;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--ink-700);
  font-size: .84rem;
  line-height: 1.45;
}
.jd-desc-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: .72rem .82rem;
  background: #F8FAFC;
  color: var(--ink-900);
  font-weight: 900;
  text-align: left;
  border-bottom: 1px solid rgba(15,23,42,.12);
  white-space: nowrap;
}
.jd-desc-table td {
  padding: .72rem .82rem;
  vertical-align: top;
  border-bottom: 1px solid rgba(15,23,42,.08);
}
.jd-desc-table tbody tr:nth-child(even) td {
  background: #FBFDFF;
}
.jd-desc-table tr:last-child td {
  border-bottom: 0;
}
.jd-desc-table a {
  color: #1D4ED8;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Semantic AI job documents */
.bt-job-document {
  color: var(--ink-700);
}
.bt-job-source-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 .45rem;
  padding: .35rem .68rem;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  background: #f0f9ff;
  color: #075985;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .035em;
  line-height: 1.2;
  text-transform: uppercase;
}
.bt-job-document--govt .bt-job-source-label {
  border-color: #a7f3d0;
  background: #ecfdf5;
  color: #065f46;
}
.bt-job-section {
  padding: .15rem 0 .35rem;
  break-inside: avoid-page;
}
.bt-job-section + .bt-job-section {
  margin-top: .55rem;
  border-top: 1px solid #e5edf5;
}
.jd-desc-bd .bt-job-section-title {
  margin: 1rem 0 .58rem;
  color: #0f172a;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -.012em;
  line-height: 1.3;
}
.bt-job-title-line {
  color: #0f172a;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.45;
}
.bt-job-list,
.bt-job-steps {
  display: grid;
  gap: .42rem;
  margin: .4rem 0 .95rem;
  padding-left: 1.35rem;
}
.bt-job-list li,
.bt-job-steps li {
  margin: 0;
  padding-left: .15rem;
}
.bt-job-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem;
  margin: .5rem 0 1rem;
}
.bt-job-highlights > div {
  min-width: 0;
  padding: .7rem .78rem;
  border: 1px solid #dbeafe;
  border-radius: 10px;
  background: #f8fbff;
}
.bt-job-highlights dt {
  color: #475569;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .035em;
  line-height: 1.25;
  text-transform: uppercase;
}
.bt-job-highlights dd {
  margin: .25rem 0 0;
  color: #0f172a;
  font-weight: 800;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.bt-job-section--candidate-requirements {
  margin: .8rem 0;
  padding: .25rem .9rem .55rem;
  border: 1px solid #fbbf24;
  border-radius: 12px;
  background: #fffbeb;
}
.bt-job-section--candidate-requirements + .bt-job-section {
  border-top: 0;
}
.bt-job-table-wrap:focus {
  outline: 3px solid rgba(3, 105, 161, .3);
  outline-offset: 2px;
}
.bt-job-inline-sponsored {
  margin: 1rem 0;
}

@media (max-width: 575px) {
  .bt-job-highlights { grid-template-columns: 1fr; }
  .jd-desc-bd .bt-job-section-title { font-size: 1.08rem; }
  .bt-job-table-wrap { margin-left: -.15rem; margin-right: -.15rem; }
}

@media print {
  .bt-job-inline-sponsored,
  .jd-ad-slot { display: none !important; }
  .bt-job-document { color: #111827; }
  .bt-job-section { break-inside: avoid-page; }
  .bt-job-table-wrap {
    overflow: visible;
    border-color: #cbd5e1;
    box-shadow: none;
  }
  .bt-job-table {
    min-width: 0;
    font-size: 9pt;
  }
  .bt-job-table th,
  .bt-job-table td {
    padding: 5pt;
    overflow-wrap: anywhere;
  }
}

/* Keyword interlinks */
.jd-keyword-link {
  display: inline;
  border: 0;
  background: transparent;
  color: #1D4ED8;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  line-height: inherit;
  margin: 0;
  padding: 0 .04rem;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color .15s ease, text-decoration-color .15s ease;
}
.jd-keyword-link:hover,
.jd-keyword-link:focus {
  color: #0F172A;
  outline: none;
  text-decoration-style: solid;
}
.jd-keyword-popover {
  position: fixed;
  z-index: 1050;
  width: min(360px, calc(100vw - 32px));
  max-height: min(430px, calc(100vh - 90px));
  background: #fff;
  border: 1px solid rgba(15,23,42,.14);
  border-radius: 12px;
  box-shadow: 0 22px 55px rgba(15,23,42,.22);
  overflow: hidden;
}
.jd-keyword-popover-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;
  padding: .82rem .92rem;
  border-bottom: 1px solid rgba(15,23,42,.08);
  background: #F8FAFC;
}
.jd-keyword-popover-head strong {
  color: var(--ink-900);
  font-size: .86rem;
}
.jd-keyword-popover-head button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #E2E8F0;
  color: #334155;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}
.jd-keyword-popover-body {
  padding: .45rem;
  overflow-y: auto;
  max-height: 360px;
}
.jd-keyword-job {
  display: block;
  padding: .68rem .72rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink-700);
}
.jd-keyword-job:hover {
  background: #F8FAFC;
  color: var(--ink-900);
}
.jd-keyword-job-title {
  display: block;
  font-size: .84rem;
  font-weight: 800;
  line-height: 1.25;
}
.jd-keyword-job-location {
  display: block;
  margin-top: .2rem;
  color: var(--ink-300);
  font-size: .74rem;
  font-weight: 600;
}
.jd-keyword-empty {
  padding: 1rem;
  color: var(--ink-300);
  font-size: .82rem;
}
.jd-keyword-sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1049;
  background: rgba(15,23,42,.42);
}

/* ═══════════════════════════════════════════════════════════
   APPLY BLOCK
═══════════════════════════════════════════════════════════ */
.jd-apply-block {
  background: linear-gradient(138deg, var(--ink-700) 0%, var(--ink-900) 100%);
  border-radius: var(--r16);
  padding: 1.55rem 1.45rem;
  border: 1px solid rgba(247,96,11,.22);
  margin-bottom: 1.25rem;
  box-shadow: var(--sh-sm);
}
.jd-apply-block h4 { font-family: var(--ff-head); color: #fff; font-size: 1.15rem; font-weight: 900; margin-bottom: .26rem; }
.jd-apply-block p  { color: rgba(255,255,255,.46); font-size: .8rem; margin-bottom: 1rem; }
.jd-apply-block p span { color: var(--saf-lt); font-weight: 700; }

/* ═══════════════════════════════════════════════════════════
   SEO LINKS
═══════════════════════════════════════════════════════════ */
.jd-seo-links {
  background: var(--white);
  border: var(--card-br);
  border-radius: var(--r12);
  padding: 1.15rem 1.3rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--sh-xs);
}
.jd-seo-links h5 {
  font-family: var(--ff-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink-700);
  margin-bottom: .8rem;
}
.jd-seo-links ul { list-style: none; padding: 0; margin: 0; }
.jd-seo-links li { margin-bottom: .3rem; }
.jd-seo-links a {
  color: #2563EB;
  text-decoration: none;
  font-size: .8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  transition: .2s;
}
.jd-seo-links a::before { content: '→'; font-weight: 900; }
.jd-seo-links a:hover { color: #1D4ED8; transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════════
   SIDEBAR MINI PASS
═══════════════════════════════════════════════════════════ */
.pass-mini {
  background: var(--ink-900);
  border: 2px solid rgba(232,160,32,.38);
  border-radius: var(--r14);
  padding: 1.3rem;
  margin-bottom: 1.2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(232,160,32,.07), var(--sh-sm);
}
.pass-mini::before {
  content: '';
  position: absolute;
  top: -18px; right: -18px;
  width: 110px; height: 110px;
  background: radial-gradient(circle, rgba(232,160,32,.16), transparent 62%);
}
.pass-mini-inner { position: relative; z-index: 1; text-align: center; }
.pass-mini-icon  { font-size: 2rem; margin-bottom: .65rem; }
.pass-mini-title { font-family: var(--ff-head); font-size: 1.05rem; font-weight: 900; color: #fff; margin-bottom: .16rem; }
.pass-mini-gold  { color: var(--gold); }
.pass-mini-price { font-family: var(--ff-head); font-size: 1.85rem; font-weight: 900; color: #fff; margin: .5rem 0 .16rem; }
.pass-mini-price sup { font-size: .9rem; color: var(--gold); vertical-align: top; margin-top: .3rem; }

/* ═══════════════════════════════════════════════════════════
   RELATED JOBS
═══════════════════════════════════════════════════════════ */
.jd-related {
  background: var(--white);
  border: var(--card-br);
  border-radius: var(--r16);
  padding: 1.65rem;
  margin-top: 2rem;
  box-shadow: var(--sh-sm);
}
.jd-related h4 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--gold);
}
@media (max-width: 767px) { .jd-related { padding: 1rem; } }

/* ═══════════════════════════════════════════════════════════
   REPORT LINK
═══════════════════════════════════════════════════════════ */
.jd-report-link { color: var(--ink-500); font-size: .74rem; text-decoration: none; transition: .2s; }
.jd-report-link:hover { color: var(--err); }

/* ═══════════════════════════════════════════════════════════
   MOBILE STICKY BAR
═══════════════════════════════════════════════════════════ */
.jd-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--ink-900);
  border-top: 2px solid var(--gold);
  padding: .65rem 1rem;
  box-shadow: 0 -6px 24px rgba(6,16,30,.32);
}
.jd-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
}
.jd-sticky-info { flex: 1; min-width: 0; }
.jd-sticky-title { color: #fff; font-weight: 800; font-size: .8rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.jd-sticky-loc   { color: rgba(255,255,255,.42); font-size: .66rem; }
.jd-sticky-pass  { background: var(--saf); color: #fff; font-size: .62rem; font-weight: 900; padding: .1rem .4rem; border-radius: 3px; display: inline-block; margin-top: .1rem; }
.jd-sticky-acts  { display: flex; align-items: center; gap: .45rem; flex-shrink: 0; }
.jd-sticky-share {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.7);
  border-radius: var(--r6);
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: .2s;
}
.jd-sticky-share:hover { background: rgba(255,255,255,.14); color: var(--gold); border-color: var(--gold); }
.jd-sticky-apply {
  background: linear-gradient(135deg, var(--gold), var(--saf));
  color: var(--ink-900);
  font-weight: 900;
  font-size: .78rem;
  padding: .56rem 1rem;
  border: none;
  border-radius: var(--r6);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  box-shadow: 0 4px 14px rgba(232,160,32,.3);
}

/* Keep page actions available for the full responsive-navigation range. */
@media (max-width: 1199.98px) {
  .jd-sticky { display: block; }
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.jd-anim    { opacity: 0; animation: fadeUp .48s ease forwards; }
.jd-anim-d1 { animation-delay: .07s; }
.jd-anim-d2 { animation-delay: .15s; }
.jd-anim-d3 { animation-delay: .23s; }
.jd-anim-d4 { animation-delay: .31s; }

/* Pulse border for expiry critical */
@keyframes borderPulse {
  0%,100% { border-color: rgba(239,62,94,.55); opacity: 1; }
  50%      { border-color: rgba(239,62,94,.9);  opacity: .96; }
}
.expiry-critical { animation: borderPulse 2.2s ease infinite; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .jd-hero-body   { padding: 1.6rem 0 0; }
  .jd-title       { font-size: 1.38rem; }
  .jd-layout      { padding: 1rem 0 5.5rem; }
  .pass-inner     { padding: 1.3rem 1rem; }
  .pass-hl-main   { font-size: 1.38rem; }
  .pass-icon-ring { width: 58px; height: 58px; font-size: 1.6rem; }
  .pass-price-main { font-size: 2.1rem; }
  .pass-btn       { font-size: .95rem; padding: .92rem; }
  .jd-action-grid { gap: .6rem; }
  .jd-coins-body  { flex-direction: column; align-items: flex-start; gap: .85rem; }
  .jd-desc-bd     { padding: .92rem; }
  .jd-keyword-popover {
    top: auto !important;
    left: 0 !important;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: 75vh;
    border-radius: 16px 16px 0 0;
  }
  .jd-keyword-popover-body { max-height: calc(75vh - 58px); }
  .jd-expiry-timer { display: none; }
  .jd-trust-strip { gap: .5rem; }
  .jd-trust-item  { min-width: 100%; }
}

@media (max-width: 400px) {
  .pass-benefits { grid-template-columns: repeat(3,1fr); gap: .38rem; }
}
