/* ═══════════════════════════════
   TOKENS
═══════════════════════════════ */
:root {
  --white:    #FFFFFF;
  --off:      #F7F5F1;
  --light:    #EEE9E1;
  --rule:     #E4DDD4;
  --charcoal: #1C1C1C;
  --body:     #3D3D3D;
  --muted:    #8A8A8A;
  --gold:     #C9A84C;
  --gold-dk:  #A8893C;
  --gold-lt:  #DFC07A;
  --gold-bg:  #FBF7EE;
  --ease:     cubic-bezier(.22,.68,0,1.1);
  --r-sm:     10px;
  --r-md:     16px;
  --r-lg:     24px;
  --r-xl:     32px;
  --ff-d:     'Cormorant Garamond', Georgia, serif;
  --ff-b:     'Inter', system-ui, sans-serif;
  --ff-m:     'DM Mono', monospace;
}

/* ═══════════════════════════════
   BASE
═══════════════════════════════ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:19px}
body{background:var(--white);color:var(--charcoal);font-family:var(--ff-b);line-height:1.6;overflow-x:hidden;-webkit-font-smoothing:antialiased}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{font-family:var(--ff-b);cursor:pointer;border:none;background:none}

/* ═══════════════════════════════
   UTILS
═══════════════════════════════ */
.eyebrow{font-family:var(--ff-m);font-size:.63rem;letter-spacing:.18em;text-transform:uppercase;color:var(--gold);margin-bottom:.9rem;display:block}
.pad{padding:5.5rem 6vw}
.reveal{opacity:0;transform:translateY(18px);transition:opacity .65s var(--ease),transform .65s var(--ease)}
.reveal.in{opacity:1;transform:none}
.d1{transition-delay:.08s}.d2{transition-delay:.16s}.d3{transition-delay:.24s}
.d4{transition-delay:.32s}.d5{transition-delay:.40s}

/* ═══════════════════════════════
   NAV
═══════════════════════════════ */
#nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  display:flex;align-items:center;justify-content:space-between;
  padding:1.3rem 6vw;
  background:rgba(255,255,255,.97);
  border-bottom:1px solid var(--rule);
  box-shadow:0 2px 20px rgba(0,0,0,.05);
  backdrop-filter:blur(14px);
}
.nav-logo{font-family:var(--ff-d);font-size:1.5rem;font-weight:600;letter-spacing:.03em;color:var(--charcoal);display:flex;align-items:center;gap:.55rem}
.nav-logo span{color:var(--gold)}
.nav-logo-img{height:68px;width:auto;display:block}
.nav-links{display:flex;align-items:center;gap:2.2rem}
.nav-links>a,.nav-drop-btn{font-size:1rem;font-weight:500;color:var(--muted);transition:color .2s;background:none;border:none;cursor:pointer;padding:0;font-family:var(--ff-b)}
.nav-links>a:hover,.nav-drop-btn:hover{color:var(--charcoal)}
.nav-links a.current{color:var(--gold)}
.nav-dropdown{position:relative}
.nav-drop-menu{
  display:none;position:absolute;top:calc(100% + .8rem);left:50%;transform:translateX(-50%);
  background:var(--white);border:1px solid var(--rule);border-radius:var(--r-md);
  padding:.5rem 0;min-width:210px;
  box-shadow:0 12px 40px rgba(0,0,0,.1);z-index:300;
}
.nav-drop-menu a{display:block;padding:.6rem 1.2rem;font-size:.8rem;color:var(--body);transition:background .15s,color .15s}
.nav-drop-menu a:hover{background:var(--gold-bg);color:var(--gold-dk)}
.nav-drop-menu a.active-page{color:var(--gold);font-weight:600}
.nav-drop-menu.open{display:block}
.nav-cta{background:var(--gold)!important;color:#fff!important;padding:.9rem 2.1rem!important;border-radius:50px;font-size:.95rem!important;font-weight:700!important;letter-spacing:.02em;box-shadow:0 8px 20px rgba(201,168,76,.35);transition:background .2s,transform .15s!important}
.nav-cta:hover{background:var(--gold-dk)!important;transform:translateY(-1px)}
.nav-mob{display:none;flex-direction:column;gap:6px;padding:12px;cursor:pointer}
.nav-mob span{display:block;width:24px;height:2px;border-radius:2px;background:var(--charcoal)}
#nav.scrolled .nav-mob span{background:var(--charcoal)}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero{
  position:relative;min-height:100vh;
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:0 6vw;overflow:hidden;
  background:var(--charcoal) url('/assets/img/hero-klcc-original.jpg') center/cover no-repeat;
}
.hero-overlay{
  position:absolute;inset:0;z-index:1;
  background:
    linear-gradient(to bottom,rgba(14,22,32,.45) 0%,rgba(14,22,32,.72) 55%,rgba(14,22,32,.9) 100%),
    linear-gradient(110deg,rgba(14,22,32,.7) 0%,transparent 60%);
}

.hero-content{position:relative;z-index:3;padding:7.5rem 0 4.5rem;max-width:680px}
.hero-eyebrow{
  font-family:var(--ff-m);font-size:.66rem;font-weight:600;letter-spacing:.16em;text-transform:uppercase;
  color:var(--gold-lt);margin-bottom:1.4rem;
  display:inline-flex;align-items:center;gap:.65rem;width:fit-content;
  background:rgba(201,168,76,.12);border:1px solid rgba(201,168,76,.5);
  padding:.6rem 1.25rem;border-radius:50px;
  box-shadow:0 6px 24px rgba(201,168,76,.12);
  animation:fadeUp .7s .1s var(--ease) both;
}
.hero-eyebrow::before{content:'';display:block;width:7px;height:7px;border-radius:50%;background:var(--gold-lt);box-shadow:0 0 0 3px rgba(201,168,76,.28);flex-shrink:0}
.hero-h1{
  font-family:var(--ff-d);font-size:clamp(2.8rem,5.5vw,5rem);
  font-weight:300;line-height:1.06;color:#fff;
  margin-bottom:1.3rem;
  animation:fadeUp .8s .2s var(--ease) both;
}
.hero-h1 em{font-style:italic;color:var(--gold-lt)}
.hero-h1 strong{font-weight:600}
.hero-desc{
  font-size:.93rem;color:rgba(255,255,255,.6);line-height:1.78;
  max-width:480px;margin-bottom:2.2rem;
  animation:fadeUp .8s .3s var(--ease) both;
}
.hero-pills{
  display:flex;gap:.6rem;flex-wrap:wrap;margin-bottom:2.4rem;
  animation:fadeUp .8s .4s var(--ease) both;
}
.hp{
  display:flex;align-items:center;gap:.6rem;
  background:rgba(255,255,255,.1);backdrop-filter:blur(10px);
  border:1px solid rgba(201,168,76,.28);
  border-radius:50px;padding:.55rem 1.1rem;
  cursor:pointer;transition:background .2s,border-color .2s;
}
.hp:hover{background:rgba(201,168,76,.14);border-color:rgba(201,168,76,.6)}
.hp-dot{width:6px;height:6px;border-radius:50%;background:var(--gold);flex-shrink:0}
.hp-dot.dim{background:rgba(201,168,76,.4)}
.hp-name{font-size:.8rem;font-weight:500;color:#fff}
.hp-meta{font-size:.66rem;color:rgba(255,255,255,.42);margin-top:1px}
.hero-actions{
  display:flex;align-items:center;gap:1.1rem;flex-wrap:wrap;
  animation:fadeUp .8s .5s var(--ease) both;
}
.btn-primary{
  background:var(--gold);color:#fff;
  font-size:.83rem;font-weight:600;letter-spacing:.04em;
  padding:.85rem 2rem;border-radius:50px;
  display:inline-flex;align-items:center;gap:.5rem;
  border:none;cursor:pointer;
  transition:background .2s,transform .15s,box-shadow .2s;
}
.btn-primary:hover{background:var(--gold-dk);transform:translateY(-2px);box-shadow:0 8px 24px rgba(201,168,76,.3)}
.btn-ghost{
  font-size:.82rem;font-weight:500;color:rgba(255,255,255,.6);
  padding:.85rem 1.6rem;border-radius:50px;
  border:1.5px solid rgba(255,255,255,.2);
  transition:color .2s,border-color .2s;cursor:pointer;background:none;
}
.btn-ghost:hover{color:#fff;border-color:rgba(201,168,76,.5)}

/* stat strip */
.hero-strip{
  position:relative;z-index:3;
  display:flex;
  background:rgba(14,22,32,.75);backdrop-filter:blur(14px);
  border-top:1px solid rgba(255,255,255,.07);
  border-radius:var(--r-lg) var(--r-lg) 0 0;
  margin:0 -6vw;overflow:hidden;
}
.hs-item{flex:1;padding:1.3rem 0;text-align:center;border-right:1px solid rgba(255,255,255,.07)}
.hs-item:last-child{border-right:none}
.hs-v{font-family:var(--ff-d);font-size:2rem;font-weight:800;color:var(--gold);line-height:1}
.hs-l{font-family:var(--ff-m);font-size:.54rem;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.35);margin-top:4px}

@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:none}}

/* ═══════════════════════════════
   TRUST BAR
═══════════════════════════════ */
.trust-bar{
  background:var(--off);border-bottom:1px solid var(--rule);
  padding:1.4rem 6vw;
  display:flex;align-items:center;overflow-x:auto;scrollbar-width:none;
}
.trust-bar::-webkit-scrollbar{display:none}
.t-item{
  display:flex;align-items:center;gap:.55rem;
  font-size:.75rem;font-weight:500;color:var(--muted);
  letter-spacing:.02em;white-space:nowrap;
  padding:0 2rem;border-right:1px solid var(--rule);flex-shrink:0;
}
.t-item:first-child{padding-left:0}
.t-item:last-child{border-right:none}
.t-check{
  width:18px;height:18px;border-radius:50%;
  background:var(--gold-bg);border:1px solid rgba(201,168,76,.3);
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);font-size:.65rem;font-weight:700;flex-shrink:0;
}

/* ═══════════════════════════════
   PROGRAMME SECTION WRAPPER
═══════════════════════════════ */
.programmes{background:var(--white);padding:5.5rem 6vw}
.prog-section-header{text-align:center;margin-bottom:3.5rem}
.prog-section-header h2{
  font-family:var(--ff-d);font-size:clamp(1.9rem,3.5vw,3rem);
  font-weight:300;color:var(--charcoal);line-height:1.1;
}
.prog-section-header h2 em{font-style:italic;color:var(--gold)}
.prog-section-header p{font-size:1.18rem;color:var(--muted);margin-top:.7rem;max-width:510px;margin-left:auto;margin-right:auto;line-height:1.75}

/* ═══════════════════════════════
   PVIP INTRO BLOCK
═══════════════════════════════ */
.pvip-block{
  display:grid;grid-template-columns:1fr 1fr;
  gap:0;border-radius:var(--r-xl);overflow:hidden;
  background:var(--charcoal);margin-bottom:2rem;
  box-shadow:0 20px 60px rgba(0,0,0,.12);
}
.pvip-img{
  position:relative;overflow:hidden;min-height:500px;
}
.pvip-img img{
  width:100%;height:100%;object-fit:cover;
  filter:brightness(.75) saturate(.85);
  transition:transform .6s var(--ease);
}
.pvip-block:hover .pvip-img img{transform:scale(1.04)}
.pvip-img-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to right,transparent 60%,rgba(28,28,28,.85));
}
.pvip-img-badge{
  position:absolute;bottom:1.8rem;left:1.8rem;
  background:var(--gold);color:#fff;
  font-family:var(--ff-m);font-size:.58rem;letter-spacing:.12em;text-transform:uppercase;
  padding:.4rem .9rem;border-radius:50px;
}
.pvip-content{
  padding:3.2rem 3rem;display:flex;flex-direction:column;justify-content:center;
  background:var(--charcoal);
}
.pvip-content .eyebrow{color:rgba(201,168,76,.8)}
.pvip-content h3{
  font-family:var(--ff-d);font-size:clamp(2rem,3vw,2.8rem);
  font-weight:300;color:#fff;line-height:1.1;margin-bottom:1rem;
}
.pvip-content h3 em{font-style:italic;color:var(--gold-lt)}
.pvip-content p{
  font-size:.87rem;color:rgba(255,255,255,.55);
  line-height:1.75;margin-bottom:1.8rem;
}
.pvip-stats{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1px;background:rgba(255,255,255,.08);
  border-radius:var(--r-md);overflow:hidden;margin-bottom:1.8rem;
}
.pstat{background:rgba(255,255,255,.04);padding:1.3rem .8rem;text-align:center}
.pstat-v{font-family:var(--ff-d);font-size:2.6rem;font-weight:800;color:var(--gold);line-height:1}
.pstat-l{font-family:var(--ff-m);font-size:.66rem;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:rgba(255,255,255,.45);margin-top:5px}
.pvip-feats{display:flex;flex-direction:column;gap:.85rem;margin-bottom:2rem}
.pvip-feat{
  display:flex;align-items:flex-start;gap:.8rem;
  font-size:1.15rem;font-weight:500;color:rgba(255,255,255,.85);line-height:1.55;
}
.pvip-feat::before{content:'✓';color:var(--gold);font-weight:900;font-size:.95rem;flex-shrink:0;width:1.6rem;height:1.6rem;display:flex;align-items:center;justify-content:center;background:rgba(201,168,76,.15);border-radius:50%;margin-top:0}
.btn-gold-pill{
  display:inline-flex;align-items:center;gap:.5rem;
  background:var(--gold);color:#fff;
  font-size:.8rem;font-weight:600;letter-spacing:.04em;
  padding:.8rem 1.8rem;border-radius:50px;
  border:none;cursor:pointer;align-self:flex-start;
  transition:background .2s,transform .15s;
}
.btn-gold-pill:hover{background:var(--gold-dk);transform:translateY(-1px)}

/* ═══════════════════════════════
   MM2H INTRO BLOCK (image right)
═══════════════════════════════ */
.mm2h-block{
  display:grid;grid-template-columns:1fr 1fr;
  gap:0;border-radius:var(--r-xl);overflow:hidden;
  background:var(--off);
  box-shadow:0 20px 60px rgba(0,0,0,.08);
}
.mm2h-content{
  padding:3.2rem 3rem;display:flex;flex-direction:column;justify-content:center;
  background:var(--off);
}
.mm2h-content h3{
  font-family:var(--ff-d);font-size:clamp(2rem,3vw,2.8rem);
  font-weight:300;color:var(--charcoal);line-height:1.1;margin-bottom:1rem;
}
.mm2h-content h3 em{font-style:italic;color:var(--gold)}
.mm2h-content p{
  font-size:.87rem;color:var(--body);line-height:1.75;margin-bottom:1.8rem;
}
.mm2h-stats{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1px;background:var(--rule);
  border-radius:var(--r-md);overflow:hidden;margin-bottom:1.8rem;
}
.mstat{background:var(--white);padding:1.3rem .8rem;text-align:center}
.mstat-v{font-family:var(--ff-d);font-size:2.6rem;font-weight:800;color:var(--gold);line-height:1}
.mstat-l{font-family:var(--ff-m);font-size:.66rem;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:var(--muted);margin-top:5px}
.mm2h-feats{display:flex;flex-direction:column;gap:.85rem;margin-bottom:2rem}
.mm2h-feat{
  display:flex;align-items:flex-start;gap:.8rem;
  font-size:1.15rem;font-weight:500;color:var(--charcoal);line-height:1.55;
}
.mm2h-feat::before{content:'✓';color:var(--gold-dk,var(--gold));font-weight:900;font-size:.95rem;flex-shrink:0;width:1.6rem;height:1.6rem;display:flex;align-items:center;justify-content:center;background:rgba(201,168,76,.15);border-radius:50%;margin-top:0}
.btn-outline-dark{
  display:inline-flex;align-items:center;gap:.5rem;
  border:2px solid var(--charcoal);color:var(--charcoal);
  font-size:.8rem;font-weight:600;letter-spacing:.04em;
  padding:.8rem 1.8rem;border-radius:50px;
  background:none;cursor:pointer;align-self:flex-start;
  transition:background .2s,color .2s;
}
.btn-outline-dark:hover{background:var(--charcoal);color:#fff}
.mm2h-img{position:relative;overflow:hidden;min-height:500px}
.mm2h-img img{
  width:100%;height:100%;object-fit:cover;
  filter:brightness(.8) saturate(.9);
  transition:transform .6s var(--ease);
}
.mm2h-block:hover .mm2h-img img{transform:scale(1.04)}
.mm2h-img-badge{
  position:absolute;bottom:1.8rem;right:1.8rem;
  background:var(--charcoal);color:#fff;
  font-family:var(--ff-m);font-size:.58rem;letter-spacing:.12em;text-transform:uppercase;
  padding:.4rem .9rem;border-radius:50px;
}

/* ═══════════════════════════════
   COMPANY INTRO
═══════════════════════════════ */
.intro{background:var(--off)}
.intro-inner{
  display:grid;grid-template-columns:1fr 1fr;
  gap:5vw;align-items:center;
}
.intro-h2{
  font-family:var(--ff-d);font-size:clamp(1.9rem,3vw,2.8rem);
  font-weight:300;color:var(--charcoal);line-height:1.1;margin-bottom:1.1rem;
}
.intro-h2 em{font-style:italic;color:var(--gold)}
.intro-p{font-size:1.2rem;color:var(--body);line-height:1.85;margin-bottom:.9rem}
.intro-right{display:flex;flex-direction:column;gap:1px;border-radius:var(--r-lg);overflow:hidden}
.intro-stat{
  background:var(--white);padding:1.6rem 1.8rem;
  border-left:3px solid transparent;
  transition:border-color .25s,background .25s;
}
.intro-stat:hover{border-color:var(--gold);background:var(--gold-bg)}
.intro-stat-v{
  font-family:var(--ff-d);font-size:2.9rem;font-weight:800;
  color:var(--gold);line-height:1;margin-bottom:.3rem;
}
.intro-stat-l{font-size:.82rem;color:var(--body);line-height:1.4}
.intro-stat-l strong{display:block;font-weight:600;font-size:.85rem;color:var(--charcoal);margin-bottom:.1rem}
.dual-badge{
  background:var(--gold);color:#fff;padding:1.4rem 1.8rem;
  display:flex;align-items:center;gap:.9rem;
}
.dual-badge-icon{font-size:1.3rem;flex-shrink:0}
.dual-badge-t{font-size:.82rem;line-height:1.5}
.dual-badge-t strong{display:block;font-size:.87rem;font-weight:600;margin-bottom:.2rem}

/* ═══════════════════════════════
   WHY MALAYSIA
═══════════════════════════════ */
.why{background:var(--white)}
.why-header{margin-bottom:3rem}
.why-header h2{
  font-family:var(--ff-d);font-size:clamp(1.9rem,3.2vw,2.8rem);
  font-weight:300;color:var(--charcoal);line-height:1.1;
}
.why-header h2 em{font-style:italic;color:var(--gold)}
.why-header p{font-size:1.18rem;color:var(--muted);margin-top:.7rem;max-width:570px;line-height:1.75}
.why-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.2rem;
}
.why-card{
  background:var(--off);border-radius:var(--r-lg);
  padding:2rem 1.8rem;
  border:1px solid var(--rule);
  transition:border-color .25s,background .25s,transform .25s,box-shadow .25s;
}
.why-card:hover{
  border-color:rgba(201,168,76,.3);background:var(--gold-bg);
  transform:translateY(-3px);box-shadow:0 10px 30px rgba(201,168,76,.1);
}
.why-icon{
  width:44px;height:44px;border-radius:50%;
  background:var(--white);border:1px solid var(--rule);
  display:flex;align-items:center;justify-content:center;
  font-size:1.1rem;margin-bottom:1rem;
  transition:border-color .25s;
}
.why-card:hover .why-icon{border-color:rgba(201,168,76,.3)}
.why-card h3{font-size:.9rem;font-weight:600;color:var(--charcoal);margin-bottom:.4rem}
.why-card p{font-size:1.1rem;color:var(--body);line-height:1.75}

/* ═══════════════════════════════
   HOW IT WORKS
═══════════════════════════════ */
.process{background:var(--off)}
.process-header{text-align:center;margin-bottom:3.5rem}
.process-header h2{
  font-family:var(--ff-d);font-size:clamp(1.9rem,3vw,2.8rem);
  font-weight:300;color:var(--charcoal);line-height:1.1;
}
.process-header h2 em{font-style:italic;color:var(--gold)}
.process-header p{font-size:1.15rem;color:var(--muted);margin-top:.7rem;max-width:460px;margin-left:auto;margin-right:auto}

/* Base timeline card — light, always fully visible (no scroll-progressive dimming).
   This is what MM2H/Employment Pass/Digital Nomad/APEC actually use. Tokenized
   (not hardcoded) so it automatically goes dark+cream on PVIP via theme-dark-premium,
   the same trick used for .features above. */
.timeline-wrap{
  max-width:700px;margin:0 auto;background:var(--white);border:1px solid var(--rule);
  border-radius:var(--r-xl);padding:3rem 2.5rem;position:relative;overflow:hidden;
  box-shadow:0 14px 50px rgba(0,0,0,.04);
}
.tl-track{display:flex;flex-direction:column;position:relative}
.tl-item{display:flex;gap:1.3rem;position:relative;padding-bottom:2.2rem}
.tl-item:last-child{padding-bottom:0}
.tl-line{position:absolute;left:27px;top:56px;bottom:0;width:2px;background:var(--rule)}
.tl-dot{
  width:56px;height:56px;border-radius:50%;flex-shrink:0;
  background:var(--gold-bg);border:1.5px solid rgba(201,168,76,.3);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--ff-m);font-size:.72rem;color:var(--gold-dk);position:relative;z-index:2;
}
.tl-body{flex:1;padding-top:.3rem}
.tl-title{font-size:1rem;font-weight:600;color:var(--charcoal);margin-bottom:.4rem}
.tl-desc{font-size:.82rem;color:var(--muted);line-height:1.6;margin-bottom:.7rem;max-width:460px}
.tl-time{
  display:inline-flex;align-items:center;gap:.4rem;
  font-family:var(--ff-m);font-size:.68rem;color:var(--gold-dk);
  background:var(--gold-bg);padding:.3rem .8rem;border-radius:50px;
}

/* Homepage-only: dark card + scroll-progressive dim/lit behaviour, driven by
   the tlObs IntersectionObserver in main.js. Scoped under #process (only the
   homepage's timeline section has that id) so it can't leak onto inner pages
   that render the same .tl-* markup without that JS running. */
#process .timeline-wrap{max-width:680px;background:#1C1C1C;border:1px solid rgba(201,168,76,.15);box-shadow:none}
#process .tl-item{padding-bottom:2.4rem}
#process .tl-line{background:rgba(201,168,76,.14)}
#process .tl-line-fill{position:absolute;left:27px;top:56px;width:2px;background:var(--gold);height:0%;transition:height 1s var(--ease)}
#process .tl-dot{background:rgba(201,168,76,.06);border-color:rgba(201,168,76,.22);color:rgba(201,168,76,.45);transition:all .45s var(--ease)}
#process .tl-dot.active{background:var(--gold);border-color:var(--gold);color:var(--charcoal);box-shadow:0 0 0 8px rgba(201,168,76,.13)}
#process .tl-body{opacity:.3;transform:translateX(-10px);transition:all .55s var(--ease)}
#process .tl-body.active{opacity:1;transform:none}
#process .tl-title{color:#fff}
#process .tl-desc{color:rgba(255,255,255,.42)}
#process .tl-time{opacity:0;transform:scale(.92);transition:all .4s .12s var(--ease);color:rgba(201,168,76,.85);background:rgba(201,168,76,.1)}
#process .tl-time.active{opacity:1;transform:none}
.tl-cumulative{
  margin-top:2.2rem;padding-top:1.6rem;border-top:1px solid rgba(201,168,76,.12);
  display:flex;align-items:center;justify-content:space-between;
}
.tlc-label{font-family:var(--ff-m);font-size:.62rem;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.35)}
.tlc-val{font-family:var(--ff-d);font-size:1.9rem;font-weight:300;color:var(--gold)}

/* ═══════════════════════════════
   SOCIAL PROOF
═══════════════════════════════ */
.proof{background:var(--white)}
.proof-inner{display:grid;grid-template-columns:1fr 1.4fr;gap:5vw;align-items:start}
.proof-left h2{
  font-family:var(--ff-d);font-size:clamp(1.9rem,3vw,2.8rem);
  font-weight:300;color:var(--charcoal);line-height:1.1;margin-bottom:2rem;
}
.proof-left h2 em{font-style:italic;color:var(--gold)}
.pnums{display:flex;flex-direction:column;gap:0}
.pn{
  display:flex;align-items:flex-start;gap:1rem;
  padding:1.3rem 0;border-bottom:1px solid var(--rule);
}
.pn:last-child{border-bottom:none}
.pn-v{font-family:var(--ff-d);font-size:2.7rem;font-weight:800;color:var(--gold);line-height:1;flex-shrink:0;min-width:72px}
.pn-l{font-size:.82rem;color:var(--body);padding-top:.35rem;line-height:1.45}
.pn-l strong{display:block;font-weight:600;font-size:.86rem;color:var(--charcoal);margin-bottom:.1rem}
.testis{position:relative;min-height:300px}
.testi-set{
  display:grid;grid-template-columns:1fr;gap:1rem;
  position:absolute;inset:0;
  opacity:0;transform:translateY(16px);
  transition:opacity .55s var(--ease),transform .55s var(--ease);
  pointer-events:none;
}
.testi-set.active{
  opacity:1;transform:none;position:relative;pointer-events:all;
}
.testi{
  background:var(--off);
  border:1px solid var(--rule);border-left:3px solid rgba(201,168,76,.3);
  border-radius:var(--r-lg);padding:1.5rem 1.6rem;
  transition:border-left-color .25s;
}
.testi:hover{border-left-color:var(--gold)}
.testi.pending{border-left-style:dashed;border-left-color:var(--muted)}
.testi-q{
  font-family:var(--ff-d);font-size:1rem;font-style:italic;
  font-weight:300;color:var(--charcoal);line-height:1.55;margin-bottom:.85rem;
}
.testi-q::before{content:'\201C';color:var(--gold);font-size:1.4rem;line-height:0;vertical-align:-.28em;margin-right:.1rem}
.testi.pending .testi-q{color:var(--muted)}
.testi-meta{display:flex;align-items:center;gap:.7rem}
.testi-av{
  width:32px;height:32px;border-radius:50%;
  background:var(--gold-bg);border:1px solid rgba(201,168,76,.2);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--ff-d);font-size:.85rem;color:var(--gold);flex-shrink:0;
}
.testi-name{font-size:.8rem;font-weight:600;color:var(--charcoal)}
.testi-from{font-size:1rem;color:var(--muted)}
.testi-tag{
  margin-left:auto;font-family:var(--ff-m);font-size:.52rem;
  letter-spacing:.09em;text-transform:uppercase;
  background:var(--gold-bg);border:1px solid rgba(201,168,76,.25);
  color:var(--gold);padding:.18rem .5rem;border-radius:50px;
}
.testi-tag.pending{background:var(--light);border-color:var(--rule);color:var(--muted)}
.testi-dots{display:flex;gap:.45rem;margin-top:1.4rem}
.t-dot{
  width:7px;height:7px;border-radius:50%;background:var(--rule);
  cursor:pointer;border:none;padding:0;transition:all .3s;
}
.t-dot.active{background:var(--gold);width:22px;border-radius:5px}

/* ═══════════════════════════════
   CONTACT FORM + MAP
═══════════════════════════════ */
.contact-block{background:var(--off)}
.contact-header{text-align:center;margin-bottom:3rem}
.contact-header h2{
  font-family:var(--ff-d);font-size:clamp(1.9rem,3.2vw,2.8rem);
  font-weight:300;color:var(--charcoal);line-height:1.1;
}
.contact-header h2 em{font-style:italic;color:var(--gold)}
.contact-header p{font-size:1.16rem;color:var(--muted);margin-top:.7rem;max-width:530px;margin-left:auto;margin-right:auto;line-height:1.75}
.contact-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:1.5rem;align-items:start}
.form-card{
  background:var(--white);border:1px solid var(--rule);
  border-radius:var(--r-xl);padding:2.4rem;
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1.1rem}
.form-field{display:flex;flex-direction:column;gap:.4rem}
.form-field.full{grid-column:1/-1}
.form-field label{font-size:.78rem;font-weight:500;color:var(--charcoal)}
.form-field input,.form-field select,.form-field textarea{
  border:1px solid var(--rule);border-radius:var(--r-sm);
  padding:.7rem .9rem;font-size:.85rem;font-family:var(--ff-b);
  color:var(--charcoal);background:var(--white);
  transition:border-color .2s,box-shadow .2s;outline:none;
}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus{
  border-color:var(--gold);box-shadow:0 0 0 3px rgba(201,168,76,.12);
}
.form-field textarea{resize:vertical;min-height:80px;font-family:var(--ff-b)}
.form-submit{
  width:100%;margin-top:.6rem;
  background:var(--gold);color:#fff;
  font-size:.86rem;font-weight:600;letter-spacing:.04em;
  padding:.9rem;border-radius:50px;border:none;cursor:pointer;
  transition:background .2s,transform .15s;
}
.form-submit:hover{background:var(--gold-dk);transform:translateY(-1px)}
.form-note{font-size:1.04rem;color:var(--muted);text-align:center;margin-top:.9rem;line-height:1.65}

.map-card{
  border-radius:var(--r-xl);overflow:hidden;
  border:1px solid var(--rule);background:var(--white);
  display:flex;flex-direction:column;height:100%;
}
.map-embed{position:relative;width:100%;height:300px;background:var(--light)}
.map-embed iframe{width:100%;height:100%;border:0;display:block}
.map-details{padding:1.6rem 1.8rem;flex:1;display:flex;flex-direction:column;gap:1.1rem}
.map-row{display:flex;align-items:flex-start;gap:.9rem}
.map-icon{
  width:36px;height:36px;border-radius:50%;flex-shrink:0;
  background:var(--gold-bg);border:1px solid rgba(201,168,76,.2);
  display:flex;align-items:center;justify-content:center;font-size:.9rem;color:var(--gold);
}
.map-row-title{font-size:.82rem;font-weight:600;color:var(--charcoal);margin-bottom:.15rem}
.map-row-sub{font-size:.78rem;color:var(--muted);line-height:1.5}
.map-directions{
  display:inline-flex;align-items:center;gap:.5rem;
  font-size:.78rem;font-weight:600;color:var(--gold);
  border-bottom:1px solid rgba(201,168,76,.3);padding-bottom:2px;
  align-self:flex-start;margin-top:.3rem;
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer{background:var(--off);border-top:1px solid var(--rule);padding:4rem 6vw 2rem}
.footer-top{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;margin-bottom:2.5rem}
.footer-logo{font-family:var(--ff-d);font-size:1.5rem;font-weight:600;color:var(--charcoal);margin-bottom:.9rem;display:flex;align-items:center;gap:.55rem}.footer-logo span{color:var(--gold)}
.footer-logo-img{height:54px;width:auto;display:block}

.footer-brand p{font-size:1.08rem;color:var(--muted);line-height:1.7;max-width:300px;margin-bottom:1.2rem}
.footer-social{display:flex;gap:.5rem}
.footer-social a{
  width:30px;height:30px;border-radius:50%;
  border:1px solid var(--rule);background:var(--white);
  display:flex;align-items:center;justify-content:center;
  font-size:.7rem;color:var(--muted);
  transition:border-color .2s,color .2s,background .2s;
}
.footer-social a:hover{border-color:var(--gold);color:var(--gold);background:var(--gold-bg)}
.footer-col h5{font-family:var(--ff-m);font-size:.6rem;letter-spacing:.14em;text-transform:uppercase;color:var(--charcoal);margin-bottom:.9rem}
.footer-col ul{display:flex;flex-direction:column;gap:.55rem}
.footer-col ul a{font-size:.8rem;color:var(--muted);transition:color .2s}
.footer-col ul a:hover{color:var(--gold)}
.footer-bottom{border-top:1px solid var(--rule);padding-top:1.5rem;display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:wrap;gap:1rem}
.footer-bottom p{font-size:1rem;color:var(--muted);line-height:1.7}
.footer-lic{font-family:var(--ff-m);font-size:.6rem;color:var(--gold);letter-spacing:.06em;text-align:right}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media(max-width:1024px){
  .pvip-block,.mm2h-block{grid-template-columns:1fr}
  .pvip-img,.mm2h-img{min-height:320px;order:-1}
  .pvip-img-overlay{background:linear-gradient(to bottom,transparent 60%,rgba(28,28,28,.85))}
  .intro-inner{grid-template-columns:1fr;gap:3rem}
  .why-grid{grid-template-columns:repeat(2,1fr)}
  .proof-inner{grid-template-columns:1fr;gap:3rem}
  .footer-top{grid-template-columns:1fr 1fr;gap:2rem}
  .contact-grid{grid-template-columns:1fr}
  .map-card{height:auto}
  .map-embed{height:260px}
}
@media(max-width:768px){
  #nav{padding:.9rem 5vw}
  .nav-links{display:none}
  .nav-mob{display:flex}
  .pad{padding:3.5rem 5vw}
  .programmes{padding:3.5rem 5vw}
  .hero-content{padding:8rem 0 3.5rem}
  .hero-strip{display:none}
  .why-grid{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column}
  .pvip-content,.mm2h-content{padding:2rem 1.8rem}
  .form-card{padding:1.6rem 1.3rem}
}
@media(max-width:520px){
  .hero-pills{flex-direction:column}
  .form-row{grid-template-columns:1fr}
}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none!important;transition-duration:.01ms!important}
  .reveal{opacity:1!important;transform:none!important}
  .tl-body{opacity:1!important;transform:none!important}
}
h1,h2,h3,h4,h5,h6{font-weight:700!important}
.eyebrow{font-weight:700!important}

/* ═══════════════════════════════════════════════════════════
   INNER "PROGRAMME DETAIL" PAGE COMPONENTS
   Shared by /pvip/, /mm2h/, /employment-pass/, /digital-nomad/, /apec/
   These read from the same tokens above, so they're light-themed by
   default. .theme-dark-premium (bottom of file) overrides tokens for
   the one page (PVIP) that uses the dark "premium" treatment.
═══════════════════════════════════════════════════════════ */

/* Page hero — always a dark photo band regardless of page theme */
.page-hero{position:relative;padding:9.5rem 6vw 4.5rem;background:#0D0D0D;overflow:hidden}
.page-hero-bg{position:absolute;inset:0;opacity:.35;background-size:cover;background-position:center}
.page-hero-overlay{position:absolute;inset:0;background:linear-gradient(120deg,rgba(13,13,13,.95) 0%,rgba(13,13,13,.82) 55%,rgba(13,13,13,.65) 100%)}
.page-hero-inner{position:relative;z-index:2;display:flex;justify-content:space-between;align-items:flex-end;gap:3rem;flex-wrap:wrap}
.page-hero-left{max-width:640px}
.breadcrumb{font-family:var(--ff-m);font-size:.68rem;letter-spacing:.06em;color:rgba(255,255,255,.35);margin-bottom:1.2rem}
.breadcrumb a{color:rgba(255,255,255,.5);transition:color .2s}
.breadcrumb a:hover{color:var(--gold)}
.page-hero h1{font-family:var(--ff-d);font-size:clamp(2.4rem,4.6vw,3.8rem);font-weight:300;color:#fff;line-height:1.1;margin-bottom:1.1rem}
.page-hero h1 em{font-style:italic;color:var(--gold-lt)}
.page-hero p{font-size:1.25rem;color:rgba(255,255,255,.5);line-height:1.8;max-width:580px;margin-bottom:1.8rem}
.hero-btns{display:flex;gap:.8rem;flex-wrap:wrap}
.btn-gold-cta{background:var(--gold);color:#131313;font-size:.82rem;font-weight:600;letter-spacing:.04em;padding:.85rem 1.9rem;border-radius:50px;border:none;cursor:pointer;display:inline-flex;align-items:center;gap:.5rem;transition:background .2s,transform .15s,box-shadow .2s}
.btn-gold-cta:hover{background:var(--gold-dk);transform:translateY(-1px);box-shadow:0 8px 24px rgba(201,168,76,.3)}
.btn-white-outline{border:1.5px solid rgba(255,255,255,.25);color:rgba(255,255,255,.8);font-size:.82rem;font-weight:500;letter-spacing:.04em;padding:.85rem 1.7rem;border-radius:50px;background:none;cursor:pointer;transition:border-color .2s,color .2s}
.btn-white-outline:hover{border-color:rgba(255,255,255,.6);color:#fff}
.hero-stat-card{background:rgba(255,255,255,.07);border:1px solid rgba(201,168,76,.25);border-radius:var(--r-lg);padding:1.4rem 1.8rem;backdrop-filter:blur(10px);text-align:center;flex-shrink:0}
.hsc-num{font-family:var(--ff-d);font-size:2.6rem;font-weight:800;color:var(--gold);line-height:1}
.hsc-label{font-family:var(--ff-m);font-size:.6rem;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.45);margin-top:.4rem}

/* Authority strip (same pattern as homepage trust-bar, renamed for these pages) */
.authority-strip{background:var(--off);border-bottom:1px solid var(--rule);padding:1.3rem 6vw;display:flex;align-items:center;overflow-x:auto;scrollbar-width:none}
.authority-strip::-webkit-scrollbar{display:none}
.a-item{display:flex;align-items:center;gap:.5rem;font-size:.73rem;font-weight:500;color:var(--muted);white-space:nowrap;padding:0 1.7rem;border-right:1px solid var(--rule);flex-shrink:0}
.a-item:first-child{padding-left:0}
.a-item:last-child{border-right:none}
.a-check{width:17px;height:17px;border-radius:50%;background:var(--gold-bg);border:1px solid rgba(201,168,76,.3);display:flex;align-items:center;justify-content:center;color:var(--gold);font-size:.6rem;font-weight:700;flex-shrink:0}

/* Intro statement */
.intro-stmt{background:var(--white)}
.intro-stmt-inner{max-width:1240px;margin:0 auto;display:grid;grid-template-columns:1.15fr .85fr;gap:3.5rem;align-items:center}
.intro-stmt-text{max-width:640px}
.intro-stmt-img{border-radius:var(--r-xl);overflow:hidden;box-shadow:0 24px 64px rgba(0,0,0,.12)}
.intro-stmt-img img{width:100%;height:100%;object-fit:cover;display:block;aspect-ratio:4/5}
.intro-stmt h2{font-family:var(--ff-d);font-size:clamp(1.7rem,2.8vw,2.4rem);font-weight:300;color:var(--charcoal);line-height:1.35}
.intro-stmt h2 em{font-style:italic;color:var(--gold)}
.intro-stmt p{font-size:1.2rem;color:var(--body);line-height:1.85;margin-top:1.2rem}
.intro-note{margin-top:1.6rem;padding:1.1rem 1.4rem;background:var(--gold-bg);border-left:3px solid var(--gold);border-radius:var(--r-sm);font-size:.82rem;color:var(--body);line-height:1.6}
.intro-note strong{color:var(--charcoal)}
@media(max-width:900px){
  .intro-stmt-inner{grid-template-columns:1fr}
  .intro-stmt-text{max-width:none}
  .intro-stmt-img{order:-1;aspect-ratio:16/9}
  .intro-stmt-img img{aspect-ratio:16/9}
}

/* Requirements grid — base is the plain light card treatment (used by MM2H,
   Employment Pass, Digital Nomad, APEC). PVIP additionally wraps this in a
   dark .req-box panel further below, which restyles the same classes by
   ancestor scoping rather than fighting over the bare selectors. */
.requirements{background:var(--off)}
.req-header{text-align:center;margin-bottom:2.6rem;position:relative}
.req-header h2{font-family:var(--ff-d);font-size:clamp(1.9rem,3.2vw,2.8rem);font-weight:300;color:var(--charcoal);line-height:1.1}
.req-header h2 em{font-style:italic;color:var(--gold)}
.req-header p{font-size:1.15rem;color:var(--muted);margin-top:.7rem;max-width:580px;margin-left:auto;margin-right:auto;line-height:1.75}
.req-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem}
.req-card{background:var(--white);border:1px solid var(--rule);border-radius:var(--r-lg);padding:1.7rem 1.5rem;transition:border-color .25s,transform .25s,box-shadow .25s}
.req-card:hover{border-color:rgba(201,168,76,.35);transform:translateY(-4px);box-shadow:0 14px 36px rgba(201,168,76,.1)}
.req-icon{width:44px;height:44px;border-radius:50%;margin-bottom:1rem;background:var(--gold-bg);border:1px solid rgba(201,168,76,.2);display:flex;align-items:center;justify-content:center;font-size:1.1rem}
.req-card h4{font-size:.88rem;font-weight:600;color:var(--charcoal);margin-bottom:.5rem}
.req-metric{font-family:var(--ff-d);font-size:1.5rem;font-weight:600;color:var(--gold-dk);line-height:1.15;margin-bottom:.5rem;display:block}
.req-card p{font-size:1.1rem;color:var(--body);line-height:1.75}
@media(max-width:1024px){.req-grid{grid-template-columns:1fr 1fr}}
@media(max-width:768px){.req-grid{grid-template-columns:1fr}}

/* PVIP-only: dark boxed panel wrapping the same req-header/req-grid/req-card markup */
.req-box{background:#1A1A1A;border-radius:var(--r-xl);padding:3rem 2.6rem;box-shadow:0 24px 64px rgba(0,0,0,.45);position:relative;overflow:hidden}
.req-box::before{content:'';position:absolute;top:-30%;right:-8%;width:480px;height:480px;border-radius:50%;background:radial-gradient(ellipse,rgba(201,168,76,.08) 0%,transparent 68%);pointer-events:none}
.req-box .req-header .eyebrow{color:rgba(201,168,76,.8)}
.req-box .req-header h2{color:#fff}
.req-box .req-header h2 em{color:var(--gold-lt)}
.req-box .req-header p{color:rgba(255,255,255,.6)}
.req-box .req-grid{grid-template-columns:repeat(3,1fr);gap:1px;background:rgba(201,168,76,.12);border-radius:var(--r-lg);overflow:hidden}
.req-box .req-card{background:rgba(255,255,255,.06);border:none;border-radius:0;padding:1.9rem 1.7rem;transition:background .25s}
.req-box .req-card:hover{background:rgba(201,168,76,.1);transform:none;box-shadow:none}
.req-box .req-icon{background:rgba(201,168,76,.1);border-color:rgba(201,168,76,.25)}
.req-box .req-card h4{color:#fff}
.req-box .req-metric{color:var(--gold)}
.req-box .req-card p{color:rgba(255,255,255,.58)}
@media(max-width:1024px){.req-box .req-grid{grid-template-columns:1fr 1fr}}
@media(max-width:768px){.req-box .req-grid{grid-template-columns:1fr}}

/* Comparison table */
.compare-tbl{background:var(--off)}
.ct-box{background:#1A1A1A;border-radius:var(--r-xl);padding:3rem 2.6rem;box-shadow:0 24px 64px rgba(0,0,0,.45);position:relative;overflow:hidden}
.ct-box::before{content:'';position:absolute;top:-30%;left:-8%;width:480px;height:480px;border-radius:50%;background:radial-gradient(ellipse,rgba(201,168,76,.08) 0%,transparent 68%);pointer-events:none}
.ct-header{text-align:center;margin-bottom:2.4rem;position:relative}
.ct-header .eyebrow{color:rgba(201,168,76,.8)}
.ct-header h2{font-family:var(--ff-d);font-size:clamp(1.9rem,3.2vw,2.8rem);font-weight:300;color:#fff;line-height:1.1}
.ct-header h2 em{font-style:italic;color:var(--gold-lt)}
.ct-header p{font-size:1.15rem;color:rgba(255,255,255,.6);margin-top:.7rem;max-width:590px;margin-left:auto;margin-right:auto;line-height:1.75}
.ct-wrap{border-radius:var(--r-lg);overflow:hidden;position:relative;background:rgba(255,255,255,.06)}
.ct-table{width:100%;border-collapse:collapse}
.ct-table thead th{background:rgba(201,168,76,.18);color:#fff;font-size:.78rem;font-weight:600;letter-spacing:.03em;padding:1.1rem 1.4rem;text-align:left}
.ct-table thead th:first-child{color:rgba(255,255,255,.55);font-weight:500}
.ct-table thead th.col-hl{color:var(--gold-lt)}
.ct-table tbody tr{border-bottom:1px solid rgba(255,255,255,.09)}
.ct-table tbody tr:last-child{border-bottom:none}
.ct-table tbody tr:nth-child(even){background:rgba(255,255,255,.05)}
.ct-table td{padding:1rem 1.4rem;font-size:1.1rem;color:rgba(255,255,255,.65);vertical-align:top}
.ct-table td:first-child{font-weight:600;color:#fff;white-space:nowrap}
.ct-table td.col-hl{color:var(--gold-lt);font-weight:500;background:rgba(201,168,76,.1)}
.ct-note{margin-top:1.3rem;padding:1rem 1.4rem;background:rgba(201,168,76,.08);border-left:3px solid var(--gold);border-radius:var(--r-sm);font-size:.78rem;color:rgba(255,255,255,.65);line-height:1.6;position:relative}
.ct-note strong{color:#fff!important}
@media(max-width:1024px){.ct-table{font-size:.78rem}}
@media(max-width:768px){
  .ct-box{padding:1.8rem 1.1rem}
  .ct-wrap{overflow-x:visible}
  .ct-table thead{display:none}
  .ct-table,.ct-table tbody,.ct-table tr,.ct-table td{display:block;width:100%}
  .ct-table tbody tr{margin-bottom:1rem;border:1px solid rgba(255,255,255,.1);border-radius:var(--r-md);overflow:hidden;background:rgba(255,255,255,.03)!important}
  .ct-table tbody tr:last-child{margin-bottom:0}
  .ct-table td{padding:.75rem 1.1rem!important;white-space:normal!important;display:flex;justify-content:space-between;align-items:baseline;gap:1rem;border-bottom:1px solid rgba(255,255,255,.08);background:none!important}
  .ct-table td:last-child{border-bottom:none}
  .ct-table td:first-child{background:rgba(201,168,76,.15)!important;color:var(--gold-lt);font-size:1rem;font-weight:700;display:block}
}

/* Features — hover/tap reveal photo grid.
   Tokenized (not hardcoded dark) so it's light on MM2H/Employment Pass/etc.
   and automatically dark on PVIP via body.theme-dark-premium's token swap —
   the ben-card photo/overlay itself is already dark regardless, by design. */
.features{background:var(--off)}
.feat-header{text-align:center;margin-bottom:3rem}
.feat-header h2{font-family:var(--ff-d);font-size:clamp(1.9rem,3.2vw,2.8rem);font-weight:300;color:var(--charcoal);line-height:1.1}
.feat-header h2 em{font-style:italic;color:var(--gold)}
.feat-header p{font-size:1.15rem;color:var(--muted);margin-top:.7rem;max-width:550px;margin-left:auto;margin-right:auto;line-height:1.75}
.ben-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem}
.ben-card{position:relative;border-radius:var(--r-lg);overflow:hidden;aspect-ratio:3/4;box-shadow:0 8px 32px rgba(0,0,0,.35);transition:transform .35s var(--ease),box-shadow .35s var(--ease)}
.ben-card:hover{transform:translateY(-6px);box-shadow:0 20px 50px rgba(0,0,0,.5)}
.ben-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease)}
.ben-card:hover .ben-img{transform:scale(1.06)}
.ben-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(10,8,6,.95) 0%,rgba(10,8,6,.55) 45%,rgba(10,8,6,.15) 100%);transition:background .35s}
.ben-card:hover .ben-overlay{background:linear-gradient(to top,rgba(10,8,6,.98) 0%,rgba(10,8,6,.65) 50%,rgba(10,8,6,.2) 100%)}
.ben-num{position:absolute;top:1.2rem;left:1.2rem;font-family:var(--ff-m);font-size:.68rem;letter-spacing:.12em;color:var(--gold-lt);opacity:.8}
.ben-content{position:absolute;bottom:0;left:0;right:0;padding:1.5rem 1.4rem}
.ben-tag{display:inline-block;font-family:var(--ff-m);font-size:.57rem;letter-spacing:.08em;text-transform:uppercase;background:rgba(201,168,76,.2);border:1px solid rgba(201,168,76,.35);color:var(--gold-lt);padding:.18rem .55rem;border-radius:50px;margin-bottom:.55rem}
.ben-title{font-family:var(--ff-d);font-size:1.1rem;font-weight:600;color:#fff;line-height:1.25;margin-bottom:.4rem}
.ben-desc{font-size:.85rem;color:rgba(255,255,255,.6);line-height:1.6;max-height:0;overflow-y:auto;opacity:0;scrollbar-width:none;-ms-overflow-style:none;transition:max-height .35s var(--ease),opacity .3s}
.ben-desc::-webkit-scrollbar{display:none;width:0;height:0}
.ben-card:hover .ben-desc,.ben-card.active .ben-desc{max-height:160px;opacity:1}
@media(max-width:1024px){.ben-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:768px){
  .ben-card{aspect-ratio:auto;min-height:340px}
  .ben-card.active{transform:translateY(-4px);box-shadow:0 20px 50px rgba(0,0,0,.5)}
  .ben-card.active .ben-img{transform:scale(1.06)}
  .ben-card.active .ben-overlay{background:linear-gradient(to top,rgba(10,8,6,.97) 0%,rgba(10,8,6,.75) 55%,rgba(10,8,6,.25) 100%)}
  .ben-content{max-height:100%;overflow-y:auto;-webkit-overflow-scrolling:touch;padding-bottom:1.1rem;scrollbar-width:none;-ms-overflow-style:none}
  .ben-content::-webkit-scrollbar{display:none;width:0;height:0}
}
@media(max-width:480px){.ben-grid{grid-template-columns:1fr}.ben-card{min-height:300px}}

/* Fee calculator */
.fees{background:var(--white)}
.fee-box{background:#1A1A1A;border-radius:var(--r-xl);padding:3rem 2.6rem;box-shadow:0 24px 64px rgba(0,0,0,.45);position:relative;overflow:hidden}
.fee-box::before{content:'';position:absolute;top:-30%;right:-8%;width:480px;height:480px;border-radius:50%;background:radial-gradient(ellipse,rgba(201,168,76,.08) 0%,transparent 68%);pointer-events:none}
.fees-header{text-align:center;margin-bottom:2.5rem;position:relative}
.fees-header .eyebrow{color:rgba(201,168,76,.8)}
.fees-header h2{font-family:var(--ff-d);font-size:clamp(1.8rem,3vw,2.6rem);font-weight:300;color:#fff;line-height:1.1}
.fees-header h2 em{font-style:italic;color:var(--gold-lt)}
.fees-header p{color:rgba(255,255,255,.6)!important}
.calc-wrap{max-width:680px;margin:0 auto;background:rgba(255,255,255,.06);border-radius:var(--r-lg);padding:2.2rem 2.4rem;position:relative}
.calc-slider-row{display:flex;align-items:center;gap:1.2rem;margin-bottom:1.8rem}
.calc-slider-label{font-size:.82rem;color:rgba(255,255,255,.7);min-width:110px;font-weight:500}
.calc-slider-row input[type="range"]{flex:1;height:36px;padding:0;margin:0;background:transparent;outline:none;-webkit-appearance:none;appearance:none;touch-action:pan-y}
.calc-slider-row input[type="range"]::-webkit-slider-runnable-track{height:4px;border-radius:2px;background:rgba(255,255,255,.2)}
.calc-slider-row input[type="range"]::-moz-range-track{height:4px;border-radius:2px;background:rgba(255,255,255,.2)}
.calc-slider-row input[type="range"]::-webkit-slider-thumb{-webkit-appearance:none;width:26px;height:26px;border-radius:50%;background:var(--gold);cursor:pointer;border:3px solid var(--charcoal);box-shadow:0 0 0 1px var(--gold);margin-top:-11px}
.calc-slider-row input[type="range"]::-moz-range-thumb{width:26px;height:26px;border-radius:50%;background:var(--gold);cursor:pointer;border:3px solid var(--charcoal);box-shadow:0 0 0 1px var(--gold)}
.calc-slider-out{font-family:var(--ff-d);font-size:1.3rem;color:var(--gold);min-width:24px;text-align:right;font-weight:600}
.calc-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:.8rem;margin-bottom:1.8rem}
.calc-card{background:rgba(255,255,255,.08);border-radius:var(--r-md);padding:1rem 1.1rem}
.calc-card.highlight{background:var(--gold);border:none}
.calc-card-label{font-size:.7rem;color:rgba(255,255,255,.55);margin-bottom:.3rem}
.calc-card.highlight .calc-card-label{color:rgba(28,28,28,.7)}
.calc-card-val{font-family:var(--ff-d);font-size:1.4rem;font-weight:600;color:#fff}
.calc-card.highlight .calc-card-val{color:var(--charcoal)}
.calc-table{width:100%;font-size:1.08rem;border-collapse:collapse}
.calc-table tr{border-top:1px solid rgba(255,255,255,.1)}
.calc-table tr:first-child{border-top:none}
.calc-table td{padding:.6rem 0;color:rgba(255,255,255,.65)}
.calc-table td:last-child{text-align:right}
.calc-table tr.grand td{color:#fff;font-weight:600;padding-top:.8rem}
.calc-note{font-size:.95rem;color:rgba(255,255,255,.45);margin-top:1.2rem;line-height:1.65}
@media(max-width:768px){
  .fee-box{padding:2.2rem 1.2rem}
  .calc-wrap{padding:1.5rem 1.1rem}
  .calc-slider-row{flex-direction:column;align-items:stretch;gap:.7rem}
  .calc-slider-label{min-width:0}
  .calc-slider-out{align-self:flex-end;font-size:1.5rem}
  .calc-cards{grid-template-columns:1fr 1fr;gap:.7rem}
  .calc-card{padding:.9rem .95rem}
  .calc-card-label{font-size:.72rem}
  .calc-card-val{font-size:1.15rem;word-break:break-word}
  .calc-card.highlight{grid-column:1/-1}
  .calc-table{font-size:.95rem}
}
@media(max-width:480px){.calc-cards{grid-template-columns:1fr}.calc-card.highlight{grid-column:auto}}

/* FAQ categorized accordion */
.faq{background:var(--white)}
.faq-header{text-align:center;margin-bottom:2.5rem}
.faq-header h2{font-family:var(--ff-d);font-size:clamp(1.9rem,3.2vw,2.8rem);font-weight:300;color:var(--charcoal);line-height:1.1}
.faq-header h2 em{font-style:italic;color:var(--gold)}
.faq-cats{display:flex;justify-content:center;gap:.6rem;margin-bottom:2rem;flex-wrap:wrap}
.faq-cat-btn{font-family:var(--ff-m);font-size:.68rem;letter-spacing:.03em;padding:.55rem 1.2rem;border-radius:50px;border:1px solid var(--rule);color:var(--muted);background:var(--off);cursor:pointer;transition:all .2s}
.faq-cat-btn.active{background:var(--gold);color:#131313;border-color:var(--gold)}
.faq-cat-btn:hover:not(.active){border-color:rgba(201,168,76,.4);color:var(--gold-dk)}
.faq-list{max-width:760px;margin:0 auto;display:none;flex-direction:column;gap:.7rem}
.faq-list.active{display:flex}
.faq-item{background:var(--white);border:1px solid var(--rule);border-radius:var(--r-md);overflow:hidden;transition:border-color .25s,box-shadow .25s}
.faq-item:hover{border-color:rgba(201,168,76,.35)}
.faq-item.open{border-color:rgba(201,168,76,.5);box-shadow:0 12px 32px rgba(201,168,76,.1)}
.faq-q{padding:1.25rem 1.5rem;display:flex;align-items:center;justify-content:space-between;cursor:pointer;font-size:1.02rem;font-weight:600;color:var(--charcoal);gap:1.2rem;transition:color .2s}
.faq-q:hover{color:var(--gold-dk)}
.faq-q-icon{width:28px;height:28px;border-radius:50%;background:var(--gold-bg);color:var(--gold-dk);display:flex;align-items:center;justify-content:center;font-size:1.05rem;font-weight:400;flex-shrink:0;transition:transform .35s var(--ease),background .3s,color .3s}
.faq-item.open .faq-q-icon{transform:rotate(135deg);background:var(--charcoal);color:#fff}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s var(--ease)}
.faq-item.open .faq-a{max-height:1200px}
.faq-a-inner{padding:0 1.5rem 1.35rem;font-size:1.05rem;color:var(--body);line-height:1.85}
.faq-a-inner ul{margin-top:.5rem;padding-left:1.2rem;list-style:disc}
.faq-a-inner li{margin-bottom:.3rem}

/* Bottom CTA band (dark, same across all inner pages) */
.cta-block{background:#0D0D0D;border-top:1px solid rgba(201,168,76,.15);padding:5rem 6vw;text-align:center;position:relative;overflow:hidden}
.cta-block::before{content:'';position:absolute;top:-30%;left:-8%;width:500px;height:500px;border-radius:50%;background:radial-gradient(ellipse,rgba(201,168,76,.08) 0%,transparent 68%);pointer-events:none}
.cta-block .eyebrow{color:rgba(201,168,76,.8)}
.cta-block h2{font-family:var(--ff-d);font-size:clamp(2rem,3.5vw,3.2rem);font-weight:300;color:#fff;line-height:1.1;margin-bottom:1rem;position:relative}
.cta-block h2 em{font-style:italic;color:var(--gold-lt)}
.cta-block p{font-size:1.2rem;color:rgba(255,255,255,.5);max-width:520px;margin:0 auto 2rem;line-height:1.75;position:relative}
.cta-btns{display:flex;justify-content:center;gap:.9rem;flex-wrap:wrap;position:relative}

/* ═══════════════════════════════════════════════════════════
   MM2H-ONLY COMPONENTS — tiered comparison table, its own fee
   calculator (namespaced mm2h-*, distinct from PVIP's calc-*), and
   the required-documents checklist. Only used on /mm2h/.
═══════════════════════════════════════════════════════════ */
.tiers{background:var(--white)}
.tiers-header{text-align:center;margin-bottom:2.4rem}
.tiers-header h2{font-family:var(--ff-d);font-size:clamp(1.9rem,3.2vw,2.8rem);font-weight:300;color:var(--charcoal);line-height:1.1}
.tiers-header h2 em{font-style:italic;color:var(--gold)}
.tiers-header p{font-size:1.15rem;color:var(--muted);margin-top:.7rem;max-width:640px;margin-left:auto;margin-right:auto;line-height:1.75}
.tier-tabs{display:flex;justify-content:center;gap:.6rem;margin-bottom:2rem;flex-wrap:wrap}
.tier-tab{font-family:var(--ff-m);font-size:.7rem;letter-spacing:.04em;padding:.6rem 1.3rem;border-radius:50px;border:1px solid var(--rule);color:var(--muted);background:var(--white);cursor:pointer;transition:all .2s}
.tier-tab.active{background:var(--charcoal);color:#fff;border-color:var(--charcoal)}
.tier-tab:hover:not(.active){border-color:rgba(201,168,76,.4);color:var(--gold-dk)}
.tier-panel{display:none}
.tier-panel.active{display:block;animation:tierFadeIn .4s var(--ease)}
@keyframes tierFadeIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
.tier-wrap{border:1px solid var(--rule);border-radius:var(--r-lg);overflow-x:auto;box-shadow:0 14px 50px rgba(0,0,0,.05)}
.tier-table{width:100%;border-collapse:collapse;min-width:620px}
.tier-table thead th{background:var(--charcoal);color:#fff;font-size:.76rem;font-weight:600;letter-spacing:.02em;padding:1rem 1.2rem;text-align:left;white-space:nowrap}
.tier-table thead th:first-child{color:rgba(255,255,255,.5);font-weight:500}
.tier-table thead th.hl{color:var(--gold-lt)}
.tier-table tbody tr{border-bottom:1px solid var(--rule)}
.tier-table tbody tr:last-child{border-bottom:none}
.tier-table tbody tr:nth-child(even){background:var(--off)}
.tier-table td{padding:.95rem 1.2rem;font-size:1.08rem;color:var(--body);vertical-align:top}
.tier-table td:first-child{font-weight:600;color:var(--charcoal);white-space:nowrap}
.tier-table td.hl{color:var(--charcoal);font-weight:500;background:var(--gold-bg)}
.tier-note{margin-top:1.3rem;padding:1rem 1.4rem;background:var(--gold-bg);border-left:3px solid var(--gold);border-radius:var(--r-sm);font-size:.78rem;color:var(--body);line-height:1.6}
.pass-intro{font-size:.88rem;color:var(--body);line-height:1.8;max-width:760px;margin:0 auto 2.5rem}

/* Eligibility category cards (Digital Nomad) */
.elig-card{background:var(--white);border:1px solid var(--rule);border-radius:var(--r-lg);padding:2.2rem 2rem;position:relative;overflow:hidden;transition:border-color .25s,transform .25s,box-shadow .25s}
.elig-card:hover{border-color:rgba(201,168,76,.4);transform:translateY(-5px);box-shadow:0 18px 44px rgba(201,168,76,.12)}
.elig-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--gold),rgba(201,168,76,.15))}
.elig-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:1.3rem}
.elig-icon{width:52px;height:52px;border-radius:50%;background:var(--gold-bg);border:1px solid rgba(201,168,76,.25);display:flex;align-items:center;justify-content:center;font-size:1.35rem;flex-shrink:0}
.elig-num{font-family:var(--ff-m);font-size:.66rem;letter-spacing:.1em;color:var(--muted);text-transform:uppercase}
.elig-card h4{font-family:var(--ff-d);font-size:1.35rem;font-weight:600;color:var(--charcoal);margin-bottom:1.1rem}
.elig-metric{display:flex;align-items:baseline;justify-content:space-between;gap:1rem;background:var(--gold-bg);border:1px solid rgba(201,168,76,.2);border-radius:var(--r-md);padding:.9rem 1.1rem;margin-bottom:1.4rem}
.elig-metric-label{font-size:.72rem;color:var(--muted);letter-spacing:.02em}
.elig-metric-value{font-family:var(--ff-d);font-size:1.15rem;font-weight:600;color:var(--gold-dk);white-space:nowrap}
.elig-list{display:flex;flex-direction:column;gap:.65rem}
.elig-list li{list-style:none;display:flex;align-items:flex-start;gap:.65rem;font-size:.98rem;color:var(--body);line-height:1.55}
.elig-list li::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--gold);flex-shrink:0;margin-top:.55rem}

/* Generic centered section header — eyebrow + h2 + intro paragraph.
   Used directly (not wrapped in req-header/tiers-header/etc) on simpler
   inner pages: Employment Pass, Digital Nomad, APEC. */
.section-header{text-align:center;margin-bottom:3rem}
.section-header h2{font-family:var(--ff-d);font-size:clamp(1.9rem,3.2vw,2.8rem);font-weight:300;color:var(--charcoal);line-height:1.1}
.section-header h2 em{font-style:italic;color:var(--gold)}
.section-header p{font-size:1.15rem;color:var(--muted);margin-top:.7rem;max-width:590px;margin-left:auto;margin-right:auto;line-height:1.75}

/* Labuan two-column feature-list cards (Employment Pass only) */
.labuan-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}
.labuan-card{background:var(--white);border:1px solid var(--rule);border-radius:var(--r-lg);padding:2rem}
.labuan-card h4{font-family:var(--ff-d);font-size:1.2rem;font-weight:400;color:var(--charcoal);margin-bottom:1.2rem;padding-bottom:.8rem;border-bottom:1px solid var(--rule)}
.labuan-card h4 em{font-style:italic;color:var(--gold)}
.labuan-list{display:flex;flex-direction:column;gap:.7rem}
.labuan-row{display:flex;align-items:flex-start;gap:.8rem;font-size:.82rem;color:var(--body);line-height:1.5}
.labuan-check{width:22px;height:22px;border-radius:50%;flex-shrink:0;background:var(--gold-bg);border:1px solid rgba(201,168,76,.25);display:flex;align-items:center;justify-content:center;color:var(--gold-dk);font-size:.65rem;font-weight:700;margin-top:.1rem}
.labuan-row strong{color:var(--charcoal)}
.labuan-sub{font-size:1.05rem;color:var(--muted);margin-top:.2rem}
@media(max-width:768px){.labuan-grid{grid-template-columns:1fr}}
@media(max-width:768px){
  .tier-wrap{overflow-x:visible;border:none;box-shadow:none;border-radius:0}
  .tier-table{min-width:0}
  .tier-table thead{display:none}
  .tier-table,.tier-table tbody,.tier-table tr,.tier-table td{display:block;width:100%}
  .tier-table tbody tr{margin-bottom:1rem;border:1px solid var(--rule);border-radius:var(--r-md);overflow:hidden;background:var(--white)!important;box-shadow:0 8px 24px rgba(0,0,0,.05)}
  .tier-table tbody tr:last-child{margin-bottom:0}
  .tier-table td{padding:.75rem 1.1rem!important;white-space:normal!important;display:flex;justify-content:space-between;align-items:baseline;gap:1rem;border-bottom:1px solid var(--rule);background:none!important;font-size:1rem}
  .tier-table td:last-child{border-bottom:none}
  .tier-table td:first-child{background:var(--gold-bg)!important;color:var(--gold-dk);font-size:.95rem;font-weight:700;display:block}
  .tier-table td:not(:first-child)::before{content:attr(data-label);flex-shrink:0;font-size:.62rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--muted);align-self:flex-start;margin-top:.2rem}
  .tier-table td:not(:first-child){text-align:right}
}

/* MM2H fee calculator */
.mm2h-calc{background:var(--white)}
.mm2h-calc-header{text-align:center;margin-bottom:2.8rem}
.mm2h-calc-header h2{font-family:var(--ff-d);font-size:clamp(1.8rem,3vw,2.6rem);font-weight:300;color:var(--charcoal);line-height:1.1}
.mm2h-calc-header h2 em{font-style:italic;color:var(--gold)}
.mm2h-calc-header p{font-size:1.15rem;color:var(--muted);margin-top:.7rem;max-width:570px;margin-left:auto;margin-right:auto;line-height:1.75}
.mm2h-calc-wrap{max-width:740px;margin:0 auto;background:var(--white);border:1px solid var(--rule);border-radius:var(--r-xl);padding:2.4rem 2.6rem;box-shadow:0 14px 50px rgba(0,0,0,.05)}
.mm2h-tier-row{margin-bottom:1.8rem}
.mm2h-tier-label{font-size:.8rem;font-weight:600;color:var(--charcoal);margin-bottom:.7rem;display:block}
.mm2h-tier-btns{display:flex;gap:.55rem;flex-wrap:wrap}
.mm2h-tier-btn{font-family:var(--ff-m);font-size:.68rem;letter-spacing:.04em;padding:.55rem 1.2rem;border-radius:50px;cursor:pointer;border:1px solid var(--rule);background:var(--off);color:var(--muted);transition:all .2s}
.mm2h-tier-btn.active{background:var(--charcoal);color:#fff;border-color:var(--charcoal)}
.mm2h-tier-btn:hover:not(.active){border-color:rgba(201,168,76,.4);color:var(--gold-dk)}
.mm2h-slider-row{display:flex;align-items:center;gap:1.2rem;margin-bottom:1.8rem}
.mm2h-slider-label{font-size:.82rem;color:var(--body);min-width:110px;font-weight:500}
.mm2h-slider-row input[type="range"]{flex:1;height:36px;padding:0;margin:0;background:transparent;outline:none;-webkit-appearance:none;appearance:none;touch-action:pan-y}
.mm2h-slider-row input[type="range"]::-webkit-slider-runnable-track{height:4px;border-radius:2px;background:var(--rule)}
.mm2h-slider-row input[type="range"]::-moz-range-track{height:4px;border-radius:2px;background:var(--rule)}
.mm2h-slider-row input[type="range"]::-webkit-slider-thumb{-webkit-appearance:none;width:26px;height:26px;border-radius:50%;background:var(--gold);cursor:pointer;border:3px solid var(--white);box-shadow:0 0 0 1px var(--gold);margin-top:-11px}
.mm2h-slider-row input[type="range"]::-moz-range-thumb{width:26px;height:26px;border-radius:50%;background:var(--gold);cursor:pointer;border:3px solid var(--white);box-shadow:0 0 0 1px var(--gold)}
.mm2h-slider-out{font-family:var(--ff-d);font-size:1.3rem;color:var(--gold-dk);min-width:24px;text-align:right;font-weight:600}
.mm2h-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:.8rem;margin-bottom:1.8rem}
.mm2h-card{background:var(--off);border-radius:var(--r-md);padding:1rem 1.1rem;border:1px solid var(--rule)}
.mm2h-card.highlight{background:var(--gold);border-color:var(--gold)}
.mm2h-card-label{font-size:.7rem;color:var(--muted);margin-bottom:.3rem}
.mm2h-card.highlight .mm2h-card-label{color:rgba(28,28,28,.65)}
.mm2h-card-val{font-family:var(--ff-d);font-size:1.35rem;font-weight:600;color:var(--charcoal)}
.mm2h-card.highlight .mm2h-card-val{color:var(--charcoal)}
.mm2h-table{width:100%;font-size:1.08rem;border-collapse:collapse}
.mm2h-table tr{border-top:1px solid var(--rule)}
.mm2h-table tr:first-child{border-top:none}
.mm2h-table td{padding:.6rem 0;color:var(--body)}
.mm2h-table td:last-child{text-align:right;font-weight:500;color:var(--charcoal)}
.mm2h-table tr.grand{border-top:2px solid var(--rule)}
.mm2h-table tr.grand td{color:var(--charcoal);font-weight:600;padding-top:.8rem;font-size:.85rem}
.mm2h-table tr.sub td{color:var(--muted);font-size:.75rem}
.mm2h-calc-note{font-size:.95rem;color:var(--muted);margin-top:1.2rem;line-height:1.65}
.mm2h-calc-note p{margin-bottom:.6rem}
.mm2h-calc-note p:last-child{margin-bottom:0;margin-top:.6rem}
.mm2h-calc-note ul{padding-left:1.2rem;margin-bottom:.6rem}
.mm2h-calc-note li{margin-bottom:.3rem}
@media(max-width:768px){
  .mm2h-calc-wrap{padding:1.5rem 1.1rem}
  .mm2h-tier-btns{gap:.45rem}
  .mm2h-tier-btn{padding:.5rem .9rem;font-size:.72rem}
  .mm2h-slider-row{flex-direction:column;align-items:stretch;gap:.7rem}
  .mm2h-slider-label{min-width:0}
  .mm2h-slider-out{align-self:flex-end;font-size:1.5rem}
  .mm2h-cards{grid-template-columns:1fr 1fr;gap:.7rem}
  .mm2h-card{padding:.9rem .95rem}
  .mm2h-card-label{font-size:.72rem}
  .mm2h-card-val{font-size:1.15rem;word-break:break-word}
  .mm2h-card.highlight{grid-column:1/-1}
  .mm2h-table{font-size:.95rem}
  .mm2h-table tr{display:flex;flex-direction:column;align-items:flex-start;padding:.65rem 0;gap:.2rem}
  .mm2h-table td{display:block;width:100%;padding:0;white-space:normal!important;word-break:break-word;text-align:left!important}
  .mm2h-table td:first-child{color:var(--muted);font-size:.8rem}
  .mm2h-table td:last-child{font-weight:600;color:var(--charcoal);font-size:1rem}
  .mm2h-table tr.grand{padding-top:.9rem}
  .mm2h-table tr.grand td:last-child{font-size:1.05rem;color:var(--gold-dk)}
  .mm2h-table tr.sub td{font-size:.75rem}
  .mm2h-table tr.sub td:last-child{font-weight:500;color:var(--muted)}
}
@media(max-width:480px){
  .mm2h-cards{grid-template-columns:1fr}
  .mm2h-card.highlight{grid-column:auto}
  .mm2h-calc-wrap{padding:1.2rem .9rem}
}

/* Required documents checklist */
.docs{background:var(--off)}
.docs-header{text-align:center;margin-bottom:2.5rem}
.docs-header h2{font-family:var(--ff-d);font-size:clamp(1.8rem,3vw,2.6rem);font-weight:300;color:var(--charcoal);line-height:1.1}
.docs-header h2 em{font-style:italic;color:var(--gold)}
.docs-header p{font-size:1.15rem;color:var(--muted);margin-top:.7rem;max-width:550px;margin-left:auto;margin-right:auto;line-height:1.75}
.docs-grid{max-width:700px;margin:0 auto;display:flex;flex-direction:column;gap:.7rem}
.doc-row{background:var(--white);border:1px solid var(--rule);border-radius:var(--r-md);padding:1rem 1.3rem;display:flex;align-items:center;gap:1rem;transition:border-color .2s,background .2s}
.doc-row:hover{border-color:rgba(201,168,76,.3);background:var(--gold-bg)}
.doc-check{width:28px;height:28px;border-radius:50%;flex-shrink:0;background:var(--gold-bg);border:1px solid rgba(201,168,76,.3);display:flex;align-items:center;justify-content:center;color:var(--gold-dk);font-size:.7rem;font-weight:700}
.doc-name{font-size:.84rem;font-weight:600;color:var(--charcoal)}
.doc-who{font-family:var(--ff-m);font-size:.6rem;letter-spacing:.05em;text-transform:uppercase;color:var(--gold-dk);margin-left:auto;flex-shrink:0;padding-left:1rem}
.doc-detail{font-size:1.05rem;color:var(--muted);margin-top:.15rem}
@media(max-width:768px){.doc-row{flex-wrap:wrap}.doc-who{padding-left:0;margin-left:0}}

/* ═══════════════════════════════════════════════════════════
   DARK "PREMIUM" THEME — applied via <body class="theme-dark-premium">
   Currently used on /pvip/ only. Same component markup/classes above,
   just different token values, so nothing else has to change per-page.
═══════════════════════════════════════════════════════════ */
body.theme-dark-premium{
  --white:    #131313;
  --off:      #1A1A1A;
  --light:    #222222;
  --rule:     rgba(201,168,76,.15);
  --charcoal: #F2EDE4;
  --body:     #B0A898;
  --muted:    #6A6A6A;
  --gold-dk:  #DFC07A;
  --gold-lt:  #EDD898;
  --gold-bg:  rgba(201,168,76,.1);
}
body.theme-dark-premium .footer-social a{color:rgba(242,237,228,.5)}
body.theme-dark-premium .faq-cat-btn{color:rgba(242,237,228,.45)}

/* ═══════════════════════════════════════════════════════════
   APEC-ONLY COMPONENTS — member-economy flag grid, two-column
   document requirement cards. (Tab switching reuses .tier-tab/
   .tier-panel/switchTierTab() — same pattern as MM2H and Employment Pass.)
═══════════════════════════════════════════════════════════ */
.country-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.9rem}
.country-pill{background:var(--white);border:1px solid var(--rule);border-radius:var(--r-md);padding:.85rem 1rem;font-family:var(--ff-m);font-size:.78rem;font-weight:600;letter-spacing:.02em;color:var(--charcoal);text-align:left;display:flex;flex-direction:row;align-items:center;justify-content:flex-start;gap:.8rem;transition:border-color .25s,transform .25s,box-shadow .25s,background .25s;position:relative}
.country-pill:hover{border-color:rgba(201,168,76,.45);background:var(--gold-bg);color:var(--gold-dk);transform:translateY(-3px);box-shadow:0 10px 26px rgba(201,168,76,.14)}
.country-pill.transitional{border-style:dashed}
.country-pill.transitional::after{content:'†';position:absolute;top:.6rem;right:.7rem;font-family:var(--ff-b);font-size:.7rem;color:var(--muted)}
.country-code{font-weight:700;color:var(--gold-dk)}
.country-name{font-weight:500;color:inherit}
.flag-icon{width:32px;height:23px;object-fit:cover;border-radius:4px;box-shadow:0 0 0 1px rgba(0,0,0,.08),0 3px 8px rgba(0,0,0,.1);flex-shrink:0}
.member-legend{display:flex;align-items:center;justify-content:center;gap:1.5rem;margin-top:1.4rem;font-size:.74rem;color:var(--muted);flex-wrap:wrap}
.legend-item{display:flex;align-items:center;gap:.45rem}
.legend-dot{width:10px;height:10px;border-radius:50%;flex-shrink:0;border:1px solid var(--rule)}
.legend-dot.full{background:var(--off)}
.legend-dot.trans{background:transparent;border-style:dashed}
@media(max-width:1024px){.country-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.country-grid{grid-template-columns:1fr}}

/* Two-column document requirement cards (APEC) */
.docs-grid.two-col{max-width:none;margin:0;display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}
.docs-card{background:var(--white);border:1px solid var(--rule);border-radius:var(--r-xl);padding:2.2rem 2rem;overflow:hidden}
.docs-card-header{display:flex;align-items:center;gap:.9rem;margin-bottom:1.6rem;padding-bottom:1.2rem;border-bottom:1px solid var(--rule)}
.docs-card-icon{width:40px;height:40px;border-radius:50%;flex-shrink:0;background:var(--gold-bg);border:1px solid rgba(201,168,76,.2);display:flex;align-items:center;justify-content:center;font-size:1rem;overflow:hidden}
.docs-card-icon img{width:24px;height:17px;object-fit:cover;border-radius:2px}
.docs-card-title{font-size:1rem;font-weight:600;color:var(--charcoal)}
.docs-card-sub{font-size:.84rem;color:var(--muted);margin-top:.1rem}
.doc-list{display:flex;flex-direction:column;gap:.7rem}
.docs-card .doc-row{display:flex;align-items:flex-start;gap:.8rem;font-size:.8rem;color:var(--body);line-height:1.5;background:none;border:none;padding:0;border-radius:0}
.docs-card .doc-row:hover{background:none;border-color:transparent}
.docs-card .doc-check{width:20px;height:20px;border-radius:50%;flex-shrink:0;margin-top:.1rem;background:var(--gold-bg);border:1px solid rgba(201,168,76,.25);display:flex;align-items:center;justify-content:center;color:var(--gold-dk);font-size:.6rem;font-weight:700}
.doc-extra{margin-top:.35rem;padding-left:1rem;border-left:2px solid var(--rule);font-size:.74rem;color:var(--muted);line-height:1.5}
.doc-extra li{margin-bottom:.15rem}
.docs-card .doc-row.unique{background:var(--gold-bg);border-radius:var(--r-sm);padding:.55rem .7rem}
.docs-card .doc-row.unique .doc-check{border-color:rgba(201,168,76,.4);background:var(--white)}
@media(max-width:1024px){.docs-grid.two-col{grid-template-columns:1fr}}

/* ═══════════════════════════════════════════════════════════
   ABOUT US-ONLY COMPONENTS
═══════════════════════════════════════════════════════════ */
/* Who We Are intro photo block */
.who-inner{display:grid;grid-template-columns:1fr 1fr;gap:5vw;align-items:center}
.who-h2{font-family:var(--ff-d);font-size:clamp(1.9rem,3.2vw,2.8rem);font-weight:300;color:var(--charcoal);line-height:1.12;margin-bottom:1.1rem}
.who-h2 em{font-style:italic;color:var(--gold)}
.who-p{font-size:1.2rem;color:var(--body);line-height:1.85;margin-bottom:1rem}
.who-p:last-of-type{margin-bottom:0}
.who-license-note{margin-top:1.8rem;padding:1.2rem 1.5rem;background:var(--gold-bg);border-left:3px solid var(--gold);border-radius:var(--r-sm);font-size:.8rem;color:var(--body);line-height:1.6}
.who-license-note strong{color:var(--charcoal)}
.who-img-block{position:relative;border-radius:var(--r-xl);overflow:hidden;min-height:440px;box-shadow:0 20px 60px rgba(0,0,0,.12)}
.who-img-block img{width:100%;height:100%;object-fit:cover;filter:brightness(.85) saturate(.9)}
.who-img-badge{position:absolute;bottom:1.6rem;left:1.6rem;right:1.6rem;background:rgba(28,28,28,.85);backdrop-filter:blur(10px);border-radius:var(--r-md);padding:1.2rem 1.4rem;display:flex;align-items:center;gap:1rem}
.wib-num{font-family:var(--ff-d);font-size:2.4rem;font-weight:800;color:var(--gold);line-height:1}
.wib-text{font-size:.78rem;color:rgba(255,255,255,.7);line-height:1.4}
.wib-text strong{display:block;color:#fff;font-size:.84rem;font-weight:600;margin-bottom:.1rem}
@media(max-width:1024px){.who-inner{grid-template-columns:1fr;gap:3rem}.who-img-block{order:-1;min-height:320px}}

/* Government appointment certificates */
.certs-header{text-align:center;margin-bottom:2.8rem}
.certs-header h2{font-family:var(--ff-d);font-size:clamp(1.8rem,3vw,2.6rem);font-weight:300;color:var(--charcoal);line-height:1.1}
.certs-header h2 em{font-style:italic;color:var(--gold)}
.certs-header p{font-size:1.15rem;color:var(--muted);margin-top:.6rem;max-width:550px;margin-left:auto;margin-right:auto;line-height:1.7}
.certs-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.4rem}
.cert-card{background:var(--off);border:1px solid var(--rule);border-radius:var(--r-lg);padding:1.6rem 1.6rem 2rem;text-align:center;transition:border-color .25s,transform .25s,box-shadow .25s}
.cert-card:hover{border-color:rgba(201,168,76,.3);transform:translateY(-3px);box-shadow:0 10px 30px rgba(201,168,76,.1)}
.cert-image-wrap{background:var(--off);border:1px solid var(--rule);border-radius:var(--r-md);padding:1.6rem;margin-bottom:1.4rem;display:flex;align-items:center;justify-content:center;height:420px;overflow:hidden}
.cert-image{max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain;display:block;box-shadow:0 6px 20px rgba(0,0,0,.16);border-radius:2px}
.cert-card h4{font-size:.95rem;font-weight:600;color:var(--charcoal);margin-bottom:.5rem}
.cert-card p{font-size:1.1rem;color:var(--muted);line-height:1.75}
@media(max-width:1024px){.certs-grid{grid-template-columns:1fr}.cert-image-wrap{height:460px}}

/* CEO personal message */
.ceo-message{background:var(--charcoal);position:relative;overflow:hidden}
.ceo-message::before{content:'';position:absolute;top:-30%;right:-8%;width:580px;height:580px;border-radius:50%;background:radial-gradient(ellipse,rgba(201,168,76,.09) 0%,transparent 68%);pointer-events:none}
.ceo-inner{display:grid;grid-template-columns:.85fr 1.4fr;gap:4vw;align-items:start;position:relative}
.ceo-photo-block{text-align:center}
.ceo-photo{width:160px;height:160px;border-radius:50%;margin:0 auto 1.2rem;background:rgba(201,168,76,.1);border:2px solid rgba(201,168,76,.3);display:flex;align-items:center;justify-content:center;font-family:var(--ff-d);font-size:3rem;color:var(--gold)}
.ceo-name{font-size:1.1rem;font-weight:600;color:#fff;margin-bottom:.2rem}
.ceo-title{font-family:var(--ff-m);font-size:.68rem;letter-spacing:.1em;text-transform:uppercase;color:rgba(201,168,76,.7)}
.ceo-text .eyebrow{color:rgba(201,168,76,.8)}
.ceo-text h2{font-family:var(--ff-d);font-size:clamp(1.8rem,3vw,2.6rem);font-weight:300;color:#fff;line-height:1.15;margin-bottom:1.3rem}
.ceo-text h2 em{font-style:italic;color:var(--gold-lt)}
.ceo-text p{font-size:1.2rem;color:rgba(255,255,255,.55);line-height:1.85;margin-bottom:1rem}
.ceo-text p:last-of-type{margin-bottom:0}
.ceo-signature{margin-top:1.6rem;padding-top:1.4rem;border-top:1px solid rgba(255,255,255,.1)}
.ceo-signature-name{font-family:var(--ff-d);font-size:1.3rem;font-style:italic;color:var(--gold-lt)}
.ceo-signature-title{font-size:.75rem;color:rgba(255,255,255,.4);margin-top:.2rem}
@media(max-width:1024px){
  .ceo-inner{grid-template-columns:1fr;gap:2.5rem}
  .ceo-photo-block{text-align:left;display:flex;align-items:center;gap:1.2rem}
  .ceo-photo{margin:0;width:90px;height:90px;font-size:1.8rem}
}
@media(max-width:520px){.ceo-photo-block{flex-direction:column;text-align:center}.ceo-photo{margin:0 auto 1rem}}

/* Leadership team — horizontal scroll cards */
.team{background:var(--off);position:relative}
.team-scroll-wrap{position:relative}
.team-scroll-wrap::after{content:'';position:absolute;top:0;right:0;bottom:1.4rem;width:60px;background:linear-gradient(to right,rgba(247,245,241,0),var(--off));pointer-events:none}
.team-header{text-align:center;margin-bottom:3rem}
.team-header h2{font-family:var(--ff-d);font-size:clamp(1.9rem,3.2vw,2.8rem);font-weight:300;color:var(--charcoal);line-height:1.1}
.team-header h2 em{font-style:italic;color:var(--gold)}
.team-header p{font-size:1.15rem;color:var(--muted);margin-top:.7rem;max-width:530px;margin-left:auto;margin-right:auto;line-height:1.75}
.team-grid{display:flex;gap:1.1rem;overflow-x:auto;scroll-snap-type:x proximity;scrollbar-width:none;padding:.3rem .05rem 1.4rem;margin:-.3rem -.05rem -1.4rem}
.team-grid::-webkit-scrollbar{display:none}
.team-card{background:var(--white);border:1px solid var(--rule);border-radius:var(--r-lg);padding:1.8rem 1.2rem;text-align:center;transition:border-color .25s,transform .25s,box-shadow .25s;flex:0 0 190px;scroll-snap-align:start}
.team-card:hover{border-color:rgba(201,168,76,.3);transform:translateY(-3px);box-shadow:0 10px 28px rgba(201,168,76,.08)}
.team-avatar{width:72px;height:72px;border-radius:50%;margin:0 auto 1rem;background:var(--gold-bg);border:1px solid rgba(201,168,76,.25);display:flex;align-items:center;justify-content:center;font-family:var(--ff-d);font-size:1.6rem;color:var(--gold)}
.team-name{font-size:.88rem;font-weight:600;color:var(--charcoal);margin-bottom:.25rem}
.team-role{font-family:var(--ff-m);font-size:.62rem;letter-spacing:.08em;text-transform:uppercase;color:var(--gold)}
@media(max-width:520px){.team-card{flex-basis:165px}}

/* Client privileges */
.priv-header{text-align:center;margin-bottom:3rem}
.priv-header h2{font-family:var(--ff-d);font-size:clamp(1.9rem,3.2vw,2.8rem);font-weight:300;color:var(--charcoal);line-height:1.1}
.priv-header h2 em{font-style:italic;color:var(--gold)}
.priv-header p{font-size:1.15rem;color:var(--muted);margin-top:.7rem;max-width:550px;margin-left:auto;margin-right:auto;line-height:1.75}
.priv-pills{display:flex;justify-content:center;gap:.7rem;margin-bottom:3rem;flex-wrap:wrap}
.priv-pill{font-family:var(--ff-m);font-size:.68rem;letter-spacing:.06em;background:var(--gold-bg);border:1px solid rgba(201,168,76,.25);color:var(--gold-dk);padding:.45rem 1.2rem;border-radius:50px}
.priv-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem}
.priv-card{background:var(--off);border:1px solid var(--rule);border-radius:var(--r-lg);padding:2.2rem 1.8rem;transition:border-color .25s,background .25s,transform .25s,box-shadow .25s}
.priv-card:hover{border-color:rgba(201,168,76,.3);background:var(--gold-bg);transform:translateY(-3px);box-shadow:0 10px 30px rgba(201,168,76,.1)}
.priv-icon{width:48px;height:48px;border-radius:50%;margin-bottom:1.1rem;background:var(--white);border:1px solid var(--rule);display:flex;align-items:center;justify-content:center;font-size:1.2rem;transition:border-color .25s}
.priv-card:hover .priv-icon{border-color:rgba(201,168,76,.3)}
.priv-card h4{font-size:1rem;font-weight:600;color:var(--charcoal);margin-bottom:.5rem}
.priv-card p{font-size:1.12rem;color:var(--body);line-height:1.75}
@media(max-width:1024px){.priv-grid{grid-template-columns:1fr}}

/* Business partner logos */
.partners-header{text-align:center;margin-bottom:2.5rem}
.partners-header h2{font-family:var(--ff-d);font-size:clamp(1.8rem,3vw,2.6rem);font-weight:300;color:var(--charcoal);line-height:1.1}
.partners-header h2 em{font-style:italic;color:var(--gold)}
.partner-cat{margin-bottom:2.2rem}
.partner-cat:last-child{margin-bottom:0}
.partner-cat-label{font-family:var(--ff-m);font-size:.65rem;letter-spacing:.14em;text-transform:uppercase;color:var(--muted);margin-bottom:1rem;display:block;text-align:center}
.partner-logos{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:1.8rem 2.4rem}
.partner-logo{font-family:var(--ff-m);font-size:.7rem;letter-spacing:.06em;padding:.5rem;color:var(--muted);transition:transform .2s;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.6rem;min-height:5rem}
.partner-logo:hover{transform:translateY(-2px)}
.partner-logo img{height:64px;width:auto;max-width:260px;object-fit:contain;display:block;image-rendering:-webkit-optimize-contrast}
.partner-logo-name{font-size:.72rem;letter-spacing:.05em;color:var(--muted);text-align:center}
@media(max-width:768px){
  .partner-logos{display:grid;grid-template-columns:repeat(2,1fr);gap:.5rem;justify-items:center;align-items:center}
  .partner-logo{min-height:4.4rem;width:100%}
  .partner-logo img{height:44px;max-width:80%}
  .partner-cat{margin-bottom:1.6rem}
}

/* ═══════════════════════════════════════════════════════════
   NEWS & BLOG — shared listing-page components
═══════════════════════════════════════════════════════════ */
.subtab-nav{background:var(--white);border-bottom:1px solid var(--rule);padding:0 6vw;display:flex;align-items:center;position:sticky;top:64px;z-index:100}
.subtab{font-family:var(--ff-m);font-size:.7rem;letter-spacing:.09em;text-transform:uppercase;padding:1.1rem 1.5rem;color:var(--muted);border-bottom:2px solid transparent;transition:color .2s,border-color .2s;display:flex;align-items:center;gap:.45rem;white-space:nowrap}
.subtab:hover{color:var(--charcoal)}
.subtab.active{color:var(--gold-dk);border-bottom-color:var(--gold);font-weight:600}
.filter-bar{background:var(--off);padding:1.2rem 6vw;display:flex;align-items:center;gap:.6rem;flex-wrap:wrap;border-bottom:1px solid var(--rule)}
.filter-btn{font-family:var(--ff-m);font-size:.65rem;letter-spacing:.06em;padding:.4rem 1rem;border-radius:50px;border:1px solid var(--rule);background:var(--white);color:var(--muted);cursor:pointer;transition:all .2s}
.filter-btn.active{background:var(--charcoal);color:#fff;border-color:var(--charcoal)}
.filter-btn:hover:not(.active){border-color:rgba(201,168,76,.4);color:var(--gold-dk)}
.article-meta{display:flex;align-items:center;gap:.7rem;font-size:1.04rem;color:var(--muted)}
.meta-dot{width:3px;height:3px;border-radius:50%;background:var(--rule)}
.grid-header{display:flex;align-items:baseline;justify-content:space-between;margin-bottom:2rem}
.grid-header h3{font-family:var(--ff-d);font-size:1.5rem;font-weight:300;color:var(--charcoal)}
.grid-header h3 em{font-style:italic;color:var(--gold)}

/* Blog: hero post + card grid + sidebar */
.hero-post{background:var(--white);padding:3.5rem 6vw}
.hero-post-card{display:grid;grid-template-columns:1.1fr 1fr;gap:3.5rem;align-items:center;max-width:1100px}
.hero-post-img{border-radius:var(--r-xl);overflow:hidden;position:relative;aspect-ratio:16/10}
.hero-post-img img{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease)}
.hero-post-card:hover .hero-post-img img{transform:scale(1.04)}
.blog-cat{display:inline-flex;font-family:var(--ff-m);font-size:.58rem;letter-spacing:.1em;text-transform:uppercase;background:var(--gold-bg);border:1px solid rgba(201,168,76,.3);color:var(--gold-dk);padding:.25rem .7rem;border-radius:50px;margin-bottom:.9rem}
.hero-post-content h2{font-family:var(--ff-d);font-size:clamp(1.7rem,2.8vw,2.4rem);font-weight:300;color:var(--charcoal);line-height:1.2;margin-bottom:.9rem}
.hero-post-content h2 em{font-style:italic;color:var(--gold)}
.hero-post-content p{font-size:1.2rem;color:var(--body);line-height:1.8;margin-bottom:1.2rem}
.read-link{display:inline-flex;align-items:center;gap:.4rem;font-size:.8rem;font-weight:600;color:var(--gold-dk);margin-top:1.2rem;transition:gap .2s}
.read-link:hover{gap:.7rem}
.blog-grid-wrap{background:var(--off);padding:3.5rem 6vw}
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.3rem}
.blog-card{position:relative;background:var(--white);border:1px solid var(--rule);border-radius:var(--r-lg);overflow:hidden;display:flex;flex-direction:column;transition:border-color .25s,transform .25s,box-shadow .25s}
.blog-card:hover{border-color:rgba(201,168,76,.3);transform:translateY(-4px);box-shadow:0 14px 36px rgba(201,168,76,.08)}
.blog-card.hidden{display:none}
.blog-card-img{height:200px;overflow:hidden;position:relative;background:var(--light)}
.blog-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease)}
.blog-card:hover .blog-card-img img{transform:scale(1.05)}
.blog-card-body{padding:1.5rem;flex:1;display:flex;flex-direction:column}
.blog-card-cat{display:inline-block;font-family:var(--ff-m);font-size:.56rem;letter-spacing:.09em;text-transform:uppercase;background:var(--gold-bg);border:1px solid rgba(201,168,76,.2);color:var(--gold-dk);padding:.2rem .55rem;border-radius:50px;margin-bottom:.7rem}
.blog-card-title{font-family:var(--ff-d);font-size:1.08rem;font-weight:400;color:var(--charcoal);line-height:1.3;margin-bottom:.6rem;flex:1}
.blog-card-excerpt{font-size:.78rem;color:var(--muted);line-height:1.6;margin-bottom:1rem;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.blog-card-meta{font-family:var(--ff-m);font-size:.6rem;letter-spacing:.06em;color:var(--muted);display:flex;align-items:center;gap:.5rem;margin-top:auto;padding-top:.9rem;border-top:1px solid var(--rule)}
.read-min{color:var(--gold-dk)}
.blog-layout{display:grid;grid-template-columns:1fr 280px;gap:2.5rem;align-items:start}
.topics-sidebar{position:sticky;top:120px}
.topics-card{background:var(--white);border:1px solid var(--rule);border-radius:var(--r-lg);padding:1.5rem}
.topics-card h4{font-family:var(--ff-m);font-size:.65rem;letter-spacing:.12em;text-transform:uppercase;color:var(--charcoal);margin-bottom:1.1rem}
.topic-list{display:flex;flex-direction:column;gap:.4rem}
.topic-item{display:flex;align-items:center;justify-content:space-between;padding:.5rem .6rem;border-radius:var(--r-sm);cursor:pointer;transition:background .2s;font-size:.8rem;color:var(--body)}
.topic-item:hover{background:var(--gold-bg);color:var(--gold-dk)}
.topic-count{font-family:var(--ff-m);font-size:.62rem;color:var(--muted);background:var(--off);border-radius:50px;padding:.1rem .5rem}
.cta-sidebar{background:var(--charcoal);border-radius:var(--r-lg);padding:1.6rem;margin-top:1.2rem;text-align:center}
.cta-sidebar h4{font-family:var(--ff-d);font-size:1.2rem;font-weight:300;color:#fff;margin-bottom:.6rem}
.cta-sidebar h4 em{font-style:italic;color:var(--gold-lt)}
.cta-sidebar p{font-size:1.08rem;color:rgba(255,255,255,.45);line-height:1.65;margin-bottom:1.1rem}
.cta-sidebar a{display:block;background:var(--gold);color:#fff;font-size:.78rem;font-weight:600;padding:.75rem 1.2rem;border-radius:50px;transition:background .2s}
.cta-sidebar a:hover{background:var(--gold-dk)}
@media(max-width:1100px){.blog-layout{grid-template-columns:1fr}.topics-sidebar{position:static}.blog-grid{grid-template-columns:1fr 1fr}}
@media(max-width:768px){.hero-post-card{grid-template-columns:1fr;gap:2rem}.blog-grid{grid-template-columns:1fr}}

/* News: featured article + card grid + newsletter */
.featured{background:var(--white);padding:3.5rem 6vw}
.featured-card{display:grid;grid-template-columns:1fr 1fr;gap:0;border-radius:var(--r-xl);overflow:hidden;background:var(--charcoal);box-shadow:0 20px 60px rgba(0,0,0,.12)}
.featured-img{position:relative;min-height:360px;overflow:hidden}
.featured-img img{width:100%;height:100%;object-fit:cover;filter:brightness(.75) saturate(.85);transition:transform .6s var(--ease)}
.featured-card:hover .featured-img img{transform:scale(1.04)}
.featured-img-overlay{position:absolute;inset:0;background:linear-gradient(to right,transparent 60%,rgba(28,28,28,.85))}
.featured-content{padding:2.8rem 2.6rem;display:flex;flex-direction:column;justify-content:center}
.news-cat{display:inline-flex;font-family:var(--ff-m);font-size:.58rem;letter-spacing:.1em;text-transform:uppercase;background:rgba(201,168,76,.15);border:1px solid rgba(201,168,76,.3);color:var(--gold);padding:.25rem .7rem;border-radius:50px;margin-bottom:.9rem;align-self:flex-start}
.featured-content h2{font-family:var(--ff-d);font-size:clamp(1.6rem,2.5vw,2.2rem);font-weight:300;color:#fff;line-height:1.2;margin-bottom:.8rem}
.featured-content h2 em{font-style:italic;color:var(--gold-lt)}
.featured-content p{font-size:1.16rem;color:rgba(255,255,255,.5);line-height:1.75;margin-bottom:1.5rem}
.featured .article-meta{color:rgba(255,255,255,.38)}
.featured .meta-dot{background:rgba(255,255,255,.25)}
.read-more{display:inline-flex;align-items:center;gap:.4rem;font-size:.8rem;font-weight:600;color:var(--gold);margin-top:1.2rem;transition:gap .2s}
.read-more:hover{gap:.7rem}
.article-grid-wrap{background:var(--off);padding:3.5rem 6vw}
.article-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.3rem}
.article-card{position:relative;background:var(--white);border:1px solid var(--rule);border-radius:var(--r-lg);overflow:hidden;transition:border-color .25s,transform .25s,box-shadow .25s;display:flex;flex-direction:column}
.article-card:hover{border-color:rgba(201,168,76,.3);transform:translateY(-4px);box-shadow:0 14px 36px rgba(201,168,76,.08)}
.article-card.hidden{display:none}
.card-img{position:relative;height:180px;overflow:hidden;background:var(--light)}
.card-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease)}
.article-card:hover .card-img img{transform:scale(1.05)}
.card-body{padding:1.4rem;flex:1;display:flex;flex-direction:column}
.card-cat{display:inline-block;font-family:var(--ff-m);font-size:.56rem;letter-spacing:.09em;text-transform:uppercase;background:var(--gold-bg);border:1px solid rgba(201,168,76,.2);color:var(--gold-dk);padding:.2rem .55rem;border-radius:50px;margin-bottom:.7rem}
.card-title{font-family:var(--ff-d);font-size:1.05rem;font-weight:400;color:var(--charcoal);line-height:1.3;margin-bottom:.6rem;flex:1}
.card-excerpt{font-size:.78rem;color:var(--muted);line-height:1.6;margin-bottom:1rem;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.card-meta{font-family:var(--ff-m);font-size:.6rem;letter-spacing:.06em;color:var(--muted);display:flex;align-items:center;gap:.5rem;margin-top:auto}
.newsletter{background:var(--charcoal);padding:4rem 6vw;text-align:center;position:relative;overflow:hidden}
.newsletter::before{content:'';position:absolute;top:-30%;right:-5%;width:400px;height:400px;border-radius:50%;background:radial-gradient(ellipse,rgba(201,168,76,.08) 0%,transparent 68%);pointer-events:none}
.newsletter h2{font-family:var(--ff-d);font-size:clamp(1.8rem,3vw,2.6rem);font-weight:300;color:#fff;margin-bottom:.7rem;position:relative}
.newsletter h2 em{font-style:italic;color:var(--gold-lt)}
.newsletter p{font-size:1.16rem;color:rgba(255,255,255,.5);max-width:480px;margin:0 auto 1.8rem;position:relative}
.newsletter-form{display:flex;gap:.6rem;max-width:440px;margin:0 auto;position:relative}
.newsletter-form input{flex:1;border:1px solid rgba(255,255,255,.15);background:rgba(255,255,255,.06);border-radius:50px;padding:.8rem 1.4rem;font-size:.84rem;color:#fff;font-family:var(--ff-b);outline:none;transition:border-color .2s}
.newsletter-form input::placeholder{color:rgba(255,255,255,.3)}
.newsletter-form input:focus{border-color:rgba(201,168,76,.4)}
.newsletter-form button{background:var(--gold);color:#fff;font-size:.8rem;font-weight:600;padding:.8rem 1.6rem;border-radius:50px;border:none;cursor:pointer;transition:background .2s;white-space:nowrap}
.newsletter-form button:hover{background:var(--gold-dk)}
@media(max-width:1024px){.featured-card{grid-template-columns:1fr}.featured-img{min-height:260px;order:-1}.featured-img-overlay{background:linear-gradient(to bottom,transparent 60%,rgba(28,28,28,.85))}.article-grid{grid-template-columns:1fr 1fr}}
@media(max-width:768px){.article-grid{grid-template-columns:1fr}.newsletter-form{flex-direction:column}}

/* News/Blog pagination */
.page-nav{display:flex;align-items:center;justify-content:center;gap:1.6rem;margin-top:2.8rem}
.page-nav-btn{font-family:var(--ff-b);font-size:.82rem;font-weight:600;color:var(--gold-dk);background:var(--white);padding:.65rem 1.3rem;border:1px solid var(--rule);border-radius:50px;cursor:pointer;transition:border-color .2s,background .2s}
.page-nav-btn:hover{border-color:rgba(201,168,76,.4);background:var(--gold-bg)}
.page-nav-btn:disabled{opacity:.35;cursor:not-allowed;background:var(--white)}
.page-nav-btn:disabled:hover{border-color:var(--rule);background:var(--white)}
.page-nav.single-page{display:none}
.page-nav-count{font-family:var(--ff-m);font-size:.7rem;color:var(--muted);letter-spacing:.03em}

/* News/Blog article detail page */
.article-body-wrap{background:var(--white);padding:3rem 6vw 4rem}
.article-body{max-width:760px;margin:0 auto;font-size:1.02rem;line-height:1.85;color:var(--body)}
.article-hero-img{width:100%;border-radius:var(--r-lg);margin-bottom:2rem;object-fit:cover;max-height:460px}
.article-body p{margin-bottom:1.3rem}
.article-body h2,.article-body h3,.article-body h4{font-family:var(--ff-d);color:var(--charcoal);font-weight:500;line-height:1.3;margin:2rem 0 1rem}
.article-body ul,.article-body ol{margin:0 0 1.3rem 1.3rem}
.article-body li{margin-bottom:.4rem}
.article-body a{color:var(--gold-dk);text-decoration:underline}
.article-body blockquote{border-left:3px solid var(--gold);padding-left:1.2rem;color:var(--muted);font-style:italic;margin:1.5rem 0}
.article-body img{max-width:100%;border-radius:var(--r-md);margin:1.2rem 0}
.article-body iframe{max-width:100%;border-radius:var(--r-md);margin:1.2rem 0}
.article-body address{font-style:normal}

/* ============================================================
   Per-type article detail pages: News / Blog / Webinar
   Shared header + sidebar pattern, distinct hero per type.
   ============================================================ */
.news-tag,.article-cat{display:inline-flex;align-items:center;gap:.35rem;font-family:var(--ff-m);font-size:.6rem;letter-spacing:.08em;text-transform:uppercase;padding:.3rem .8rem;border-radius:50px;margin-bottom:1.1rem;background:var(--gold-bg);border:1px solid rgba(201,168,76,.3);color:var(--gold-dk)}
.article-cat.webinar-cat{background:#EFF3FF;border-color:#C6D6FA;color:#4A63C9}
.article-meta-row{display:flex;align-items:center;gap:.6rem;flex-wrap:wrap;font-family:var(--ff-m);font-size:.72rem;color:var(--muted);padding-bottom:1.8rem;border-bottom:1px solid var(--rule)}
.article-meta-row .meta-dot{width:3px;height:3px;border-radius:50%;background:var(--rule)}
.share-row{display:flex;gap:.5rem;margin-left:auto}
.share-btn{width:30px;height:30px;border-radius:50%;border:1px solid var(--rule);display:flex;align-items:center;justify-content:center;font-size:.68rem;color:var(--muted);transition:border-color .2s,color .2s,background .2s}
.share-btn:hover{border-color:var(--gold);color:var(--gold-dk);background:var(--gold-bg)}

/* News/webinar simple header (no dek, no featured image bleed) */
.article-header{max-width:1160px;margin:0 auto;padding:8rem 6vw 0}
.article-header h1{font-family:var(--ff-d);font-size:clamp(2rem,4vw,2.9rem);font-weight:600;color:var(--charcoal);line-height:1.22;margin-bottom:1.1rem;max-width:760px}
.article-header .breadcrumb,.article-hero .breadcrumb{color:var(--muted)}
.article-header .breadcrumb a,.article-hero .breadcrumb a{color:var(--body)}

/* Blog hero (dek + author block, feature image bleeds below) */
.article-hero{position:relative;padding:8.5rem 6vw 0;background:var(--off);overflow:hidden}
.article-hero-inner{position:relative;z-index:2;max-width:820px;margin:0 auto;padding-bottom:3rem}
.article-hero h1{font-family:var(--ff-d);font-size:clamp(2.4rem,4.6vw,3.6rem);font-weight:300;color:var(--charcoal);line-height:1.14;margin-bottom:1.3rem;max-width:760px}
.article-hero h1 em{font-style:italic;color:var(--gold)}
.article-hero .dek{font-size:1.1rem;color:var(--body);line-height:1.75;max-width:640px;margin-bottom:1.8rem}
.article-hero .article-meta-row{justify-content:space-between;padding-top:1.6rem;border-top:1px solid var(--rule);border-bottom:none;padding-bottom:0}
.author-block{display:flex;align-items:center;gap:.7rem}
.author-avatar{width:38px;height:38px;border-radius:50%;background:var(--charcoal);color:var(--gold-lt);display:flex;align-items:center;justify-content:center;font-family:var(--ff-d);font-size:.95rem;font-weight:600;flex-shrink:0}
.author-name{font-size:.85rem;font-weight:600;color:var(--charcoal)}
.author-sub{font-family:var(--ff-m);font-size:.66rem;color:var(--muted);letter-spacing:.03em}
.article-feature-img{max-width:1000px;margin:0 auto;padding:0 6vw 3.5rem}
.article-feature-img .img-frame{aspect-ratio:16/8;border-radius:var(--r-xl);box-shadow:0 24px 60px rgba(0,0,0,.1)}
.img-caption{font-family:var(--ff-m);font-size:.68rem;color:var(--muted);text-align:center;margin-top:.9rem}

/* Shared two-column layout */
.article-wrap{background:var(--white);padding:0 6vw 5rem}
.article-layout{display:grid;grid-template-columns:1fr 280px;gap:3.5rem;max-width:1160px;margin:0 auto;align-items:start;padding-top:2.2rem}
.article-sidebar{position:sticky;top:140px;display:flex;flex-direction:column;gap:1.3rem}

.news-img,.poster-hero-wrap{margin-bottom:2rem}
.news-img .img-frame{aspect-ratio:16/9;border-radius:var(--r-lg)}

/* Full-bleed hero image frame: shows the whole photo (never cropped) via
   object-fit:contain, with a blurred/darkened copy of the same photo filling
   the backdrop so there's no flat letterbox bars on non-matching aspect ratios. */
.img-frame{position:relative;overflow:hidden;background-size:cover;background-position:center}
.img-frame::before{content:'';position:absolute;inset:-15%;background-image:inherit;background-size:cover;background-position:center;filter:blur(35px) brightness(.65) saturate(1.15);transform:scale(1.1)}
.img-frame img{position:relative;z-index:1;width:100%;height:100%;object-fit:contain;display:block}
.poster-hero{border-radius:var(--r-xl);overflow:hidden;box-shadow:0 20px 50px rgba(0,0,0,.12);border:1px solid var(--rule);max-width:380px;aspect-ratio:4/5;margin:0 auto 2rem;background:var(--off);display:flex;align-items:center;justify-content:center}
.poster-hero img{width:100%;height:100%;object-fit:contain}

.prose{max-width:100%;font-size:1.08rem;color:var(--body);line-height:1.8}
.prose > * + *{margin-top:1.25rem}
.prose h2{font-family:var(--ff-d);font-size:1.7rem;font-weight:500;color:var(--charcoal);line-height:1.3;margin-top:2.4rem}
.prose h3{font-family:var(--ff-d);font-size:1.4rem;font-weight:500;color:var(--charcoal);line-height:1.3;margin-top:2rem}
.prose ul{list-style:disc;padding-left:1.3rem;margin-top:1rem}
.prose ol{list-style:decimal;padding-left:1.3rem;margin-top:1rem}
.prose li{margin-top:.5rem}
.prose li::marker{color:var(--gold-dk);font-weight:600}
.prose a{color:var(--gold-dk);text-decoration:underline;text-decoration-color:rgba(201,168,76,.4)}
.prose strong,.prose b{color:var(--charcoal);font-weight:600}
.prose h4{font-family:var(--ff-d);font-size:1.4rem;font-weight:500;color:var(--charcoal);line-height:1.3;margin-top:2rem}
.prose blockquote{border-left:3px solid var(--gold);background:var(--gold-bg);padding:1.2rem 1.5rem;border-radius:0 var(--r-md) var(--r-md) 0;font-family:var(--ff-d);font-size:1.15rem;font-style:italic;color:var(--charcoal);line-height:1.6}
.prose blockquote p{margin-top:0}
.prose blockquote p+p{margin-top:.8rem}
.prose blockquote cite{display:block;margin-top:.6rem;font-family:var(--ff-m);font-size:.68rem;font-style:normal;letter-spacing:.04em;text-transform:uppercase;color:var(--muted)}
.prose img{border-radius:var(--r-lg);width:100%;margin-top:1.6rem}
.prose iframe{width:100%;aspect-ratio:16/9;height:auto;border:0;border-radius:var(--r-lg);margin-top:1.6rem}
.prose table{width:100%;border-collapse:collapse;margin-top:1.6rem;font-size:.95rem}
.prose table caption{caption-side:top;text-align:left;font-family:var(--ff-m);font-size:.7rem;letter-spacing:.05em;text-transform:uppercase;color:var(--muted);margin-bottom:.6rem}
.prose th,.prose td{border:1px solid var(--rule);padding:.7rem 1rem;text-align:left;vertical-align:top}
.prose th{background:var(--off);font-family:var(--ff-m);font-size:.7rem;letter-spacing:.04em;text-transform:uppercase;color:var(--charcoal);font-weight:600}
.prose tbody tr:nth-child(even){background:var(--off)}
.prose .table-scroll{overflow-x:auto;margin-top:1.6rem}
.prose .table-scroll table{margin-top:0}
.pull-stat{display:flex;gap:2rem;background:var(--off);border:1px solid var(--rule);border-radius:var(--r-lg);padding:1.8rem 2rem;margin-top:2rem;flex-wrap:wrap}
.pull-stat div{flex:1;min-width:140px}
.pull-stat .num{font-family:var(--ff-d);font-size:2.2rem;font-weight:600;color:var(--gold-dk);line-height:1}
.pull-stat .lbl{font-family:var(--ff-m);font-size:.64rem;letter-spacing:.05em;text-transform:uppercase;color:var(--muted);margin-top:.5rem}
.source-box{background:var(--off);border:1px solid var(--rule);border-left:3px solid var(--gold);border-radius:0 var(--r-md) var(--r-md) 0;padding:1.1rem 1.4rem;margin-top:1.6rem;font-size:.85rem;color:var(--body)}
.source-box b{color:var(--charcoal)}

.tag-row{display:flex;gap:.5rem;flex-wrap:wrap;margin-top:2.2rem;padding-top:1.6rem;border-top:1px solid var(--rule)}
.tag{font-family:var(--ff-m);font-size:.63rem;padding:.32rem .85rem;border-radius:50px;background:var(--off);border:1px solid var(--rule);color:var(--body)}
.author-card{max-width:100%;margin-top:2.5rem;background:var(--off);border-radius:var(--r-lg);padding:1.8rem;display:flex;gap:1.2rem;align-items:flex-start}
.author-card .author-avatar{width:52px;height:52px;font-size:1.2rem}
.author-card h5{font-family:var(--ff-d);font-size:1.15rem;font-weight:600;color:var(--charcoal);margin-bottom:.3rem}
.author-card p{font-size:.85rem;color:var(--muted);line-height:1.6}

/* Webinar register / ended card */
.register-sticky{background:var(--charcoal);border-radius:var(--r-lg);padding:1.5rem;position:relative;overflow:hidden}
.register-sticky::before{content:'';position:absolute;top:-30%;right:-15%;width:200px;height:200px;border-radius:50%;background:radial-gradient(ellipse,rgba(201,168,76,.14) 0%,transparent 70%)}
.rs-row{position:relative;display:flex;align-items:flex-start;gap:.6rem;margin-bottom:.8rem}
.rs-row:last-child{margin-bottom:0}
.rs-icon{width:26px;height:26px;border-radius:50%;background:rgba(201,168,76,.15);border:1px solid rgba(201,168,76,.35);display:flex;align-items:center;justify-content:center;font-size:.7rem;flex-shrink:0}
.rs-label{font-family:var(--ff-m);font-size:.56rem;letter-spacing:.05em;text-transform:uppercase;color:rgba(255,255,255,.4)}
.rs-value{font-size:.82rem;color:#fff;font-weight:500}
.register-sticky a.rs-btn{position:relative;display:block;background:var(--gold);color:#fff;font-size:.78rem;font-weight:600;padding:.75rem 1rem;border-radius:50px;text-align:center;margin-top:1rem;transition:background .2s}
.register-sticky a.rs-btn:hover{background:var(--gold-dk)}
.seats-note{position:relative;font-family:var(--ff-m);font-size:.6rem;color:rgba(255,255,255,.4);text-align:center;margin-top:.7rem}
.rs-ended-badge{position:relative;display:inline-flex;align-items:center;gap:.35rem;font-family:var(--ff-m);font-size:.62rem;letter-spacing:.06em;text-transform:uppercase;color:var(--gold-lt);background:rgba(201,168,76,.14);border:1px solid rgba(201,168,76,.35);padding:.32rem .75rem;border-radius:50px;margin-bottom:1.1rem}
.rs-ended-title{position:relative;font-family:var(--ff-d);font-size:1.2rem;font-weight:300;color:#fff;line-height:1.35;margin-bottom:.7rem}
.rs-ended-title em{font-style:italic;color:var(--gold-lt)}
.rs-ended-note{position:relative;font-size:.82rem;color:rgba(255,255,255,.55);line-height:1.6;margin-bottom:0}

/* More news / related articles — full width below layout */
.more-news,.related-wrap{background:var(--off);padding:4rem 6vw;border-top:1px solid var(--rule)}
.more-news-header,.related-header{max-width:1160px;margin:0 auto 1.6rem}
.more-news-header h3,.related-header h3{font-family:var(--ff-d);font-size:1.6rem;font-weight:300}
.more-news-header h3 em,.related-header h3 em{font-style:italic;color:var(--gold)}
.more-news-list{max-width:1160px;margin:0 auto;display:flex;flex-direction:column}
.news-row{display:flex;align-items:center;gap:1.3rem;padding:1.1rem 0;border-bottom:1px solid var(--rule)}
.news-row:last-child{border-bottom:none}
.news-row-img{width:96px;height:70px;border-radius:var(--r-sm);overflow:hidden;flex-shrink:0;background:var(--light)}
.news-row-img img{width:100%;height:100%;object-fit:cover}
.news-row-body{flex:1;min-width:0}
.news-row-tag{font-family:var(--ff-m);font-size:.58rem;letter-spacing:.06em;text-transform:uppercase;color:var(--gold-dk);display:block;margin-bottom:.3rem}
.news-row-title{font-size:.94rem;font-weight:600;color:var(--charcoal);line-height:1.35}
.news-row-date{font-family:var(--ff-m);font-size:.64rem;color:var(--muted);white-space:nowrap;flex-shrink:0}
.related-grid{max-width:1160px;margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:1.3rem}

@media(max-width:1100px){.article-layout{grid-template-columns:1fr}.article-sidebar{position:static;flex-direction:row;flex-wrap:wrap}.article-sidebar>*{flex:1;min-width:240px}.related-grid{grid-template-columns:1fr 1fr}}
@media(max-width:768px){.article-header{padding:7.5rem 5vw 0}.article-hero{padding:7.5rem 5vw 0}.article-meta-row{flex-wrap:wrap}.share-row{margin-left:0}.news-row{flex-wrap:wrap}.news-row-date{margin-left:auto}.related-grid{grid-template-columns:1fr}.poster-hero{max-width:220px}}
